/* ==========================================================================
   Askign Academy — Sales Funnel
   Ve Valance Wellness Institute · Pflugerville, TX
   Palette: luxe black + teal accent + subtle gold
   ========================================================================== */

:root {
  /* Dark section bgs (mapped from old greens) */
  --green-900: #000000;
  --green-800: #0c0c0c;
  --green-700: #141414;
  --green-600: #1f1f1f;

  /* Teal — primary accent (mapped from old gold) */
  --gold: #40D0B8;
  --gold-light: #6FE0CD;
  --gold-soft: #9CECDD;

  /* Dark surfaces (mapped from old cream/surface/sage) */
  --cream: #000000;
  --surface: #141414;
  --sage: #1F1F1F;

  /* New palette tokens */
  --teal: #40D0B8;
  --teal-soft: #6FE0CD;
  --teal-dark: #34B7A1;
  --gold-secondary: #C8B870;
  --gold-secondary-light: #DBD09A;
  --bg: #000000;
  --surface-2: #1F1F1F;
  --surface-3: #262626;
  --line: #2B2B2B;
  --on-accent: #06140F;

  /* Ink — light text on dark */
  --ink: #F4F3EF;
  --ink-soft: #B9B9B2;
  --muted: #9A9A93;
  --on-dark: #F4F3EF;
  --on-dark-soft: #B9B9B2;

  /* System */
  --radius: 18px;
  --radius-lg: 24px;
  --radius-sm: 12px;
  --maxw: 1160px;
  --gap: clamp(1rem, 3vw, 2rem);

  --shadow-sm: 0 4px 18px rgba(0, 0, 0, .5);
  --shadow-md: 0 16px 44px rgba(0, 0, 0, .55);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, .7);
  --shadow-gold: 0 14px 40px rgba(64, 208, 184, .35);

  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* -------------------------------------------------------------------------- */
/* Reset / base                                                                */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(16px, 1.05vw, 17.5px);
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
}

p { margin: 0; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--teal); color: var(--on-accent); }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--teal);
  color: var(--on-accent);
  padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* -------------------------------------------------------------------------- */
/* Layout helpers                                                              */
/* -------------------------------------------------------------------------- */
.section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem);
  position: relative;
}

.section__head {
  max-width: 740px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--ink);
  margin-bottom: .5rem;
}
.section__title--light { color: var(--ink); }

.section__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: .8rem auto 0;
}

