/* ============================================================
   NACABI YIZUKI — Custom CSS
   Duotone Bold: Deep Navy (#0D1B2A) + Amber Gold (#F4A300)
   ============================================================ */


:root {
  --c-navy: #0D1B2A;
  --c-navy-mid: #162236;
  --c-navy-light: #1E3050;
  --c-amber: #F4A300;
  --c-amber-light: #FFB830;
  --c-amber-dark: #C98900;
  --c-cream: #FDF6E3;
  --c-cream-mid: #F5EDD5;
  --c-text-dark: #0D1B2A;
  --c-text-body: #1E3050;
  --c-text-muted: #4A6080;
  --c-text-light: #FDF6E3;
  --c-text-light-muted: rgba(253,246,227,0.72);
  --c-surface: #F8F2E0;
  --c-white: #FEFEFE;

  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.06);
  --shadow-md: 0 4px 12px rgba(13,27,42,0.12), 0 2px 6px rgba(13,27,42,0.08);
  --shadow-lg: 0 12px 32px rgba(13,27,42,0.18), 0 4px 12px rgba(13,27,42,0.10);
  --shadow-xl: 0 24px 56px rgba(13,27,42,0.22), 0 8px 20px rgba(13,27,42,0.12);
  --shadow-amber: 0 4px 20px rgba(244,163,0,0.30), 0 2px 8px rgba(244,163,0,0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);

  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 76px;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--c-cream);
  color: var(--c-text-body);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul, ol { list-style: none; }

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


.u-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.u-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 0.75rem;
}

.u-label--light {
  color: var(--c-amber-light);
}

.u-text-center { text-align: center; }

.u-hidden { display: none !important; }

.u-thanks-page main { min-height: 60vh; display: flex; align-items: center; }


.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
}

.c-btn--primary {
  background: var(--c-navy);
  color: var(--c-cream);
  box-shadow: var(--shadow-md);
}
.c-btn--primary:hover {
  background: var(--c-navy-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.c-btn--accent {
  background: var(--c-amber);
  color: var(--c-navy);
  box-shadow: var(--shadow-amber);
}
.c-btn--accent:hover {
  background: var(--c-amber-light);
  box-shadow: 0 6px 24px rgba(244,163,0,0.4), 0 2px 8px rgba(244,163,0,0.2);
  transform: translateY(-2px);
}

.c-btn--ghost {
  background: transparent;
  color: var(--c-navy);
  border: 2px solid var(--c-navy);
}
.c-btn--ghost:hover {
  background: var(--c-navy);
  color: var(--c-cream);
  transform: translateY(-2px);
}

.c-btn--outline {
  background: transparent;
  color: var(--c-amber-dark);
  border: 2px solid var(--c-amber);
}
.c-btn--outline:hover {
  background: var(--c-amber);
  color: var(--c-navy);
  transform: translateY(-2px);
}

.c-btn--light {
  background: var(--c-cream);
  color: var(--c-navy);
  box-shadow: var(--shadow-md);
}
.c-btn--light:hover {
  background: var(--c-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.c-btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.c-btn--full { width: 100%; justify-content: center; }


.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--c-navy);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.c-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.c-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: var(--header-h);
}

.c-header__logo { flex-shrink: 0; }
.c-header__logo img { height: 36px; width: auto; }

.c-nav { margin-left: auto; }
.c-nav__list { display: flex; align-items: center; gap: 0.25rem; }
.c-nav__link {
  display: block;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-light-muted);
  transition: all var(--transition);
}
.c-nav__link:hover,
.c-nav__link.is-active {
  color: var(--c-amber);
  background: rgba(244,163,0,0.08);
}

.c-header__cta { margin-left: var(--space-sm); flex-shrink: 0; }

.c-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.c-hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-cream);
  border-radius: 2px;
  transition: all var(--transition);
}


.c-mini-nav {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all var(--transition);
}

.c-mini-nav.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.c-mini-nav__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--c-amber);
  color: var(--c-navy);
  font-size: 1.1rem;
  box-shadow: var(--shadow-amber);
  transition: all var(--transition);
}
.c-mini-nav__pill:hover {
  background: var(--c-amber-light);
  transform: scale(1.08);
}


.c-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.4s;
}

