:root {
  --color-dark: #15180f;
  --color-dark-2: #1f2417;
  --color-dark-3: #262c1c;
  --color-light: #faf7ef;
  --color-light-2: #f1ead9;
  --color-accent: #c17d3e;
  --color-accent-2: #e2a765;
  --color-sage: #7d8f5a;
  --color-sage-2: #98a874;
  --color-text-dark: #2a2a22;
  --color-text-muted-dark: #5c5c4d;
  --color-text-light: #f5f1e6;
  --color-text-muted-light: #c9c4b2;
  --border-dark: rgba(255,255,255,0.09);
  --border-light: rgba(35,35,25,0.1);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;

  --shadow-sm: 0 2px 6px rgba(20,20,10,0.08), 0 1px 2px rgba(20,20,10,0.06);
  --shadow-md: 0 8px 24px rgba(20,20,10,0.12), 0 2px 6px rgba(20,20,10,0.08);
  --shadow-lg: 0 24px 60px rgba(10,10,5,0.28), 0 8px 20px rgba(10,10,5,0.16);

  --font-heading: 'Libre Baskerville', serif;
  --font-body: 'DM Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.mod-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mod-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-bottom: var(--space-sm);
  display: inline-block;
}
.mod-eyebrow--dark { color: var(--color-accent); }

.mod-section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}
.mod-section-title--light { color: var(--color-text-light); }

.mod-section-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted-dark);
  max-width: 680px;
  margin-bottom: var(--space-lg);
}
.mod-section-lead--light { color: var(--color-text-muted-light); }

.mod-section--dark { background: var(--color-dark); color: var(--color-text-light); position: relative; padding: var(--space-xxl) 0; overflow: hidden; }
.mod-section--light { background: var(--color-light); color: var(--color-text-dark); padding: var(--space-xl) 0; }
.mod-section--light-alt { background: var(--color-light-2); color: var(--color-text-dark); padding: var(--space-xl) 0; }

.mod-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
  min-height: 44px;
}
.mod-btn--accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  color: #1c1305;
  box-shadow: var(--shadow-md);
}
.mod-btn--accent:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.mod-btn--ghost {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--border-dark);
}
.mod-btn--ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }


.mod-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--color-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.mod-nav.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.mod-nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mod-nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.mod-nav-logo-img { width: 34px; height: 34px; }
.mod-nav-logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: var(--color-text-light); }
.mod-nav-links { display: flex; align-items: center; gap: 1.9rem; }
.mod-nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--color-text-muted-light);
  position: relative;
  padding: 0.4rem 0;
}
.mod-nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-accent-2);
  transition: width 0.35s ease;
}
.mod-nav-link:hover, .mod-nav-link.is-active { color: var(--color-text-light); }
.mod-nav-link:hover::after, .mod-nav-link.is-active::after { width: 100%; }
.mod-nav-cta {
  background: var(--color-accent);
  color: #1c1305 !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
}
.mod-nav-cta::after { display: none; }
.mod-nav-cta:hover { background: var(--color-accent-2); transform: translateY(-2px); }

.mod-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
}
.mod-nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text-light);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mod-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mod-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.mod-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mod-mobile-tabs {
  position: fixed;
  left: 0.6rem; right: 0.6rem; bottom: -100%;
  z-index: 490;
  background: var(--color-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  display: none;
  justify-content: space-around;
  padding: 0.6rem 0.3rem;
  box-shadow: var(--shadow-lg);
  transition: bottom 0.4s cubic-bezier(.2,.8,.2,1);
}
.mod-mobile-tabs.is-open { bottom: 0.6rem; }
.mod-mobile-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  color: var(--color-text-muted-light);
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  transition: color 0.3s ease, background 0.3s ease;
}
.mod-mobile-tab i { font-size: 1.05rem; }
.mod-mobile-tab.is-active { color: var(--color-accent-2); background: rgba(193,125,62,0.12); }


.mod-hero { padding-top: calc(var(--space-xxl) + 3rem); }
.mod-hero-shape {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,125,62,0.28), transparent 65%);
  top: -140px; right: -120px;
  pointer-events: none;
}
.mod-hero-shape--2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(125,143,90,0.3), transparent 65%);
  top: auto; bottom: -100px; left: -80px; right: auto;
}
.mod-hero-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 2;
}
.mod-hero-content { max-width: 560px; }
.mod-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}
.mod-hero-subtitle {
  color: var(--color-text-muted-light);
  font-size: 1.08rem;
  margin-bottom: var(--space-lg);
}
.mod-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--space-lg); }
.mod-hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.mod-hero-meta span { font-size: 0.88rem; color: var(--color-text-muted-light); display: inline-flex; align-items: center; gap: 0.45rem; }
.mod-hero-meta i { color: var(--color-accent-2); }

