/* =========================================================
   RESET & NORMALIZE
   ========================================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.17s cubic-bezier(.4,0,.2,1);
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}

body {
  min-height: 100vh;
  background-color: #F8F3EA;
  color: #3A385E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  /* retro subtle paper grain pattern (SVG embedded) */
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><g fill-opacity=".02"><rect width="40" height="40" fill="%23cdbba7"/><rect x="0" y="20" width="40" height="1" fill="%233A385E"/><rect x="20" y="0" width="1" height="40" fill="%233A385E"/></g></svg>');
}

:root {
  --color-primary: #3A385E;
  --color-secondary: #D0B9C6;
  --color-accent: #FFFFFF;
  --color-shadow: rgba(58,56,94,0.07);
  --vintage-yellow: #F5E6B7;
  --vintage-mint: #C5D7CC;
  --vintage-coral: #D36F5F;
  --vintage-green: #92A984;
  --shadow-elevate: 0 3px 22px var(--color-shadow), 0 1.5px 7px rgba(58,56,94,0.08);
  --radius-card: 15px;
  --radius-btn: 26px;
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

/* Typography scale */
h1,
.h1 { font-family: var(--font-title); font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; color: var(--color-primary); margin-bottom: 24px; }
@media (min-width:600px) {
  h1, .h1 { font-size: 3rem; } 
}
h2,
.h2 { font-family: var(--font-title); font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--color-primary); margin-bottom: 20px; }
@media (min-width:600px) { h2, .h2 { font-size: 2.35rem; } }
h3,
.h3 { font-family: var(--font-title); font-size: 1.35rem; font-weight: 700; color: var(--color-primary); margin-bottom: 14px; }
h4,
.h4 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 600; color: var(--color-primary); }
h5,
.h5 { font-size: 1rem; }  
h6, .h6 { font-size: 1rem; }
p, li, ol, ul {
  font-family: var(--font-body);
  color: #473f3b;
  margin-bottom: 1em;
  font-size: 1rem;
}
.subtitle {
  font-size: 1.175rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: var(--space-m);
}
strong, b { font-weight: 700; }
.text-section { max-width: 720px; }

/* Links */
a {
  color: var(--color-primary);
  transition: color 0.15s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus { color: var(--vintage-coral); }
.cta { 
  display: inline-block; 
  background: var(--vintage-coral);
  color: var(--color-accent);
  font-family: var(--font-title);
  font-size: 1.1rem; 
  font-weight: 700;
  padding: 12px 36px; 
  border-radius: var(--radius-btn);
  box-shadow: 0 3px 12px rgba(211,111,95,0.13);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(0,0,0,.04);
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: 2px solid transparent;
}
.cta:hover, .cta:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 2px 10px var(--color-shadow);
  border-color: var(--vintage-coral);
}

/* ========= CONTAINER & FLEX LAYOUTS ========= */
.container {
  width: 100%;
  max-width: 1192px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-accent);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevate);
  padding: 28px;
  min-width: 250px;
  max-width: 100%;
  overflow: hidden;
  border: 1.5px solid var(--color-secondary);
  transition: box-shadow 0.18s, border 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 35px rgba(58,56,94,0.10);
  border: 1.5px solid var(--vintage-coral);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* --- Feature grid (index + gallery) --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: var(--space-l);
}
.feature {
  background: var(--vintage-yellow);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevate);
  padding: 28px 24px 28px 24px;
  text-align: left;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s;
  border: 1.5px solid var(--color-secondary);
}
.feature img {
  width: 40px; height: 40px; object-fit: contain; margin-bottom: 8px;
  filter: drop-shadow(0 2px 2px rgba(58,56,94,0.03));
}
.feature h3 { font-size: 1.25rem; margin-bottom: 6px; font-family: var(--font-title); }
.feature p { color: #563a20; font-size: 1rem; }
.feature:hover {
  box-shadow: 0 8px 35px rgba(211,111,95,0.08);
  border-color: var(--vintage-coral);
}

/* --- Blog list --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: var(--space-m);
  justify-content: space-between;
}
.blog-teaser {
  background: var(--vintage-mint);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elevate);
  padding: 22px 20px 28px 20px;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border: 1.5px solid var(--color-secondary);
  transition: box-shadow 0.14s, border 0.14s;
}
.blog-teaser h3 {
  font-size: 1.18rem;
  font-family: var(--font-title);
}
.blog-teaser a {
  font-weight: 700;
  color: var(--vintage-coral);
  font-size: 1.04rem;
  margin-top: 5px;
  align-self: flex-start;
}
.blog-teaser a:hover {
  border-bottom: 2px solid var(--vintage-coral);
  color: var(--color-primary);
}

/* --- Section, Spacing & Hierarchy --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 700px) {
  section {
    padding: 28px 0;
    margin-bottom: 40px;
  }
}

/* ================= NAVIGATION ================== */
header {
  background: var(--color-accent);
  border-bottom: 2px solid var(--color-secondary);
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  z-index: 110;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
header a img {
  max-height: 44px;
  margin-right: 10px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-title);
  font-size: 1.08rem;
  padding: 8px 16px;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
}
.main-nav .cta {
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-title);
  padding: 10px 22px;
  font-size: 1.09rem;
  border-radius: var(--radius-btn);
  margin-left: 10px;
  border: 2px solid transparent;
}
.main-nav .cta:hover{ background: var(--vintage-coral); border-color: var(--color-primary); }
.main-nav a:not(.cta):hover, .main-nav a:not(.cta):focus { background: var(--vintage-yellow); color: var(--vintage-coral); }

