/* =========================================================
   ASTITAV ACE — Design System
   ========================================================= */

/* Fonts ------------------------------------------------- */
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@300,400,500,700,800,900&display=swap');

/* Tokens ------------------------------------------------ */
:root {
  /* Colour — lilac-primary palette (Astitav brand) */
  --bg: #FFFFFF;             /* white base */
  --ink: #2D1B3D;            /* deep plum — AAA contrast on white */
  --ink-soft: #2D1B3D99;
  --ink-mute: #2D1B3D66;

  /* PRIMARY brand accents — lilac family */
  --lilac: #C7A9E0;          /* PRIMARY — soft lilac */
  --lilac-pale: #EBDDF5;     /* very pale lilac — card bg */
  --lilac-deep: #9B7EBD;     /* deeper lilac — hover, emphasis */

  /* Secondary accents */
  --pink: #F5B8CF;           /* rose pink (softened from logo magenta) */
  --pink-pale: #FCE4ED;      /* pale rose */
  --coral: #FFA06A;          /* coral punch */
  --peach: #FFDECB;           /* warm peach */
  --mint: #DEF2AC;           /* mint relief */
  --sky: #D0E5F4;
  --warm-grey: #DDDDD0;
  --white: #FFFFFF;

  /* Type */
  --font: 'Cabinet Grotesk', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Layout */
  --container: 1280px;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(19,50,43,0.04);
  --shadow-md: 0 8px 20px rgba(19,50,43,0.06);
  --shadow-lg: 0 20px 40px rgba(19,50,43,0.08);
  --shadow-xl: 0 32px 60px rgba(19,50,43,0.12);
}

/* Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.02; }
::selection { background: var(--coral); color: var(--ink); }

/* Container -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* Section ---------------------------------------------- */
.section { padding: clamp(48px, 6vw, 88px) 0; position: relative; }
.section--tight { padding: clamp(32px, 4vw, 56px) 0; }

/* Eyebrow ---------------------------------------------- */
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 16px;
  display: inline-block;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease, color 200ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover { opacity: 0.88; }
.btn--primary:active { transform: translateY(1px); }

.btn--pill {
  background: var(--bg);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--pill:hover { background: var(--ink); color: var(--bg); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  font-weight: 500;
}
.btn--ghost:hover { opacity: 0.7; }
.btn--ghost::after { content: '→'; margin-left: 6px; transition: transform 200ms ease; }
.btn--ghost:hover::after { transform: translateX(4px); }

.btn--icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  transition: transform 200ms ease;
}
.btn--icon:hover { transform: translateX(4px); }

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

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 24px;
  margin-top: 16px;
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 14px 14px 24px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}
.header__logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.header__logo img { height: 36px; width: auto; }
.header__nav {
  display: none;
  gap: 28px;
  margin-left: auto;
  font-weight: 500;
  font-size: 15px;
}
.header__nav a { position: relative; padding: 8px 0; }
.header__nav a:hover { opacity: 0.65; }
.header__actions { display: flex; gap: 10px; margin-left: auto; align-items: center; }
.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.header__toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform 200ms ease, opacity 200ms ease;
}
.header.is-open .header__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.is-open .header__toggle span:nth-child(2) { opacity: 0; }
.header.is-open .header__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 40;
  padding: 120px 32px 40px;
  transform: translateY(-100%);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu a {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
}

