/* ------------------------------------------------- */
/*                   CSS RESET & BASE                */
/* ------------------------------------------------- */
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F3E8;
  color: #2D2926;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #22436C;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C39C60;
  text-decoration: none;
}
button, input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}
:root {
  --color-primary: #22436C;
  --color-secondary: #E1E7F0;
  --color-accent: #C39C60;
  --color-brand-accent: #A07419;
  --color-bg: #F7F3E8;
  --color-text: #2D2926;
  --color-border: #D2B48C;
  --color-footer: #22436C;
  --color-white: #fff;
}

/* ------------------------------------------------- */
/*          VINTAGE RETRO BASE TYPOGRAPHY            */
/* ------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 1px;
  color: #22436C;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  text-shadow: 1px 2px 0 #FFF9E5, 0 2px 8px #A0741911;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  text-shadow: 1px 1px 0 #FFF9E5;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-brand-accent);
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, span, label, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #4D4637;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
.text-section {
  margin-bottom: 24px;
}
.star-ratings {
  letter-spacing: 5px;
  color: #C39C60;
  font-size: 1.5rem;
  font-family: 'Montserrat', cursive, sans-serif;
  margin: 10px 0 20px 0;
}

/* ------------------------------------------------- */
/*      SPACING, CONTAINER, FLEXBOX LAYOUTS          */
/* ------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.header-container, .footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF8E2;
  border-radius: 18px;
  box-shadow: 0 2px 18px #c39c6065;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px #b5a3681a;
  padding: 28px 22px;
}
.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 {
  background: #fffaf3;
  border: 1.5px solid #dbc48a;
  box-shadow: 0 2px 12px #b5a36825, 0 0 0 5px #fff8e2c0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Grid replacements using FLEXBOX */
.district-grid, .service-cards, .icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.district-card, .service-card {
  background: #fff;
  border: 1.5px solid #bda067;
  border-radius: 14px;
  box-shadow: 0 2px 14px #c1a77122;
  padding: 24px 18px 18px 18px;
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.district-card img, .service-card img {
  margin-bottom: 12px;
  width: 48px;
  height: 48px;
}
.process-icons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 16px 0 0 0;
}
.process-icons img {
  width: 50px;
  height: 50px;
  filter: sepia(0.35) hue-rotate(-20deg) brightness(1.07) contrast(0.98);
}

/* Steps, list, alerts, and ul/ol layout */
.features ul, .service-list, .value-list, .advantage-list, .feature-list, .tips-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.features ul li, .service-list li, .advantage-list li, .feature-list li, .tips-list li, .qa-faq ul li, .qa ul li, .value-list li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  gap: 10px;
}
.features ul li img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  filter: sepia(.18) saturate(0.8) hue-rotate(-13deg);
}
ol {
  padding-left: 1.3em;
  counter-reset: funk-retro;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
ol.stepper li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 35px;
}
ol.stepper li:before {
  content: counter(funk-retro, decimal-leading-zero) ". ";
  counter-increment: funk-retro;
  color: var(--color-brand-accent);
  font-family: 'Montserrat', 'Roboto', monospace;
  font-size: .98em;
  font-weight: 700;
  background: #f8efd3;
  border-radius: 50px;
  padding: 3px 11px;
  margin-right: 9px;
  position: absolute;
  left: 0;
  top: 1px;
}
.alert-box {
  background: #faecd8;
  border-left: 5px solid #C39C60;
  border-radius: 11px;
  padding: 18px 18px 18px 30px;
  font-weight: 500;
  color: #7c5e2e;
  margin-top: 8px;
  box-shadow: 0 2px 8px #dec98e30;
}

/* Map snippet style */
.map-snippet {
  background: #fff6d3;
  border: 1.5px solid #ecd5a3;
  border-radius: 9px;
  margin: 18px 0 0 0;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7d6531;
  font-style: italic;
  font-size: .98em;
}
.map-snippet img {
  width: 22px;
  height: 22px;
}

