/* ===============================
   CSS 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;
}
body {
  line-height: 1.5;
  background: #F5F3EA;
  color: #274046;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ===============
VINTAGE RETRO ROOTS
================== */
:root {
  --color-primary: #274046;
  --color-secondary: #BDA382;
  --color-accent: #F5F3EA;
  --vintage-orange: #E87D3E;
  --vintage-green: #A7C4A0;
  --vintage-red: #CB6158;
  --vintage-blue: #3A6073;
  --vintage-yellow: #F6E27A;

  --font-display: 'Montserrat', 'Oswald', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', 'IBM Plex Sans', Arial, sans-serif;

  --shadow-card: 0 6px 24px -8px rgba(39,64,70,0.12),0 1.5px 3px 0 rgba(189,163,130,0.10);
  --radius-main: 16px;
  --radius-btn: 32px;
  --border-main: 2px solid #BDA382;
  --transition-btn: all 0.22s cubic-bezier(0.57,0.24,0.36,1.0);
}

/* RETRO VINTAGE DECORATIVE PATTERNS */
body {
  position: relative;
  font-family: var(--font-body);
  background-color: var(--color-accent);
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  text-shadow: 0 2px 2px rgba(39,64,70,0.07);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--vintage-orange);
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--vintage-blue);
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--vintage-red);
}
p, ul, ol, li, span {
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.65;
}
.subheadline {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--vintage-green);
  margin-bottom: 24px;
}
strong {
  color: var(--vintage-orange);
  font-weight: 700;
}
em {
  color: var(--color-secondary);
  font-family: var(--font-display);
}

/* ====================
CONTAINER & LAYOUTS
==================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ------------ FEATURES AND FLEXBOX PATTERNS ------------ */
.feature_grid, .service-list, .service-detailed-list, .blog-list, .project-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature_grid li, .service-list > div, .service-detailed-list > li, .blog-list > article, .project-snippets > li {
  background: #FFF;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  border: 1.5px solid #F5F3EA;
  padding: 24px 20px 20px 20px;
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.15s;
}
.feature_grid li:hover, .service-list > div:hover, .service-detailed-list > li:hover, .blog-list > article:hover {
  box-shadow: 0 8px 24px -6px rgba(39, 64, 70, 0.14),0 2px 5px 0 rgba(189, 163, 130, 0.13);
  border-color: var(--color-secondary);
}

.usp-list, .benefit-points, .brand-values, .faq-list, .tip-list, .solution-overview ul, .blog-categories ul {
  padding-left: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}
.process-list li {
  font-family: var(--font-body);
  background: var(--color-accent);
  border-left: 6px solid var(--vintage-orange);
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 6px;
}

/* Cards and flex patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 16px 36px -8px rgba(39, 64, 70, 0.17); 
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFBE6;
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 8px -2px rgba(39, 64, 70, 0.09);
  margin-bottom: 20px;
  min-width: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.01) rotate(-1.2deg);
  box-shadow: 0 8px 24px -6px #BDA38233;
  background: #FFF7CE;
}
.testimonial-card p {
  color: #2A1E14;
  font-size: 1.05rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.98rem;
  color: var(--color-primary);
  margin-left: 16px;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============= HERO SECTIONS ============ */
.hero {
  background: repeating-linear-gradient(135deg, var(--vintage-yellow) 0 45px, var(--color-accent) 50px 100px);
  box-shadow: 0 12px 48px -20px #BDA38238;
  border-bottom: 2px solid var(--color-secondary);
  margin-bottom: 0;
  padding: 50px 0 30px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  color: var(--vintage-orange);
  font-size: 3rem;
  text-shadow: 1px 2px 0 #BDA38244, 0px 5px 10px #FFF2B866;
}
.hero .subheadline {
  color: var(--vintage-green);
}

