/* ==========================================================================
   Speak2Achieve — shared stylesheet
   Palette sampled directly from the logo (IMG_3192.PNG): the ink navy of the
   wordmark/ring, a deepened variant for hover/scroll states, and the mid
   blue used for the raised arm and figure as the accent.
   ========================================================================== */

:root {
  /* Brand — sampled from logo */
  --navy:        #0D1932;
  --navy-deep:   #081020;
  --coral:       #2A58B5;

  /* Derived */
  --coral-soft:  #FFE9E4;
  --navy-soft:   #E7EBF2;

  /* Neutrals */
  --paper:       #F5F6F8;
  --white:       #FFFFFF;
  --ink:         #16203A;
  --muted:       #5C6880;
  --line:        #E2E6EC;

  /* Type */
  --display: "Space Grotesk", system-ui, sans-serif;
  --body:    "IBM Plex Sans", system-ui, sans-serif;

  /* Rhythm */
  --radius-card: 32px;
  --radius-md:   16px;
  --radius-pill: 999px;
  --gutter:      clamp(1.25rem, 4vw, 3rem);
  --section-y:   clamp(4rem, 9vw, 7.5rem);
  --maxw:        1180px;

  --shadow-soft: 0 2px 8px rgba(15, 37, 69, .05), 0 16px 40px rgba(15, 37, 69, .07);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

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

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--white); color: var(--navy);
  padding: .75rem 1.25rem; border-radius: var(--radius-pill);
  font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Navy card — wraps the nav on every page
   ========================================================================== */
.masthead {
  padding: clamp(.75rem, 2vw, 1.25rem);
}
.masthead__card {
  position: relative;
  background: var(--navy);
  background-image:
    radial-gradient(120% 90% at 88% 8%, rgba(255, 90, 60, .20), transparent 58%),
    radial-gradient(90% 80% at 6% 96%, rgba(120, 165, 255, .14), transparent 62%);
  border-radius: var(--radius-card);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

/* ---------- Frosted pill nav ---------- */
.nav {
  position: relative; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  margin: clamp(.9rem, 2vw, 1.4rem);
  padding: .55rem .6rem .55rem 1.4rem;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
}
.nav__brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 700; font-size: 1.0625rem;
  letter-spacing: -.02em; color: var(--white); text-decoration: none;
  white-space: nowrap;
}
.brand-mark { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block; padding: .55rem .95rem;
  color: rgba(255, 255, 255, .88);
  font-size: .9375rem; font-weight: 500; text-decoration: none;
  border-radius: var(--radius-pill);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__links a:hover { background: rgba(255, 255, 255, .14); color: var(--white); }
.nav__links a[aria-current="page"] { background: var(--white); color: var(--navy); font-weight: 600; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .14);
  border: 0; border-radius: var(--radius-pill);
  color: var(--white); cursor: pointer;
}
.nav__toggle svg { width: 20px; height: 20px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .nav { padding-right: .55rem; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: calc(100% + .6rem); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    padding: .75rem;
    background: var(--navy-deep);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .32);
  }
  .nav__links[hidden] { display: none; }
  .nav__links a { padding: .8rem 1rem; }
}

/* ==========================================================================
   Hero — headline over the workshop photograph
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1.75rem, 5vw, 4.5rem) clamp(2.5rem, 6vw, 4.5rem);
  min-height: clamp(30rem, 62vw, 42rem);
  display: flex;
  align-items: center;
}

/* The photograph sits inside the navy card, behind the words.
   Subjects live in the right half of the frame, so the scrim is heaviest
   on the left where the headline sits and thins out over the students. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
}
/* Navy scrim — keeps the type at full contrast and pulls the photo
   into the brand palette. */
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 25, 50, .40) 0%, rgba(13, 25, 50, 0) 24%),
    linear-gradient(0deg,   rgba(13, 25, 50, .58) 0%, rgba(13, 25, 50, 0) 32%),
    linear-gradient(96deg,
      rgba(13, 25, 50, .95) 0%,
      rgba(13, 25, 50, .90) 28%,
      rgba(13, 25, 50, .66) 46%,
      rgba(13, 25, 50, .22) 70%,
      rgba(13, 25, 50, .08) 100%);
}

