/* =========================================================
   Siri Prakash — Presence
   Design system v2 — light, pastel, rounded
   Palette: eucalyptus / sky / blush / oat / lilac on cloud white
   Type: Fraunces (display) + Manrope (interface) — self-hosted
   ========================================================= */

/* ---------- Local fonts ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Base */
  --cloud:      #FCFCFA;
  --white:      #FFFFFF;

  /* Pastel tints */
  --mist:       #E8F1EC;
  --sky:        #E5EEF6;
  --bloom:      #FAEDE9;
  --oat:        #FBF2E1;
  --lilac:      #EFEAF6;

  /* Greens */
  --moss:       #22423A;
  --moss-soft:  #4E6A60;
  --moss-mute:  #7B928A;
  --jade:       #2F6B58;
  --jade-dark:  #24543F;

  /* Marks */
  --honey:      #B98A3C;

  /* Lines & shadow */
  --line:       rgba(34, 66, 58, 0.12);
  --line-mid:   rgba(34, 66, 58, 0.22);
  --shadow-sm:  0 2px 10px rgba(34, 66, 58, .05);
  --shadow-md:  0 10px 30px rgba(34, 66, 58, .07);
  --shadow-lg:  0 24px 60px rgba(34, 66, 58, .10);

  /* Type */
  --display: "Fraunces", Georgia, serif;
  --sans:    "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* Metrics */
  --wrap: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: clamp(24px, 3.5vw, 44px);
  --pill: 999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cloud);
  color: var(--moss-soft);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--moss);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--mist); color: var(--moss); }

:focus-visible {
  outline: 3px solid var(--jade);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--jade); color: var(--white);
  padding: .8rem 1.3rem; z-index: 999;
  font-size: .9rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* ---------- Type scale ---------- */
.t-display { font-size: clamp(2.6rem, 6.6vw, 4.9rem); line-height: 1.03; letter-spacing: -0.032em; font-weight: 350; }
.t-xl      { font-size: clamp(2rem, 4.2vw, 3.15rem);  line-height: 1.1;  letter-spacing: -0.026em; }
.t-lg      { font-size: clamp(1.55rem, 2.8vw, 2.2rem); line-height: 1.18; letter-spacing: -0.02em; }
.t-md      { font-size: clamp(1.2rem, 1.9vw, 1.45rem); line-height: 1.32; }

.lede {
  font-size: clamp(1.1rem, 1.65vw, 1.3rem);
  line-height: 1.6;
  color: var(--moss-soft);
}
.serif-it { font-family: var(--display); font-style: italic; font-weight: 300; }

/* Kicker — small pill label, sentence case */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--jade);
  background: var(--white);
  border: 1px solid var(--line);
  padding: .42rem 1rem;
  border-radius: var(--pill);
  margin: 0 0 1.3rem;
  box-shadow: var(--shadow-sm);
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--jade);
  flex: none;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 800px; }
.wrap--wide   { max-width: 1380px; }

.prose { max-width: 62ch; }
.prose--center { margin-inline: auto; text-align: center; }

.section { padding-block: clamp(3.75rem, 8vw, 7rem); }
.section.is-tight { padding-block: clamp(2.75rem, 5vw, 4.5rem); }
.section.is-flush-top { padding-top: 0; }

/* Inset rounded pastel bands */
.band {
  margin-inline: clamp(10px, 2.2vw, 28px);
  border-radius: var(--r-xl);
  padding-block: clamp(3.25rem, 7vw, 6rem);
}
.tint-mist  { background: var(--mist); }
.tint-sky   { background: var(--sky); }
.tint-bloom { background: var(--bloom); }
.tint-oat   { background: var(--oat); }
.tint-lilac { background: var(--lilac); }
.tint-white { background: var(--white); box-shadow: var(--shadow-md); }