.section--sage { background: var(--surface); }
.section--dark { background: var(--bg); color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow--gold { color: var(--teal-soft); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: .7em;
  opacity: .7;
}

/* -------------------------------------------------------------------------- */
/* Wordmark                                                                     */
/* -------------------------------------------------------------------------- */
.wordmark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.wordmark__a { font-style: italic; opacity: .92; }
.wordmark__skin {
  color: var(--teal);
  background: linear-gradient(105deg, var(--teal) 0%, var(--teal-soft) 60%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.wordmark__rest { font-weight: 400; color: var(--ink); }
.wordmark__mark { height: 1.55em; width: auto; align-self: center; margin-right: .55rem; }

/* -------------------------------------------------------------------------- */
/* Buttons                                                                      */
/* -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 1.15rem 2.3rem; font-size: 1.08rem; }
.btn--sm { padding: .62rem 1.15rem; font-size: .9rem; }

.btn--gold {
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--teal) 55%, var(--teal-dark) 100%);
  color: var(--on-accent);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(64, 208, 184, .55);
}

.btn--dark {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .55);
}
.btn--dark:hover {
  background: var(--surface-3);
  color: var(--teal-soft);
  border-color: rgba(64, 208, 184, .4);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: rgba(64, 208, 184, .4);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--on-accent);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn:active { transform: translateY(-1px) scale(.99); }

/* -------------------------------------------------------------------------- */
/* Reveal animation                                                            */
/* -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Stagger children */
.prog-grid .reveal:nth-child(2) { transition-delay: .08s; }
.prog-grid .reveal:nth-child(3) { transition-delay: .16s; }
.why-grid .reveal:nth-child(2) { transition-delay: .06s; }
.why-grid .reveal:nth-child(3) { transition-delay: .12s; }
.why-grid .reveal:nth-child(4) { transition-delay: .18s; }
.why-grid .reveal:nth-child(5) { transition-delay: .24s; }
.why-grid .reveal:nth-child(6) { transition-delay: .30s; }
.stats .reveal:nth-child(2) { transition-delay: .07s; }
.stats .reveal:nth-child(3) { transition-delay: .14s; }
.stats .reveal:nth-child(4) { transition-delay: .21s; }

/* -------------------------------------------------------------------------- */
/* Navigation                                                                   */
/* -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 5vw, 3rem);
  transition: padding .4s var(--ease);
}
.nav--scrolled {
  background: rgba(10, 10, 10, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, .6);
  border-bottom: 1px solid var(--line);
}
.nav--scrolled .nav__inner { padding-top: .7rem; padding-bottom: .7rem; }

.nav__links {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: .3rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .3s var(--ease);
  border-radius: 2px;
}
.nav__links a:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.lang-toggle {
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1.5px solid rgba(64, 208, 184, .35);
  border-radius: 999px;
  padding: .42rem .8rem;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.lang-toggle:hover {
  background: var(--teal);
  color: var(--on-accent);
  border-color: var(--teal);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  padding: 0 10px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav--menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: .6rem clamp(1.2rem, 5vw, 3rem) 1.4rem;
  background: rgba(10, 10, 10, .98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-menu a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  padding: .85rem .4rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__cta { margin-top: .8rem; border-bottom: none !important; color: var(--on-accent) !important; }
.lang-toggle--mobile { text-align: center; margin-top: .6rem; border-bottom: none; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                         */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -10%, #141414 0%, #0c0c0c 42%, #000000 100%);
  color: var(--ink);
  padding: clamp(5rem, 13vw, 9rem) clamp(1.2rem, 5vw, 3rem) clamp(5.5rem, 12vw, 8.5rem);
  text-align: center;
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  top: -18%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(64, 208, 184, .28) 0%, rgba(64, 208, 184, .10) 40%, transparent 68%);
  filter: blur(10px);
  z-index: -1;
  animation: floatGlow 9s ease-in-out infinite;
}
.hero__glow--2 {
  width: 38vw; height: 38vw;
  top: auto; bottom: -10%; left: 18%;
  background: radial-gradient(circle, rgba(64, 208, 184, .22) 0%, transparent 65%);
  animation-duration: 12s;
  animation-direction: reverse;
}
@keyframes floatGlow {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(22px) scale(1.06); }
}

.hero__inner { position: relative; max-width: 880px; margin: 0 auto; }

.hero__title {
  font-size: clamp(2.6rem, 7.5vw, 5.4rem);
  color: var(--ink);
  margin: .3rem 0 1.1rem;
  letter-spacing: -.02em;
}
.hero__title em, .hero__title b { font-style: italic; color: var(--teal-soft); font-weight: 500; }

.hero__sub {
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 60ch;
  margin: 0 auto 1.9rem;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: linear-gradient(135deg, rgba(64, 208, 184, .16), rgba(64, 208, 184, .06));
  border: 1.5px solid rgba(64, 208, 184, .5);
  border-radius: 999px;
  padding: .55rem 1.2rem .55rem .65rem;
  margin-bottom: 2.1rem;
  box-shadow: 0 0 0 0 rgba(64, 208, 184, .4);
  animation: pillPulse 3.2s ease-in-out infinite;
}
@keyframes pillPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(64, 208, 184, .35); }
  50% { box-shadow: 0 0 32px 2px rgba(64, 208, 184, .28); }
}
.offer-pill__amount {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--on-accent);
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
  padding: .35rem .85rem;
  border-radius: 999px;
}
.offer-pill__label {
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--teal-soft);
}

.hero__cta-row { margin-bottom: 1.3rem; }

.hero__trust {
  font-size: .9rem;
  color: var(--ink-soft);
  letter-spacing: .03em;
}

.hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 90px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

