/* 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.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #F6F5F2;
  color: #28332C;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #293B4A;
  letter-spacing: 0.01em;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #28332C;
}

/* Typography scale */
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }

/* Brand Color Palette */
:root {
  --primary: #293B4A;
  --secondary: #6A9BB5;
  --accent: #F6C85F;
  --text-on-dark: #fff;
  --nature-green: #4C7A52;
  --earth-brown: #78624E;
  --nature-bg: #F6F5F2;
  --card-bg: #FFFFFF;
  --shadow: rgba(40, 51, 44, 0.05);
  --focused: #A9B082;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* HEADER */
header {
  background: var(--nature-bg);
  border-bottom: 1.5px solid #E3DECF;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: color 0.2s;
  padding: 3px 2px;
  border-radius: 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--nature-green);
  background: rgba(76,122,82,0.08);
  outline: none;
}

.cta-button {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 32px 16px 32px 16px/24px 24px 24px 24px; /* organic pill shape */
  box-shadow: 0 2px 10px var(--shadow);
  margin-left: 12px;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s, transform 0.2s;
  outline: none;
  border: none;
  display: inline-block;
  letter-spacing: 0.03em;
}
.cta-button:hover, .cta-button:focus {
  background: var(--nature-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(76,122,82,0.18);
  transform: translateY(-2px) scale(1.04);
}

header img {
  height: 40px;
  width: auto;
}
@media (max-width: 992px) {
  .main-nav { gap: 16px; font-size: 15px; }
  .cta-button { font-size: 16px; padding: 11px 23px; }
}

/* --- MOBILE HEADER & MENU --- */
.mobile-menu-toggle {
  display: none;
  color: var(--nature-green);
  background: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 7px 14px;
  margin-left: 8px;
  transition: background 0.15s;
  z-index: 500;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(76,122,82,0.15);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #f5f5ec 75%, #e6edde 100%);
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
  overscroll-behavior: contain;
  box-shadow: -4px 0 18px 0 rgba(40,51,44,0.08);
  padding: 0 0 0 0;
}
.mobile-menu.open { /* class toggled via JS */
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--nature-green);
  margin: 22px 0 18px 22px;
  align-self: flex-start;
  background: none;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(76,122,82,0.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 36px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(76,122,82,0.12);
  color: var(--nature-green);
}
@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .cta-button { margin-left: auto; }
}
@media (max-width: 600px) {
  header .container { gap: 8px; }
}

/* MAIN & FLEX SECTION PATTERNS */
main {
  width: 100%;
  min-height: 60vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 24px 48px 24px 44px/32px 64px 32px 52px; /* organic corners */
  box-shadow: 0 2px 10px var(--shadow);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 5px 24px rgba(76,122,82,0.13);
  transform: translateY(-3px) scale(1.01);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 240px;
  background: #fff;
  border-radius: 24px 64px 24px 28px/32px 80px 32px 44px;
  box-shadow: 0 4px 18px rgba(90,117,92,0.11);
  margin-bottom: 20px;
  border-left: 7px solid var(--nature-green);
  position: relative;
  transition: box-shadow 0.29s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(76,122,82,0.17);
  transform: translateY(-2px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 28px 18px 36px 17px/32px 14px 30px 18px;
  box-shadow: 0 1.5px 6px var(--shadow);
  padding: 28px 22px 20px 22px;
  transition: box-shadow 0.23s, transform 0.17s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 52px;
  height: 52px;
}
.feature-item:hover {
  box-shadow: 0 4px 24px rgba(106,155,181,0.12);
  transform: translateY(-2px) scale(1.016);
}

/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(102deg, #e5edde 0%, #ede5df 100%);
  padding: 48px 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 0 10px;
  max-width: 630px;
  margin-bottom: 12px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  line-height: 1.21;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  font-size: 18px;
  color: #39553A;
}

/* --- FEATURE GRIDS --- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid .feature-item {
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 220px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #F3F7F2;
  border-radius: 0 0 80px 0/0 0 100px 0;
  padding: 48px 0 32px 0;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 32px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.star-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}
.testimonial-card p {
  color: #293B4A;
  font-size: 1.08rem;
  text-align: center;
}
.testimonial-author {
  color: var(--nature-green);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
}

/* Testimonial contrast enforcement */
@media (prefers-color-scheme: dark) {
  .testimonial-card {
    background: #F8FDF6;
    color: #293B4A;
  }
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--nature-green);
  color: #fff;
  border-radius: 75px 0 75px 0/58px 0 90px 0;
  box-shadow: 0 7px 44px rgba(76,122,82,0.12);
  padding: 45px 0 40px 0;
  margin-bottom: 60px;
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner p {
  color: #f1faa5;
  font-size: 18px;
}
.cta-banner .cta-button {
  background: var(--accent);
  color: var(--primary);
  margin-top: 16px;
}
.cta-banner .cta-button:hover {
  background: #fff;
  color: var(--nature-green);
}

/* --- ABOUT - CORE VALUES --- */
.core-values-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0 24px 0;
}
.core-values-list li {
  padding-left: 4px;
  font-size: 16px;
  color: #28332C;
}
.success-highlights {
  margin-top: 16px;
  background: #f0f8db;
  border-left: 6px solid var(--nature-green);
  border-radius: 16px 44px 18px 34px/20px 40px 20px 28px;
  padding: 20px 22px;
  color: #39553A;
  font-size: 1rem;
  box-shadow: 0 1.5px 8px rgba(76,122,82,0.07);
}