.c-mobile-menu.is-open {
  pointer-events: all;
  visibility: visible;
  transition: visibility 0s linear 0s;
}

.c-mobile-menu__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 360px;
  background: var(--c-navy-mid);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}

.c-mobile-menu.is-open .c-mobile-menu__panel {
  transform: translateX(0);
}

.c-mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 80%;
  right: 0;
  bottom: 0;
  background: rgba(13,27,42,0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.c-mobile-menu.is-open .c-mobile-menu__overlay {
  opacity: 1;
}

.c-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(244,163,0,0.15);
}

.c-mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--c-text-light-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.c-mobile-menu__close:hover { color: var(--c-amber); background: rgba(244,163,0,0.1); }

.c-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.c-mobile-menu__link {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text-light-muted);
  opacity: 0;
  transform: translateX(-20px);
  transition: all var(--transition), opacity 0.3s ease var(--delay, 0s), transform 0.3s ease var(--delay, 0s);
}

.c-mobile-menu.is-open .c-mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
}

.c-mobile-menu__link:hover { color: var(--c-amber); background: rgba(244,163,0,0.08); }

.c-mobile-menu__cta { margin-top: auto; }


.c-breadcrumb {
  background: var(--c-cream-mid);
  border-bottom: 1px solid rgba(13,27,42,0.08);
  padding: 0.625rem 0;
  margin-top: var(--header-h);
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.c-breadcrumb__item::after {
  content: '/';
  color: var(--c-text-muted);
  opacity: 0.5;
}
.c-breadcrumb__item:last-child::after { display: none; }
.c-breadcrumb__item.is-current { color: var(--c-amber-dark); font-weight: 600; }

.c-breadcrumb__link {
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.c-breadcrumb__link:hover { color: var(--c-amber-dark); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.s-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-h);
  background: var(--c-navy);
}

.s-hero__image-side {
  position: absolute;
  inset: 0;
  right: 0;
}

.s-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.55) saturate(0.8);
}

.s-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--c-navy) 45%, transparent 75%);
}

.s-hero__diagonal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--c-navy) 42%, rgba(13,27,42,0.15) 70%, transparent 100%);
  pointer-events: none;
}

.s-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) 0;
}

.s-hero__text-block {
  max-width: 580px;
}

.s-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 1.25rem;
}

.s-hero__heading {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--c-cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.s-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text-light-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.s-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.s-intro {
  padding: var(--space-2xl) 0;
  background: var(--c-cream);
}

.s-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.s-intro__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.s-intro__text-col p {
  color: var(--c-text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.s-intro__text-col .c-btn { margin-top: 0.75rem; }

.s-intro__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.s-intro__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,163,0,0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.s-intro__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.s-intro__image-frame:hover .s-intro__img { transform: scale(1.03); }

.s-intro__accent-block {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--c-navy);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--c-amber);
  box-shadow: var(--shadow-md);
}

.s-intro__accent-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-cream);
  font-style: italic;
  line-height: 1.5;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.s-features {
  padding: var(--space-2xl) 0;
  background: var(--c-navy);
}

.s-features__header {
  margin-bottom: var(--space-xl);
}

.s-features__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.02em;
}

.s-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.c-feature-card {
  background: var(--c-navy-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  border: 1px solid rgba(244,163,0,0.1);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.c-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-amber), var(--c-amber-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.c-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,163,0,0.25);
}

.c-feature-card:hover::before { opacity: 1; }

.c-feature-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(244,163,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--c-amber);
  transition: all var(--transition);
}

.c-feature-card:hover .c-feature-card__icon {
  background: var(--c-amber);
  color: var(--c-navy);
}

.c-feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}

.c-feature-card__text {
  font-size: 0.9rem;
  color: var(--c-text-light-muted);
  line-height: 1.6;
}

.c-feature-card__reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  margin-top: 0;
}

.c-feature-card:hover .c-feature-card__reveal {
  max-height: 120px;
  margin-top: 0.75rem;
}

.c-feature-card__reveal p {
  font-size: 0.85rem;
  color: var(--c-amber-light);
  line-height: 1.5;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(244,163,0,0.15);
}

/* ============================================================
   HOW BRIEF SECTION
   ============================================================ */
.s-how-brief {
  padding: var(--space-2xl) 0;
  background: var(--c-cream-mid);
}

