/* =================== CSS RESET & NORMALIZE =================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F7F4EC;
  color: #2B2922;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #22456E;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
}

/* =================== VINTAGE RETRO BRAND & COLOR PALETTE =================== */
:root {
  --primary: #22456E;
  --secondary: #7CC2B5;
  --accent: #F1F7FB;
  --bg-vintage: #F7F4EC;
  --brown: #8A5B3A;
  --yellow: #F5C46B;
  --red: #D46A6A;
  --blue-muted: #80A1C1;
  --offwhite: #FAF8F4;
  --border-vintage: #D6C6B5;
  --text-dark: #2B2922;
  --text-light: #FFF9F2;
  --shadow: rgba(44, 30, 0, 0.10);
}

/* =================== FONTS =================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1.14;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 1.8rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}

/* Paragraph and text style */
p, li, td, th {
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/* =================== GENERAL LAYOUT =================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section, section {
  background: var(--offwhite);
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px var(--shadow);
  padding: 40px 20px;
}

@media (max-width: 850px) {
  .section, section {
    padding: 32px 12px;
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .section, section {
    padding: 20px 4px;
    border-radius: 0;
  }
}

/* =================== RETRO TEXTURES & PATTERNS (pseudo) =================== */
.section, section {
  position: relative;
  overflow: hidden;
}
.section:before, section:before {
  content: "";
  position: absolute;
  left: -40px; right: -40px; top: -56px;
  height: 27px;
  background: repeating-linear-gradient(90deg,
      #F5C46B 0 6px,
      transparent 6px 14px);
  opacity: 0.13;
  pointer-events: none;
  z-index: 1;
}

/* =================== HEADER / NAVIGATION =================== */
header {
  background: var(--primary);
  color: var(--text-light);
  padding: 0 0 0 0;
  border-bottom: 3px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 18px var(--shadow);
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
  gap: 24px;
}
.main-nav .logo-link {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav ul li {
  display: flex;
  align-items: center;
  margin-right: 6px;
}
.main-nav ul li:last-child { margin-right: 0; }
.main-nav ul a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .23s, color .23s;
  position: relative;
}
.main-nav ul a:hover, .main-nav ul a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn {
  background: var(--yellow);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 16px 16px 2px 16px;
  padding: 12px 28px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px var(--shadow);
  letter-spacing: 1px;
  margin-left: 10px;
  margin-top: 4px;
  transition: background .24s, box-shadow .18s, color .16s, transform .22s;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-1px) scale(1.018);
  box-shadow: 0 6px 16px var(--shadow);
}

/* =================== MOBILE NAVIGATION =================== */
.mobile-menu-toggle {
  display: none;
  background: var(--yellow);
  color: var(--primary);
  border: none;
  font-size: 2.1rem;
  padding: 4px 18px;
  margin-left: auto;
  border-radius: 10px 10px 0 10px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background .21s, box-shadow .21s;
  z-index: 120;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom: 0;
  background: linear-gradient(111deg, #F5C46B 86%, var(--primary) 100%);
  color: var(--primary);
  z-index: 130;
  padding: 40px 30px 30px 26px;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.77,.07,.41,.92), opacity .39s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin-left: auto;
  font-size: 2.4rem;
  background: none;
  color: var(--primary);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background .21s, box-shadow .21s;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--text-dark);
}
.mobile-nav {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  padding: 14px 10px;
  font-size: 1.19rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 8px;
  font-weight: 600;
  transition: background .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--brown);
}

@media (max-width: 1100px) {
  .main-nav ul { gap: 8px; }
}
@media (max-width: 900px) {
  .main-nav ul { gap: 6px; }
}
@media (max-width: 900px) {
  .main-nav .logo-link img { width: 110px; }
  .main-nav ul li a { font-size: 1rem; }
}
@media (max-width: 820px) {
  .main-nav ul { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 821px) {
  .mobile-menu { display: none !important; }
}


/* =================== HERO STYLES =================== */
.hero {
  background: linear-gradient(102deg, var(--yellow) 92%, var(--secondary) 110%);
  border-radius: 0 0 48px 48px;
  position: relative;
  margin-bottom: 60px;
  box-shadow: 0 4px 24px var(--shadow);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero .content-wrapper {
  padding: 40px 10px 20px 10px;
  align-items: flex-start;
  gap: 16px;
  max-width: 700px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.6rem;
  text-shadow: 1px 2px 0 #fff9f2, 2px 2px 0 #F5C46B;
}
.hero p {
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 24px;
}

@media (max-width: 650px) {
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 0 0;
    min-height: unset;
  }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.02rem; }
}

