/* --- CSS RESET & BASELINE --- */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #FEF9F3;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #31271e;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #9C6747;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #212137;
}
ul, ol {
  margin-left: 24px;
}

/* --- CUSTOM VINTAGE RETRO VARIABLES --- */
:root {
  --retro-bg-main: #FEF9F3; /* warm paper off-white */
  --retro-bg-alt: #F7E8CE; /* beige/cream accent */
  --retro-primary: #35304A; /* deep mulberry */
  --retro-secondary: #B84A39; /* burnt orange/red */
  --retro-accent: #FFD972; /* bright yellow accent */
  --retro-blue: #29A0D5; /* retro blue */
  --retro-green: #7FC08A; /* mint */
  --retro-brown: #B38A68; /* caramel */
  --brand-primary: #212137;
  --brand-secondary: #58A5F8;
  --brand-accent: #F3F6FB;
  --shadow-card: 0 2px 16px 0 rgba(125,98,74,0.08), 0 1.5px 0px 0 #D9CDBE;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --font-display: 'Montserrat', 'Bebas Neue', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --vintage-pattern: repeating-linear-gradient(135deg, #EFE2C6 0px, #EFE2C6 12px, #FFEDD6 12px, #FFEDD6 24px);
}

/* --- GENERAL CONTAINER LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  background: #FFF;
}
.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;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2C2431;
}
h1 { font-size: 2.5rem; line-height: 1.13; color: var(--retro-primary); letter-spacing: 0.04em; text-shadow: 1px 2px #FFD97244;}
h2 { font-size: 2rem; color: var(--retro-secondary); text-shadow: 0.5px 1px #FFD97222;}
h3 { font-size: 1.25rem; color: var(--retro-brown); text-shadow: 0.5px 1.5px #F7E8CE99;}
h4, h5, h6 { font-size: 1rem; }
p, li, address, small, em {
  font-family: var(--font-body);
  color: #4A3B2F;
  font-size: 1rem;
  margin-bottom: 0.5em;
}
.subheadline {
  font-size: 1.18rem;
  color: #7B6650;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  margin-bottom: 1em;
}
strong { color: #B84A39; font-weight: bold; }

/* --- RETRO DECORATIVE ELEMENTS --- */
.pattern-bg {
  background: var(--vintage-pattern);
}