.mod-hero-mosaic { position: relative; height: 460px; }
.mod-hero-mosaic-img {
  position: absolute;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,0.06);
}
.mod-hero-mosaic-img--1 { width: 45%; top: 0; left: 8%; height: 200px; transform: rotate(-6deg); z-index: 2; }
.mod-hero-mosaic-img--2 { width: 40%; top: 5%; right: 0; height: 170px; transform: rotate(5deg); z-index: 1; }
.mod-hero-mosaic-img--3 { width: 42%; bottom: 8%; left: 0; height: 190px; transform: rotate(4deg); z-index: 3; }
.mod-hero-mosaic-img--4 { width: 34%; bottom: 0; right: 6%; height: 160px; transform: rotate(-4deg); z-index: 2; }
.mod-hero-mosaic-img--5 { width: 36%; top: 38%; left: 32%; height: 150px; transform: rotate(2deg); z-index: 4; }


.mod-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: var(--space-lg);
}
.mod-bento-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  grid-column: span 2;
}
.mod-bento-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mod-bento-item i { font-size: 1.7rem; color: var(--color-accent); margin-bottom: 1rem; display: inline-block; }
.mod-bento-item h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.mod-bento-item p { color: var(--color-text-muted-dark); font-size: 0.95rem; }
.mod-bento-item--lg { grid-column: span 2; grid-row: span 2; padding: 2.4rem; }
.mod-bento-item--lg h3 { font-size: 1.5rem; }
.mod-bento-item--sm { grid-column: span 1; }
.mod-bento-item--wide { grid-column: span 2; }
.mod-bento-item.mod-highlighted {
  background: linear-gradient(155deg, var(--color-dark-2), var(--color-dark-3));
  color: var(--color-text-light);
  border-color: transparent;
}
.mod-bento-item.mod-highlighted p { color: var(--color-text-muted-light); }
.mod-bento-item.mod-highlighted i { color: var(--color-accent-2); }
.mod-intro:has(.mod-highlighted) { background: linear-gradient(180deg, var(--color-light), var(--color-light-2)); }


.mod-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: var(--space-lg);
}
.mod-contact-card {
  background: var(--color-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.mod-contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: var(--color-dark-3); }
.mod-contact-card i { font-size: 1.8rem; color: var(--color-accent-2); margin-bottom: 1rem; }
.mod-contact-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--color-text-light); }
.mod-contact-card p { color: var(--color-text-muted-light); font-weight: 500; }
.mod-contact-card-note { display: block; margin-top: 0.6rem; font-size: 0.8rem; color: var(--color-text-muted-light); opacity: 0.75; }
.mod-contact-card--light { background: #fff; border-color: var(--border-light); box-shadow: var(--shadow-sm); }
.mod-contact-card--light:hover { background: var(--color-light-2); }
.mod-contact-card--light h3 { color: var(--color-text-dark); }
.mod-contact-card--light p { color: var(--color-text-dark); }
.mod-contact-card--light .mod-contact-card-note { color: var(--color-text-muted-dark); }


.mod-features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-lg);
}
.mod-features-row--reverse .mod-features-media { order: 2; }
.mod-features-row--reverse .mod-features-content { order: 1; }
.mod-features-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.mod-features-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.4rem;
}
.mod-features-content h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.mod-features-content p { color: var(--color-text-muted-dark); }


.mod-program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: var(--space-lg);
}
.mod-program-grid--detail { grid-template-columns: repeat(3, 1fr); }
.mod-program-item {
  background: var(--color-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mod-program-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mod-program-item--light { background: #fff; border-color: var(--border-light); box-shadow: var(--shadow-sm); }
.mod-program-item--light h3, .mod-program-item--light p { color: var(--color-text-dark); }
.mod-program-item--light p { color: var(--color-text-muted-dark); }
.mod-program-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-bottom: 0.7rem;
}
.mod-program-item h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--color-text-light); }
.mod-program-item p { color: var(--color-text-muted-light); font-size: 0.93rem; }
.mod-program-format {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted-light);
}
.mod-program-format i { color: var(--color-accent-2); }


