/* ========================================================================
   RESET & BASELINE NORMALIZE
   ======================================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2D2B2B;
  background: #F9F7F0;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #26547C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #9B4234;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  color: #3B3327;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 2px rgba(137, 98, 54, 0.09);
}
h1 { font-size: 2.75rem; line-height: 1.1; letter-spacing: 0.01em; }
h2 { font-size: 2rem;  letter-spacing: 0.01em; }
h3 { font-size: 1.25rem;  letter-spacing: 0.01em; }
h4 { font-size: 1.125rem; }

strong { font-weight: 700; }

subheadline, .subheadline {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  color: #6E583F;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: none;
  margin-bottom: 8px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffaf5;
  border-radius: 8px;
  box-shadow: 0 4px 32px 0 rgba(176, 152, 111, 0.10);
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========================================================================
   BRAND VINTAGE/RETRO COLOR SCHEME & PATTERN
   ======================================================================== */
:root {
  --primary: #26547C;         /* strong blue */
  --secondary: #FFD166;       /* soft retro yellow */
  --accent: #F5F5F5;          /* soft cream */
  --retro-rust: #9B4234;      /* retro rust red */
  --retro-tan: #EDC79B;       /* faded tan */
  --retro-olive: #6E583F;     /* dark olive accent */
  --retro-green: #37966F;     /* muted green */
  --retro-shadow: rgba(147, 90, 76, 0.11);
  --grey-bg: #F9F7F0;
}

body {
  background: var(--grey-bg);
}

/* Retro geometric background for hero/banner sections */
.hero, .thank-you {
  background: repeating-linear-gradient(
    135deg,
    var(--accent),
    var(--accent) 70px,
    #ffe7c2 70px,
    #ffe7c2 140px
  );
  border-bottom: 6px dashed var(--secondary);
}

/* ========================================================================
   HEADER & NAVIGATION
   ======================================================================== */
header {
  background: #fff6de;
  border-bottom: 3px solid var(--secondary);
  box-shadow: 0 3px 16px 0 var(--retro-shadow);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 4px 0 2px 0;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
header nav a:hover, header nav a.active {
  color: var(--retro-rust);
  border-bottom: 2px solid var(--retro-rust);
}
header img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 2px #b0986f14);
}
.cta-button {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 22px 0 #79886815;
  transition: background 0.22s, color 0.18s, box-shadow 0.22s;
  cursor: pointer;
  outline: none;
  margin-left: 14px;
  position: relative;
  text-shadow: 0px 2px 5px #ffce6e26;
}
.cta-button:hover, .cta-button:focus {
  background: var(--retro-rust);
  color: var(--secondary);
  box-shadow: 0 2px 18px 0 #9b423426;
}

/* ========================================================================
   MOBILE BURGER MENU
   ======================================================================== */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-tan);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-size: 2.2rem;
  padding: 2px 13px 5px 13px;
  box-shadow: 0 1px 6px 0 #9B423416;
  cursor: pointer;
  z-index: 111;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--retro-rust);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fffaf5;
  box-shadow: 0 6px 40px 0 #3821001c;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.58,.01,.48,1);
  display: flex;
  flex-direction: column;
  padding: 0 22px;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 4px 70px 0 #4A402366;
}
.mobile-menu-close {
  margin-top: 19px;
  align-self: flex-end;
  background: var(--retro-tan);
  color: var(--primary);
  border: none;
  border-radius: 6px;
  padding: 6px 16px 4px 16px;
  cursor: pointer;
  font-size: 2.2rem;
  box-shadow: 0 1px 8px 0 #9B423426;
  transition: background 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--retro-rust);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 44px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px dashed var(--retro-tan);
  transition: color 0.18s;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-rust);
  background: var(--secondary);
  border-radius: 5px;
}