/* == Mobile Navigation == */
.mobile-menu-toggle {
  display: flex;
  font-size: 2rem;
  background: var(--vintage-coral);
  color: #fff;
  height: 42px; width: 48px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  border: none;
  line-height: 1;
  margin-left: 8px;
  transition: background 0.18s, color 0.18s;
  z-index: 230;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
@media (min-width: 1001px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 1000px) {
  .main-nav { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-accent);
  box-shadow: 0 12px 35px 5px rgba(58,56,94,0.13);
  transform: translateX(110%);
  transition: transform 0.33s cubic-bezier(.2,.8,.3,1);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px 24px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: flex;
  font-size: 2rem;
  background: var(--vintage-coral);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  border: none;
  align-self: flex-end;
  margin-bottom: 26px;
  margin-right: -6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-title);
  color: var(--color-primary);
  font-size: 1.3rem;
  padding: 17px 2px 7px 0;
  border-radius: 0 24px 24px 0;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-mint);
  color: var(--vintage-coral);
}

/* ================= HERO SECTION ================== */
.hero {
  padding: 72px 0 48px 0;
  background: var(--vintage-yellow);
  background-image: url('data:image/svg+xml;utf8,<svg width="320" height="320" xmlns="http://www.w3.org/2000/svg"><ellipse cx="160" cy="160" rx="140" ry="70" fill="%23d0b9c6" fill-opacity=".25"/><ellipse cx="180" cy="110" rx="55" ry="26" fill="%2392a984" fill-opacity=".24"/><ellipse cx="70" cy="220" rx="39" ry="20" fill="%23d36f5f" fill-opacity=".07"/></svg>');
  background-repeat: no-repeat;
  background-position: 90% 105%;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 280px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 { margin-bottom: 18px; }

@media (max-width: 800px) {
  .hero { padding: 48px 0 36px 0; }
  .hero .container { min-height: unset; }
}
@media (max-width: 500px) {
  .hero { padding: 32px 0 24px 0; }
  .hero .container { padding-left: 7px; padding-right: 7px; }
}

/* ================= CTA SECTION ================== */
.cta-section {
  background: var(--vintage-coral);
  color: var(--color-accent);
  border-radius: var(--radius-card);
  margin-bottom: 0;
  margin-top: 48px;
  padding: 42px 0 42px 0;
  box-shadow: 0 6px 28px rgba(211,111,95,0.10);
}
.cta-section h2, .cta-section p {
  color: var(--color-accent);
}
.cta-section .cta {
  background: var(--color-accent);
  color: var(--vintage-coral);
  border: 2px solid var(--color-accent);
}
.cta-section .cta:hover, .cta-section .cta:focus {
  background: var(--vintage-yellow);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* =============== TESTIMONIALS =================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 14px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fcfbf7;
  border-radius: var(--radius-card);
  box-shadow: 0 3px 16px rgba(58,56,94,0.08);
  border: 1.5px solid var(--color-secondary);
  padding: 24px 22px 20px 28px;
  min-width: 250px;
  max-width: 375px;
  margin-bottom: 20px;
  font-size: 1.09rem;
  color: #322821;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card strong {
  font-size: 1rem;
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 4px;
  align-self: flex-start;
}
.testimonial-card:before {
  content: "\201C";
  font-size: 3.1rem;
  color: var(--color-secondary);
  position: absolute;
  left: 16px; top: -14px;
  opacity: 0.14;
  font-family: var(--font-title);
  pointer-events: none;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 35px rgba(211,111,95,0.1);
  border-color: var(--vintage-green);
}

/* ================= FOOTER ================== */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 38px 0 0 0;
  border-radius: 32px 32px 0 0;
  margin-top: 52px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 2px solid var(--color-secondary);
  padding: 28px 0 14px 0;
}
.footer-content > * { flex: 1 1 220px; min-width: 190px; }
footer a {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:not(:last-child) { margin-right: 13px; }
.footer-nav a:hover, .footer-nav a:focus { color: var(--vintage-coral); }
.contact-snippet p, .contact-snippet .opening-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 7px;
}
.contact-snippet img { height: 22px; width: 22px; filter: sepia(0.2) contrast(1.15); }
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.social-links a img { width: 32px; height: 32px; filter: grayscale(0.5) sepia(0.12); transition: filter 0.14s; }
.social-links a:hover img { filter: none; }

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ==================== SERVICE/PROCESS/ABOUT LAYOUTS =================== */
.service-list, .step-list, .unique-points, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 24px;
  margin-left: 0;
}
.service-list li, .step-list li, .unique-points li, .faq-list li {
  background: var(--vintage-mint);
  border-radius: var(--radius-card);
  padding: 18px 18px 17px 24px;
  box-shadow: 0 2px 9px rgba(197,215,204,0.06);
  border-left: 5px solid var(--vintage-coral);
  color: #322821;
  font-size: 1rem;
  margin-bottom: 0;
}
.service-list h2, .service-list h3 {
  margin-bottom: 5px;
}
.step-list {
  counter-reset: step;
}
.step-list li {
  position: relative;
  padding-left: 38px;
}
.step-list li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 10px; top: 16px;
  font-family: var(--font-title);
  color: var(--vintage-coral);
  font-size: 1.3rem;
  font-weight: 800;
}
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.icon-list li {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #473f3b;
  font-size: 1.1rem;
  gap: 9px;
  padding: 7px 0 7px 0;
}
.icon-list img {
  width: 28px;
  height: 28px;
}
.unique-points li {
  background: var(--vintage-yellow);
  border-left: 5px solid var(--color-primary);
  color: var(--color-primary);
}
.faq-list li {
  background: var(--vintage-yellow);
  border-left: 5px solid var(--vintage-coral);
  color: #322821;
}
.step-by-step-guide {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.step-by-step-guide li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--vintage-mint);
  border-radius: var(--radius-card);
  padding: 14px 0 14px 14px;
  font-size: 1.1rem;
  color: #473f3b;
}
.step-by-step-guide img {
  width: 30px; height: 30px;
  margin-right: 6px;
}
.process-timeline {
  margin-top: 32px;
  background: var(--vintage-yellow);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 3px rgba(245,230,183,0.12);
  padding: 18px 24px;
}

