/* Candela Hockey Development — site styles
   ------------------------------------------------------------------
   Two audiences, equal weight. The one signature device is the seam: a
   thin orange line that splits the home hero into "Develop the Player."
   and "Develop the Coach." and runs straight down into two equal path
   panels. Everything else stays quiet: navy for presence, cream for
   reading, orange only where you can click.
   ------------------------------------------------------------------ */

:root {
  --navy: #0f1b2d;
  --navy-2: #162538;
  --charcoal: #1e2733;
  --cream: #f4efe6;
  --cream-2: #eae3d4;
  --white: #ffffff;
  --ink: #0f1b2d;
  --ink-2: #3b4553;
  --muted: #6b7482;
  --muted-on-dark: rgba(244, 239, 230, 0.68);
  --orange: #e8651c;
  --orange-2: #cc5412;
  --line: rgba(15, 27, 45, 0.14);
  --line-dark: rgba(244, 239, 230, 0.16);

  /* Barlow Semi Condensed: the athletic grotesk of team and federation
     sites — professional coach, not design studio. Condensed faces want
     near-zero tracking and a little extra size. */
  --font-display: 'Barlow Semi Condensed', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 44px);
  --section: clamp(64px, 9vw, 120px);
  --radius: 4px;
  --shadow: 0 24px 60px -30px rgba(15, 27, 45, 0.45);
}

/* ---- reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.02; letter-spacing: -0.005em; font-weight: 700; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
::selection { background: var(--orange); color: var(--white); }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -60px; background: var(--orange); color: var(--white); padding: 10px 14px; border-radius: var(--radius); z-index: 100; font-weight: 600; }
.skip-link:focus { top: 16px; }

/* ---- type -------------------------------------------------------- */
.display-xl { font-size: clamp(46px, 7vw, 96px); font-weight: 800; letter-spacing: -0.01em; }
.display-l  { font-size: clamp(40px, 5.6vw, 72px); font-weight: 800; letter-spacing: -0.01em; }
.display-m  { font-size: clamp(30px, 3.8vw, 50px); }
.display-s  { font-size: clamp(24px, 2.4vw, 30px); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; color: var(--ink-2); max-width: 62ch; }
.on-dark { color: var(--cream); }
.on-dark .lede { color: var(--muted-on-dark); }
.on-dark .eyebrow { color: var(--orange); }
.measure { max-width: 64ch; }
.muted { color: var(--muted); }

/* ---- buttons ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 15px; line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .18s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-2); }
.btn--dark { background: var(--navy); color: var(--cream); }
.btn--dark:hover { background: var(--charcoal); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.on-dark .btn--ghost { border-color: var(--line-dark); color: var(--cream); }
.on-dark .btn--ghost:hover { border-color: var(--cream); }
.btn--lg { padding: 19px 28px; font-size: 16px; }
.btn[disabled] { opacity: .6; cursor: default; }
.text-link { font-weight: 600; color: var(--ink); border-bottom: 1.5px solid var(--orange); padding-bottom: 1px; }
.text-link:hover { color: var(--orange); }
.on-dark .text-link { color: var(--cream); }

/* ---- header ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
}
.site-header__inner {
  display: flex; align-items: center; gap: 28px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__badge { width: 48px; height: 48px; flex: none; }
.brand__badge--lg { width: 64px; height: 64px; }
.brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.wordmark {
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0;
  font-size: 22px; line-height: 1; display: flex; flex-direction: column; gap: 3px;
}
.wordmark small {
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-on-dark);
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 12px; font-size: 14.5px; font-weight: 500;
  color: var(--muted-on-dark); border-radius: var(--radius);
  position: relative;
}
.nav a:hover { color: var(--cream); }
.nav a[aria-current="page"] { color: var(--cream); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px;
  height: 2px; background: var(--orange);
}
.socials { display: flex; align-items: center; gap: 6px; padding-left: 16px; border-left: 1px solid var(--line-dark); }
.social {
  display: inline-flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 11px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--cream);
  border: 1px solid var(--line-dark);
  transition: border-color .18s ease, background-color .18s ease;
}
.social:hover { border-color: var(--orange); background: rgba(232, 101, 28, 0.12); }
.social svg { width: 16px; height: 16px; flex: none; }
.social__label { white-space: nowrap; }
.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border: 1px solid var(--line-dark); background: transparent;
  border-radius: var(--radius); color: var(--cream); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.site-header.is-open .nav-toggle .icon-menu { display: none; }
.site-header.is-open .nav-toggle .icon-close { display: block; }

/* ---- hero (home) ------------------------------------------------- */
.hero { background: var(--navy); color: var(--cream); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 46fr) minmax(0, 54fr); min-height: clamp(480px, 46vw, 820px); }
.hero__text {
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 64px) clamp(56px, 7vw, 96px)
           max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.hero__tag { display: grid; gap: 2px; }