.mod-audience-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: center;
}
.mod-audience-media img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.mod-audience-content p { color: var(--color-text-muted-dark); margin-bottom: 1rem; }
.mod-audience-list { list-style: none; margin-top: 1.4rem; display: grid; gap: 0.7rem; }
.mod-audience-list li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--color-text-dark); }
.mod-audience-list i { color: var(--color-sage); margin-top: 0.25rem; }


.mod-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.mod-cta-title { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--color-text-light); margin-bottom: 1rem; }
.mod-cta p { color: var(--color-text-muted-light); margin-bottom: 1.8rem; }


.mod-page-header { padding: calc(var(--space-xxl) + 2rem) 0 var(--space-xl); position: relative; overflow: hidden; }
.mod-page-header-title { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--color-text-light); margin-bottom: 1rem; position: relative; z-index: 2; }
.mod-page-header-lead { color: var(--color-text-muted-light); max-width: 640px; font-size: 1.08rem; position: relative; z-index: 2; }


.mod-content-narrow { max-width: 780px; }
.mod-content-block p { color: var(--color-text-muted-dark); margin-bottom: 1.1rem; }
.mod-section--dark .mod-content-block p, .mod-section--dark .mod-content-narrow p { color: var(--color-text-muted-light); }


.mod-faq-group-title { font-size: 1.3rem; margin: var(--space-lg) 0 1rem; }
.mod-faq-group-title:first-child { margin-top: 0; }
.mod-faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s ease;
}
.mod-faq-item:has([open]) { box-shadow: var(--shadow-md); border-color: var(--color-accent-2); }
.mod-faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.mod-faq-item summary::-webkit-details-marker { display: none; }
.mod-faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-accent);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.mod-faq-item[open] summary::after { transform: rotate(180deg); }
.mod-faq-item p { margin-top: 0.9rem; color: var(--color-text-muted-dark); }


.mod-form-section-inner { display: grid; gap: var(--space-lg); }
.mod-form-intro { max-width: 640px; }
.mod-form {
  background: var(--color-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: grid;
  gap: 1.3rem;
  transition: border-color 0.35s ease;
}
.mod-form:has(:focus) { border-color: var(--color-accent-2); }
.mod-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.mod-form-row--single { grid-template-columns: 1fr; }
.mod-form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.mod-form-field label { font-size: 0.88rem; font-weight: 600; color: var(--color-text-muted-light); }
.mod-form-field input, .mod-form-field textarea {
  background: var(--color-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--color-text-light);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
}
.mod-form-field textarea { resize: vertical; min-height: 140px; }
.mod-form-field input:focus, .mod-form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent-2);
  box-shadow: 0 0 0 3px rgba(226,167,101,0.18);
}
.mod-form-privacy { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; color: var(--color-text-muted-light); }
.mod-form-privacy input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--color-accent); flex-shrink: 0; }
.mod-form-privacy a { color: var(--color-accent-2); text-decoration: underline; }


.mod-team-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-lg); align-items: center; }
.mod-team-media img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.mod-team-content p { color: var(--color-text-muted-dark); margin-bottom: 1rem; }


.mod-map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin-top: var(--space-md); }


.mod-thanks-inner { text-align: center; max-width: 560px; margin: 0 auto; padding: var(--space-xl) 0; }
.mod-thanks-icon { font-size: 4rem; color: var(--color-accent); margin-bottom: 1.5rem; }
.mod-thanks-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.mod-thanks-text { color: var(--color-text-muted-dark); margin-bottom: 2rem; }


.mod-legal-title { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1.6rem; }
.mod-legal h2 { font-size: 1.25rem; margin: 1.8rem 0 0.7rem; }
.mod-legal p { color: var(--color-text-muted-dark); margin-bottom: 0.8rem; }
.mod-legal a { color: var(--color-accent); text-decoration: underline; }
.mod-legal-box { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1.5rem 1.8rem; margin-bottom: 1.1rem; box-shadow: var(--shadow-sm); }
.mod-legal-box h2 { margin-top: 0; display: flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; }
.mod-legal-box h2 i { color: var(--color-accent); }