/* -------------------------------------------------------------------------- */
/* Stats                                                                        */
/* -------------------------------------------------------------------------- */
.stats {
  background: var(--surface);
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.stats__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * clamp(.5rem, 1.5vw, 1.25rem));
  top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(transparent, rgba(64, 208, 184, .45), transparent);
}
.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat__label {
  display: block;
  font-size: .86rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* Programs                                                                      */
/* -------------------------------------------------------------------------- */
.programs { background: var(--bg); }
.prog-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
  align-items: stretch;
}
.prog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.prog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-soft), var(--teal));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .7), 0 0 38px rgba(64, 208, 184, .22);
  border-color: rgba(64, 208, 184, .45);
}
.prog-card:hover::before { opacity: 1; }

.prog-card--featured {
  background: linear-gradient(165deg, #141414, #0c0c0c 60%, #000000);
  color: var(--ink);
  border-color: rgba(64, 208, 184, .4);
  box-shadow: var(--shadow-lg), 0 0 44px rgba(64, 208, 184, .18);
}
.prog-card--featured .prog-card__desc { color: var(--ink-soft); }
.prog-card--featured::before { opacity: 1; }

.prog-ribbon {
  position: absolute;
  top: 18px; right: -44px;
  width: 150px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
  height: 26px;
  box-shadow: 0 6px 16px rgba(64, 208, 184, .45);
}

.prog-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: 1.1rem;
}
.prog-card__badge {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(64, 208, 184, .12);
  padding: .35rem .7rem;
  border-radius: 999px;
}
.prog-card__badge--gold {
  background: rgba(64, 208, 184, .14);
  color: var(--teal-soft);
  border: 1px solid rgba(64, 208, 184, .4);
}
.prog-card__hours {
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
}
.prog-card--featured .prog-card__hours { color: var(--teal-soft); }

.prog-card__name {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: .7rem;
  color: inherit;
}
.prog-card--featured .prog-card__name { color: var(--ink); }
.prog-card:not(.prog-card--featured) .prog-card__name { color: var(--ink); }

.prog-card__desc {
  color: var(--ink-soft);
  font-size: .98rem;
  margin-bottom: 1.6rem;
  flex: 1;
}
.prog-card__cta { width: 100%; }

.prog-note {
  max-width: 60ch;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  text-align: center;
  font-size: .92rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* -------------------------------------------------------------------------- */
/* Why                                                                          */
/* -------------------------------------------------------------------------- */
.why-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(64, 208, 184, .18);
  border-color: rgba(64, 208, 184, .4);
}
.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--on-accent);
  box-shadow: 0 8px 22px rgba(64, 208, 184, .3);
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card__title {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: .5rem;
}
.why-card__body {
  font-size: .96rem;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------- */
/* Instructor                                                                    */
/* -------------------------------------------------------------------------- */
.instructor {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 88% 10%, #141414 0%, #0c0c0c 50%, #000000 100%);
}
.instructor__glow {
  position: absolute;
  width: 40vw; height: 40vw;
  max-width: 480px; max-height: 480px;
  top: -10%; right: -8%;
  background: radial-gradient(circle, rgba(64, 208, 184, .22) 0%, transparent 65%);
  filter: blur(8px);
}
.instructor__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.instructor__avatar {
  width: clamp(150px, 22vw, 230px);
  height: clamp(150px, 22vw, 230px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, #1f1f1f, #0c0c0c 70%);
  border: 2px solid rgba(64, 208, 184, .55);
  box-shadow: 0 0 0 10px rgba(64, 208, 184, .08),
              0 30px 60px rgba(0, 0, 0, .7),
              inset 0 0 40px rgba(64, 208, 184, .12);
  position: relative;
}
.instructor__avatar::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent, rgba(64, 208, 184, .55), transparent 60%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: spinRing 14s linear infinite;
}
@keyframes spinRing { to { transform: rotate(360deg); } }
.instructor__monogram {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--teal-soft);
  text-shadow: 0 4px 18px rgba(0, 0, 0, .6);
}
.instructor__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 50%;
}