.hero__line { display: block; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; font-size: clamp(42px, 4.9vw, 74px); line-height: .98; }
.hero__line em { font-style: normal; color: var(--orange); }
.hero__copy { display: grid; gap: 12px; color: var(--muted-on-dark); font-size: clamp(16px, 1.2vw, 17.5px); max-width: 54ch; }
.hero__copy p { margin: 0; }
.hero__second { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 1.8vw, 26px); letter-spacing: 0; color: var(--cream); margin: 0; }
.hero__second span { display: block; color: var(--muted-on-dark); font-family: var(--font-body); font-weight: 500; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.hero__media { margin: 0; position: relative; overflow: hidden; background: var(--navy-2); }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---- the seam + two paths --------------------------------------- */
.paths { background: var(--navy); }
.paths__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  position: relative;
}
.paths__label {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%);
  z-index: 3; white-space: nowrap;
  background: var(--navy); color: var(--cream);
  border: 1.5px solid var(--orange); border-radius: 999px;
  padding: 9px 18px;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.paths__grid::before {
  /* the seam: continues the hero's centre line as a solid orange stroke */
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  transform: translateX(-50%); background: var(--orange); z-index: 2;
}
.path {
  position: relative; display: flex; flex-direction: column;
  color: var(--cream); background: var(--navy);
}
.path__media { margin: 0; aspect-ratio: 16 / 10; max-height: clamp(300px, 32vw, 520px); overflow: hidden; background: var(--navy-2); }
.path__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
/* Text before picture: leaving the hero you meet the two titles and buttons
   at once — the photos sit under them, not in the way. */
.path__body { order: -1; flex: 1; padding: clamp(34px, 3.6vw, 52px) clamp(28px, 4vw, 56px) clamp(28px, 3.2vw, 44px); border-bottom: 1px solid var(--line-dark); }
.path__eyebrow { display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.path__title { font-size: clamp(34px, 4vw, 58px); font-weight: 800; letter-spacing: -0.01em; }
.path__desc { color: var(--muted-on-dark); max-width: 44ch; margin: 14px 0 22px; }
.path .btn { align-self: flex-start; }
.path:hover .path__media img, .path:focus-within .path__media img { transform: scale(1.03); }
.path:hover .btn--primary { background: var(--orange-2); }
.path:hover .btn svg { transform: translateX(3px); }
.path--coach .path__body { text-align: right; }
.path--coach .path__desc { margin-left: auto; }
.path--coach .btn { align-self: flex-end; }
/* Selectable, not just readable: an inset orange frame on hover/focus and a
   corner arrow chip that fills when the panel is live. Outline, not inset
   box-shadow — shadows paint beneath the photo layer, outlines on top. */
.path:hover, .path:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.path__go {
  position: absolute; bottom: 22px; right: 22px; z-index: 1;
  width: 46px; height: 46px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1.5px solid rgba(244,239,230,.55); color: var(--cream);
  background: rgba(15,27,45,.55);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.path__go svg { width: 20px; height: 20px; }
.path:hover .path__go, .path:focus-visible .path__go {
  background: var(--orange); border-color: var(--orange); transform: translateX(3px);
}

/* ---- photo bands ------------------------------------------------- */
.photo-band { margin: 0; overflow: hidden; background: var(--navy-2); aspect-ratio: 21 / 9; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-band--native { aspect-ratio: auto; border-radius: var(--radius); }
.photo-band--native img { height: auto; }
.blocks__photo { margin: 0; aspect-ratio: 21 / 9; overflow: hidden; background: var(--navy-2); }
.blocks__photo img { width: 100%; height: 100%; object-fit: cover; }
.about--below-band { margin-top: clamp(36px, 5vw, 64px); }

/* ---- photo slots ------------------------------------------------- */
.photo {
  position: relative; overflow: hidden; background: var(--navy-2);
  background-image:
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(244,239,230,.05) 22px 23px),
    linear-gradient(160deg, #1b2c44 0%, #101c2e 60%, #0b1524 100%);
}
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo::after {
  /* until real photos land: a small honest marker, not a stock image */
  content: attr(data-caption);
  position: absolute; left: 14px; top: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(244,239,230,.5); pointer-events: none;
}
.photo:has(img)::after { display: none; }
.photo--ratio { aspect-ratio: 4 / 3; }
.photo--portrait { aspect-ratio: 4 / 5; }
.photo--wide { aspect-ratio: 16 / 9; }

/* ---- sections ---------------------------------------------------- */
.section { padding: var(--section) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section__head { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 56px); }
.section__head .lede { margin-top: 16px; }

.belief {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: center;
}
.belief__quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4vw, 54px); letter-spacing: -0.01em; line-height: 1.06; }
.belief__quote em { font-style: normal; color: var(--orange); }
.belief__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.belief__list li { padding-left: 22px; position: relative; color: var(--ink-2); }
.belief__list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 10px; height: 2px; background: var(--orange); }
.belief__list strong { display: block; color: var(--ink); font-weight: 600; }