.mod-footer { background: var(--color-dark); color: var(--color-text-muted-light); padding: var(--space-xl) 0 0; margin-top: auto; }
.mod-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid var(--border-dark); }
.mod-footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.mod-footer-col h4 { color: var(--color-text-light); font-size: 1rem; margin-bottom: 0.4rem; }
.mod-footer-col a, .mod-footer-col span { font-size: 0.92rem; color: var(--color-text-muted-light); display: flex; align-items: center; gap: 0.5rem; }
.mod-footer-col a:hover { color: var(--color-accent-2); }
.mod-footer-brand p { font-size: 0.9rem; margin-top: 0.5rem; max-width: 320px; }
.mod-footer-bottom { text-align: center; padding: 1.5rem 0; font-size: 0.82rem; }


.mod-cookie-consent {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(94vw, 480px);
  z-index: 900;
  background: var(--color-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.6rem;
  color: var(--color-text-light);
  display: none;
  transition: width 0.45s cubic-bezier(.2,.8,.2,1), max-height 0.45s cubic-bezier(.2,.8,.2,1), padding 0.4s ease;
  max-height: 260px;
  overflow: hidden;
}
.mod-cookie-consent.is-visible { display: block; }
.mod-cookie-consent.is-expanded { width: min(94vw, 640px); max-height: 640px; }
.mod-cookie-consent p { font-size: 0.9rem; color: var(--color-text-muted-light); margin-bottom: 1rem; }
.mod-cookie-consent-title { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--color-text-light); }
.mod-cookie-consent-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.mod-cookie-consent-actions .mod-btn { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
.mod-cookie-consent-categories { margin-top: 1rem; display: grid; gap: 0.9rem; max-height: 300px; overflow-y: auto; }
.mod-cookie-category { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.8rem 1rem; background: var(--color-dark-3); border-radius: var(--radius-sm); }
.mod-cookie-category-info h5 { font-size: 0.92rem; margin-bottom: 0.2rem; color: var(--color-text-light); }
.mod-cookie-category-info p { font-size: 0.78rem; margin-bottom: 0; }
.mod-cookie-switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.mod-cookie-switch input { opacity: 0; width: 0; height: 0; }
.mod-cookie-switch-track { position: absolute; inset: 0; background: rgba(255,255,255,0.15); border-radius: 999px; transition: background 0.3s ease; cursor: pointer; }
.mod-cookie-switch-track::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform 0.3s ease; }
.mod-cookie-switch input:checked + .mod-cookie-switch-track { background: var(--color-accent); }
.mod-cookie-switch input:checked + .mod-cookie-switch-track::before { transform: translateX(18px); }
.mod-cookie-switch input:disabled + .mod-cookie-switch-track { opacity: 0.5; cursor: not-allowed; }


@media (max-width: 980px) {
  .mod-nav-links { display: none; }
  .mod-nav-toggle { display: flex; }
  .mod-mobile-tabs { display: flex; }

  .mod-hero-inner { grid-template-columns: 1fr; }
  .mod-hero-mosaic { height: 380px; order: -1; }
  .mod-bento { grid-template-columns: repeat(2, 1fr); }
  .mod-bento-item--lg { grid-column: span 2; grid-row: span 1; }
  .mod-bento-item--wide { grid-column: span 2; }
  .mod-contact-cards-grid { grid-template-columns: 1fr; }
  .mod-features-row, .mod-features-row--reverse { grid-template-columns: 1fr; }
  .mod-features-row--reverse .mod-features-media, .mod-features-row--reverse .mod-features-content { order: initial; }
  .mod-program-grid, .mod-program-grid--detail { grid-template-columns: repeat(2, 1fr); }
  .mod-audience-inner, .mod-team-inner { grid-template-columns: 1fr; }
  .mod-audience-media { order: -1; }
  .mod-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --space-xxl: 5rem; --space-xl: 3.2rem; --space-lg: 2.2rem; }
  .mod-bento { grid-template-columns: 1fr; }
  .mod-bento-item, .mod-bento-item--lg, .mod-bento-item--sm, .mod-bento-item--wide { grid-column: span 1; }
  .mod-program-grid, .mod-program-grid--detail { grid-template-columns: 1fr; }
  .mod-form-row { grid-template-columns: 1fr; }
  .mod-footer-grid { grid-template-columns: 1fr; }
  .mod-hero-mosaic { height: 300px; }
  .mod-hero-mosaic-img--1, .mod-hero-mosaic-img--2, .mod-hero-mosaic-img--3, .mod-hero-mosaic-img--4, .mod-hero-mosaic-img--5 { width: 48%; height: 130px; }
  body { padding-bottom: 0; }
  .mod-mobile-tabs.is-open ~ .mod-footer, main { padding-bottom: 0; }
}