.section-head { margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem); max-width: 58ch; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .kicker { margin-inline: auto; display: inline-flex; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .005em;
  padding: .95rem 1.9rem;
  border: 1.5px solid transparent;
  border-radius: var(--pill);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.btn--solid {
  background: var(--jade);
  color: var(--white);
  border-color: var(--jade);
  box-shadow: 0 6px 18px rgba(47, 107, 88, .22);
}
.btn--solid:hover { background: var(--jade-dark); border-color: var(--jade-dark); transform: translateY(-1px); }

.btn--ghost {
  background: var(--white);
  color: var(--moss);
  border-color: var(--line-mid);
}
.btn--ghost:hover { border-color: var(--jade); color: var(--jade); }

.btn--plain {
  background: transparent;
  color: var(--moss);
  border-color: var(--line-mid);
}
.btn--plain:hover { background: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.9rem; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--jade);
  text-decoration: none;
}
.link-arrow::after {
  content: "";
  width: 16px; height: 1.5px;
  background: currentColor;
  transition: width .22s ease;
}
a:hover .link-arrow::after, .link-arrow:hover::after { width: 26px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 252, 250, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 74px;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: .7rem; flex: none; }
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 50% 50% 50% 12%;
  background: linear-gradient(140deg, var(--mist), var(--sky) 55%, var(--bloom));
  border: 1px solid var(--line);
  flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-size: 1.28rem; font-weight: 450; color: var(--moss); letter-spacing: -.015em; }
.brand__role { font-size: .66rem; font-weight: 700; letter-spacing: .09em; color: var(--moss-mute); margin-top: .35rem; }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list {
  display: flex; align-items: center; gap: .3rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--moss-soft);
  padding: .5rem .85rem;
  border-radius: var(--pill);
  transition: background-color .2s ease, color .2s ease;
}
.nav-list a:hover { background: var(--mist); color: var(--moss); }
.nav-list a[aria-current="page"] { background: var(--mist); color: var(--moss); }

.nav-toggle {
  display: none;
  background: var(--white);
  border: 1.5px solid var(--line-mid);
  border-radius: var(--pill);
  padding: .55rem 1.1rem;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--moss);
}

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--cloud);
    border-bottom: 1px solid var(--line);
    padding: 1.1rem var(--gutter) 2rem;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav-list a { display: block; padding: .95rem 1rem; font-size: 1.02rem; border-radius: var(--r-sm); }
  .nav .btn { width: 100%; margin-top: 1.1rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -32%; left: 50%;
  width: min(1150px, 135vw);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, rgba(232,241,236,.95), rgba(232,241,236,0) 72%),
    radial-gradient(closest-side at 32% 58%, rgba(229,238,246,.9), rgba(229,238,246,0) 68%),
    radial-gradient(closest-side at 70% 62%, rgba(250,237,233,.85), rgba(250,237,233,0) 66%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
}

.hero__text .t-display { margin-bottom: 1.35rem; }
.hero__sub { font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6; max-width: 40ch; }

.hero__media { position: relative; }
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 46% 46% 40% 40% / 34% 34% 30% 30%;
  box-shadow: var(--shadow-lg);
}

/* Floating credential pills around the portrait */
.float-pill {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: .6rem 1.05rem;
  box-shadow: var(--shadow-md);
  font-size: .8rem;
  font-weight: 700;
  color: var(--moss);
  white-space: nowrap;
}
.float-pill span { color: var(--moss-mute); font-weight: 600; }
.float-pill.is-a { top: 14%; left: -4%; }
.float-pill.is-b { bottom: 20%; right: -3%; }
.float-pill.is-c { bottom: 4%; left: 6%; }
@media (max-width: 640px) {
  .float-pill { font-size: .72rem; padding: .5rem .8rem; }
  .float-pill.is-a { left: -2%; }
  .float-pill.is-b { right: -1%; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding-block: clamp(2.75rem, 6vw, 4.75rem) clamp(2rem, 4vw, 3.25rem); overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  top: -46%; left: 50%;
  width: min(980px, 130vw);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(232,241,236,.85), rgba(232,241,236,0) 70%);
  pointer-events: none;
}
.page-hero > * { position: relative; }