/* ------------------------------------------------- */
/*        HEADER, NAVIGATION & MOBILE MENU           */
/* ------------------------------------------------- */
header {
  background: #fff7e4 url('../assets/pattern-vintage.svg') repeat;
  border-bottom: 3.5px solid #e1d3ac;
  box-shadow: 0 2px 20px #94845514, 0 3px 0 #d9c99c09;
  position: relative;
  z-index: 30;
}
.header-container {
  gap: 24px;
}
.logo img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  background: #F6EEE2;
  box-shadow: 0px 1.5px 8px #bda06718;
  padding: 6px 10px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 21px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: var(--color-primary);
  text-shadow: 0 1px 0 #fff8e2c0;
  border-radius: 7px;
  padding: 8px 16px;
  letter-spacing: 0.6px;
  transition: background .2s, color .2s;
}
.main-nav a:hover {
  background: #ffedd0;
  color: var(--color-brand-accent);
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.8px;
  cursor: pointer;
  background-color: var(--color-brand-accent);
  color: #fff;
  box-shadow: 0 2px 12px #bda06725;
  border: none;
  text-decoration: none;
  margin-left: 12px;
  margin-right: 5px;
  transition: background 0.2s, transform .14s;
  position: relative;
  z-index: 5;
}
.btn-primary:hover, .btn-primary:focus {
  background: #C39C60;
  color: #fffdf5;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #22436C;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #446A9E;
  color: #fff9e7;
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  font-size: 2.1rem;
  background: var(--color-brand-accent);
  color: #fff;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  box-shadow: 0 2px 8px #bda06723;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  z-index: 1021;
}
.mobile-menu-toggle:active {
  background: #b38e40;
}
/* ----- Mobile Navigation Overlay ----- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #f9f6edee url('../assets/pattern-vintage.svg') repeat;
  z-index: 1020;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.68,-0.55,.27,1.55);
  will-change: transform;
  box-shadow: 14px 0 38px #b38e4015;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 32px 22px 32px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #22436C;
  background: #eedefa;
  border: none;
  border-radius: 14px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 14px;
  margin-right: 2px;
  cursor: pointer;
  box-shadow: 0 2.5px 14px #a57e3515;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #cac8be;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.19rem;
  color: #7d6935;
  background: #fff7e4;
  padding: 12px 8px 12px 0px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.7px;
  transition: background .19s, color .18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffe8b6;
  color: var(--color-brand-accent);
}

@media (max-width: 1050px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .header-container, .footer-container {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 15px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .logo img {
    height: 44px;
    padding: 4px 7px;
  }
  .container {
    padding: 0 9px;
  }
}

/* ------------------------------------------------- */
/*                 FOOTER & LEGAL NAV                */
/* ------------------------------------------------- */
footer {
  background: #22436C url('../assets/pattern-vintage.svg') repeat;
  color: #fff9e8;
  padding: 32px 0 18px 0;
  border-top: 5px solid #C39C60;
  letter-spacing: 0.5px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #fff9e0;
  text-decoration: underline;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  border-radius: 7px;
  padding: 5px 11px;
  transition: background .21s;
}
.footer-nav a:hover {
  background: #fff4d420;
  color: #faecd8;
}
footer p {
  color: #f9f5e7;
  font-size: .98rem;
}

/* ------------------------------------------------- */
/*              HERO SECTIONS & CTA                  */
/* ------------------------------------------------- */
.hero {
  background: #F7F3E8 url('../assets/pattern-vintage.svg') repeat;
  border-bottom: 4px dashed #c39c6023;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 0 42px 0;
  margin-bottom: 32px;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  align-items: flex-start;
  background: #FFF9EDee;
  border-radius: 17px;
  box-shadow: 0 3px 32px #dabd8e17;
  padding: 34px 26px;
}
.cta-section {
  background: #fff7e6;
  border-radius: 15px;
  box-shadow: 0 3px 42px #dabd8e29;
  margin: 52px 0 0 0;
  padding: 40px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}