.s-how-brief__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.s-how-brief__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
  display: block;
}

.s-how-brief__image-col a:hover .s-how-brief__img { transform: scale(1.02); }

.s-how-brief__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.s-how-brief__content-col p {
  color: var(--c-text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.s-how-brief__content-col .c-btn { margin-top: 0.75rem; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.s-gallery {
  padding: var(--space-2xl) 0;
  background: var(--c-navy);
}

.s-gallery__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.s-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.s-gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-md);
}

.s-gallery__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
  filter: brightness(0.85) saturate(0.9);
}

.s-gallery__item:hover .s-gallery__img {
  transform: scale(1.06);
  filter: brightness(0.7) saturate(1.1);
}

.s-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.875rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, transparent 100%);
  color: var(--c-cream);
  font-size: 0.82rem;
  font-weight: 600;
  transform: translateY(4px);
  opacity: 0;
  transition: all var(--transition);
}

.s-gallery__item:hover .s-gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   DUAL CTA SECTION
   ============================================================ */
.s-dual-cta {
  padding: var(--space-2xl) 0;
  background: var(--c-cream);
}

.s-dual-cta__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: var(--c-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.06);
}

.s-dual-cta__primary,
.s-dual-cta__secondary {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.s-dual-cta__primary {
  background: var(--c-navy);
}

.s-dual-cta__secondary {
  background: var(--c-white);
}

.s-dual-cta__divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(13,27,42,0.15), transparent);
}

.s-dual-cta__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.s-dual-cta__primary .s-dual-cta__icon {
  background: rgba(244,163,0,0.15);
  color: var(--c-amber);
}

.s-dual-cta__secondary .s-dual-cta__icon {
  background: rgba(13,27,42,0.06);
  color: var(--c-navy);
}

.s-dual-cta__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.s-dual-cta__primary .s-dual-cta__title { color: var(--c-cream); }
.s-dual-cta__secondary .s-dual-cta__title { color: var(--c-navy); }