.hero-photo-band {
  margin-inline: clamp(10px, 2.2vw, 28px);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.hero-photo-band img {
  width: 100%;
  height: clamp(260px, 42vw, 460px);
  object-fit: cover;
}

/* ---------- Credential strip ---------- */
.creds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 760px) { .creds { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.cred {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.cred img { width: 52px; height: 52px; object-fit: contain; flex: none; border-radius: 50%; }
.cred__num { font-family: var(--display); font-size: 1.45rem; color: var(--moss); display: block; line-height: 1.1; }
.cred__label { font-size: .82rem; color: var(--moss-mute); display: block; margin-top: .2rem; line-height: 1.4; }

/* ---------- Feature (2-col) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature.is-reversed .feature__media { order: -1; }
}
.feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.feature__media.is-portrait img { aspect-ratio: 3 / 4; }
.feature__media.is-organic img { border-radius: 40% 40% 34% 34% / 26% 26% 24% 24%; }

/* ---------- Recognition checklist ---------- */
.recog { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.recog li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.05rem 1.35rem 1.05rem 3.1rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}
.recog li::before {
  content: "";
  position: absolute;
  left: 1.25rem; top: 1.35rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--jade);
  opacity: .35;
}

/* ---------- Outcome cards ---------- */
.outcomes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 700px)  { .outcomes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .outcomes { grid-template-columns: repeat(3, 1fr); } }
.outcomes li {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.6rem 1.6rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.outcomes li h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.outcomes li p { font-size: .96rem; margin: 0; }
.outcomes .dot {
  width: 30px; height: 30px;
  border-radius: 50% 50% 50% 14%;
  display: block;
  margin-bottom: 1rem;
}
.outcomes li:nth-child(6n+1) .dot { background: var(--mist); }
.outcomes li:nth-child(6n+2) .dot { background: var(--sky); }
.outcomes li:nth-child(6n+3) .dot { background: var(--bloom); }
.outcomes li:nth-child(6n+4) .dot { background: var(--oat); }
.outcomes li:nth-child(6n+5) .dot { background: var(--lilac); }
.outcomes li:nth-child(6n+6) .dot { background: var(--mist); }

/* ---------- Journey cards (dated) ---------- */
.journeys { display: grid; gap: 1rem; }
.journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.journey:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
@media (min-width: 860px) { .journey { grid-template-columns: 210px 1fr; gap: 2rem; align-items: start; } }

.journey__when {
  display: inline-flex;
  align-items: center;
  align-self: start;
  font-size: .82rem;
  font-weight: 700;
  color: var(--moss);
  background: var(--mist);
  border-radius: var(--pill);
  padding: .45rem 1rem;
}
.journey:nth-child(2) .journey__when { background: var(--sky); }
.journey:nth-child(3) .journey__when { background: var(--bloom); }
.journey__body h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin-bottom: .45rem; }
.journey__meta { font-size: .87rem; color: var(--moss-mute); margin-bottom: .75rem; font-weight: 600; }
.journey__body p { max-width: 60ch; margin-bottom: 1rem; }

/* ---------- Path cards ---------- */
.paths { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 880px) { .paths { grid-template-columns: repeat(3, 1fr); } }
.path {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.15rem);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: box-shadow .25s ease, transform .25s ease;
}
.path:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.path__icon {
  width: 46px; height: 46px;
  border-radius: 50% 50% 50% 14%;
  margin-bottom: 1.15rem;
}
.path:nth-child(1) .path__icon { background: var(--mist); }
.path:nth-child(2) .path__icon { background: var(--oat); }
.path:nth-child(3) .path__icon { background: var(--lilac); }
.path h3 { font-size: 1.42rem; margin-bottom: .6rem; }
.path p { font-size: .97rem; }
.path .link-arrow { margin-top: 1.25rem; }