.instructor__name {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--ink);
  margin-bottom: .35rem;
}
.instructor__role {
  color: var(--teal-soft);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
}
.instructor__text {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 300;
  max-width: 56ch;
  margin-bottom: 1.4rem;
}
.instructor__badge {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--teal-soft);
  border: 1.5px solid rgba(64, 208, 184, .5);
  border-radius: 999px;
  padding: .5rem 1.1rem;
}

/* -------------------------------------------------------------------------- */
/* Transformation                                                               */
/* -------------------------------------------------------------------------- */
.trans { background: var(--bg); }
.trans-list {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.trans-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.trans-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md), 0 0 26px rgba(64, 208, 184, .16);
  border-color: rgba(64, 208, 184, .4);
}
.trans-item__check {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
  color: var(--on-accent);
  box-shadow: 0 6px 16px rgba(64, 208, 184, .4);
}
.trans-item__check svg { width: 18px; height: 18px; }
.trans-item__text {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  padding-top: 4px;
}

/* -------------------------------------------------------------------------- */
/* Urgency band                                                                 */
/* -------------------------------------------------------------------------- */
.urgency {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-soft) 50%, var(--teal-dark) 100%);
  color: var(--on-accent);
}
.urgency__glow {
  position: absolute;
  inset: -40% -10% auto;
  height: 120%;
  background: radial-gradient(60% 80% at 50% 0%, rgba(255, 255, 255, .3), transparent 70%);
  pointer-events: none;
}
.urgency__inner { position: relative; max-width: 720px; margin: 0 auto; }
.urgency__title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--on-accent);
  margin-bottom: .7rem;
}
.urgency__sub {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: #0a241c;
  margin-bottom: 1.8rem;
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* Reserve                                                                      */
/* -------------------------------------------------------------------------- */
.reserve {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 80% at 50% 0%, #141414 0%, #0c0c0c 45%, #000000 100%);
  color: var(--ink);
}
.reserve__glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 640px; max-height: 640px;
  bottom: -25%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(64, 208, 184, .24) 0%, transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}
.reserve__inner {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.reserve__head { text-align: center; margin-bottom: 2.4rem; }
.reserve__sub {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 52ch;
  margin: .8rem auto 0;
}

.reserve__form {
  background: var(--surface);
  border: 1px solid rgba(64, 208, 184, .25);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(64, 208, 184, .12);
  display: grid;
  gap: 1.15rem;
  color: var(--ink);
}

.field { display: grid; gap: .4rem; }
.field__label {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
}
.field__input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px; /* >=16px prevents iOS Safari auto-zoom on focus */
  color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .9rem 1rem;
  min-height: 48px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field__input::placeholder { color: var(--muted); }
.field__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(64, 208, 184, .25);
}
.field__select-wrap { position: relative; }
.field__select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
.field__input--select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.6rem;
  cursor: pointer;
  background-color: var(--surface-2);
}

.reserve__submit { width: 100%; margin-top: .5rem; }
.reserve__amt { opacity: .85; font-weight: 500; }
.reserve__note {
  text-align: center;
  font-size: .9rem;
  color: var(--ink-soft);
  margin-top: -.2rem;
}
.reserve__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--teal);
  font-weight: 500;
}
.reserve__lock svg { width: 16px; height: 16px; }

/* -------------------------------------------------------------------------- */
/* Visit                                                                        */
/* -------------------------------------------------------------------------- */
.visit__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.visit__addr {
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin: .4rem 0 1rem;
  line-height: 1.45;
}
.visit__serving, .visit__tour, .visit__espanol {
  color: var(--ink-soft);
  margin-bottom: .6rem;
  max-width: 48ch;
}
.visit__espanol {
  display: inline-block;
  background: rgba(64, 208, 184, .12);
  border: 1px solid rgba(64, 208, 184, .35);
  border-radius: 999px;
  padding: .4rem 1rem;
  color: var(--teal-soft);
  font-weight: 500;
  font-size: .92rem;
  margin-top: .3rem;
}
.visit__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin-top: 1.6rem;
}
.visit__link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.visit__link:hover { color: var(--teal); }
.visit__link-ic {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--teal);
}
.visit__link-ic svg { width: 19px; height: 19px; }