/* --- LEGAL/INFO TEXT SECTIONS --- */
.legal .content-wrapper, .privacy-text, .gdpr-text, .terms-text, .cookies-policy-text {
  background: #fff;
  border-radius: 24px 56px 24px 36px/40px 80px 32px 44px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 32px;
  color: #293B4A;
}
.privacy-text ul, .terms-text ul, .gdpr-text ul, .cookies-policy-text ul {
  margin: 18px 0 0 0;
  padding-left: 22px;
  list-style: disc inside;
  color: #39553A;
}
.privacy-text li, .terms-text li, .gdpr-text li, .cookies-policy-text li {
  margin-bottom: 12px;
  font-size: 15px;
}

/* --- FAQ --- */
.faq .content-wrapper {
  background: #fff;
  border-radius: 22px 60px 20px 38px/44px 72px 28px 40px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 32px 32px 24px 32px;
}
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item h2 {
  font-size: 1.2rem;
  margin-bottom: 7px;
  color: var(--nature-green);
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
  font-size: 16px;
  color: #28332C;
}
.contact-prompt {
  margin-top: 24px;
  background: #f7faee;
  border-left: 5px solid var(--accent);
  border-radius: 17px 28px 19px 21px/22px 32px 18px 12px;
  padding: 18px 22px;
  color: #39553A;
  font-size: 1rem;
}