.s-dual-cta__text {
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.s-dual-cta__primary .s-dual-cta__text { color: var(--c-text-light-muted); }
.s-dual-cta__secondary .s-dual-cta__text { color: var(--c-text-muted); }

/* ============================================================
   ABOUT BRIEF SECTION
   ============================================================ */
.s-about-brief {
  padding: var(--space-2xl) 0;
  background: var(--c-surface);
}

.s-about-brief__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.s-about-brief__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.s-about-brief__content p {
  color: var(--c-text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.s-about-brief__content .c-btn { margin-top: 0.75rem; }

.s-about-brief__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.s-cta-banner {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--c-amber-dark) 0%, var(--c-amber) 50%, var(--c-amber-light) 100%);
}

.s-cta-banner__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.s-cta-banner__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.s-cta-banner__sub {
  font-size: 1.05rem;
  color: rgba(13,27,42,0.75);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ============================================================
   PAGE HERO VARIANTS
   ============================================================ */
.s-page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.s-page-hero--teal {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
}

.s-page-hero--amber {
  background: linear-gradient(135deg, var(--c-amber-dark) 0%, var(--c-amber) 100%);
}

.s-page-hero--deep {
  background: var(--c-navy-mid);
}

.s-page-hero__content { max-width: 680px; }

.s-page-hero__heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.s-page-hero--teal .s-page-hero__heading,
.s-page-hero--deep .s-page-hero__heading { color: var(--c-cream); }
.s-page-hero--amber .s-page-hero__heading { color: var(--c-navy); }

.s-page-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.s-page-hero--teal .s-page-hero__sub,
.s-page-hero--deep .s-page-hero__sub { color: var(--c-text-light-muted); }
.s-page-hero--amber .s-page-hero__sub { color: rgba(13,27,42,0.72); }

.s-page-hero--teal .u-label--light { color: var(--c-amber-light); }
.s-page-hero--amber .u-label--light { color: rgba(13,27,42,0.55); }
.s-page-hero--deep .u-label--light { color: var(--c-amber); }

/* ============================================================
   WHY INTRO
   ============================================================ */
.s-why-intro {
  padding: var(--space-2xl) 0;
  background: var(--c-cream);
}

.s-why-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.s-why-intro__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.s-why-intro__text p {
  color: var(--c-text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.s-why-intro__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.s-differentiators {
  padding: var(--space-2xl) 0;
  background: var(--c-navy);
}

.s-differentiators__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.s-differentiators__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-diff-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(244,163,0,0.1);
  transition: all var(--transition);
}

.c-diff-item:first-child { padding-top: 0; }
.c-diff-item:last-child { border-bottom: none; padding-bottom: 0; }

.c-diff-item:hover { padding-left: 1rem; }

.c-diff-item__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(244,163,0,0.25);
  line-height: 1;
  transition: color var(--transition);
}

.c-diff-item:hover .c-diff-item__number { color: var(--c-amber); }

.c-diff-item__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}

.c-diff-item__content p {
  color: var(--c-text-light-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ============================================================
   APPROACH DETAIL
   ============================================================ */
.s-approach-detail {
  padding: var(--space-2xl) 0;
  background: var(--c-cream-mid);
}

.s-approach-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.s-approach-detail__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
  display: block;
}

.s-approach-detail__image a:hover .s-approach-detail__img { transform: scale(1.02); }

.s-approach-detail__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.s-approach-detail__text p {
  color: var(--c-text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ============================================================
   PROGRAM OVERVIEW
   ============================================================ */
.s-program-overview {
  padding: var(--space-2xl) 0;
  background: var(--c-cream);
}

.s-program-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.s-program-overview__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.s-program-overview__text p {
  color: var(--c-text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.s-program-overview__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   MODULES
   ============================================================ */
.s-modules {
  padding: var(--space-2xl) 0;
  background: var(--c-navy);
}

.s-modules__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.s-modules__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-module-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  background: var(--c-navy-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(244,163,0,0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.c-module-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-amber);
  opacity: 0;
  transition: opacity var(--transition);
}

.c-module-card:hover {
  transform: translateX(6px);
  border-color: rgba(244,163,0,0.2);
  box-shadow: var(--shadow-md);
}

.c-module-card:hover::after { opacity: 1; }

.c-module-card__num {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(244,163,0,0.3);
  line-height: 1;
  transition: color var(--transition);
  padding-top: 0.25rem;
}

.c-module-card:hover .c-module-card__num { color: var(--c-amber); }

.c-module-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}

.c-module-card__content > p {
  font-size: 0.9rem;
  color: var(--c-text-light-muted);
  line-height: 1.6;
}

.c-module-card__reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.c-module-card:hover .c-module-card__reveal {
  max-height: 80px;
}

.c-module-card__reveal p {
  font-size: 0.85rem;
  color: var(--c-amber-light);
  line-height: 1.5;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(244,163,0,0.12);
}

/* ============================================================
   STORY
   ============================================================ */
.s-story {
  padding: var(--space-2xl) 0;
  background: var(--c-cream);
}

.s-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.s-story__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.s-story__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.s-story__text-col p {
  color: var(--c-text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.s-timeline {
  padding: var(--space-2xl) 0;
  background: var(--c-navy);
}

.s-timeline__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.s-timeline__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.c-timeline-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.c-timeline-item:last-child { padding-bottom: 0; }

.c-timeline-item__marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-amber);
  flex-shrink: 0;
  margin-top: 0.25rem;
  box-shadow: 0 0 0 4px rgba(244,163,0,0.15);
  position: relative;
  z-index: 1;
}

.c-timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: rgba(244,163,0,0.15);
}

.c-timeline-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.5rem;
}

.c-timeline-item__content p {
  font-size: 0.9rem;
  color: var(--c-text-light-muted);
  line-height: 1.65;
}

/* ============================================================
   VALUES
   ============================================================ */
.s-values {
  padding: var(--space-2xl) 0;
  background: var(--c-cream-mid);
}

.s-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.s-values__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.s-values__text p {
  color: var(--c-text-body);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.s-values__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
  display: block;
}

.s-values__image a:hover .s-values__img { transform: scale(1.02); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.s-contact-page {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--c-cream);
  margin-top: var(--header-h);
}

.s-contact-page__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.s-contact-form-wrap__header {
  margin-bottom: 2rem;
}

.s-contact-form-wrap__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.s-contact-form-wrap__sub {
  color: var(--c-text-muted);
  line-height: 1.65;
}


.c-contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.c-form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.c-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-navy);
}

.c-form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(13,27,42,0.12);
  border-radius: var(--radius-md);
  background: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-text-dark);
  transition: all var(--transition);
  outline: none;
  min-height: 44px;
}