/* CTA BUTTONS */
.cta, .cta:visited {
  background: var(--vintage-orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 0.85em 2em;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px -4px #CB615811;
  border: none;
  letter-spacing: 0.04em;
  display: inline-block;
  transition: var(--transition-btn);
  outline: none;
}
.cta:hover, .cta:focus {
  background: var(--vintage-red);
  color: #fff;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 4px 16px -7px #E87D3E55;
}


/* --------------- HEADER & MAIN NAVIGATION --------------- */
header {
  background: var(--color-accent);
  border-bottom: 2px solid var(--color-secondary);
  box-shadow: 0 4px 24px -12px #BDA38228;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 20px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 500;
  padding: 4px 18px;
  font-size: 1rem;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
nav .cta {
  margin-left: 18px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.08rem;
  border-radius: var(--radius-btn);
  padding: 0.55em 1.6em;
  box-shadow: 0 2.5px 10px -4px #BDA38233;
  transition: var(--transition-btn);
}
nav .cta:hover, nav .cta:focus {
  background: var(--vintage-orange);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--vintage-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  padding: 10px 14px;
  margin-left: 18px;
  transition: box-shadow 0.18s;
  box-shadow: 0 1.5px 8px #BDA38228;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-primary);
}

/* ------------- MOBILE NAV ------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--color-accent);
  box-shadow: -12px 0 36px -8px #BDA38244;
  z-index: 200;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.83,0.04,0.24,1.01);
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--vintage-red);
  color: #fff;
  border: none;
  border-radius: 42px;
  font-size: 2rem;
  align-self: flex-end;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px -6px #BDA38233;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vintage-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-display);
  border-radius: 22px;
  padding: 12px 8px;
  font-size: 1.17rem;
  text-align: left;
  transition: background 0.16s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* Hide normal nav on mobile */
@media (max-width:986px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width:987px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Responsive spacing*/
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  .section {
    padding: 26px 8px;
  }
  .hero {
    padding: 30px 0 17px 0;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature_grid, .service-list, .blog-list, .service-detailed-list, .project-snippets {
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px 10px;
    min-width: unset;
    margin-bottom: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  header .container {
    height: 62px;
    padding: 0 8px;
  }
  header img {
    height: 34px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.28rem;
    margin-bottom: 12px;
  }
}

/* ============= TESTIMONIAL SLIDER (simple flex scroll) ============== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.testimonial-slider .testimonial-card {
  min-width: 320px;
  flex: 1 1 340px;
}

/* ============ FOOTER =========== */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  margin-top: 64px;
  border-top: 3px solid var(--color-secondary);
  padding: 40px 0 24px 0;
  font-family: var(--font-body);
  position: relative;
  z-index: 10;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-accent);
}
.footer-brand img {
  height: 44px;
  width: 44px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .footer-legal a {
  color: var(--color-accent);
  opacity: 0.9;
  font-size: 1.04rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--vintage-yellow);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  color: var(--color-accent);
  align-items: flex-start;
  margin-top: 6px;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.82;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}
.footer-social img {
  height: 32px;
  width: 32px;
  border-radius: 8px;
  background: #F5F3EA33;
  padding: 3px;
  box-shadow: 0 2px 10px -4px #BDA38233;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}


/* ===================== OTHER COMPONENTS ==================== */
.quality-commitments, .process-explanation, .solution-overview, .expert-advice {
  background: #FFF;
  border: 2px dashed var(--color-secondary);
  border-radius: 12px;
  padding: 18px 20px 14px;
  margin-bottom: 18px;
}
.quality-commitments h3, .expert-advice h3 {
  color: var(--vintage-red);
  font-size: 1.08rem;
  margin-bottom: 5px;
}
.solution-overview h4 {
  color: var(--vintage-blue);
  margin-bottom: 4px;
  font-size: 1.02rem;
  font-weight: 600;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1.5px solid var(--color-secondary);
  border-radius: 26px;
  padding: 4px 14px;
  margin: 18px 0 0 0;
  width: 100%;
  max-width: 340px;
}
.search-bar input {
  flex: 1 1 auto;
  border: none;
  font-size: 1.04rem;
  background: transparent;
  color: var(--color-primary);
  padding: 5px 0;
}
.search-bar button {
  background: var(--vintage-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  height: 33px;
  width: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.search-bar button:hover {
  background: var(--vintage-red);
}
.search-bar img {
  height: 19px;
  width: 19px;
}

.input, input, textarea, select {
  background: #F5F3EA;
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vintage-orange);
  background: #FFF;
}

.location-map {
  background: #FFF;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #BDA38263;
  margin-top: 8px;
}
.confirmation-message, .next-steps {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 22px -10px #BDA38222;
  padding: 19px 22px;
  border: 1px solid #BDA38233;
}
.confirmation-message {
  color: var(--vintage-green);
  font-size: 1.12rem;
  font-family: var(--font-display);
}

/* BLOG CATEGORIES */
.blog-categories {
  margin-top: 12px;
  margin-bottom: 6px;
}
.blog-categories h4 {
  font-size: 1.04rem;
  color: var(--vintage-orange);
  margin-bottom: 4px;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}
.blog-categories li {
  background: var(--vintage-blue);
  color: #fff;
  border-radius: 18px;
  padding: 4px 12px;
  font-size: 0.97rem;
  font-family: var(--font-display);
}

/* FAQ */
.faq-list li {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 13px 20px 13px 16px;
  border: 1.5px solid var(--color-secondary);
  box-shadow: 0 1.5px 6px #BDA38221;
}
.faq-list strong {
  display: block;
  font-size: 1.05rem;
  color: var(--vintage-blue);
  margin-bottom: 2px;
}

/* ============= COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFFBE6;
  color: #402711;
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 -2px 18px -5px #BDA38255;
  z-index: 5000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px 30px 18px 30px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  visibility: visible;
  opacity: 1;
  transition: transform 0.32s, opacity 0.32s;
}
.cookie-banner.hide {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.cookie-btn {
  background: var(--vintage-orange);
  color: #fff;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 20px;
  border: none;
  font-family: var(--font-display);
  margin-right: 6px;
  box-shadow: 0 1.5px 6px #CB615822;
  transition: background .16s, color .12s;
  font-weight: 600;
}
.cookie-btn.secondary {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--vintage-red);
  border: 1.5px solid var(--vintage-red);
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.05);
  background: var(--vintage-green);
  color: #222;
}
.cookie-btn.settings:hover {
  background: var(--vintage-red);
  color: #fff;
  border: 1.5px solid var(--vintage-red);
}

/* ------------ COOKIE CONSENT MODAL --------------- */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #274046cc;
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s;
}
.cookie-modal-backdrop.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #FFFBE6;
  border-radius: 24px;
  box-shadow: 0 10px 60px -4px #BDA38255;
  border: 3px solid var(--color-secondary);
  max-width: 98vw;
  width: 420px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  position: relative;
  animation: cookie-modal-in .34s ease-in;
}
@keyframes cookie-modal-in {
  0% {opacity:0; transform:scale(0.6) translateY(50px);}
  80%{opacity:1; transform:scale(1.06) translateY(-10px);}
  100%{opacity:1; transform:scale(1) translateY(0);}
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #BDA38277;
  padding: 6px 0 6px;
  margin-bottom: 7px;
  font-family: var(--font-body);
}
.cookie-modal .cookie-essential {
  color: #6F5700;
  font-weight: bold;
  font-size: 1.08rem;
}
.cookie-modal .category-toggle {
  appearance: none;
  width: 36px;
  height: 19px;
  background: #F6E27A;
  border-radius: 16px;
  border: 1px solid var(--color-secondary);
  position: relative;
  transition: background 0.19s;
  outline: none;
}
.cookie-modal .category-toggle:checked {
  background: var(--vintage-green);
}
.cookie-modal .category-toggle:before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  height: 15px; width: 15px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 2px 5px #BDA38211;
  transition: left .17s;
}
.cookie-modal .category-toggle:checked:before {
  left: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--vintage-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.1rem; font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
  transition: background 0.17s;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--vintage-orange);
}


