:root {
  --teal: #1a5f56;
  --terracotta: #d9622b;
  --gold: #e8a33d;
  --plum: #6b3f69;
  --navy: #1b2a3d;
  --cream: #faf6ef;
  --ink: #241f1a;
  --paper: #fffaf3;

  --teal-50: color-mix(in oklch, var(--teal), white 92%);
  --teal-100: color-mix(in oklch, var(--teal), white 80%);
  --teal-300: color-mix(in oklch, var(--teal), white 50%);
  --teal-500: var(--teal);
  --teal-600: color-mix(in oklch, var(--teal), black 12%);
  --teal-700: color-mix(in oklch, var(--teal), black 26%);
  --teal-800: color-mix(in oklch, var(--teal), black 40%);

  --terracotta-50: color-mix(in oklch, var(--terracotta), white 92%);
  --terracotta-100: color-mix(in oklch, var(--terracotta), white 80%);
  --terracotta-300: color-mix(in oklch, var(--terracotta), white 45%);
  --terracotta-600: color-mix(in oklch, var(--terracotta), black 12%);
  --terracotta-700: color-mix(in oklch, var(--terracotta), black 28%);

  --gold-50: color-mix(in oklch, var(--gold), white 90%);
  --gold-100: color-mix(in oklch, var(--gold), white 78%);
  --gold-300: color-mix(in oklch, var(--gold), white 40%);
  --gold-600: color-mix(in oklch, var(--gold), black 18%);
  --gold-700: color-mix(in oklch, var(--gold), black 34%);
  --gold-ink: color-mix(in oklch, var(--gold), black 62%);

  --plum-50: color-mix(in oklch, var(--plum), white 92%);
  --plum-100: color-mix(in oklch, var(--plum), white 78%);
  --plum-300: color-mix(in oklch, var(--plum), white 45%);
  --plum-600: color-mix(in oklch, var(--plum), black 10%);
  --plum-700: color-mix(in oklch, var(--plum), black 25%);

  --navy-100: color-mix(in oklch, var(--navy), white 78%);
  --navy-300: color-mix(in oklch, var(--navy), white 45%);
  --navy-600: color-mix(in oklch, var(--navy), black 12%);
  --navy-800: color-mix(in oklch, var(--navy), black 30%);

  --cream-shift: color-mix(in oklch, var(--cream), var(--terracotta) 6%);

  --shadow-sm: 0 1px 2px rgba(24,18,12,0.08), 0 1px 1px rgba(24,18,12,0.05);
  --shadow-md: 0 6px 16px rgba(24,18,12,0.10), 0 2px 6px rgba(24,18,12,0.08);
  --shadow-lg: 0 20px 44px rgba(24,18,12,0.16), 0 6px 14px rgba(24,18,12,0.10);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.15);

  --radius-sm: 0.6rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.8rem;
  --radius-xl: 2.6rem;

  --font-head: 'Vollkorn', serif;
  --font-body: 'Work Sans', sans-serif;

  --section-pad: clamp(4rem, 8vw, 8rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

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

.sectionLabel {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--terracotta-100);
  color: var(--terracotta-700);
  margin-bottom: 1.2rem;
}
.sectionLabel--onDark {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  min-height: 48px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--gold-600));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--teal-700); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline--light { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline--light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); }


.siteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36,31,26,0.06);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.siteHeader.siteHeader--hidden { transform: translateY(-100%); }

.siteHeader_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.siteHeader_logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal-700);
}
.siteHeader_nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.siteHeader_navLink {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--navy-800);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}
.siteHeader_navLink::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}
.siteHeader_navLink:hover::after,
.siteHeader_navLink[aria-current="page"]::after { width: 100%; }
.siteHeader_navLink--cta {
  background: var(--teal);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, transform 0.25s ease;
}
.siteHeader_navLink--cta::after { display: none; }
.siteHeader_navLink--cta:hover { background: var(--teal-700); transform: translateY(-1px); }