/* --- HEADER & NAV --- */
header {
  background: var(--retro-bg-alt);
  border-bottom: 6px solid var(--retro-brown);
  box-shadow: 0 3px 7px 0 #EED8AC44;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #764D26;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--retro-accent);
  color: #212137;
}
.primary-cta-btn {
  margin-left: 20px;
  background: var(--retro-secondary);
  color: #FFF5DF;
  font-family: var(--font-display);
  padding: 13px 28px;
  border-radius: 32px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 6px #B65F2C29;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.21s;
  text-shadow: 0.5px 1px #35304A22;
  text-decoration: none;
  display: inline-block;
}
.primary-cta-btn:hover, .primary-cta-btn:focus {
  background: #A63423;
  color: #FFD972;
  box-shadow: 0 2px 10px #B65F2C55;
}
.secondary-cta-btn {
  background: var(--retro-blue);
  color: #FFF;
  font-family: var(--font-display);
  padding: 13px 28px;
  border-radius: 32px;
  border: none;
  font-size: 1.08rem;
  font-weight: 700;
  margin-left: 16px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 6px #2190A540;
  transition: background 0.18s, color 0.18s;
}
.secondary-cta-btn:hover, .secondary-cta-btn:focus {
  background: #146084;
  color: #FFD972;
}
.mobile-menu-toggle {
  display: none;
  background: var(--retro-secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.11s, color 0.11s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-primary);
  color: var(--retro-accent);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--retro-bg-main);
  z-index: 1090;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  box-shadow: 0 4px 32px #b38a6840;
  transform: translateX(-100%);
  transition: transform 0.40s cubic-bezier(0.6,0.07,0.17,1.01);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #B84A39;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  margin-bottom: 20px;
  margin-right: 4px;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #212137;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 20px;
  width: 100%;
  align-items: stretch;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.23rem;
  padding: 15px 0;
  color: #764D26;
  border-bottom: 1px solid #F7E8CE;
  text-decoration: none;
  font-weight: 600;
  background: none;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-accent);
  color: #212137;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .primary-cta-btn { margin-left: 0; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
}
@media (max-width: 830px) {
  .main-nav { display: none; }
  .primary-cta-btn { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (max-width: 600px) {
  header .container { padding: 12px 10px; }
}

/* --- HERO SECTIONS --- */
.hero, .services-hero, .thank-you-hero {
  background: var(--vintage-pattern), var(--retro-bgMain, #FEF9F3);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 5px solid var(--retro-brown);
}
.hero .container, .services-hero .container, .thank-you-hero .container {
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.hero h1, .services-hero h1, .thank-you-hero h1 {
  font-size: 2.6rem;
  color: var(--retro-secondary);
  text-shadow: 1px 3px #FFD97244;
  margin-top: 20px;
}
.hero .subheadline {
  color: #6E584B;
}
.hero .primary-cta-btn { margin-top: 16px; }

@media (max-width: 768px) {
  .hero, .services-hero, .thank-you-hero {
    min-height: unset;
    border-bottom-width: 3.5px;
  }
  .hero h1, .services-hero h1, .thank-you-hero h1 { font-size: 2rem; }
}

/* --- FLEXBOX LAYOUT COMPONENTS --- */
.feature-grid, .product-card-list, .service-card-list, .support-card-list, .testimonial-list, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 24px;
  margin-bottom: 16px;
}
.feature-grid {
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.feature-grid li, .highlight-list li, .value-list li, .team-list > div, .product-card, .service-card, .support-card, .testimonial-card {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 310px;
  background: #FFF;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 26px 20px;
  margin-bottom: 20px;
  border: 1.5px solid #EFE2C688;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, background 0.20s, transform 0.20s;
}
.feature-grid li:hover, .product-card:hover, .service-card:hover, .support-card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 24px #B38A6844;
  background: #FFFBEA;
  transform: translateY(-4px) scale(1.02);
}
.product-card-list, .service-card-list, .support-card-list {
  gap: 20px;
  justify-content: flex-start;
}
.product-card, .service-card, .support-card {
  text-align: left;
}
.product-card h3, .service-card h3, .support-card h3 {
  color: var(--retro-secondary);
  font-size: 1.16rem;
  margin: 10px 0 12px;
}
.product-card ul, .service-card ul {
  list-style-type: disc;
  margin-left: 14px;
  margin-bottom: 0;
}

.step-process, .step-list {
  display:flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  margin-top: 24px;
  margin-bottom: 12px;
}
.step-process li, .step-list li {
  background: #FFF6E1;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 1px 4px #FFD9721f;
  padding: 16px 14px 14px 16px;
  min-width: 130px;
  max-width: 170px;
  flex: 1 1 130px;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-family: var(--font-display);
  color: #835E40;
  font-size: 1.03rem;
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}
.testimonial-card {
  background: #FFF8ED;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 1.5px 8px 0 #B89A8688;
  padding: 32px 24px 26px 24px;
  min-width: 230px;
  max-width: 370px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border: 1px solid #FFE2B344;
  transition: box-shadow 0.18s, background 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px #764D2644;
  background: #FFF5DF;
}
.testimonial-card p {
  color: #423431;
  font-size: 1.08rem;
  font-family: var(--font-display);
}
.testimonial-name {
  font-family: var(--font-body);
  color: #B38A68;
  font-size: 1rem;
  margin-top: 5px;
  letter-spacing: 0.02em;
}

/* --- LISTS & FAQ --- */
.value-list, .highlight-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.value-list li, .highlight-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
  background: #FFFDF6;
  border-radius: var(--border-radius-sm);
  padding: 12px 14px;
  box-shadow: 0 1px 4px #FFD9721e;
  margin-bottom: 8px;
}
.faq-list li {
  background: #F7E8CE;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 1px 4px #B38A6815;
  padding: 15px 14px;
  margin-bottom: 10px;
}
.faq-list h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--retro-primary);
}

/* --- MISC STYLES: QUICK STATS, ADDRESS BOXES, ETC --- */
.quick-stats {
  background: #FFF5DF;
  border-radius: 14px;
  box-shadow: 0 1.5px 6px #FFD97222;
  padding: 14px 22px;
  margin-top: 18px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #835E40;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 370px;
}
.text-section {
  background: #FFFDF5;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 1px 4px #FFD97228;
  padding: 24px 18px;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 8px;
}
address {
  font-style: normal;
  color: #89552A;
  font-size: 1.01rem;
  letter-spacing: 0.02em;
}

/* --- FOOTER --- */
footer {
  background: #EFE2C6;
  border-top: 6px solid var(--retro-brown);
  color: #533F2F;
  margin-top: 54px;
  padding: 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  margin-top: 8px;
}
.footer-nav a {
  color: #835E40;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-decoration: none;
  padding: 4px 11px;
  border-radius: var(--border-radius-sm);
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFD972;
  color: #B84A39;
}
.footer-contact {
  font-size: 0.96rem;
  color: #745338;
  margin-top: 4px;
}
footer small {
  font-size: 0.97rem;
  color: #836960;
  margin-top: 6px;
}

/* --- LEGAL CONTENT & POLICY PAGES --- */
.legal-content {
  background: #FFF8ED;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 1.5px 10px #B38A6820;
  padding: 40px 22px;
  margin-top: 36px;
  margin-bottom: 48px;
  font-size: 1.08rem;
  color: #574436;
}
.legal-content h1, .legal-content h2 {
  color: #35304A;
}
.legal-content ul {
  margin-left: 16px;
}