/* =================== SECTIONS & CONTENT GRID =================== */
.features, .feature-grid, .content-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 700px) {
  .feature-grid, .content-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  .feature-grid > div, .content-grid > div {
    flex: 1 1 200px;
    min-width: 220px;
    max-width: 260px;
  }
}
.feature-grid > div {
  background: #FFF9F2;
  border: 2px solid var(--border-vintage);
  border-radius: 12px 24px 12px 12px;
  padding: 24px 16px 20px 16px;
  box-shadow: 0 2px 14px var(--shadow);
  transition: box-shadow .22s, border-color .15s, transform .13s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.feature-grid > div:hover,
.content-grid > div:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 28px var(--shadow);
  transform: translateY(-6px) scale(1.03);
}
.feature-grid img {
  width: 42px;
  filter: sepia(0.32) contrast(1.05) saturate(0.86);
  margin-bottom: 6px;
}
.feature-grid h3 {
  font-size: 1.11rem; color: var(--brown);
}

.services-preview ul, .about-preview ul, .benefits ul, .business-hours ul, .values ul, .promise ul {
  padding-left: 0;
  margin: 18px 0 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services-preview ul li::before, .about-preview ul li::before, .benefits ul li::before, .business-hours ul li::before, .values ul li::before, .promise ul li::before {
  content: '\2713';
  color: var(--secondary);
  font-size: 1.1em;
  padding-right: 12px;
  font-weight: bold;
}

.section:last-child, section:last-child {
  margin-bottom: 0;
}

/* =================== CARD CONTAINER & FLEXBOX =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF9F2;
  border-radius: 12px 24px 12px 12px;
  border: 2px solid var(--border-vintage);
  box-shadow: 0 2px 14px var(--shadow);
  margin-bottom: 20px;
  padding: 24px 18px;
  position: relative;
  z-index: 1;
}

/* =================== TESTIMONIALS =================== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--accent);
  border-radius: 18px 8px 24px 8px;
  padding: 20px 26px 18px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px var(--shadow);
  min-width: 260px;
  max-width: 420px;
  border: 1.5px solid var(--border-vintage);
  position: relative;
  z-index: 2;
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card strong {
  font-size: .98rem;
  color: var(--primary);
  font-style: normal;
  letter-spacing: .15px;
}
.testimonial-card .rating {
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.10em;
}

@media (max-width: 1024px) {
  .testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 180px;
  }
}

/* =================== FAQ SECTION =================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  border: 1px solid var(--border-vintage);
  border-radius: 16px 8px 12px 12px;
  background: #FFF9F2;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 24px 18px;
  margin-bottom: 8px;
  transition: box-shadow .21s, border-color .15s;
}
.faq-item h2 {
  font-size: 1.35rem;
  color: var(--brown);
  margin-bottom: 4px;
}
.faq-item p {
  margin-left: 0;
}
.faq-item a {
  color: var(--primary);
  border-bottom: 1px dashed var(--secondary);
  text-decoration: none;
  padding-bottom: 1px;
  transition: border-bottom .16s;
}
.faq-item a:hover, .faq-item a:focus { border-bottom-style: solid; }

/* =================== PRICING TABLE =================== */
.pricing-table {
  width: 100%;
  margin-top: 16px;
  background: #FFF9F2;
  border: 1.5px solid var(--border-vintage);
  border-radius: 12px 24px 12px 12px;
  box-shadow: 0 2px 14px var(--shadow);
  font-size: 1.03rem;
  margin-bottom: 24px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #efe6dc;
}
.pricing-table th {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: .04em;
  font-size: 1.1rem;
}
.pricing-table tr:nth-child(even) td {
  background: var(--accent);
}
.pricing-table tr:last-child td { border-bottom: none; }

@media (max-width: 700px) {
  .pricing-table th, .pricing-table td { font-size: 0.99rem; padding: 9px 8px; }
}

/* =================== SERVICE LIST =================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 12px;
}
.service-list li {
  background: var(--accent);
  border: 1.5px solid var(--border-vintage);
  border-radius: 24px 8px 12px 12px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 20px 18px 16px 18px;
  min-width: 230px;
  max-width: 330px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
.service-list img {
  width: 36px; margin-bottom: 7px; filter: sepia(0.32) contrast(1.05) saturate(.9); }
.service-list strong { font-size: 1.08rem; color: var(--primary); }

@media (max-width: 860px) {
  .service-list {
    flex-direction: column;
    gap: 12px;
  }
  .service-list li { max-width: unset; min-width: unset; }
}

/* =================== CONTACT, INFO, MAP =================== */
.contact-details {
  background: var(--accent);
  padding: 18px;
  border-radius: 16px 8px 24px 8px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 20px;
  margin-top: 10px;
  color: var(--primary);
  font-size: 1.1rem;
}
.contact-details img {
  width: 20px;
  margin-right: 6px;
  vertical-align: middle;
  filter: sepia(.22) brightness(.95);
}
.map-embed {
  background: var(--offwhite);
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px dashed var(--secondary);
  margin-bottom: 16px;
}
.contact-info {
  margin-top: 18px;
  background: #FFF9F2;
  border-radius: 12px 16px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px;
  color: var(--primary);
  font-size: 1.08rem;
}
.contact-info img {
  width: 20px;
  margin-bottom: -4px;
  margin-right: 4px;
  filter: sepia(.22) brightness(.95);
}

/* =================== FOOTER =================== */
footer {
  background: var(--primary);
  color: var(--yellow);
  padding: 46px 0 0 0;
  border-top: 4px solid var(--secondary);
  margin-top: 60px;
  position: relative;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-main a img {
  width: 60px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--yellow);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .18s;
  padding: 5px 8px;
  border-radius: 5px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact {
  color: var(--yellow);
  font-size: 0.98rem;
}
.footer-contact img {
  width: 18px;
  margin-right: 5px;
  margin-bottom: -3px;
  filter: sepia(0.25) saturate(0.8);
}
.footer-bottom {
  padding: 18px 0 22px 0;
  font-size: .98rem;
  color: var(--yellow);
  text-align: center;
  background: var(--primary);
  border-radius: 0 0 24px 24px;
  border-top: 1.5px solid var(--secondary);
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-main a img { margin-bottom: 8px; }
}
@media (max-width: 600px) {
  footer {
    padding: 18px 0 0 0;
  }
  .footer-bottom {
    border-radius: 0;
    font-size: 0.92rem;
  }
}


/* =================== MISC RETRO ELEMENTS & MICRO-INTERACTIONS =================== */
button, .cta-btn {
  transition: background .19s, box-shadow .16s, color .11s, transform .17s;
}
.cta-btn:active {
  transform: scale(0.97);
}

.card:hover, .service-list li:hover, .faq-item:hover {
  box-shadow: 0 8px 22px var(--shadow);
  border-color: var(--yellow);
  position: relative;
  z-index: 3;
  transform: translateY(-3px);
}

/* Decorative badges (retro element) */
.card:before, .testimonial-card:before, .service-list li:before {
  content: '';
  display: none;
}

/* =================== SPACING AND FLEXBOX REQUIREMENTS =================== */
.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; }

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* =================== THANK YOU PAGE / SUCCESS CTA =================== */
.thank-you {
  background: var(--yellow);
  border-radius: 18px 36px 22px 10px;
  box-shadow: 0 4px 22px var(--shadow);
  color: var(--primary);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.thank-you h1 {
  color: var(--primary);
}

/* =================== COOKIE BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #7CC2B5;
  color: #2B2922;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -8px 30px var(--shadow);
  padding: 22px 9vw 22px 10vw;
  font-size: 1.06rem;
  border-top: 4px solid #F5C46B;
  animation: slideUpBanner 0.8s .3s cubic-bezier(.77,.06,.43,1) backwards;
}
@keyframes slideUpBanner {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  background: var(--yellow);
  color: var(--primary);
  border: none;
  padding: 10px 22px;
  border-radius: 12px 22px 4px 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 8px;
  margin-top: 2px;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--shadow);
  transition: background .16s, color .17s, transform .15s;
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.06);
}
.cookie-banner .cookie-btn.settings {
  background: var(--primary);
  color: var(--yellow);
  border: 1.5px solid var(--yellow);
  margin-left: 8px;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: var(--yellow);
  color: var(--primary);
}

@media (max-width: 700px) {
  .cookie-banner {
    font-size: 0.97rem;
    flex-direction: column;
    gap: 10px;
    padding: 16px 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 3000;
  background: #FFF9F2;
  border: 2px solid var(--border-vintage);
  border-radius: 18px 24px 18px 10px;
  box-shadow: 0 12px 40px var(--shadow);
  padding: 32px 36px;
  min-width: 300px;
  min-height: 180px;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  animation: popInModal .35s cubic-bezier(.99,-0.01,.43,1.19);
}
@keyframes popInModal {
  from { transform: translate(-50%,-44%) scale(.96); opacity: 0; }
  to { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  margin-bottom: 0.1em;
  font-size: 1.30rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 4px;
}
.cookie-modal label {
  font-size: 1.07rem;
  color: var(--brown);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--yellow);
  width: 22px; height: 22px;
  border-radius: 3px;
  margin-right: 8px;
}
.cookie-modal .category-essential {
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
}
.cookie-modal .close-modal {
  background: none;
  color: var(--primary);
  font-size: 2rem;
  position: absolute;
  right: 30px; top: 20px;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--red);
  text-shadow: 0 2px 7px var(--shadow);
}
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(36, 35, 28, 0.36);
  z-index: 2999;
}
@media (max-width: 500px) {
  .cookie-modal { padding: 16px 4vw; min-width: unset; }
}

/* ============= RETRO STYLE EXTRAS ============= */
.reference-case {
  background: var(--offwhite);
  border-left: 8px solid var(--secondary);
  border-radius: 10px 30px 12px 18px;
  box-shadow: 0 1.5px 12px var(--shadow);
  padding: 14px 22px;
  margin-bottom: 18px;
}
.results-summary ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.results-summary li:before {
  content: '\2605';
  color: var(--yellow);
  font-size: 1em;
  font-weight: bold;
  padding-right: 7px;
}

.values ul li, .promise ul li {
  font-size: 1.08rem;
}

/* ================ MEDIA QUERIES ADJUSTMENT ================ */
@media (max-width: 780px) {
  .feature-grid, .content-grid, .footer-main { flex-direction: column; align-items: stretch; }
  .feature-grid > div, .content-grid > div { max-width: unset; min-width: unset; }
  .section, section { padding: 20px 4px; margin-bottom: 45px; }
  .container { padding: 0 8px; }
}
@media (max-width: 500px) {
  .section, section { margin-bottom: 22px; }
  .hero { margin-bottom: 24px; }
}

/* ================ MISC ================== */
::-webkit-scrollbar-thumb { background: #F5C46B; border-radius: 6px; }
::-webkit-scrollbar { width: 8px; background: #eee; }

/* Hide outline on mouse interaction but keep for keyboard */
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2.5px dashed var(--secondary); outline-offset: 2px; box-shadow: 0 0 0 2.5px var(--yellow) inset; }


/* Utility */
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.gap-20 { gap: 20px; }


/* ============ Loader/Overlay for Banner (could be used in JS) ============ */
.global-modal-overlay {
  display: none;
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(36,35,28,0.16);
  z-index: 1800;
}
.global-modal-overlay.open { display: block; }