.siteHeader_menuButton {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.siteHeader_menuButton span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: linear-gradient(155deg, var(--teal-700), var(--plum-700));
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  transition: clip-path 0.7s cubic-bezier(.76,0,.24,1);
  pointer-events: none;
}
.mobileMenu.is-open {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: auto;
}
.mobileMenu_panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
}
.mobileMenu_close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.mobileMenu_nav {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobileMenu.is-linksVisible .mobileMenu_nav,
.mobileMenu.is-linksVisible .mobileMenu_legal { opacity: 1; transform: translateY(0); }
.mobileMenu_link {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 600;
  color: #fff;
}
.mobileMenu_legal {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.mobileMenu_legal a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }


.bottomTabBar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 190;
  background: var(--paper);
  border-top: 1px solid rgba(36,31,26,0.08);
  padding: 0.4rem 0.5rem calc(0.4rem + env(safe-area-inset-bottom));
  justify-content: space-around;
}
.bottomTabBar_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  color: var(--navy-300);
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
}
.bottomTabBar_link i { font-size: 1.15rem; }
.bottomTabBar_link[aria-current="page"] { color: var(--terracotta-700); }
.bottomTabBar_link:hover { background: var(--terracotta-50); }


.mainHero {
  position: relative;
  margin-top: 0;
  padding: calc(6.5rem + 2rem) 0 4rem;
  background: linear-gradient(120deg, var(--teal-700) 0%, var(--teal) 45%, var(--plum-700) 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}
.mainHero_inner {
  padding: 1rem 1.5rem 1rem 3rem;
  max-width: 640px;
  justify-self: end;
}
.mainHero_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.14);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.mainHero_title {
  font-size: clamp(2.3rem, 4.5vw + 1rem, 3.8rem);
  margin-bottom: 0.7em;
}
.mainHero_subtitle {
  font-size: clamp(1rem, 1vw + 0.7rem, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
}
.mainHero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0 1.4rem;
}
.mainHero_note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  max-width: 46ch;
}
.mainHero_visual {
  justify-self: start;
  padding-right: 3rem;
}
.mainHero_visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}


.introFlow {
  background: var(--cream);
  padding: var(--section-pad) 0 0;
}
.introFlow_top { padding-bottom: 3.5rem; max-width: 760px; }
.introFlow_heading { font-size: clamp(1.8rem, 2.4vw + 1rem, 2.6rem); }
.introFlow_text { font-size: 1.08rem; color: color-mix(in oklch, var(--ink), white 15%); }
.introFlow_bottom {
  background: var(--cream-shift);
  padding: 3.5rem 1.5rem calc(var(--section-pad) + 1rem);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.introFlow_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.introFlow_item i {
  font-size: 1.6rem;
  color: var(--terracotta-600);
  margin-bottom: 0.8rem;
  display: block;
}
.introFlow_item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.introFlow_item p { color: color-mix(in oklch, var(--ink), white 20%); font-size: 0.96rem; }


.whySection {
  background: var(--terracotta);
  color: #fff;
  padding: var(--section-pad) 0;
}
.whySection_layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.whySection_text h2 { font-size: clamp(1.8rem, 2.6vw + 1rem, 2.6rem); }
.whySection_text p { color: rgba(255,255,255,0.92); }
.whySection_link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: gap 0.25s ease;
}
.whySection_link:hover { gap: 0.9rem; }
.whySection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}


.moduleSection {
  background: var(--plum);
  color: #fff;
  padding: var(--section-pad) 0;
}
.moduleSection_head { max-width: 700px; margin-bottom: 3rem; }
.moduleSection_head p { color: rgba(255,255,255,0.85); }
.moduleScroll {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.5rem;
}
.moduleScroll_track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.2rem 1.5rem;
  flex: 1;
  scrollbar-width: thin;
}
.moduleScroll_track::-webkit-scrollbar { height: 8px; }
.moduleScroll_track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 999px; }

.moduleCard {
  flex: 0 0 clamp(240px, 32vw, 320px);
  scroll-snap-align: start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.moduleCard:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.14);
  box-shadow: var(--shadow-lg);
}
.moduleCard_number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-300);
  display: block;
  margin-bottom: 0.6rem;
}
.moduleCard h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.moduleCard p { color: rgba(255,255,255,0.82); font-size: 0.94rem; margin: 0; }