.c-form-input:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(244,163,0,0.12);
}

.c-form-input.is-invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.c-form-textarea { resize: vertical; min-height: 140px; }

.c-form-helper {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

.c-form-error {
  font-size: 0.78rem;
  color: #e53e3e;
  display: none;
}

.c-form-error.is-visible { display: block; }

.c-form-group--checkbox { gap: 0.5rem; }

.c-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.c-form-checkbox__input { display: none; }

.c-form-checkbox__box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(13,27,42,0.2);
  border-radius: 4px;
  background: var(--c-white);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.c-form-checkbox__input:checked + .c-form-checkbox__box {
  background: var(--c-amber);
  border-color: var(--c-amber);
}

.c-form-checkbox__input:checked + .c-form-checkbox__box::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--c-navy);
  border-bottom: 2px solid var(--c-navy);
  transform: rotate(-45deg) translateY(-1px);
}

.c-form-checkbox__text {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.c-form-checkbox__link {
  color: var(--c-amber-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}


.s-contact-info { display: flex; flex-direction: column; gap: 2rem; }

.s-contact-info__heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
}

.s-contact-info__block {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13,27,42,0.06);
}

.s-contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(13,27,42,0.06);
}

.s-contact-info__item:last-child { border-bottom: none; padding-bottom: 0; }
.s-contact-info__item:first-child { padding-top: 0; }

.s-contact-info__item > i {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(244,163,0,0.1);
  color: var(--c-amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.s-contact-info__item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.s-contact-info__item p,
.s-contact-info__item a {
  font-size: 0.95rem;
  color: var(--c-text-body);
  line-height: 1.5;
}

.s-contact-info__item a:hover { color: var(--c-amber-dark); }

.s-contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.s-contact-faq {
  background: var(--c-navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.s-contact-faq__heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 1.25rem;
}

.c-faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(244,163,0,0.1);
}

.c-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.c-faq-item:first-child { padding-top: 0; }

.c-faq-item__q {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-amber);
  margin-bottom: 0.375rem;
}

.c-faq-item__a {
  font-size: 0.875rem;
  color: var(--c-text-light-muted);
  line-height: 1.6;
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.s-thanks {
  padding: var(--space-2xl) 0;
  background: var(--c-navy);
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
}

.s-thanks__card {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 5rem);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.s-thanks__icon {
  font-size: 3.5rem;
  color: var(--c-amber);
  margin-bottom: 1.5rem;
}

.s-thanks__heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.s-thanks__text {
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.s-thanks__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.s-legal {
  padding: var(--space-2xl) 0;
  background: var(--c-cream);
  margin-top: var(--header-h);
}

.s-legal__inner {
  max-width: 780px;
}

.s-legal__header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--c-amber);
}

.s-legal__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.s-legal__updated {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

.s-legal__inner h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  padding-left: 1rem;
  border-left: 3px solid var(--c-amber);
}

.s-legal__inner p {
  color: var(--c-text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.s-legal__list {
  list-style: disc;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.s-legal__list li {
  color: var(--c-text-body);
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.s-legal__cookie-table {
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.1);
  margin: 1rem 0 1.5rem;
  box-shadow: var(--shadow-sm);
}

.s-legal__cookie-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(13,27,42,0.06);
  font-size: 0.875rem;
  color: var(--c-text-body);
}

.s-legal__cookie-row:last-child { border-bottom: none; }

.s-legal__cookie-row--header {
  background: var(--c-navy);
  color: var(--c-amber);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.c-footer {
  background: var(--c-navy-mid);
  border-top: 1px solid rgba(244,163,0,0.12);
}

.c-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.c-footer__logo { margin-bottom: 1.25rem; }

.c-footer__story {
  font-size: 0.9rem;
  color: var(--c-text-light-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 340px;
}

.c-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.c-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 1rem;
}

.c-footer__list { display: flex; flex-direction: column; gap: 0.5rem; }

.c-footer__link {
  font-size: 0.875rem;
  color: var(--c-text-light-muted);
  transition: color var(--transition);
}

.c-footer__link:hover { color: var(--c-amber-light); }

.c-footer__address {
  font-size: 0.875rem;
  color: var(--c-text-light-muted);
  line-height: 1.6;
}

.c-footer__bottom {
  border-top: 1px solid rgba(244,163,0,0.08);
  padding: 1.25rem 0;
}

.c-footer__copy {
  font-size: 0.8rem;
  color: rgba(253,246,227,0.4);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.c-cookie-icon {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
}

.c-cookie-icon__btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--c-navy);
  color: var(--c-amber);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  border: 2px solid rgba(244,163,0,0.2);
}

.c-cookie-icon__btn:hover {
  background: var(--c-navy-light);
  transform: scale(1.08);
  border-color: var(--c-amber);
}

.c-cookie-icon__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-amber);
  border: 2px solid var(--c-navy);
  display: none;
}

.c-cookie-icon__badge.is-visible { display: block; }

.c-cookie-panel {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: min(360px, calc(100vw - 3rem));
  background: var(--c-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(13,27,42,0.08);
  z-index: 801;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-slow);
}

.c-cookie-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.c-cookie-panel__inner { padding: 1.5rem; }

.c-cookie-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.c-cookie-panel__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
}