.hero__body {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding: .4rem .95rem .4rem .5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-pill);
  font-size: .8125rem; font-weight: 500; letter-spacing: .01em;
  color: rgba(255, 255, 255, .9);
}
.hero__eyebrow::before {
  content: ""; width: 7px; height: 7px; margin-left: .35rem;
  border-radius: 50%; background: var(--coral);
}
.hero__title {
  max-width: 15ch;
  font-size: clamp(2.75rem, 8.2vw, 6.25rem);
  font-weight: 600;
  color: var(--white);
}
.hero__title .accent { color: var(--coral); }

/* Signature: the headline arrives word by word, the way a line is spoken */
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  animation: speak .62s var(--ease) forwards;
  animation-delay: calc(var(--i) * 105ms);
}
@keyframes speak { to { opacity: 1; transform: translateY(0); } }

.hero__lede {
  max-width: 46ch;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  line-height: 1.5;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: clamp(1.75rem, 3.5vw, 2.5rem); }

.hero__tags {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .5rem 0;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
  padding: 0; list-style: none;
  width: 100%;
}
.hero__tags li {
  font-family: var(--display); font-size: clamp(1.0625rem, 1.8vw, 1.3125rem); font-weight: 600;
  letter-spacing: .03em; color: rgba(255, 255, 255, .92);
}
.hero__tags li + li { margin-left: 1.1rem; }
.hero__tags li + li::before { content: "\2022"; display: inline-block; margin-right: 1.1rem; color: rgba(255, 255, 255, .38); }

/* Narrow screens: the frame turns portrait, so the scrim goes top-to-bottom
   and the photo slides toward the students. */
@media (max-width: 860px) {
  .hero {
    min-height: 0;
    padding-top: clamp(2.5rem, 7vw, 4rem);
    padding-bottom: clamp(2.25rem, 6vw, 3.5rem);
  }
  .hero__media img { object-position: 76% 38%; }
  .hero__media::before {
    background:
      linear-gradient(180deg,
        rgba(13, 25, 50, .93) 0%,
        rgba(13, 25, 50, .90) 46%,
        rgba(13, 25, 50, .74) 72%,
        rgba(13, 25, 50, .62) 100%);
  }
  .hero__body { max-width: none; }
  .hero__tags { margin-top: clamp(2rem, 5vw, 2.75rem); }
}

/* Interior page header (shorter version of the hero) */
.pagehead { padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.75rem, 5vw, 4.5rem) clamp(2.75rem, 6vw, 4.25rem); }
.pagehead h1 { font-size: clamp(2.25rem, 6vw, 4rem); color: var(--white); }
.pagehead p {
  max-width: 52ch; margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, .78); font-size: 1.0625rem;
}
.pagehead p.pagehead__lede--lg { max-width: 58ch; font-size: clamp(1.375rem, 2.8vw, 1.75rem); line-height: 1.5; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.6rem;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  font-family: var(--display); font-size: .9375rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--coral); color: var(--white); box-shadow: 0 8px 24px rgba(255, 90, 60, .3); }
.btn--primary:hover { background: #ff4326; }
.btn--ghost { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .28); color: var(--white); }
.btn--ghost:hover { background: rgba(255, 255, 255, .18); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-deep); }
.btn--outline { background: transparent; border-color: var(--line); color: var(--navy); }
.btn--outline:hover { border-color: var(--navy); background: var(--white); }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: var(--section-y); }
.section--tint { background: var(--white); }

.section__label {
  display: block; margin-bottom: 1rem;
  font-family: var(--display); font-size: .8125rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--coral);
}
.section__label--lg { font-size: clamp(1.125rem, 2.4vw, 1.5rem); letter-spacing: .08em; }
.section__title { font-size: clamp(2rem, 4.5vw, 3.25rem); color: var(--navy); }
.section__title strong { font-weight: 700; color: var(--coral); }
.section__intro { max-width: 60ch; margin: 1.25rem 0 0; color: var(--muted); font-size: 1.09375rem; }
.section__head { margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }

/* Mission */
.mission { text-align: center; }
.mission .section__label { text-align: center; }
.mission__body {
  max-width: 46ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500; line-height: 1.4; letter-spacing: -.015em;
  color: var(--navy);
}
.mission__body strong { font-weight: 700; color: var(--coral); }

/* ---------- Founder quotes ---------- */
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: none; align-items: stretch; }
@media (max-width: 880px) { .founders { grid-template-columns: 1fr; } }

.founder-quote {
  position: relative;
  height: 100%;
  padding: clamp(2rem, 4vw, 2.5rem) clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  isolation: isolate;
}
.founder-quote::before {
  content: "\201C";
  position: absolute; top: .15em; left: .9rem;
  font-family: var(--display); font-size: 7rem; line-height: 1;
  color: var(--navy-soft);
  z-index: 0;
}

.founder-quote__name {
  position: relative; z-index: 1;
  margin: 0 0 1.25rem;
  font-family: var(--display); font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--coral);
}

.founder-quote__text {
  position: relative; z-index: 1;
  margin: 0; padding: 0; border: 0;
  color: var(--ink); font-size: 1.03125rem; line-height: 1.75;
}
.founder-quote--coral .founder-quote__text { color: rgba(13, 25, 50, .88); }
.founder-quote__text p { margin: 0; }
.founder-quote__text p + p { margin-top: 1.15rem; }

/* ---------- Why it matters: two halves of one argument ---------- */
.argument {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch;
  gap: 0; margin-top: 1rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-card); overflow: hidden;
}
.argument__half { padding: clamp(1.75rem, 3.5vw, 2.75rem); }
.argument__tag {
  display: block; margin-bottom: 1.25rem;
  font-family: var(--display); font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.argument__stat {
  font-family: var(--display);
  font-size: clamp(2.75rem, 6vw, 4.25rem); font-weight: 600;
  line-height: 1; letter-spacing: -.035em; color: var(--navy);
}
.argument__stat span { color: var(--coral); }
.argument__text { margin: 1rem 0 0; color: var(--muted); font-size: .96875rem; line-height: 1.6; }
.argument__text strong { font-weight: 700; color: var(--coral); }
.argument__source { display: inline-block; margin-top: 1rem; font-size: .8125rem; color: var(--muted); }
.argument__source a { color: var(--navy); text-underline-offset: 3px; }

.argument__joint {
  display: grid; place-items: center;
  padding: 1rem .75rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display); font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed;
}
@media (max-width: 800px) {
  .argument { grid-template-columns: 1fr; }
  .argument__joint { writing-mode: horizontal-tb; padding: .85rem; letter-spacing: .2em; }
}
.argument__note {
  max-width: 46ch; margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  font-family: var(--display);
  color: var(--navy);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -.015em;
}
.argument__note strong { font-weight: 700; color: var(--coral); }

/* ---------- Our offering strip ---------- */
.offering {
  display: grid; grid-template-columns: 1fr 1fr; align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
}
.offering__body {
  max-width: 42ch; margin: 1rem 0 0;
  font-family: var(--display);
  color: var(--navy);
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -.015em;
}
.offering__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: sticky;
  top: clamp(1.5rem, 4vw, 2.5rem);
}
.offering__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offering__venues { margin-top: clamp(2rem, 4vw, 2.75rem); }
.offering__venues .section__label { margin-bottom: .65rem; }
.offering__venues-title { font-size: clamp(1.375rem, 2.4vw, 1.75rem); color: var(--navy); margin: 0 0 1.25rem; }
.offering__venues .venues { max-width: none; }
@media (max-width: 800px) {
  .offering { grid-template-columns: 1fr; }
  .offering__body { max-width: none; }
  .offering__media { position: static; }
}

/* ---------- Impact counters ---------- */
.impact { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); }
@media (max-width: 720px) { .impact { grid-template-columns: 1fr; } }
.impact__item {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.impact__num {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 4.75rem); font-weight: 600;
  line-height: 1; letter-spacing: -.04em; color: var(--navy);
}
.impact__num .plus { color: var(--coral); }
.impact__label {
  margin: .85rem 0 0;
  font-family: var(--display); font-size: 1rem; font-weight: 500; color: var(--muted);
}