.moduleScroll_arrow {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.moduleScroll_arrow:hover { background: rgba(255,255,255,0.25); transform: scale(1.06); }


.detailSection {
  background: var(--gold-50);
  padding: var(--section-pad) 0;
}
.detailSection_head { max-width: 640px; margin-bottom: 3rem; }
.detailSection_head p { color: color-mix(in oklch, var(--ink), white 20%); }
.detailSection_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.serviceCard {
  background: #fff;
  border: 1px solid var(--gold-100);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.serviceCard:hover, .serviceCard:focus-within { box-shadow: var(--shadow-md); border-color: var(--gold-300); }
.serviceCard_header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.serviceCard_icon {
  font-size: 1.4rem;
  color: var(--gold-700);
  flex: 0 0 auto;
}
.serviceCard_header h3 {
  flex: 1;
  font-size: 1.12rem;
  margin: 0;
}
.serviceCard_chevron {
  transition: transform 0.3s ease;
  color: var(--gold-700);
}
.serviceCard.is-open .serviceCard_chevron { transform: rotate(180deg); }
.serviceCard_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
  margin-top: 0;
}
.serviceCard.is-open .serviceCard_body {
  max-height: 300px;
  opacity: 1;
  margin-top: 1rem;
}
.serviceCard_body p { color: color-mix(in oklch, var(--ink), white 15%); font-size: 0.96rem; margin: 0; }


.parallaxSection {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.parallaxSection_bg {
  position: absolute;
  inset: -15% -5%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallaxSection_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,42,61,0.88), rgba(107,63,105,0.75));
}
.parallaxSection_content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.parallaxSection_content blockquote {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.2vw + 1rem, 2.1rem);
  line-height: 1.4;
}
.parallaxSection_content cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}


.peopleSection {
  background: var(--teal-50);
  padding: var(--section-pad) 0;
}
.peopleSection_layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.peopleSection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.peopleSection_text h2 { font-size: clamp(1.7rem, 2.4vw + 1rem, 2.4rem); }
.peopleSection_text p { color: color-mix(in oklch, var(--ink), white 15%); }


.ctaSection {
  background: linear-gradient(120deg, var(--navy), var(--teal-700));
  color: #fff;
  padding: calc(var(--section-pad) * 0.75) 0;
}
.ctaSection_inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.ctaSection_inner h2 { font-size: clamp(1.7rem, 2.4vw + 1rem, 2.4rem); }
.ctaSection_inner p { color: rgba(255,255,255,0.85); }
.ctaSection_actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}


.innerHero {
  padding: calc(6.5rem + 3rem) 0 4rem;
  color: #fff;
}
.innerHero--teal { background: linear-gradient(120deg, var(--teal-700), var(--teal)); }
.innerHero--plum { background: linear-gradient(120deg, var(--plum-700), var(--plum)); }
.innerHero--terracotta { background: linear-gradient(120deg, var(--terracotta-700), var(--terracotta)); }
.innerHero--gold { background: linear-gradient(120deg, var(--gold-700), var(--gold)); color: var(--gold-ink); }
.innerHero--gold .sectionLabel { background: rgba(36,31,26,0.14); color: var(--gold-ink); }
.innerHero_inner { max-width: 760px; }
.innerHero_inner h1 { font-size: clamp(2rem, 3.5vw + 1rem, 3.2rem); }
.innerHero_inner p { font-size: 1.1rem; opacity: 0.92; }


.storySection { background: var(--cream); padding: var(--section-pad) 0; }
.storySection_layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.storySection_text h2 { font-size: 1.5rem; margin-top: 1.6rem; }
.storySection_text h2:first-child { margin-top: 0; }
.storySection_text p { color: color-mix(in oklch, var(--ink), white 15%); }
.storySection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  position: sticky;
  top: 6.5rem;
}

.approachSection { background: var(--plum-50); padding: var(--section-pad) 0; }
.approachSection_head { max-width: 640px; margin-bottom: 3rem; }
.approachSection_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}
.approachCard {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.approachCard:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.approachCard_index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--plum-100);
  color: var(--plum-700);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 1rem;
}

.roomSection { background: var(--paper); padding: var(--section-pad) 0; }
.roomSection_layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.roomSection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.roomSection_text p { color: color-mix(in oklch, var(--ink), white 15%); }


.curriculumSection { background: var(--cream); padding: var(--section-pad) 0; }
.curriculumSection_image {
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.curriculumSection_image img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }

.curriculumList { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.6rem; }
.curriculumItem {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.curriculumItem:hover { box-shadow: var(--shadow-md); }
.curriculumItem_number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terracotta-300);
}
.curriculumItem_content h2 { font-size: 1.25rem; }
.curriculumItem_content p { color: color-mix(in oklch, var(--ink), white 15%); }
.curriculumItem_exercise {
  font-size: 0.92rem;
  color: var(--teal-700);
  background: var(--teal-50);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.formatSection {
  background: var(--navy);
  color: #fff;
  padding: var(--section-pad) 0;
}
.formatSection_layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.formatSection_text p { color: rgba(255,255,255,0.85); }
.formatSection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}


.recordingsSection { background: var(--gold-50); padding: var(--section-pad) 0; }
.recordingsSection_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.recordingsSection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.recordingsSection_text p { color: color-mix(in oklch, var(--ink), white 15%); }

.techSection { background: var(--teal-700); color: #fff; padding: var(--section-pad) 0; }
.techSection_head { max-width: 640px; margin-bottom: 3rem; }
.techSection_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.techCard {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.techCard:hover { transform: translateY(-4px); background: rgba(255,255,255,0.14); }
.techCard i { font-size: 1.5rem; color: var(--gold-300); margin-bottom: 0.8rem; display: block; }
.techCard h3 { font-size: 1.05rem; }
.techCard p { font-size: 0.92rem; color: rgba(255,255,255,0.8); margin: 0; }


.contactSection { background: var(--paper); }
.contactSection_split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.contactSection_map { min-height: 320px; background: var(--teal-50); }
.contactSection_map iframe { width: 100%; height: 100%; min-height: 320px; }
.contactSection_form {
  padding: clamp(2rem, 4vw, 4rem);
}
.contactSection_form h2 { font-size: 1.8rem; }
.contactSection_formIntro { color: color-mix(in oklch, var(--ink), white 20%); font-size: 0.9rem; }

.formGroup { margin-bottom: 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; }
.formGroup label { font-weight: 600; font-size: 0.92rem; }
.formGroup input[type="text"],
.formGroup input[type="email"],
.formGroup input[type="tel"],
.formGroup textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid color-mix(in oklch, var(--ink), white 75%);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.formGroup input:focus, .formGroup textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-100);
}
.formGroup--checkbox { flex-direction: row; align-items: flex-start; gap: 0.7rem; }
.formGroup--checkbox input { width: 20px; height: 20px; margin-top: 3px; flex: 0 0 auto; }
.formGroup--checkbox label { font-weight: 400; font-size: 0.9rem; }
.formGroup_error { color: var(--terracotta-700); font-size: 0.88rem; min-height: 1.2em; }

.a11ySection { background: var(--cream); padding: var(--section-pad) 0; }
.a11ySection_layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.a11ySection_image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.a11ySection_text p { color: color-mix(in oklch, var(--ink), white 15%); }


.thanksSection { background: var(--cream); padding: calc(6.5rem + 3rem) 0 var(--section-pad); min-height: 60vh; }
.thanksSection_inner { max-width: 620px; }
.thanksSection_inner h1 { font-size: clamp(1.9rem, 3vw + 1rem, 2.8rem); }
.thanksTimeline {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.thanksTimeline_item {
  display: flex;
  gap: 1.2rem;
  padding-bottom: 2.2rem;
  position: relative;
}
.thanksTimeline_item::before {
  content: '';
  position: absolute;
  left: 20px; top: 44px; bottom: 0;
  width: 2px;
  background: color-mix(in oklch, var(--ink), white 82%);
}
.thanksTimeline_item:last-child::before { display: none; }
.thanksTimeline_dot {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklch, var(--ink), white 85%);
  color: #fff;
  z-index: 1;
}
.thanksTimeline_item--done .thanksTimeline_dot,
.thanksTimeline_item--current .thanksTimeline_dot { background: var(--teal); }
.thanksTimeline_item--current .thanksTimeline_dot { box-shadow: 0 0 0 6px var(--teal-100); }
.thanksTimeline_item--upcoming .thanksTimeline_dot { background: color-mix(in oklch, var(--ink), white 78%); color: color-mix(in oklch, var(--ink), white 30%); }
.thanksTimeline_content h2 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.thanksTimeline_content p { font-size: 0.94rem; color: color-mix(in oklch, var(--ink), white 20%); margin: 0; }
.thanksTimeline_item--upcoming .thanksTimeline_content { opacity: 0.6; }