.intro-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.intro-split .photo { border-radius: var(--radius); }
.about-card { display: grid; gap: 18px; }
.about-card .btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

/* ---- program / service blocks ----------------------------------- */
.blocks { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.block {
  background: var(--white);
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 3.4vw, 44px);
}
.block__title { font-size: clamp(26px, 2.6vw, 36px); margin-bottom: 10px; }
.block__meta { color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.block__meta span { display: block; }
.block__body { color: var(--ink-2); }
.block__body p { margin-bottom: .9em; }
.block__actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.block--feature { background: var(--navy); color: var(--cream); }
.block--feature .block__body, .block--feature .block__meta { color: var(--muted-on-dark); }
.block--feature .block__title { color: var(--cream); }

.services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(22px, 2.4vw, 32px); }
.service {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  border-top: 3px solid var(--navy);
  box-shadow: 0 16px 34px -26px rgba(15, 27, 45, 0.45);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 12px;
}
.service--wide { border-top-color: var(--orange); }
.service__title { font-size: 26px; }
.service__body { color: var(--ink-2); font-size: 16px; }
.service--wide { grid-column: 1 / -1; background: var(--navy); color: var(--cream); border-color: var(--navy); display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(20px, 3vw, 48px); }
.service--wide .service__body { color: var(--muted-on-dark); }
.service--wide .service__title { font-size: clamp(28px, 3vw, 40px); }
.service--wide .eyebrow { margin-bottom: 8px; }

.notice {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--orange);
  border-radius: var(--radius); padding: 18px 20px; color: var(--ink-2); font-size: 15.5px;
  max-width: 72ch;
}
.notice strong { color: var(--ink); }

/* ---- live sessions (Front Office Hockey feed) ------------------ */
/* Rendered by js/site.js from Jesse's FOH programs. The section ships
   `hidden` and only opens once the feed has something to show. Cards
   borrow the service-card language with an orange top rule, since these
   are the one thing on the page you can actually buy. */
.sessions-section[hidden] { display: none; }
.sessions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px); }
.session {
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--orange);
  border-radius: 6px; padding: clamp(22px, 2.4vw, 30px);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 16px 34px -26px rgba(15, 27, 45, 0.45);
}
.session__when { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 2.4vw, 32px); line-height: 1; letter-spacing: -0.005em; color: var(--navy); }
.session__when small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.session__title { font-size: clamp(22px, 2vw, 26px); }
.session__meta { color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.session__meta span { display: block; }
.session__desc { color: var(--ink-2); font-size: 15.5px; }
.session__price { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1; color: var(--ink); }
.session__actions { margin-top: auto; padding-top: 8px; }

/* ---- CTA band ---------------------------------------------------- */
.cta-band { background: var(--navy); color: var(--cream); }
.cta-band__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 28px; align-items: center; padding: clamp(48px, 6vw, 88px) 0; }
.cta-band__title { font-size: clamp(34px, 4.4vw, 60px); font-weight: 800; letter-spacing: -0.01em; }
.cta-band__sub { color: var(--muted-on-dark); margin-top: 12px; max-width: 52ch; }
.cta-band .btn--ghost { border-color: var(--line-dark); color: var(--cream); }
.cta-band .btn--ghost:hover { border-color: var(--cream); }
.cta-band--cream { background: var(--cream-2); color: var(--ink); }
.cta-band--cream .cta-band__sub { color: var(--ink-2); }
.cta-band--cream .btn--ghost { border-color: var(--line); color: var(--ink); }