.c-cookie-panel__close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.c-cookie-panel__close:hover { background: rgba(13,27,42,0.06); color: var(--c-navy); }

.c-cookie-panel__text {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.c-cookie-panel__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.c-cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.c-cookie-toggle__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-body);
}

.c-cookie-toggle__input { display: none; }

.c-cookie-toggle__slider {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: rgba(13,27,42,0.12);
  flex-shrink: 0;
  transition: background var(--transition);
}

.c-cookie-toggle__slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.c-cookie-toggle__input:checked + .c-cookie-toggle__slider {
  background: var(--c-amber);
}

.c-cookie-toggle__input:checked + .c-cookie-toggle__slider::after {
  transform: translateX(18px);
}

.c-cookie-toggle__slider.is-locked {
  background: rgba(244,163,0,0.5);
  cursor: not-allowed;
}

.c-cookie-toggle__slider.is-locked::after {
  transform: translateX(18px);
}

.c-cookie-panel__actions {
  display: flex;
  gap: 0.75rem;
}

.c-cookie-panel__actions .c-btn { flex: 1; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .s-features__grid { grid-template-columns: 1fr; }
  .s-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .c-footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .c-nav { display: none; }
  .c-header__cta { display: none; }
  .c-hamburger { display: flex; }

  .s-hero { min-height: 85svh; }
  .s-hero__heading { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .s-intro__grid,
  .s-how-brief__grid,
  .s-about-brief__grid,
  .s-why-intro__grid,
  .s-approach-detail__grid,
  .s-program-overview__grid,
  .s-story__grid,
  .s-values__grid { grid-template-columns: 1fr; }

  .s-intro__visual-col { order: -1; }
  .s-approach-detail__image { order: -1; }
  .s-values__image { order: -1; }

  .s-dual-cta__grid {
    grid-template-columns: 1fr;
  }
  .s-dual-cta__divider {
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(13,27,42,0.15), transparent);
  }

  .s-gallery__grid { grid-template-columns: repeat(2, 1fr); }

  .c-footer__inner { grid-template-columns: 1fr; }
  .c-footer__links { grid-template-columns: 1fr 1fr; }

  .s-contact-page__layout { grid-template-columns: 1fr; }

  .c-diff-item { grid-template-columns: 60px 1fr; }

  .s-legal__cookie-row { grid-template-columns: 1fr 1fr; }
  .s-legal__cookie-row span:last-child { grid-column: 1 / -1; font-size: 0.75rem; color: var(--c-text-muted); }
}

@media (max-width: 480px) {
  .s-gallery__grid { grid-template-columns: 1fr 1fr; }
  .s-gallery__img { height: 160px; }
  .c-footer__links { grid-template-columns: 1fr; }
  .s-thanks__actions { flex-direction: column; }
  .c-cookie-panel { right: 0.75rem; bottom: 4.5rem; width: calc(100vw - 1.5rem); }
  .s-legal__cookie-row { grid-template-columns: 1fr; }
}