/* ------------------------------------------------- */
/*                 SERVICES, CARDS                   */
/* ------------------------------------------------- */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.services .service-list li {
  background: #fffcf6;
  border: 1.5px solid #d2b892;
  border-radius: 15px;
  box-shadow: 0 1px 12px #c9a35115;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 310px;
  margin-bottom: 20px;
  padding: 18px 15px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  text-align: left;
}
.services .service-list h3 {
  font-size: 1.12rem;
  color: var(--color-brand-accent);
  margin-bottom: 5px;
}
.services .service-list span {
  font-size: .97rem;
  font-weight: 600;
  color: #806546;
  font-family: 'Montserrat', monospace;
}
/* .service-cards already styled above */
.service-card h3 {
  color: var(--color-brand-accent);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.service-card span {
  font-size: .96rem;
  font-weight: 700;
  color: #8d6b2c;
  font-family: 'Montserrat', monospace;
}

/* ------------------------------------------------- */
/*    TESTIMONIALS AND REVIEWS: High Contrast        */
/* ------------------------------------------------- */
.testimonials {
  background: #fffaf3;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 10px;
  box-shadow: 0 4px 32px #c1a77122;
}
.testimonials h2 {
  color: var(--color-brand-accent);
}
.testimonial-card p, .testimonial-card span {
  color: #1A1713;
}
.testimonial-card span {
  font-size: .97rem;
  font-family: 'Montserrat', sans-serif;
  color: #6A5726;
}

/* ------------------------------------------------- */
/*         VALUE, Q/A, LEGAL, ABOUT, TEXT            */
/* ------------------------------------------------- */
.value-list li strong {
  color: var(--color-brand-accent);
}
.trust-elements {
  background: #FFF8E0;
  color: #7f6737;
  border: 1.5px solid #e1d3ac;
  border-radius: 10px;
  padding: 14px 20px;
  margin: 12px 0 0 0;
  font-style: italic;
  font-size: .98rem;
}
.legal-section, .about {
  background: #f7f3e8;
  border-radius: 18px;
  box-shadow: 0 2px 28px #C39C6012;
  margin-bottom: 60px;
  padding: 40px 18px;
}
.legal-section h1 {
  color: var(--color-brand-accent);
  font-size: 2rem;
  text-shadow: 1px 2px 0 #FFF9E5, 0 2px 8px #C39C6011;
}
.legal-section h2 {
  color: #3a301a;
  font-size: 1.17rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 7px;
}
.legal-section ul li {
  margin-bottom: 7px;
  line-height: 1.6;
}

/* ------------------------------------------------- */
/*                 COOKIE CONSENT BANNER             */
/* ------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #FFF8E2;
  color: #342d20;
  box-shadow: 0 -2.5px 35px #c39c6018;
  border-top: 4px solid #C39C60;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 26px 18px 20px 18px;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieBannerIn 0.32s cubic-bezier(.77,0,.175,1) 1;
}
@keyframes cookieBannerIn {
  from { transform: translateY(110px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cookie-banner .cookie-btn, .cookie-banner .cookie-settings-btn {
  background: #22436c;
  color: #fff9e0;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  border: none;
  margin: 0 8px;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 2px 9px #22436c13;
  transition: background .16s, color .16s;
}
.cookie-banner .cookie-btn.accept {
  background: #C39C60;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #b5b5b5;
  color: #342d20;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #A07419;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #8a7e6e;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  border: 2px solid #C39C60;
  color: #C39C60;
  padding: 10px 20px;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #fff2dd;
  color: #8a671a;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10000;
  transform: translate(-50%,-50%) scale(0.88);
  min-width: 320px;
  width: 92vw;
  max-width: 410px;
  background: #fff8e2;
  border-radius: 20px;
  box-shadow: 0 8px 46px #c39c601e;
  padding: 38px 24px 24px 24px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.4s cubic-bezier(.77,0,.175,1) 1;
}
.cookie-modal.active {
  display: flex;
  animation: cookieModalIn 0.4s cubic-bezier(.77,0,.175,1) 1;
}
@keyframes cookieModalIn {
  from { transform: translate(-50%,-44%) scale(0.82); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.15rem;
  color: var(--color-brand-accent);
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.01rem;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 43px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d9c9a0;
  border-radius: 12px;
  transition: background .17s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #C39C60;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  height: 15px;
  width: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform .17s;
  box-shadow: 0 1px 6px #C39C6011;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 17px;
}
.cookie-modal .cookie-btn-row .cookie-btn {
  padding: 10px 18px;
}

/* ------------------------------------------------- */
/*          RESPONSIVE ADJUSTMENTS - MOBILE           */
/* ------------------------------------------------- */
@media (max-width: 800px) {
  .services .service-list {
    flex-direction: column;
  }
  .card-container, .district-grid, .content-grid, .testimonial-slider, .service-cards, .icon-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 730px) {
  .hero, .cta-section, .legal-section, .about, .features, .section, .testimonials {
    padding: 18px 2px;
  }
  .hero .content-wrapper, .cta-section .content-wrapper {
    padding: 22px 6px 22px 10px;
  }
  ol, .feature-list, .tips-list, .qa-faq ul, .qa ul {
    gap: 11px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.14rem; }
  .hero .content-wrapper, .cta-section .content-wrapper {
    padding: 14px 4px 18px 6px;
  }
  .district-card, .service-card, .testimonial-card {
    padding: 11px 6px 15px 9px;
    border-radius: 10px;
    min-width: 0;
    width: 100%;
    max-width: unset;
  }
  .footer-container {
    padding: 12px 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 0.97rem;
    padding: 13px 5vw 16px 5vw;
  }
}
@media (max-width: 500px) {
  .section, .about, .legal-section, .testimonials {
    padding: 10px 2px 20px 2px;
  }
  .footer-nav {
    gap: 10px;
  }
}
/* Responsive text-image-section adjustments */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* ------------------------------------------------- */
/*         MICRO-INTERACTIONS & VINTAGE TOUCHES      */
/* ------------------------------------------------- */
.card, .district-card, .service-card, .testimonial-card {
  transition: box-shadow .15s, transform .13s;
}
.card:hover, .district-card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 24px #bda06745, 0 0 0 7px #fffaf3d0;
  transform: translateY(-3px) scale(1.03);
}
footer .logo img {
  filter: sepia(.23) hue-rotate(-14deg) brightness(1.03) contrast(.98) drop-shadow(2px 2px 0 #e1d3ac33);
}
.hero, .section, .testimonials, .about, .cta-section {
  background-image: url('../assets/pattern-vintage.svg');
  background-repeat: repeat;
  background-size: 380px auto;
}

hr {
  border: none;
  border-top: 2px dashed #dbc48a;
  margin: 32px 0;
}

div[role="dialog"], dialog {
  background: #fffbeb !important;
  box-shadow: 0 7px 42px #c39c601f !important;
  border-radius: 17px !important;
}

::-webkit-scrollbar {
  width: 9px;
  background-color: #fff3e6;
}
::-webkit-scrollbar-thumb {
  background: #dbc48a;
  border-radius: 7px;
}

/* Accessibility: Focus styles */
a:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus, .cookie-settings-btn:focus, .footer-nav a:focus {
  outline: 2.5px dashed #C39C60;
  outline-offset: 2.5px;
  background: #ffeebb!important;
  color: #22436c!important;
}

/* Remove :focus outline from click, only show on keyboard nav */
html:not(.user-is-tabbing) a:focus, html:not(.user-is-tabbing) button:focus {
  outline: none;
}

/* Hide visually but keep for screen readers */
.sr-only { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