/* --- CONTACT PAGE --- */
.contact-info {
  background: #f6fff5;
  border-radius: 20px 32px 22px 52px/22px 40px 18px 38px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 22px 20px 14px 28px;
  margin-bottom: 26px;
  color: #39553A;
}
.contact-info img {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.map {
  background: #f0f5e3;
  border-radius: 18px 44px 19px 30px/16px 44px 18px 20px;
  box-shadow: 0 2px 9px var(--shadow);
  padding: 16px 17px;
  color: #35482a;
  margin-bottom: 22px;
}

/* --- SUCCESS STORIES --- */
.audio-snippets p {
  font-size: 15px;
  background: #f7faf5;
  padding: 15px 20px;
  border-radius: 12px 26px 14px 24px/13px 26px 14px 22px;
  color: #39553A;
  margin-top: 18px;
}
.next-steps {
  margin: 22px 0 18px 0;
  padding-left: 18px;
  list-style-position: inside;
}
.next-steps li {
  margin-bottom: 12px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 32px 0;
  border-top-left-radius: 70px 100px;
  border-top-right-radius: 30px 40px;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #F6F5F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.footer-contact p {
  font-size: 15px;
  color: #e2eada;
  margin-bottom: 0;
}
.footer-contact a {
  color: var(--accent);
  text-decoration: underline;
}
.footer-logo img {
  height: 38px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* --- Card-Groups & Support Flex Patterns --- */
.course-listing-grid, .step-by-step-grid, .testimonial-list, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.course-item, .process-step {
  background: #fff;
  border-radius: 32px 44px 26px 48px/34px 52px 28px 44px;
  box-shadow: 0 1.5px 10px var(--shadow);
  padding: 28px 22px 18px 22px;
  min-width: 220px;
  margin-bottom: 20px;
  flex: 1 1 248px;
  max-width: 320px;
}
.process-step img {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
}
.feature-icons img {
  width: 46px;
  height: 46px;
}
.benefits-list {
  margin: 28px 0 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
}

/* --- Visual Timeline --- */
.visual-timeline {
  margin-top: 28px;
  padding: 18px 22px;
  background: #f5fbe1;
  border-left: 5px solid var(--nature-green);
  border-radius: 18px 38px 20px 32px/22px 30px 16px 28px;
  font-size: 1rem;
  color: #39553A;
  box-shadow: 0 1.5px 7px rgba(76,122,82,0.07);
}

/* Cookie Consent Banner (fixed bottom) */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(246, 241, 232, 0.98);
  border-top: 3px solid var(--accent);
  box-shadow: 0 -2px 28px rgba(106,155,181,0.11);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 14px 18px 18px;
  font-size: 15px;
  flex-wrap: wrap;
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}
.cookie-banner p {
  color: #37452c;
  margin-right: 10px;
  font-size: 15px;
  flex: 2 1 340px;
}
.cookie-banner .cookie-btn {
  background: var(--nature-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 25px 10px 25px 10px/17px 22px 13px 20px;
  padding: 8px 24px;
  margin: 3px 7px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: var(--nature-green);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #ece0d0;
  color: var(--earth-brown);
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #78624E;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #FFF;
  color: var(--nature-green);
  border: 1.5px solid var(--nature-green);
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: var(--nature-green);
  color: #FFF;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,56,28,0.38);
  align-items: center;
  justify-content: center;
  transition: background 0.26s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 40px 18px 36px 22px/29px 52px 28px 46px;
  padding: 36px 32px 28px 32px;
  box-shadow: 0 8px 44px rgba(76,122,82,0.19);
  width: 97vw;
  max-width: 415px;
  z-index: 200002;
  animation: modalIn 0.34s cubic-bezier(.64,-0.07,.46,1.32);
  position: relative;
}
@keyframes modalIn {
  from { transform: translateY(30px) scale(0.98); opacity: 0.59; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
}
.cookie-modal label {
  font-size: 1rem;
  color: #37452c;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 17px 0;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--nature-green);
  width: 23px; height: 23px;
}
.cookie-modal-category {
  margin-bottom: 18px;
  background: #f8faed;
  border-radius: 12px 22px 13px 18px/8px 16px 8px 13px;
  padding: 10px 16px 7px 16px;
  font-size: 15px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  color: var(--nature-green);
  font-size: 1.4rem;
  border-radius: 50%;
  outline: none;
  transition: background 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #def6e6;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px){
  .container { max-width: 96vw; padding-left: 12px; padding-right: 12px; }
  .content-wrapper { gap: 22px; }
  footer .container { flex-direction: column; align-items: flex-start; gap: 16px; padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 900px) {
  .feature-grid, .course-listing-grid, .step-by-step-grid, .testimonial-slider, .testimonial-list {
    gap: 16px; flex-wrap: wrap;
  }
  .feature-item, .course-item, .process-step {
    max-width: 98vw;
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .hero .content-wrapper, .cta-banner .content-wrapper {
    padding: 2px 2px;
    align-items: flex-start;
    max-width: 99vw;
  }
  .text-image-section, .content-grid, .features .feature-grid, .testimonial-slider, .testimonial-list, .course-listing-grid, .step-by-step-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.12rem; }
  .section,
  .legal .content-wrapper,
  .privacy-text,
  .gdpr-text,
  .terms-text,
  .cookies-policy-text {
    padding: 23px 7px !important;
    border-radius: 18px 44px 18px 22px/14px 26px 14px 15px;
  }
  .card, .feature-item, .course-item, .process-step {
    padding: 18px 9px !important;
    border-radius: 18px 28px 16px 24px/13px 18px 11px 13px;
  }
  .cta-button {
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 22px 10px 22px 10px/13px 15px 13px 15px;
  }
  .footer-logo img { height: 29px; }
  .footer-contact p { font-size: 13px; }
  .hero, .cta-banner, .testimonials { padding: 27px 0 18px 0; }
  .cookie-modal { padding: 19px 7px 14px 10px; }
  .cookie-banner { flex-direction: column; gap: 14px; align-items: flex-start; }
}
@media (max-width: 420px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.08rem; }
  .cookie-modal { max-width: 98vw; padding: 11px 3px 3px 7px; }
}

/* --- MICRO-INTERACTIONS + FOCUS STATES --- */
*:focus {
  outline: 2.3px dashed var(--accent);
  outline-offset: 2px;
  z-index: 10;
}
::-webkit-scrollbar {
  width: 10px;  background: #e5eddc;
}
::-webkit-scrollbar-thumb {
  background: #aee4af;
  border-radius: 8px;
}

/* --- ORGANIC DECORATIVE SHAPES (if using pseudo-elements) --- */
.section > .container::before,
.cta-banner > .container::before {
  content: '';
  display: block;
  position: absolute;
  left: -15vw;
  top: -60px;
  width: 160px;
  height: 85px;
  background: rgba(106,155,181,0.10);
  border-radius: 60% 40% 35% 55% / 50% 55% 35% 70%;
  z-index: 1;
  pointer-events: none;
}

/* --- ORGANIC SHADOW USAGE --- */
.card, .feature-item, .testimonial-card, .success-highlights, .core-values-list li, .process-step {
  box-shadow: 0 1.5px 10px var(--shadow);
}

/* --- Hide non-mobile nav on mobile --- */
@media (max-width: 992px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
}

/* --- Hide cookie banner on accept (for reference; hide in JS) --- */
.cookie-banner.hide { transform: translateY(100%); }