/* ---------- Curriculum circles ---------- */
.curriculum {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 880px) { .curriculum { grid-template-columns: 1fr; max-width: 24rem; margin-inline: auto; } }

.circle {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .65rem;
  aspect-ratio: 1; padding: 2rem 1.9rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line); border-radius: 50%;
  transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.circle:hover { transform: translateY(-4px); border-color: var(--coral); box-shadow: var(--shadow-soft); }
.circle__index {
  font-family: var(--display); font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; color: var(--coral);
}
.circle__title {
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  color: var(--navy); text-wrap: balance;
}
.circle__desc { margin: 0; font-size: .8125rem; line-height: 1.5; color: var(--muted); }
.circle__actions { display: flex; flex-direction: column; align-items: stretch; gap: .4rem; width: 100%; max-width: 12.5rem; margin-top: .15rem; }
.circle__btn {
  display: block; width: 100%;
  padding: .5rem .9rem;
  background: var(--navy-soft); border: 0; border-radius: var(--radius-pill);
  font-family: var(--display); font-size: .8125rem; font-weight: 600; color: var(--navy);
  text-decoration: none;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.circle__btn:hover { background: var(--navy); color: var(--white); }
.circle__btn--request { background: var(--coral); color: var(--white); }
.circle__btn--request:hover { background: #ff4326; color: var(--white); }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  padding: 1.25rem;
  background: rgba(10, 26, 49, .6);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.modal[hidden] { display: none; }
.modal__panel {
  position: relative;
  width: min(38rem, 100%); max-height: 85vh; overflow-y: auto;
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: 0 32px 80px rgba(10, 26, 49, .3);
}
.modal__index {
  font-family: var(--display); font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--coral);
}
.modal__title { margin: .75rem 0 1.25rem; font-size: clamp(1.5rem, 3.5vw, 2.125rem); color: var(--navy); }
.modal__close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  display: grid; place-items: center; width: 40px; height: 40px;
  background: var(--paper); border: 0; border-radius: 50%;
  color: var(--navy); font-size: 1.25rem; cursor: pointer;
}
.modal__close:hover { background: var(--navy); color: var(--white); }

.todo {
  display: block; margin-top: 1.25rem; padding: 1rem 1.25rem;
  background: var(--coral-soft); border-left: 3px solid var(--coral); border-radius: 0 12px 12px 0;
  font-family: var(--display); font-size: .875rem; font-weight: 500; color: #9a2d14;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 1.6vw, 1.15rem);
}
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

.tile {
  position: relative; display: block; padding: 0;
  aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--navy-soft);
  border: 0; border-radius: var(--radius-md); cursor: pointer;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile:hover img { transform: scale(1.045); }
.tile--empty {
  display: grid; place-items: center; cursor: default;
  border: 1px dashed #b9c3d4;
  background: repeating-linear-gradient(45deg, transparent, transparent 9px, rgba(15,37,69,.035) 9px, rgba(15,37,69,.035) 18px);
}
.tile--empty span {
  font-family: var(--display); font-size: .8125rem; font-weight: 500;
  color: var(--muted); text-align: center; padding: 1rem;
}

.lightbox {
  position: fixed; inset: 0; z-index: 130;
  display: grid; place-items: center; padding: 1.5rem;
  background: rgba(10, 26, 49, .93);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: var(--radius-md); }
.lightbox__btn {
  position: absolute; display: grid; place-items: center;
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, .14); border: 0; border-radius: 50%;
  color: var(--white); font-size: 1.35rem; cursor: pointer;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .26); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ---------- Where we teach ---------- */
.venues { display: grid; gap: 1rem; max-width: 44rem; }
.venue {
  display: flex; align-items: center; gap: 1.15rem;
  padding: 1.35rem 1.6rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.venue__dot { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--coral); }