/* Contact details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1em;
}
.contact-details li {
  display: flex; align-items: center; gap: 9px; font-size: 1.08rem;
}
.contact-details img { width: 22px; height: 22px; }
.opening-hours { font-size: 0.96rem; margin-left: 2px; display: flex; align-items: center; gap: 8px; }

/* =============== MODAL/BANNERS & ANIMATIONS ================ */
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #2b202e;
  color: #fff;
  padding: 18px 32px 20px 32px;
  box-shadow: 0 -2px 26px rgba(58,56,94,0.13);
  border-radius: 26px 26px 0 0;
  z-index: 1100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  animation: fadeInUp 0.8s cubic-bezier(.47,1.64,.41,.8);
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 10px 20px 10px; font-size:0.96rem; }
}
.cookie-banner p { color: #fff; margin: 0 0 4px 0; }
.cookie-btn {
  background: var(--vintage-coral);
  color: #fff;
  border-radius: 20px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 23px;
  margin-right: 10px;
  border: none;
  box-shadow: 0 2px 7px rgba(211,111,95,0.15);
  transition: background 0.16s, color 0.16s;
}
.cookie-btn:last-child { margin-right: 0; }
.cookie-btn.accept {
  background: var(--vintage-green);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.14);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 320px;
  max-width: 94vw;
  width: 420px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 0 8px 48px 5px rgba(211,111,95,0.23);
  z-index: 1300;
  padding: 36px 28px 28px 28px;
  transform: translate(-50%,-50%) scale(1);
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
  animation: fadeInZoom 0.33s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
}
@media (max-width: 500px) {
  .cookie-modal { min-width: 220px; width: 97vw; padding: 16px 7px 18px 9px; }
}
.cookie-modal h3 { margin-bottom: 13px; font-size:1.17rem; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 11px;
}
.cookie-modal .toggle {
  appearance: none;
  width: 42px; height: 24px;
  background: var(--vintage-mint);
  border-radius: 18px;
  position: relative;
  outline: none;
  margin-right: 8px;
  cursor: pointer;
  border: 1px solid var(--color-secondary);
  transition: background 0.18s;
}
.cookie-modal .toggle:checked {
  background: var(--vintage-green);
}
.cookie-modal .toggle::before {
  content: "";
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(58,56,94,0.09);
  transition: left 0.17s, background 0.17s;
}
.cookie-modal .toggle:checked::before {
  left: 21px;
  background: #fff;
}
.cookie-modal .category-title {
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 1rem;
}
.cookie-modal .category-desc { font-size: 0.97em; color: #82706c; }
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn { min-width: 120px; }

@keyframes fadeInUp {
  from { opacity:0; transform: translateY(120px); }
  to   { opacity:1; transform: none; }
}
@keyframes fadeInZoom {
  from { opacity:0; transform: translate(-50%,-50%) scale(.85); }
  to   { opacity:1; transform: translate(-50%,-50%) scale(1); }
}

/* =============== UTILITIES & GENERAL ================ */
.hidden { display: none !important; }
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }

/* =================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1100px) {
  .feature-grid, .blog-list, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .footer-content { flex-direction: column; gap: 18px; }
  .content-wrapper { gap: 14px; }
}
@media (max-width: 700px) {
  .section, section {
    margin-bottom: 34px;
    padding: 18px 0;
  }
  .feature, .blog-teaser, .testimonial-card, .card {
    min-width: unset;
    padding: 16px 12px 16px 12px;
  }
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.28rem; }
  .footer-content { padding: 16px 0 8px 0; }
}


/* MICRO-INTERACTIONS & TRANSITIONS */
button, a, .card, .feature, .testimonial-card, .blog-teaser {
  transition: box-shadow 0.18s, background 0.18s, border 0.18s, color 0.16s;
}
.card:active, .feature:active, .blog-teaser:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* ================= MODERN VINTAGE RETRO DECOR =================== */
body::before {
  content: '';
  display: block;
  position: fixed;
  right: 0; top: 0;
  width: 240px; height: 240px;
  background-image: url('data:image/svg+xml;utf8,<svg width="240" height="240" xmlns="http://www.w3.org/2000/svg"><ellipse cx="120" cy="60" rx="60" ry="30" fill="%23f5e6b7"/><ellipse cx="180" cy="160" rx="30" ry="15" fill="%23d36f5f" fill-opacity=".14"/></svg>');
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 600px) {
  body::before { display: none; }
}

/* Retro underline pattern for some headings */
h2, .h2 {
  position: relative;
}
h2:after, .h2:after {
  content: '';
  display: block;
  margin-top: 10px;
  width: 56px; height: 7px;
  background: var(--vintage-coral);
  border-radius: 5px;
  opacity: 0.5;
}

/* Pattern divider */
.divider {
  height: 11px;
  width: 100%;
  background-repeat: repeat-x;
  background-image: url('data:image/svg+xml;utf8,<svg width="72" height="11" xmlns="http://www.w3.org/2000/svg"><ellipse cx="18" cy="5" rx="18" ry="5" fill="%23d0b9c6"/><ellipse cx="54" cy="5" rx="18" ry="5" fill="%2392a984" fill-opacity=".6"/></svg>');
  margin: 30px 0;
}

/* ============ FORM ELEMENTS ============= */
input, select, textarea {
  background: #fffde9;
  border: 1.5px solid var(--color-secondary);
  border-radius: var(--radius-btn);
  padding: 11px 16px;
  font-size: 1.08rem;
  margin-bottom: 15px;
  width: 100%;
  color: var(--color-primary);
  font-family: var(--font-body);
  outline: none;
  transition: border 0.14s;
}
input:focus, textarea:focus {
  border-color: var(--vintage-coral);
}
label {
  font-size: 1.085rem;
  font-family: var(--font-title);
  color: var(--color-primary);
  margin-bottom: 6px;
}
button, input[type=submit] {
  background: var(--vintage-coral);
  color: #fff;
  border-radius: var(--radius-btn);
  font-family: var(--font-title);
  font-size: 1.06rem;
  font-weight: 600;
  padding: 12px 36px;
  border: none;
  box-shadow: 0 1.5px 4px rgba(58,56,94,0.05);
}
button:hover, input[type=submit]:hover {
  background: var(--color-primary);
}

/* "Thank you" page tweaks */
.thank-you-message {
  font-size: 1.16rem;
  color: var(--vintage-coral);
  font-family: var(--font-title);
  margin-bottom: 22px;
}

/* =============== PRINT SUPPORT ============== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; }
}