.legalHero { background: var(--navy); color: #fff; padding: calc(6.5rem + 3rem) 0 3rem; }
.legalHero--narrative { background: linear-gradient(120deg, var(--navy), var(--plum-700)); }
.legalHero h1 { font-size: clamp(1.9rem, 3vw + 1rem, 2.8rem); }
.legalHero_meta { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.legalSection { padding: var(--section-pad) 0; background: var(--paper); }
.legalSection h2 { font-size: 1.3rem; margin-top: 2rem; }
.legalNarrative { max-width: 760px; }
.legalNarrative p { color: color-mix(in oklch, var(--ink), white 12%); }
.legalTable { width: 100%; border-collapse: collapse; margin-bottom: 2.5rem; }
.legalTable th, .legalTable td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid color-mix(in oklch, var(--ink), white 85%);
  vertical-align: top;
}
.legalTable th { width: 40%; font-weight: 600; color: var(--navy-800); }


.pageFooter { background: var(--navy); color: rgba(255,255,255,0.85); margin-top: 0; padding-bottom: 0; }
.pageFooter_bar { height: 6px; background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--plum), var(--teal)); }
.pageFooter_columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3.5rem 1.5rem 2.5rem;
}
.pageFooter_col h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.pageFooter_col a { display: block; color: rgba(255,255,255,0.75); font-size: 0.92rem; padding: 0.25rem 0; transition: color 0.25s ease; }
.pageFooter_col a:hover { color: #fff; }
.pageFooter_col p { font-size: 0.92rem; margin-bottom: 0.5rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.pageFooter_col p i { margin-top: 3px; color: var(--gold-300); }
.pageFooter_logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.pageFooter_col--brand p { color: rgba(255,255,255,0.7); }
.pageFooter_bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.3rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}


.cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--paper);
  border-top: 1px solid color-mix(in oklch, var(--ink), white 82%);
  box-shadow: 0 -8px 30px rgba(24,18,12,0.16);
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  padding: 1.6rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookieBanner.is-visible { display: grid; transform: translateY(0); }
.cookieBanner_info h2 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.cookieBanner_info p { font-size: 0.88rem; color: color-mix(in oklch, var(--ink), white 20%); margin: 0; }
.cookieBanner_info a { text-decoration: underline; }
.cookieBanner_controls { display: flex; flex-direction: column; gap: 0.9rem; }
.cookieBanner_categories { display: flex; flex-wrap: wrap; gap: 1rem; }
.cookieBanner_toggle { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; }
.cookieBanner_toggle input { width: 18px; height: 18px; }
.cookieBanner_actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cookieBanner_actions .btn { padding: 0.6rem 1.1rem; font-size: 0.85rem; min-height: 40px; }


.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }


.pace .pace-progress { background: var(--terracotta); height: 3px; }
.pace .pace-progress-inner { box-shadow: 0 0 8px var(--terracotta), 0 0 4px var(--gold); }
.pace .pace-activity { display: none; }


@media (max-width: 980px) {
  .mainHero { grid-template-columns: 1fr; padding-top: calc(5rem + 2rem); text-align: left; }
  .mainHero_inner { justify-self: stretch; padding: 1rem 1.5rem; max-width: 100%; }
  .mainHero_visual { justify-self: stretch; padding: 0 1.5rem; order: -1; }
  .whySection_layout, .storySection_layout, .roomSection_layout,
  .peopleSection_layout, .formatSection_layout, .recordingsSection_layout,
  .a11ySection_layout { grid-template-columns: 1fr; }
  .storySection_image img { position: static; }
  .contactSection_split { grid-template-columns: 1fr; }
  .contactSection_map { min-height: 280px; }
  .pageFooter_columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .siteHeader_nav { display: none; }
  .siteHeader_menuButton { display: flex; }
  .bottomTabBar { display: flex; }
  body { padding-bottom: 70px; }
  .cookieBanner { grid-template-columns: 1fr; padding: 1.3rem 1.2rem calc(1.3rem + 70px); }
  .curriculumItem { grid-template-columns: 60px 1fr; padding: 1.4rem; }
  .curriculumItem_number { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .pageFooter_columns { grid-template-columns: 1fr; gap: 2rem; }
  .mainHero_actions { flex-direction: column; align-items: stretch; }
  .mainHero_actions .btn { width: 100%; }
  .ctaSection_actions { flex-direction: column; }
  .ctaSection_actions .btn { width: 100%; }
}