.map-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #181818 0%, #121212 60%, #0c0c0c 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.map-card__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(64, 208, 184, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 208, 184, .07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-card__roads {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 46%, rgba(64, 208, 184, .14) 47%, rgba(64, 208, 184, .14) 52%, transparent 53%),
    linear-gradient(28deg, transparent 60%, rgba(64, 208, 184, .10) 61%, rgba(64, 208, 184, .10) 65%, transparent 66%);
}
.map-card__pin {
  position: absolute;
  top: 44%; left: 52%;
  transform: translate(-50%, -100%);
  color: var(--teal);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .7));
  animation: pinDrop 2.6s ease-in-out infinite;
}
.map-card__pin svg { width: 48px; height: 48px; }
@keyframes pinDrop {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, -112%); }
}
.map-card__chip {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(20, 20, 20, .92);
  color: var(--teal-soft);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(64, 208, 184, .3);
}
.map-card__iframe { width: 100%; height: 100%; border: 0; display: block; }
.visit__addr a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(64, 208, 184, .35);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.visit__addr a:hover { color: var(--teal-soft); border-color: var(--teal-soft); }

/* -------------------------------------------------------------------------- */
/* FAQ                                                                          */
/* -------------------------------------------------------------------------- */
.faq { background: var(--bg); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: .9rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.faq-item[open] {
  box-shadow: var(--shadow-md), 0 0 26px rgba(64, 208, 184, .14);
  border-color: rgba(64, 208, 184, .4);
}
.faq-item__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--ink);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__icon {
  flex: none;
  position: relative;
  width: 22px; height: 22px;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-item__icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-item__icon::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq-item[open] .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__a {
  padding: 0 1.5rem 1.3rem;
  color: var(--ink-soft);
  font-size: .98rem;
  max-width: 64ch;
  animation: faqIn .35s var(--ease);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                        */
/* -------------------------------------------------------------------------- */
.footer {
  background: #050505;
  color: var(--ink-soft);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 3rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--line);
}
.footer__inner { max-width: 720px; margin: 0 auto; }
.wordmark--footer {
  color: var(--ink);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.wordmark--footer .wordmark__rest { color: var(--ink); }
.footer__brand { display: inline-block; margin-bottom: 1rem; }
.footer__logo { width: 160px; height: auto; display: block; margin: 0 auto; }
.footer__tagline {
  color: var(--teal-soft);
  font-size: 1.02rem;
  letter-spacing: .03em;
  margin-bottom: 1.4rem;
}
.footer__tdlr {
  font-size: .85rem;
  color: var(--ink-soft);
  opacity: .8;
  max-width: 60ch;
  margin: 0 auto 1.6rem;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 1.4rem;
}
.footer__links a {
  text-decoration: none;
  color: var(--teal-soft);
  font-weight: 600;
  letter-spacing: .04em;
  transition: color .25s var(--ease);
}
.footer__links a:hover { color: #fff; }
.footer__dot { opacity: .5; }
.footer__rights {
  font-size: .8rem;
  color: var(--ink-soft);
  opacity: .7;
  border-top: 1px solid rgba(64, 208, 184, .15);
  padding-top: 1.4rem;
}
.footer__rights a { color: var(--teal-soft); text-decoration: none; }
.footer__rights a:hover { color: #fff; text-decoration: underline; }

/* -------------------------------------------------------------------------- */
/* Mobile sticky CTA                                                            */
/* -------------------------------------------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 90;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  padding: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
  color: var(--on-accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .6), 0 0 28px rgba(64, 208, 184, .35);
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                    */
/* -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .prog-grid { grid-template-columns: 1fr; max-width: 520px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .instructor__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .instructor__text { margin-left: auto; margin-right: auto; }
  .eyebrow::before { display: none; }
  .visit__inner { grid-template-columns: 1fr; }
  .visit__contact { justify-content: center; }
  .visit__info { text-align: center; }
  .visit__serving, .visit__tour { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .mobile-cta { display: block; }
  body { padding-bottom: 5.2rem; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(2)::after { display: none; }
  .stat::after { display: none; }
}

@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .offer-pill { flex-direction: row; }
  .hero { padding-top: clamp(3.5rem, 12vw, 5rem); }
  .section { padding-left: 1.2rem; padding-right: 1.2rem; }
  .visit__contact { flex-direction: column; align-items: center; }
}

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

/* -------------------------------------------------------------------------- */
/* RESPONSIVE POLISH (additive)                                                */
/* -------------------------------------------------------------------------- */

/* scroll anchor offset under sticky nav */
:where(#programs,#why,#instructor,#visit,#faq,#reserve,#top){scroll-margin-top:88px;}

/* mobile CTA hides near footer */
.mobile-cta--hidden{transform:translateY(160%);opacity:0;pointer-events:none;}
.mobile-cta:active{transform:translateY(2px) scale(.99);}

/* global tap feel */
*{-webkit-tap-highlight-color:transparent;}
.nav__links a:active,.mobile-menu a:active,.visit__link:active{opacity:.7;}

/* type wrapping */
.hero__title,.section__title,.instructor__name,.urgency__title{text-wrap:balance;}

/* reserve submit */
.reserve__submit{flex-wrap:wrap;line-height:1.3;}
.reserve__amt{white-space:nowrap;}

/* focus-visible on rounded controls */
.btn:focus-visible,.lang-toggle:focus-visible,.mobile-cta:focus-visible,
.offer-pill:focus-visible,.nav__cta:focus-visible{
  outline:3px solid var(--teal-soft);outline-offset:3px;border-radius:999px;}
.faq-item__q:focus-visible{outline:3px solid var(--teal-soft);outline-offset:-3px;}

/* menu + burger affordance */
.mobile-menu a:hover,.mobile-menu a:focus-visible{color:var(--teal-soft);}
.mobile-menu a:last-of-type{border-bottom:none;}
.nav__burger{background:rgba(255,255,255,.03);}
.nav__burger:hover,.nav__burger:focus-visible{
  border-color:rgba(64,208,184,.5);background:rgba(64,208,184,.08);}

/* small teal labels → higher-luminance soft teal */
.reserve__secure,.prog-card__badge,.prog-card__hours{color:var(--teal-soft);}

/* dark CTA on bright urgency band */
.urgency .btn--dark{box-shadow:0 14px 36px rgba(0,0,0,.4),0 0 0 1px rgba(0,0,0,.15);}

/* featured ribbon star */
.prog-ribbon::after{content:"\2605";position:absolute;inset:0;display:grid;
  place-items:center;font-size:.7rem;color:var(--on-accent);transform:rotate(-45deg);}

@media (max-width:960px) and (min-width:769px){
  .stats__inner{gap:1.5rem 1rem;}
}

@media (max-width:768px){
  :where(#programs,#why,#instructor,#visit,#faq,#reserve,#top){scroll-margin-top:76px;}
  .lang-toggle{min-height:40px;display:inline-flex;align-items:center;}
  .lang-toggle--mobile{min-height:48px;justify-content:center;}
  .mobile-menu__cta{min-height:52px;}
}

@media (max-width:640px){
  .why-grid .reveal,.prog-grid .reveal,.stats .reveal{transition-delay:0s !important;}
  .hero{padding-bottom:clamp(3rem,10vw,4rem);}
  .stats{padding-top:clamp(2rem,6vw,2.6rem);}
  .hero__glow{width:90vw;height:90vw;opacity:.8;}
  .hero__glow--2{display:none;}
  .reserve__glow,.instructor__glow{opacity:.7;}
  .map-card{aspect-ratio:16 / 11;}
  .visit__link{min-height:44px;padding:.35rem 0;}
}

@media (max-width:400px){
  .hero__title{font-size:clamp(2.1rem,9vw,2.7rem);}
  .hero__sub{font-size:1.05rem;}
}

@media (max-width:380px){
  .offer-pill{flex-wrap:wrap;justify-content:center;text-align:center;padding:.55rem .9rem;gap:.5rem;}
  .offer-pill__label{flex-basis:100%;}
}