/* ---------- Offer cards ---------- */
.offers { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 780px)  { .offers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .offers.is-three { grid-template-columns: repeat(3, 1fr); } }
.offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.15rem);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.offer.is-featured {
  background: var(--mist);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.offer__tag {
  position: absolute;
  top: 1.15rem; right: 1.15rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .05em;
  color: var(--jade); background: var(--white);
  padding: .3rem .75rem; border-radius: var(--pill);
}
.offer h3 { font-size: 1.45rem; margin-bottom: .55rem; padding-right: 5.5rem; }
.offer__price { font-family: var(--display); font-size: 1.9rem; color: var(--moss); line-height: 1.1; }
.offer__save { font-family: var(--sans); font-size: .82rem; font-weight: 700; color: var(--jade); }
.offer__alt { font-size: .82rem; color: var(--moss-mute); margin: .35rem 0 1.05rem; }
.offer p { font-size: .96rem; }
.offer__terms { font-size: .8rem; color: var(--moss-mute); margin-top: auto; padding-top: 1.35rem; }
.offer .btn { margin-top: 1.25rem; }

/* ---------- Stage cards ---------- */
.stages { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 880px) { .stages { grid-template-columns: repeat(3, 1fr); } }
.stage {
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.15rem);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.stage:nth-child(1) { background: var(--mist); border-color: transparent; }
.stage:nth-child(2) { background: var(--sky);  border-color: transparent; }
.stage:nth-child(3) { background: var(--lilac); border-color: transparent; }
.stage__index { font-size: .78rem; font-weight: 800; color: var(--jade); margin-bottom: .85rem; }
.stage h3 { font-size: 1.45rem; margin-bottom: .6rem; }
.stage p { font-size: .95rem; }
.stage__dots { display: flex; gap: .4rem; margin-top: 1.4rem; }
.stage__dots span {
  flex: 1; height: 5px; border-radius: var(--pill);
  background: var(--moss); opacity: .18;
}
.stage__dots span:first-child { opacity: .55; }

/* ---------- Ticks / included ---------- */
.included { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 820px) { .included { grid-template-columns: repeat(3, 1fr); } }
.included__col h3 {
  font-size: 1.18rem;
  padding-bottom: .75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line-mid);
}
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: .72rem;
  font-size: .96rem;
  line-height: 1.5;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--jade);
  opacity: .4;
}

/* ---------- Teachers ---------- */
.teachers { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 800px) { .teachers { grid-template-columns: 1fr 1fr; } }
.teacher {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: grid; gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 520px) { .teacher { grid-template-columns: 128px 1fr; align-items: start; } }
.teacher img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 42% 42% 38% 38% / 30% 30% 26% 26%; }
.teacher h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.teacher__role { font-size: .8rem; color: var(--jade); font-weight: 700; margin-bottom: .75rem; }
.teacher p { font-size: .95rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
@media (min-width: 700px)  { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(5, 1fr); } }
.gallery figure { margin: 0; }
.gallery img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--r-md);
}
.gallery figcaption { font-size: .75rem; color: var(--moss-mute); margin-top: .45rem; line-height: 1.35; }

/* ---------- Rates ---------- */
.rates {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: .4rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.rate-row {
  display: grid; grid-template-columns: 1fr; gap: .3rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.rate-row:last-child { border-bottom: none; }
.rate-row__label { font-size: 1.02rem; color: var(--moss); font-weight: 600; }
.rate-row__note { font-size: .84rem; color: var(--moss-mute); }
.rate-row__price { font-family: var(--display); font-size: 1.22rem; color: var(--jade); }
@media (min-width: 620px) {
  .rate-row { grid-template-columns: 1fr auto; column-gap: 1.75rem; align-items: baseline; }
  .rate-row__note { grid-column: 1; }
  .rate-row__price { grid-column: 2; grid-row: 1 / span 2; text-align: right; }
}

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: .6rem; }
.accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0 1.35rem;
  box-shadow: var(--shadow-sm);
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.25rem 1.15rem 0;
  position: relative;
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--moss);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem; font-weight: 400;
  color: var(--jade);
}
.accordion details[open] summary::after { content: "\2013"; }
.accordion__body { padding: 0 0 1.4rem; font-size: .96rem; max-width: 66ch; }