@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__actions { margin-left: 0; }
  .header__toggle { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 88px);
  position: relative;
  overflow: visible;
}
.hero__inner { position: relative; }
.hero__eyebrow { margin-bottom: 20px; }
.hero__title {
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.hero__title .tilt { display: inline-block; transform: rotate(-12deg); }
.hero__title .sticker-o {
  display: inline-block;
  position: relative;
  width: 0.85em;
  height: 0.85em;
  vertical-align: -0.06em;
}
.hero__title .sticker-o svg { width: 100%; height: 100%; }

.hero__sub {
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 620px;
  margin-top: 40px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  position: relative;
  z-index: 2;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hero__trust {
  margin-top: 28px;
  font-size: 14px;
  opacity: 0.7;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  position: relative;
  z-index: 2;
}
.hero__trust span::before { content: '·'; margin-right: 10px; color: var(--coral); font-weight: 700; }
.hero__trust span:first-child::before { display: none; }

/* Hero photo row — left / centre / right below the text */
.hero__photos {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.hero__photos .photo {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.hero__photos .photo--1 { transform: rotate(-4deg); margin-top: 32px; }
.hero__photos .photo--2 { transform: rotate(3deg); margin-top: 0; }
.hero__photos .photo--3 { transform: rotate(-2deg); margin-top: 48px; }
.hero__photos .photo:hover { transform: rotate(0) scale(1.02); }
.hero__photos img { width: 100%; height: 100%; object-fit: cover; }

/* Decorative shapes */
.shape { position: absolute; z-index: 0; pointer-events: none; }
.shape--hero-starburst { top: 10%; right: -40px; width: 120px; opacity: 0.9; }
.shape--hero-blob { top: 35%; left: -60px; width: 140px; opacity: 0.85; }

@media (max-width: 767px) {
  .hero__photos { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__photos .photo--3 { display: none; }
  .hero__photos .photo--1 { margin-top: 20px; }
  .hero__photos .photo--2 { margin-top: 0; }
  .shape--hero-starburst { width: 80px; top: 5%; right: -20px; }
  .shape--hero-blob { width: 100px; left: -40px; }
}

/* =========================================================
   STAT STRIP
   ========================================================= */
.stats { background: var(--ink); color: var(--bg); border-radius: var(--radius-lg); margin: 0 24px; }
.stats__inner { padding: 72px 48px; text-align: center; }
.stats__intro { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; margin-bottom: 32px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.stat { }
.stat__num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--coral);
}
.stat__label { font-size: 15px; margin-top: 10px; opacity: 0.85; max-width: 200px; margin-inline: auto; line-height: 1.4; }
.stats__foot { margin-top: 32px; font-size: 14px; opacity: 0.65; }
.stats__foot a { border-bottom: 1px solid currentColor; padding-bottom: 2px; }

@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stats__inner { padding: 96px 64px; }
}

/* =========================================================
   FIT CHECK
   ========================================================= */
.fit__header { margin-bottom: 40px; }
.fit__title { font-size: clamp(40px, 5.5vw, 72px); }
.fit__sub { font-size: 19px; margin-top: 16px; opacity: 0.85; max-width: 65ch; }
.fit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.fit__panel {
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
}
.fit__panel h3 { font-size: 24px; margin-bottom: 16px; }
.fit__panel p { font-size: 17px; line-height: 1.5; }
.fit__panel p strong { font-weight: 700; }
.fit__panel em { font-size: 15px; opacity: 0.7; display: block; margin-top: 16px; font-style: normal; }
.fit__close { margin-top: 48px; font-size: 20px; display: flex; flex-direction: column; gap: 14px; }
.fit__close a { font-weight: 700; border-bottom: 2px solid var(--coral); padding-bottom: 2px; }

@media (min-width: 768px) { .fit__grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   APPROACH / 4 PILLARS
   ========================================================= */
.approach { position: relative; }
.approach__header { margin-bottom: 40px; }
.approach__title { font-size: clamp(40px, 5.5vw, 72px); }
.approach__sub { font-size: 19px; margin-top: 16px; opacity: 0.85; max-width: 65ch; }
.approach__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.pillar {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
}
.pillar:nth-child(1) { background: var(--lilac-pale); }
.pillar:nth-child(2) { background: var(--peach); }
.pillar:nth-child(3) { background: var(--pink-pale); }
.pillar:nth-child(4) { background: var(--mint); }
.pillar__num { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-bottom: 20px; }
.pillar__title { font-size: 28px; margin-bottom: 16px; }
.pillar__body { font-size: 16px; line-height: 1.55; }

@media (min-width: 768px) { .approach__grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   PROGRAMMES
   ========================================================= */
.programmes__header { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; align-items: end; }
.programmes__title { font-size: clamp(40px, 5.5vw, 72px); }
.programmes__sub { font-size: 19px; opacity: 0.85; max-width: 60ch; }
.programmes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.prog-card {
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 300ms ease, box-shadow 300ms ease;
  position: relative;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prog-card__badge {
  align-self: flex-start;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.prog-card__title { font-size: 22px; }
.prog-card__body { font-size: 15px; line-height: 1.5; opacity: 0.85; }
.prog-card__link { margin-top: auto; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.prog-card__link::after { content: '→'; transition: transform 200ms ease; }
.prog-card:hover .prog-card__link::after { transform: translateX(4px); }
.prog-card--accent-1 { background: var(--lilac-pale); }
.prog-card--accent-2 { background: var(--peach); }
.prog-card--accent-3 { background: var(--pink-pale); }
.prog-card--accent-4 { background: var(--mint); }

/* Photo inside programme card */
.prog-card__photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: -8px -8px 4px -8px;
  background: var(--warm-grey);
}
.prog-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.prog-card:hover .prog-card__photo img { transform: scale(1.04); }

/* Photo inside pillar card */
.pillar__photo {
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--warm-grey);
}
.pillar__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Photo inside extra-curricular card */
.extra__photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: -8px -8px 16px -8px;
  background: var(--warm-grey);
}
.extra__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.extra:hover .extra__photo img { transform: scale(1.04); }

.programmes__bottom { margin-top: 32px; display: flex; justify-content: center; }

.extras { margin-top: 40px; padding-top: 40px; border-top: 1.5px solid var(--ink); }
.extras__grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
.extra {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 28px;
}
.extra h4 { font-size: 22px; margin-bottom: 10px; }
.extra p { font-size: 15px; line-height: 1.5; opacity: 0.85; }

@media (min-width: 640px) { .programmes__grid { grid-template-columns: repeat(2, 1fr); } .extras__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .programmes__grid { grid-template-columns: repeat(3, 1fr); } .programmes__header { grid-template-columns: 1.3fr 1fr; gap: 48px; } }

/* =========================================================
   PARENT STORIES
   ========================================================= */
.stories__header { margin-bottom: 40px; }
.stories__title { font-size: clamp(40px, 5.5vw, 72px); }
.stories__sub { font-size: 19px; margin-top: 16px; opacity: 0.85; max-width: 65ch; }
.stories__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.story {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1.5px solid var(--ink);
  position: relative;
}
.story__quote {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.story__attrib {
  font-size: 14px;
  font-weight: 700;
  padding-top: 16px;
  border-top: 1.5px solid var(--ink);
}
.story::before {
  content: '"';
  font-size: 140px;
  font-weight: 900;
  color: var(--coral);
  position: absolute;
  top: -20px;
  right: 24px;
  line-height: 1;
  opacity: 0.6;
}
.stories__more { margin-top: 32px; }

/* === Stories slider ============================================== */
.stories-slider { position: relative; outline: none; }
.stories-slider:focus-visible .stories-slider__viewport { box-shadow: 0 0 0 3px var(--coral); border-radius: var(--radius-md); }
.stories-slider__viewport { overflow: hidden; border-radius: var(--radius-md); padding: 8px 4px; }
.stories-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  align-items: stretch;
}
.stories-slider__track > .story {
  flex: 0 0 100%;
  min-width: 0;
  padding: 48px 40px;
}
.stories-slider__track > .story .story__quote {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.45;
  margin-bottom: 28px;
}
.stories-slider__track > .story::before {
  font-size: 180px;
  top: -8px;
  right: 32px;
  opacity: 0.5;
}
@media (min-width: 1024px) {
  .stories-slider__track > .story { flex: 0 0 calc((100% - 24px) / 2); padding: 56px 48px; }
}

.stories-slider__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 24px; flex-wrap: wrap; }
.stories-slider__dots { display: flex; gap: 10px; align-items: center; }
.stories-slider__dots button {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--warm-grey);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background 200ms ease, width 200ms ease;
}
.stories-slider__dots button:hover { background: var(--lilac-deep); }
.stories-slider__dots button.is-active { background: var(--ink); width: 32px; }
.stories-slider__arrows { display: flex; gap: 10px; }
.stories-slider__arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease, opacity 200ms ease;
  border: 0;
}
.stories-slider__arrow:hover { background: var(--lilac-deep); }
.stories-slider__arrow:active { transform: scale(0.96); }
.stories-slider__arrow:disabled { opacity: 0.28; cursor: not-allowed; }
.stories-slider__arrow svg { width: 20px; height: 20px; }
@media (min-width: 768px) { .stories__grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   ABILITY OLYMPICS
   ========================================================= */
.olympics { background: var(--ink); color: var(--bg); border-radius: var(--radius-lg); margin: 0 24px; position: relative; overflow: hidden; }
.olympics__inner {
  padding: clamp(72px, 10vw, 140px) clamp(32px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.olympics__title { font-size: clamp(48px, 7vw, 104px); }
.olympics__sub { font-size: 22px; margin: 20px 0 32px; opacity: 0.85; line-height: 1.5; }
.olympics__body p { margin-bottom: 16px; opacity: 0.9; }
.olympics__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.olympics .btn--primary { background: var(--coral); color: var(--ink); }
.olympics .btn--primary:hover { background: var(--peach); }
.olympics .btn--pill { background: transparent; color: var(--bg); border-color: var(--bg); }
.olympics .btn--pill:hover { background: var(--bg); color: var(--ink); }
.olympics__media { position: relative; aspect-ratio: 1/1; }
.olympics__media .photo { position: absolute; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl); }
.olympics__media .photo--1 { width: 60%; aspect-ratio: 3/4; top: 0; right: 10%; transform: rotate(-6deg); }
.olympics__media .photo--2 { width: 52%; aspect-ratio: 4/3; bottom: 8%; left: 0; transform: rotate(7deg); }
.olympics__media img { width: 100%; height: 100%; object-fit: cover; }
.olympics__shape { position: absolute; right: -80px; top: -80px; width: 320px; opacity: 0.25; }
@media (min-width: 1024px) { .olympics__inner { grid-template-columns: 1.2fr 1fr; } }

/* =========================================================
   TEAM
   ========================================================= */
.team__header { margin-bottom: 40px; }
.team__title { font-size: clamp(40px, 5.5vw, 72px); }
.team__sub { font-size: 19px; margin-top: 16px; opacity: 0.85; max-width: 65ch; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tm {
  text-align: center;
}
.tm__photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--warm-grey);
  transition: transform 300ms ease;
}
.tm:nth-child(odd) .tm__photo { transform: rotate(-3deg); }
.tm:nth-child(even) .tm__photo { transform: rotate(2deg); }
.tm:hover .tm__photo { transform: rotate(0) scale(1.02); }
.tm__photo img { width: 100%; height: 100%; object-fit: cover; }
.tm__name { margin-top: 20px; font-size: 20px; font-weight: 800; letter-spacing: -0.015em; }
.tm__role { font-size: 14px; opacity: 0.7; margin-top: 4px; }
.team__foot { margin-top: 40px; font-size: 18px; text-align: center; }
.team__foot a { font-weight: 700; border-bottom: 2px solid var(--coral); }

@media (min-width: 640px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team__grid { grid-template-columns: repeat(6, 1fr); } }

/* =========================================================
   ADMISSION — 3 STEPS with giant numerals
   ========================================================= */
.admission { position: relative; overflow: hidden; }
.admission__header { margin-bottom: 40px; position: relative; z-index: 2; }
.admission__title { font-size: clamp(40px, 5.5vw, 72px); }
.admission__sub { font-size: 19px; margin-top: 16px; opacity: 0.85; max-width: 65ch; }
.steps { display: grid; grid-template-columns: 1fr; gap: 32px; position: relative; z-index: 2; }
.step {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
}
.step__num { font-size: 80px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--coral); margin-bottom: 24px; }
.step__title { font-size: 22px; margin-bottom: 12px; }
.step__body { font-size: 16px; line-height: 1.5; opacity: 0.85; }
.admission__foot { margin-top: 32px; font-size: 18px; position: relative; z-index: 2; }
.admission__foot a { font-weight: 700; border-bottom: 2px solid var(--coral); padding-bottom: 2px; }

/* Giant decorative numerals in background */
.admission__bg-nums {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  pointer-events: none;
  opacity: 0.35;
}
.admission__bg-nums span {
  font-size: clamp(200px, 26vw, 420px);
  font-weight: 900;
  line-height: 1;
}
.admission__bg-nums span:nth-child(1) { color: var(--lilac); }
.admission__bg-nums span:nth-child(2) { color: var(--coral); }
.admission__bg-nums span:nth-child(3) { color: var(--peach); }

@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   FAQ
   ========================================================= */
.faq__header { margin-bottom: 40px; }
.faq__title { font-size: clamp(40px, 5.5vw, 72px); }
.faq__sub { font-size: 19px; margin-top: 16px; opacity: 0.85; max-width: 65ch; }
.faq__list { max-width: none; }
.faq-item {
  border-top: 1.5px solid var(--ink);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1.5px solid var(--ink); }
.faq-item summary {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 36px;
  font-weight: 300;
  transition: transform 300ms ease;
  line-height: 0.6;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding-top: 20px; max-width: 75ch; font-size: 17px; line-height: 1.55; opacity: 0.85; }
.faq__foot { margin-top: 32px; font-size: 18px; }
.faq__foot a { font-weight: 700; border-bottom: 2px solid var(--coral); padding-bottom: 2px; }

/* =========================================================
   PARTNERS & RECOGNITION
   ========================================================= */
.partners__title { font-size: clamp(32px, 4vw, 56px); margin-bottom: 32px; }
.partners__row { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; margin-bottom: 28px; }
.partner-chip {
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
}
.partners__note { font-size: 14px; opacity: 0.7; max-width: 720px; margin-bottom: 32px; }
.certs { padding-top: 28px; border-top: 1.5px solid var(--ink); }
.certs__row { display: flex; flex-wrap: wrap; gap: 12px 16px; }
.cert {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
}

/* =========================================================
   SUPPORT US (secondary CTAs)
   ========================================================= */
.support__title { font-size: clamp(40px, 5.5vw, 72px); margin-bottom: 32px; }
.support__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.support-card {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.support-card:nth-child(1) { background: var(--lilac-pale); }
.support-card:nth-child(2) { background: var(--peach); }
.support-card:nth-child(3) { background: var(--mint); }
.support-card h3 { font-size: 28px; }
.support-card p { font-size: 16px; line-height: 1.5; }
.support-card__cta { margin-top: auto; font-weight: 700; }
.support-card__cta::after { content: '→'; margin-left: 8px; transition: transform 200ms ease; }
.support-card:hover .support-card__cta::after { transform: translateX(4px); }
.support-card__photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: -8px -8px 0 -8px;
  background: var(--warm-grey);
}
.support-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.support-card:hover .support-card__photo img { transform: scale(1.04); }

@media (min-width: 768px) { .support__grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: var(--bg); padding: 64px 0 28px; border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); margin-top: 64px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer h4 { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; margin-bottom: 20px; font-weight: 500; }
.footer a { opacity: 0.85; transition: opacity 200ms ease; }
.footer a:hover { opacity: 1; }
.footer__contact p { font-size: 17px; margin-bottom: 12px; opacity: 0.9; }
.footer__contact strong { font-weight: 700; }
.footer__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.footer__links a { font-size: 15px; }
.footer__social { display: flex; gap: 16px; margin-top: 20px; }
.footer__social a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background 200ms ease; }
.footer__social a:hover { background: var(--coral); }
.footer__social svg { width: 20px; height: 20px; }
.footer__newsletter input {
  background: transparent;
  border: 1.5px solid rgba(244,240,226,0.3);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  color: var(--bg);
  font-family: var(--font);
  font-size: 15px;
  width: 100%;
  margin-bottom: 12px;
}
.footer__newsletter input::placeholder { color: rgba(244,240,226,0.5); }
.footer__newsletter input:focus { outline: none; border-color: var(--coral); }
.footer__newsletter button { width: 100%; }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(244,240,226,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.7;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

/* =========================================================
   ANIMATIONS (scroll reveal)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 150ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .tilt { transform: none; }
}


/* === Shop peek (homepage) ============================= */
.shop-peek__header { margin-bottom: 40px; }
.shop-peek__title { font-size: clamp(40px, 5.5vw, 72px); }
.shop-peek__sub { font-size: 19px; margin-top: 16px; opacity: 0.85; max-width: 65ch; }
.shop-peek__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.shop-peek__card {
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 200ms ease;
  color: var(--ink);
}
.shop-peek__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
}
.shop-peek__photo { aspect-ratio: 1/1; overflow: hidden; background: var(--lilac-pale); }
.shop-peek__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.shop-peek__card:hover .shop-peek__photo img { transform: scale(1.05); }
.shop-peek__meta { padding: 18px 20px 22px; }
.shop-peek__meta h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 4px; }
.shop-peek__meta p { font-size: 14px; opacity: 0.7; }
.shop-peek__cta { margin-top: 40px; text-align: center; }
@media (min-width: 640px) { .shop-peek__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .shop-peek__grid { grid-template-columns: repeat(4, 1fr); } }

/* === Plugin integrations ============================= */
.astitav-ws-form { width: 100%; }
.astitav-ws-form form { margin: 0; }
.footer__newsletter .astitav-ws-form { margin-top: 18px; }
.s-filters.astitav-wpgb-facets {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 14px;
}
.astitav-wpgb-facet { min-width: 0; }
.astitav-wpgb-facet .wpgb-facet { margin: 0; }
.astitav-wpgb-grid {
  display: block;
  min-height: 240px;
}
@media (min-width: 768px) {
  .s-filters.astitav-wpgb-facets { grid-template-columns: 1.4fr 1fr 1fr; }
}