.venue__name { font-family: var(--display); font-size: 1.125rem; font-weight: 600; color: var(--navy); }
.venue--soon { border-style: dashed; background: transparent; }
.venue--soon .venue__dot { background: #b9c3d4; }
.venue--soon .venue__name { color: var(--muted); font-weight: 500; }

.venue--group { flex-direction: column; align-items: stretch; gap: 0; padding: 1.35rem 1.6rem 1.1rem; }
.venue__head { display: flex; align-items: center; gap: 1.15rem; }
.venue__sub {
  list-style: none; margin: 1rem 0 0; padding: .9rem 0 0 1.6rem;
  border-top: 1px solid var(--line);
  display: grid; gap: .65rem;
}
.venue__sub li {
  position: relative;
  padding-left: 1.15rem;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem;
}
.venue__sub li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--line-strong, #c7cedb);
}
.venue__sub-name { font-family: var(--display); font-size: .9375rem; font-weight: 600; color: var(--ink); }
.venue__sub-place { font-size: .875rem; color: var(--muted); }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); }
@media (max-width: 780px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team { grid-template-columns: 1fr; } }

.member { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.member__photo {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 1; overflow: hidden; background: var(--navy-soft);
  font-family: var(--display); font-size: .8125rem; color: var(--muted);
}
.member__photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.member__photo--shift-down img { object-position: center 20%; }
.member__body {
  height: 8.75rem; padding: 1.35rem 1.5rem; box-sizing: border-box; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.member__name { font-size: 1.1875rem; line-height: 1.3; color: var(--navy); }
.member__role {
  margin: .35rem 0 0;
  font-family: var(--display); font-size: .8125rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--coral);
  line-height: 1.45;
}
.member__bio { margin: 0; font-size: .9375rem; line-height: 1.55; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta { padding: clamp(1rem, 2vw, 1.25rem); }
.cta__card {
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.75rem, 5vw, 4rem);
  background: var(--navy);
  background-image: radial-gradient(90% 120% at 92% 4%, rgba(255, 90, 60, .26), transparent 60%);
  border-radius: var(--radius-card);
  color: var(--white);
}
.cta__title { max-width: 18ch; font-size: clamp(1.875rem, 4.5vw, 3rem); color: var(--white); }
.cta__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 760px) { .cta__grid { grid-template-columns: 1fr; } }
.cta__col h3 { font-size: 1.25rem; color: var(--white); }
.cta__col p { margin: .7rem 0 1.35rem; color: rgba(255, 255, 255, .76); font-size: 1rem; }

/* ---------- Footer ---------- */
.footer { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-size: 1.25rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--navy); text-decoration: none;
}
.footer__brand .brand-mark { height: 32px; }
.footer__tagline { max-width: 34ch; margin: 1rem 0 0; color: var(--muted); font-size: .96875rem; }
.footer h4 {
  margin-bottom: 1rem;
  font-family: var(--display); font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: var(--navy); text-decoration: none; font-size: .96875rem; }
.footer a:hover { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.75rem;
  font-size: .875rem; color: var(--muted);
}

/* ---------- Mailto fallback toast ---------- */
.mailto-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, .75rem);
  z-index: 200;
  display: flex; align-items: center; flex-wrap: wrap; gap: .75rem 1rem;
  max-width: min(92vw, 32rem);
  padding: .9rem 1rem .9rem 1.35rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px rgba(13, 25, 50, .32);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.mailto-toast.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.mailto-toast__text { margin: 0; font-size: .875rem; line-height: 1.4; }
.mailto-toast__email { font-weight: 600; color: var(--coral); word-break: break-all; }
.mailto-toast__actions { display: flex; align-items: center; gap: .4rem; margin-left: auto; }
.mailto-toast__copy {
  padding: .4rem .9rem; border: 1px solid rgba(255, 255, 255, .28); border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .1); color: var(--white);
  font-family: var(--display); font-size: .8125rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
}
.mailto-toast__copy:hover { background: rgba(255, 255, 255, .18); }
.mailto-toast__close {
  border: 0; background: none; color: rgba(255, 255, 255, .7);
  font-size: 1.25rem; line-height: 1; cursor: pointer; padding: 0 .25rem;
}
.mailto-toast__close:hover { color: var(--white); }
@media (max-width: 480px) {
  .mailto-toast { left: 1rem; right: 1rem; transform: translateY(.75rem); max-width: none; }
  .mailto-toast.is-visible { transform: translateY(0); }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .word { opacity: 1; transform: none; }
}