@media (max-width: 1024px) {
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */
.hero {
  padding: 62px 0 54px 0;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero h1 {
  font-size: 3rem;
  color: var(--primary);
  text-shadow: 0 4px 18px #FFF0C033;
}
.hero .subheadline {
  font-size: 1.36rem;
  color: var(--retro-olive);
  text-align: center;
  margin-bottom: 9px;
}
.hero .cta-button {
  margin-top: 18px;
  margin-left: 0;
}

/* ========================================================================
   FEATURES & GRID CARDS
   ======================================================================== */
.features, .feature-grid, .benefits-grid, .parents-benefits-grid, .icon-benefits, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}
.feature,
.benefit,
.feature-icon {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 14px 0 #9B42341b;
  padding: 30px 28px;
  flex: 1 1 230px;
  min-width: 236px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px dashed var(--retro-tan);
  transition: box-shadow 0.22s, border-color 0.18s;
}
.feature img, .benefit img, .feature-icon img {
  width: 42px; height: 42px;
  filter: sepia(0.4) contrast(1.1) brightness(0.92);
  margin-bottom: 12px;
}
.feature h3, .benefit span, .feature-icon span {
  font-size: 1.22rem;
  color: var(--retro-rust);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.feature:hover, .benefit:hover, .feature-icon:hover {
  box-shadow: 0 7px 30px 0 #9B42343a;
  border-color: var(--secondary);
}

/* Features/benefits rows on mobile */
@media (max-width: 790px) {
  .feature-grid, .benefits-grid, .parents-benefits-grid, .icon-benefits, .feature-icons {
    flex-direction: column;
    gap: 15px;
  }
}

/* ========================================================================
   SERVICES, LISTS & PRICING
   ======================================================================== */
.service-summary-list,
.full-service-list,
.culture-trips-list,
.family-trips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}

.service-summary-list li,
.full-service-list li,
.culture-trips-list li,
.family-trips-list li {
  background: #fff;
  border: 2px solid var(--secondary);
  box-shadow: 0 2px 10px 0 #b0986f11;
  border-radius: 10px;
  padding: 30px 20px 20px 28px;
  min-width: 270px;
  max-width: 350px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-summary-list li h3, .full-service-list li h3, .culture-trips-list li h3, .family-trips-list li h3 {
  color: var(--primary);
  font-size: 1.16rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 800;
}
.service-price {
  color: var(--retro-olive);
  font-size: 1.1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  background: var(--secondary);
  border-radius: 6px;
  padding: 4px 12px;
  align-self: flex-start;
  margin-top: 7px;
}
.service-summary-list li a,
.full-service-list li a,
.culture-trips-list li a,
.family-trips-list li a {
  margin-top: 10px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.13s;
}
.service-summary-list li a:hover,
.full-service-list li a:hover,
.culture-trips-list li a:hover,
.family-trips-list li a:hover {
  color: var(--retro-rust);
}
.cta-service-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Responsive lists */
@media (max-width: 980px) {
  .service-summary-list,
  .full-service-list,
  .culture-trips-list,
  .family-trips-list {
    flex-direction: column;
    gap: 14px
  }
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 #26547C14;
  margin-bottom: 60px;
  padding: 40px 20px;
  border: 1.5px solid var(--retro-tan);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 26px 24px 30px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 28px 0 #26547C18;
  border: 2px solid var(--secondary);
  min-width: 240px;
  max-width: 335px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border-color 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 42px 0 #9b423445;
  border-color: var(--retro-rust);
}
.testimonial-card p {
  color: #41311c;
  font-size: 1.1rem;
}
.star-rating span {
  color: #FFD166;
  font-size: 1.33rem;
  letter-spacing: 0.06em;
  text-shadow: 0px 2px 3px #D8A45B55;
}
.testimonial-author {
  color: var(--primary);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.99rem;
  margin-top: -4px;
}

@media (max-width: 850px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
}

/* ========================================================================
   CARDS & FLEX CONTAINERS
   ======================================================================== */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 #9B423411;
  padding: 32px 26px;
  margin-bottom: 20px;
  position: relative;
  border: 2px dashed var(--retro-tan);
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 240px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* ========================================================================
   FLEXBOX SECTION PATTERNS (MANDATORY)
   ======================================================================== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ========================================================================
   OTHER LISTS, ICONS, HIGHLIGHT BLOCKS
   ======================================================================== */
.icon-list, .core-values-list, .feature-highlights, .unique-offerings, .experience-facts ul, .child-friendly-details ul, .safety-highlights, .terms_of_service_text {
  margin-top: 10px;
  margin-bottom: 12px;
  padding-left: 32px;
  color: #60492D;
  font-size: 1.03em;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.icon-list img { width: 24px; vertical-align: middle; margin-right: 9px; }

.mission-statement, .brand-mission, .consultation-packages, .quick-response-highlight, .service-details, .child-friendly-details, .next-steps-information {
  background: var(--retro-tan);
  margin-top: 19px;
  border-radius: 9px;
  padding: 22px 20px 17px 20px;
  color: #402A16;
  box-shadow: 0 2px 16px 0 #B0986F15;
  font-size: 1.1rem;
}
.mission-statement h3, .brand-mission h3, .consultation-packages h3, .service-details h3, .child-friendly-details h3, .next-steps-information h3 {
  color: var(--primary);
}

/* ========================================================================
   ADDRESS & FOOTER
   ======================================================================== */
address, .address-brief, .contact-information {
  font-style: normal;
  font-family: 'Open Sans', sans-serif;
  color: #6E583F;
  margin-bottom: 13px;
  font-size: 1.02em;
}
.opening-hours, .address-brief span {
  font-size: 0.98em;
  color: #9B4234;
}
footer {
  background: #fff6de;
  border-top: 3px dashed var(--secondary);
  box-shadow: 0 -1px 11px #b0986f09;
  font-size: 0.98em;
  text-align: center;
  padding: 32px 0 25px 0;
  position: relative;
  z-index: 10;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--retro-olive);
  font-family: 'Montserrat',sans-serif;
  font-size: 0.98em;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer-brand img {
  height: 36px;
  margin: 10px 0;
}
footer small {
  display: block;
  color: #60492D;
  margin: 9px 0 0 0;
}

/* ========================================================================
   THANK-YOU PAGE
   ======================================================================== */
.thank-you h1 {
  color: var(--retro-rust);
  font-size: 2.2rem;
  text-align: center;
}
.thank-you .message-text {
  background: var(--secondary);
  padding: 32px 16px;
  border-radius: 9px;
  margin-top: 18px;
  color: #232321;
  box-shadow: 0 2px 16px 0 #d8a45b15;
}
.next-steps-information {
  margin-top: 22px;
  text-align: left;
}

/* ========================================================================
   LEGAL & GDPR PAGES
   ======================================================================== */
.legal {
  padding: 50px 0 36px 0;
}
.legal h1 {
  color: var(--primary);
  font-size: 2.15rem;
  margin-bottom: 21px;
}
.legal h2 {
  color: var(--retro-olive);
  font-size: 1.22rem;
  margin-top: 27px;
}
.legal ul, .terms_of_service_text {
  padding-left: 26px !important;
}

/* ========================================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #ffffff;
  box-shadow: 0 -2px 18px 0 #6E583F22;
  border-top: 4px dashed var(--secondary);
  padding: 20px 14px;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: cookie-in 0.4s cubic-bezier(.4,1.4,.5,1) 1;
}
@keyframes cookie-in {
  0% { transform: translateY(96px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  color: #6E583F;
  font-family: 'Open Sans',sans-serif;
  font-size: 1.04rem;
  flex: 1 1 260px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat',sans-serif;
  border: none;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  padding: 9px 19px;
  margin-left: 0;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 #9b423420;
  transition: background 0.15s, color 0.15s;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--retro-olive);
}
.cookie-btn.reject {
  background: #fff0e0;
  color: var(--retro-rust);
  border: 1px solid var(--retro-rust);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--retro-rust);
  color: #FFD166;
}
/* Cookie modal overlay */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: rgba(38, 84, 124, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fadein 0.38s cubic-bezier(.46,1.5,.5,1);
}
@keyframes cookie-fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal__content {
  background: #fffbef;
  border-radius: 16px;
  box-shadow: 0 6px 26px 0 #60492d39;
  padding: 36px 32px 30px 32px;
  max-width: 410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.cookie-modal__content h2 {
  color: var(--primary);
  font-size: 1.22rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1em;
  color: #7e6540;
}
.cookie-toggle {
  width: 36px; height: 18px;
  border-radius: 9px;
  background: var(--retro-tan);
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--retro-green);
}
.cookie-toggle__knob {
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #7e654038;
  transition: left 0.13s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle__knob {
  left: 20px;
}
.cookie-modal__actions {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
/* Category description caption */
.cookie-category small {
  font-size: 0.93em;
  color: #988c77;
  font-weight: normal;
}

/* ESSENTIAL COOKIES always enabled */
.cookie-category[data-essential] .cookie-toggle {
  filter: grayscale(100%);
  background: #BBBFA9;
  pointer-events: none;
}

/* ========================================================================
   FORMS (for contact, etc.)
   ======================================================================== */
input, textarea, select {
  font-family: 'Open Sans',sans-serif;
  border-radius: 8px;
  border: 1.5px solid var(--retro-tan);
  font-size: 1rem;
  padding: 11px 13px;
  color: #3B3327;
  background: #fff;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px 0 #ffd16616;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 15px 0 #ffd16639;
}
button {
  font-family: 'Montserrat',sans-serif;
  font-size: 1em;
}

/* ========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE PATTERNS
   ======================================================================== */
@media (max-width: 880px) {
  .container {
    max-width: 99vw;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px;}
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.42rem; }
  .hero { padding: 36px 0 21px 0; }
  .section, .testimonials, .features { padding: 24px 6px; }
  .testimonial-card { padding: 16px 9px; min-width: 99vw; }
  .mission-statement, .brand-mission, .consultation-packages, .quick-response-highlight, .service-details, .child-friendly-details, .next-steps-information {
    padding: 16px 7px 12px 10px;
  }
  .card-container, .content-grid, .feature-grid, .benefits-grid, .parents-benefits-grid, .icon-benefits, .feature-icons {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature, .benefit, .feature-icon {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 18px 10px;
  }
  .service-summary-list,
  .full-service-list,
  .culture-trips-list,
  .family-trips-list {
    flex-direction: column;
    gap: 11px;
    padding-left: 0;
    padding-right: 0;
  }
  footer .container { flex-direction: column; gap: 8px; }
}
@media (max-width: 570px) {
  html { font-size: 14px; }
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.10rem; }
  .hero { padding: 16px 0 10px 0; }
  .cta-button { padding: 9px 13px; font-size: 0.92rem; }
}

/* Text-image responsive stacking */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: stretch; gap: 16px; }
}

/* Cookie banner responsive */
@media (max-width: 670px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.98rem;
  }
}

@media (max-width: 440px) {
  .cookie-modal__content {
    max-width: 99vw;
    padding: 13px 8px 15px 8px;
  }
}

/* ========================================================================
   VINTAGE RETRO MICRO-INTERACTIONS
   ======================================================================== */
.card, .feature, .benefit, .feature-icon, .testimonial-card {
  transition: box-shadow 0.20s, border-color 0.18s, transform 0.15s;
}
.card:hover, .feature:hover, .benefit:hover, .feature-icon:hover,
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.024);
  box-shadow: 0 8px 36px 0 #9B423425;
  border-color: var(--retro-rust);
}
.cta-button, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, outline 0.15s;
}
.cta-button:active, .cookie-btn:active {
  transform: scale(0.99);
  outline: 2px solid var(--secondary);
}

/* Retro details: dashed accents & dots */
.section, .testimonials {
  background-image:
    radial-gradient(var(--secondary) 1.6px, transparent 1.6px),
    radial-gradient(var(--retro-tan) 1.0px, transparent 1px);
  background-size: 41px 41px, 84px 84px;
  background-position: 0 0, 17px 31px;
  background-repeat: repeat;
}

/* Accessibility improvements for retro-flavored pages */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  z-index: 99 !important;
}

/* Hide elements visually but keep accessible if class .sr-only used */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Make sure no elements overlap due to spacing */
.section, .testimonials, .features, .services, .contact, .about {
  margin-bottom: 60px;
}

/* Pattern for .text-image-section */
.text-image-section { gap: 30px; align-items: center; display: flex; flex-wrap: wrap; }

/* Ensure site scrollbars always visible for modal/menus (some browser bugfixes) */
body:has(.mobile-menu.open), body.mobile-menu-open {
  overflow: hidden;
}