/* ---- about ------------------------------------------------------- */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 88px); align-items: start; }
.about__sticky { position: sticky; top: 98px; display: grid; gap: 18px; }
.about__facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 15px; color: var(--ink-2); }
.about__facts li { display: flex; gap: 10px; }
.about__facts li::before { content: ""; flex: none; width: 10px; height: 2px; background: var(--orange); margin-top: 12px; }
.prose { color: var(--ink-2); font-size: 17.5px; }
.prose p { margin-bottom: 1.1em; }
.prose .pull { letter-spacing: -0.005em;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.08;
  color: var(--ink); margin: 1.4em 0; padding-left: 22px; border-left: 3px solid var(--orange);
}
.contributor {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); background: var(--white); border-radius: var(--radius);
  padding: 12px 16px 12px 12px; font-size: 14.5px; font-weight: 600; color: var(--ink);
}
.contributor:hover { border-color: var(--orange); }
.contributor__mark { width: 34px; height: 34px; border-radius: 4px; background: var(--navy); color: var(--cream); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: .02em; }
.contributor small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; }

/* ---- contact ----------------------------------------------------- */
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 88px); align-items: start; }
.contact__ways { display: grid; gap: 22px; }
.way { display: grid; gap: 4px; }
.way__label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.way a { font-weight: 600; color: var(--ink); }
.way a:hover { color: var(--orange); }

.form { display: grid; gap: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius);
  border: 1.5px solid var(--line); background: var(--white);
  transition: border-color .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.field--hp { position: absolute; left: -9999px; }