/* ============= MICROS / HOVER EFFECTS ============= */
av a, .cta, .cookie-btn, .blog-categories li, .search-bar button, .footer-nav a, .footer-legal a, .cookie-modal-close {
  transition: background 0.15s, color 0.11s, box-shadow 0.18s, transform 0.13s;
}

/* ============== RETRO/BLOCK DECORATIVE ELEMENTS ============== */
.section {
  background: repeating-linear-gradient(-45deg, #FFF 0 50px, #F5F3EA 51px 100px);
  border-radius: 28px;
  box-shadow: 0 9px 48px -24px #BDA38223;
}

/* Decorative accent blocks for retro feel */
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: -34px; top: 0px;
  width: 44px; height: 44px;
  background: var(--vintage-orange);
  border-radius: 18px;
  opacity: 0.09;
  z-index: 0;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: -28px; bottom: -8px;
  width: 54px; height: 24px;
  background: var(--vintage-blue);
  border-radius: 14px;
  opacity: 0.08;
  z-index: 0;
}

/* --- Prevent content overlap by section spacing --- */
@media (max-width:520px) {
  .content-wrapper,
  .section {
    padding: 7px 2px !important;
    gap: 10px !important;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.05rem;
  }
}

/* Utility: visually-hide (for accessibility)*/
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0;
}

/* ================== PRINT STYLES ================== */
@media print {
  nav, .cta, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  body, .container {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
  }
}

/* Custom fonts from Google Fonts (in HTML: add link for Montserrat and Open Sans with weights used) */
/*
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Montserrat:700,800,900|Open+Sans:400,600,700&display=swap'>
*/