/* ---------- Posts ---------- */
.posts { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 760px) { .posts { grid-template-columns: repeat(3, 1fr); } }
.post {
  text-decoration: none; display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.post:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.post__inner { padding: 1.4rem 1.5rem 1.65rem; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-size: .76rem; color: var(--moss-mute); font-weight: 600; margin-bottom: .5rem; }
.post h3 { font-size: 1.2rem; line-height: 1.28; margin-bottom: .5rem; }
.post p { font-size: .93rem; }
.post .link-arrow { margin-top: 1.1rem; }

/* ---------- Quote ---------- */
.quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 2.15rem);
  line-height: 1.34;
  font-weight: 300;
  font-style: italic;
  color: var(--moss);
  max-width: 22ch;
  margin: 0;
}
.quote.is-wide { max-width: 30ch; }
.quote cite {
  display: block;
  font-family: var(--sans);
  font-size: .82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--moss-mute);
  margin-top: 1.35rem;
  line-height: 1.5;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--moss); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: .85rem 1.05rem;
  background: var(--cloud);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--moss);
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(47,107,88,.25);
  outline-offset: 0;
  border-color: var(--jade);
}
.field__hint { font-size: .8rem; color: var(--moss-mute); margin-top: .4rem; }
.form-status {
  font-size: .9rem;
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  background: var(--mist);
  border-radius: var(--r-sm);
  color: var(--moss);
  display: none;
}
.form-status.is-visible { display: block; }

.signup { display: flex; flex-direction: column; gap: .7rem; max-width: 480px; margin-top: 1.75rem; }
.signup input {
  flex: 1;
  font-family: var(--sans);
  font-size: 1rem;
  padding: .95rem 1.2rem;
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: var(--pill);
  color: var(--moss);
}
.signup input:focus { outline: 3px solid rgba(47,107,88,.25); border-color: var(--jade); }
@media (min-width: 540px) { .signup { flex-direction: row; } .signup .btn { flex: none; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--mist);
  margin-inline: clamp(10px, 2.2vw, 28px);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  color: var(--moss-soft);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.25rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-mid);
}
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; } }
.footer-grid h4 { font-family: var(--sans); font-size: .76rem; font-weight: 800; letter-spacing: .09em; color: var(--moss); margin-bottom: 1rem; text-transform: uppercase; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .92rem; text-decoration: none; color: var(--moss-soft); }
.footer-links a:hover { color: var(--jade); }
.footer__brand p { margin-top: .9rem; max-width: 34ch; font-size: .93rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .75rem 2rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: var(--moss-mute);
}

/* ---------- Sticky enrol bar ---------- */
.enrol-bar {
  position: sticky; bottom: 0; z-index: 90;
  background: rgba(252,252,250,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: .85rem 0;
}
.enrol-bar__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: .85rem;
}
.enrol-bar__text { font-size: .92rem; color: var(--moss-soft); }
.enrol-bar__text strong { color: var(--moss); font-weight: 700; }
.enrol-bar .btn { padding: .7rem 1.5rem; }

/* ---------- Load reveal (pure CSS, one orchestrated moment) ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: rise .85s cubic-bezier(.22,.61,.36,1) both; }
  .reveal:nth-child(1) { animation-delay: .04s; }
  .reveal:nth-child(2) { animation-delay: .14s; }
  .reveal:nth-child(3) { animation-delay: .24s; }
  .reveal:nth-child(4) { animation-delay: .34s; }
  .reveal:nth-child(5) { animation-delay: .44s; }
}

/* ---------- Utilities ---------- */
.mt-md { margin-top: 1.75rem; }
.mt-lg { margin-top: clamp(2.25rem, 4vw, 3.25rem); }
.stack-sm > * + * { margin-top: .9rem; }
.text-center { text-align: center; }
.note { font-size: .87rem; color: var(--moss-mute); max-width: 62ch; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