.form__foot { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.form__hint { font-size: 13.5px; color: var(--muted); }
.form__status { font-size: 15px; font-weight: 500; min-height: 1.4em; }
.form__status[data-state="error"] { color: #b3400f; }
.form__status[data-state="ok"] { color: #1f6b3a; }
.form__fields { display: grid; gap: 14px; }
.form.is-done .form__fields, .form.is-done .inline-form { display: none; }
.form__done { display: none; gap: 10px; }
.form.is-done .form__done { display: grid; }
.form__done h3 { font-size: 26px; }

/* ---- footer ------------------------------------------------------ */
.site-footer { background: var(--navy); color: var(--cream); border-top: 1px solid var(--line-dark); }
.site-footer__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); padding: clamp(48px, 6vw, 80px) 0 32px; }
.site-footer .wordmark { margin-bottom: 14px; }
.site-footer p { color: var(--muted-on-dark); font-size: 15px; max-width: 40ch; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15px; }
.footer-list a { color: var(--muted-on-dark); }
.footer-list a:hover { color: var(--cream); }
.footer-label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 14px; }
.footer-join { display: grid; gap: 10px; }
.footer-join .form { background: transparent; border: 0; padding: 0; gap: 8px; }
.footer-join .inline-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.footer-join input {
  padding: 12px 13px; border-radius: var(--radius); border: 1.5px solid var(--line-dark);
  background: rgba(244,239,230,.06); color: var(--cream); min-width: 0;
}
.footer-join input::placeholder { color: rgba(244,239,230,.45); }
.footer-join input:focus { border-color: var(--orange); outline: none; }
.footer-join .form__status { font-size: 14px; }
.footer-join .form__status[data-state="ok"] { color: #8fd6a6; }
.footer-join .form__status[data-state="error"] { color: #ff9d6b; }
.site-footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; padding: 20px 0 28px; border-top: 1px solid var(--line-dark); font-size: 13px; color: var(--muted-on-dark); }
.site-footer__bottom a:hover { color: var(--cream); }

/* ---- mailing-list popup ----------------------------------------- */
.popup { border: 0; padding: 0; max-width: min(92vw, 520px); width: 100%; border-radius: 6px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.popup::backdrop { background: rgba(15, 27, 45, 0.62); }
.popup__inner { padding: clamp(28px, 4vw, 40px); display: grid; gap: 16px; position: relative; }
.popup__close {
  position: absolute; right: 12px; top: 12px; width: 40px; height: 40px;
  border: 0; background: transparent; border-radius: 999px; cursor: pointer; color: var(--muted);
  display: grid; place-items: center;
}
.popup__close:hover { background: var(--cream); color: var(--ink); }
.popup__close svg { width: 18px; height: 18px; }
.popup__badge { width: 56px; height: 56px; }
.popup h2 { font-size: clamp(28px, 3.2vw, 36px); }
.popup p { color: var(--ink-2); font-size: 16px; }
.popup .form { padding: 0; border: 0; background: transparent; gap: 12px; }
.popup .form__foot { justify-content: flex-start; }
.popup .form__fine { font-size: 12.5px; color: var(--muted); }
.popup[open] { animation: popup-in .32s cubic-bezier(.2,.8,.2,1); }
@keyframes popup-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---- reveal (subtle, once) --------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .popup[open] { animation: none; }
  .photo img, .btn svg, .btn { transition: none; }
}

/* ---- responsive -------------------------------------------------- */
@media (max-width: 1040px) {
  .social__label { display: none; }
  .social { padding: 0 10px; }
}
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .site-header__inner { flex-wrap: wrap; gap: 0 16px; }
  .nav, .socials { display: none; }
  .site-header.is-open .nav, .site-header.is-open .socials { display: flex; }
  .site-header.is-open .nav { flex-direction: column; align-items: stretch; width: 100%; padding: 8px 0 4px; border-top: 1px solid var(--line-dark); margin-top: 12px; }
  .site-header.is-open .nav a { padding: 13px 4px; font-size: 17px; }
  .site-header.is-open .nav a[aria-current="page"]::after { left: 4px; right: auto; width: 28px; bottom: 6px; }
  .site-header.is-open .socials { width: 100%; padding: 12px 0 18px; border-left: 0; }
  .site-header.is-open .social__label { display: inline; }

  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__text { padding: 44px var(--gutter) 40px; gap: 18px; }
  .hero__media { aspect-ratio: 16 / 10; }
  .hero__media img { object-position: 80% 50% !important; }
  .photo-band, .blocks__photo { aspect-ratio: 16 / 10; }

  /* Phones: the two paths must read as ONE choice with two options — a
     label, then two compact cards (thumbnail | title + button) that both fit
     on a single screen. No full-width photos here; the hero already had one. */
  .paths { padding: 6px var(--gutter) 30px; }
  .paths__grid { grid-template-columns: 1fr; gap: 12px; border-top: 0; }
  .paths__grid::before { display: none; }
  .paths__label { position: static; transform: none; justify-self: center; margin: 18px 0 4px; padding: 8px 14px; }
  .path { display: grid; grid-template-columns: 34% minmax(0, 1fr); align-items: stretch; border: 1px solid var(--line-dark); border-left: 3px solid var(--orange); border-radius: var(--radius); overflow: hidden; }
  .path__media { aspect-ratio: auto; max-height: none; height: 100%; min-height: 150px; }
  .path__body { order: 0; padding: 18px 16px 18px 16px; border-top: 0; border-bottom: 0; display: flex; flex-direction: column; justify-content: center; }
  .path__eyebrow { font-size: 11px; margin-bottom: 8px; }
  .path__title { font-size: clamp(24px, 6.6vw, 30px); }
  .path__desc { display: none; }
  .path .btn { padding: 12px 13px; font-size: 13.5px; margin-top: 14px; white-space: nowrap; }
  .path__go { display: none; }
  .path--coach .path__body { text-align: left; }
  .path--coach .btn { align-self: flex-start; }

  .belief, .intro-split, .about, .contact, .block, .service--wide { grid-template-columns: 1fr; }
  .about__sticky { position: static; }
  .services { grid-template-columns: 1fr; }
  .sessions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band__inner { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .form__row { grid-template-columns: 1fr; }
  .sessions { grid-template-columns: 1fr; }
  .footer-join .inline-form { grid-template-columns: 1fr; }
  .btn { white-space: normal; }
  .block__actions .btn { width: 100%; justify-content: center; }
}