/* --- SUPPORT-specific --- */
.support-options .support-card-list {
  gap: 22px;
}
.support-card {
  min-width: 210px;
  max-width: 330px;
  box-shadow: var(--shadow-card);
  background: #FFF;
  border-radius: var(--border-radius-sm);
}
.support-link {
  display: inline-block;
  margin-top: 12px;
  background: #FFD972;
  color: #212137;
  padding: 7px 18px;
  border-radius: 22px;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.16s;
}
.support-link:hover, .support-link:focus {
  background: #FFE2B3;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1150px) {
  .feature-grid li, .product-card, .service-card, .support-card, .testimonial-card, .team-list > div {
    max-width: 44vw;
    min-width: 200px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .product-card-list, .service-card-list, .testimonial-list, .support-card-list, .team-list {
    gap: 16px;
  }
  .footer-nav { gap: 14px; }
  .card, .feature-grid li, .testimonial-card, .product-card, .service-card {
    max-width: 100vw;
  }
}
@media (max-width: 768px) {
  .feature-grid, .product-card-list, .service-card-list, .testimonial-list, .step-process, .step-list, .support-card-list, .team-list {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .value-list, .highlight-list {
    gap: 14px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .section {
    padding: 26px 8px !important;
    margin-bottom: 38px !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.31rem; }
  h2 { font-size: 1.05rem; }
  .primary-cta-btn, .secondary-cta-btn { font-size: 0.95rem; padding: 10px 12px; }
  .logo img, header .logo img { height: 28px; }
  .footer-nav a { font-size: 0.93rem; padding: 2px 5px; }
}


/* --- BUTTONS AND LINK INTERACTIONS --- */
button, input[type=submit], .primary-cta-btn, .secondary-cta-btn {
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.13s, color 0.13s, box-shadow 0.15s;
}
button:active, .primary-cta-btn:active, .secondary-cta-btn:active {
  transform: scale(0.98);
}

/* --- MICRO-INTERACTIONS / HOVER EFFECTS --- */
.card, .feature-grid li, .testimonial-card, .service-card, .support-card, .product-card {
  transition: box-shadow 0.18s, background 0.15s, transform 0.14s;
}
.card:hover, .feature-grid li:hover, .testimonial-card:hover, .service-card:hover, .support-card:hover, .product-card:hover {
  box-shadow: 0 4px 22px #FFD97255;
  background: #FFFBEA;
  transform: translateY(-3px) scale(1.01);
}
.secondary-cta-btn:focus, .primary-cta-btn:focus {
  outline: 2px dashed #B84A39;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff8ed;
  border-top: 4px solid #B38A68;
  z-index: 1200;
  box-shadow: 0 -2px 16px 0 #B38A6844;
  padding: 24px 14px 16px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1rem;
}
.cookie-banner p {
  color: #865F41;
  font-family: var(--font-body);
  margin: 0;
  flex: 1 1 200px;
}
.cookie-banner .cookie-btn {
  background: #FFD972;
  color: #212137;
  padding: 9px 24px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-left: 10px;
  border: 1.3px solid #B38A68;
  transition: background 0.16s, color 0.16s, border 0.16s;
}
.cookie-banner .cookie-btn.accept {
  background: #7FC08A;
  color: #fff;
  border-color: #5AA267;
}
.cookie-banner .cookie-btn.reject {
  background: #B84A39;
  color: #fff;
  border-color: #A63423;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FFE2B3;
  color: #B84A39;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #5AA267;
  color: #FFF5DF;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #A63423;
  color: #FFD972;
}
@media (max-width:600px) {
  .cookie-banner { flex-direction: column; gap: 10px; padding: 17px 5px 10px 5px; }
  .cookie-banner .cookie-btn { margin-left: 0; margin-top: 10px; width: 98%; }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1210;
  background: rgba(75,61,28,0.41);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieBg 0.28s;
}
@keyframes fadeInCookieBg {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff8ed;
  border-radius: 18px;
  box-shadow: 0 7px 28px #B38A6820;
  padding: 38px 28px 26px 28px;
  width: 97vw;
  max-width: 420px;
  animation: popupIn 0.32s cubic-bezier(0.66,0,0.29,1.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@keyframes popupIn {
  from { transform: translateY(32px) scale(0.92); opacity: 0;} 
  to { transform: none; opacity: 1;}
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  color: #B84A39;
  margin-bottom: 6px;
}
.cookie-modal-content p {
  font-size: 1.01rem;
  color: #745338;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  transform: scale(1.18);
}
.cookie-category.essential label {
  color: #5AA267;
  font-weight: bold;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #B84A39;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #212137;
}
.cookie-modal-actions .cookie-btn {
  padding: 9px 19px;
  min-width: 90px;
}
@media (max-width:520px) {
  .cookie-modal-content { padding: 23px 6vw 12px 6vw; }
}

/* --- MISC ACCESSIBILITY AND UTILITY --- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; border: 0; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* --- PRINT DEBUG (optional) --- */
@media print { .cookie-banner, .mobile-menu { display: none !important; } }