/* ===========================================================================
   החופש לחיות — shared stylesheet for the hub and the three track pages.

   The design language is taken from the workshop's own 2026 deck,
   "החופש לחיות - מפגש 1 - עיצוב 2026.pptx": full-bleed sky photography, white /
   warm-white type over it, and a saturated orange for the wordmark and every call to
   action. Values below are sampled from the deck's own artwork, not from its leftover
   PowerPoint theme.

   House rules still hold: no pure black, no 1px dividers, no drop shadows, every
   transition ≥300ms, RTL throughout.
   =========================================================================== */

/* ── Fonts (local only — never a CDN) ────────────────────────────────────── */
@font-face { font-family: 'GreycliffHebrewCF'; src: url('/fonts/GreycliffHebrewCF-Light.woff2') format('woff2');     font-weight: 300; font-display: swap; }
@font-face { font-family: 'GreycliffHebrewCF'; src: url('/fonts/GreycliffHebrewCF-Regular.woff2') format('woff2');   font-weight: 400; font-display: swap; }
@font-face { font-family: 'GreycliffHebrewCF'; src: url('/fonts/GreycliffHebrewCF-Medium.woff2') format('woff2');    font-weight: 500; font-display: swap; }
@font-face { font-family: 'GreycliffHebrewCF'; src: url('/fonts/GreycliffHebrewCF-DemiBold.woff2') format('woff2');  font-weight: 600; font-display: swap; }
@font-face { font-family: 'GreycliffHebrewCF'; src: url('/fonts/GreycliffHebrewCF-Bold.woff2') format('woff2');      font-weight: 700; font-display: swap; }
@font-face { font-family: 'GreycliffHebrewCF'; src: url('/fonts/GreycliffHebrewCF-ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'GreycliffHebrewCF'; src: url('/fonts/GreycliffHebrewCF-Heavy.woff2') format('woff2');     font-weight: 900; font-display: swap; }
@font-face { font-family: 'NarkissBlock'; src: url('/fonts/NarkissBlock-Light.woff2') format('woff2');   font-weight: 300; font-display: swap; }
@font-face { font-family: 'NarkissBlock'; src: url('/fonts/NarkissBlock-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }

:root {
  /* Sampled from the deck's own images ------------------------------------ */
  --orange:       #FF9750;  /* the wordmark on the title slide */
  --orange-deep:  #FC7D3D;  /* the horizon rule under the walking figure */
  --coral:        #FD917B;  /* the solid coral field slide */
  --sky-deep:     #3C78A8;
  --sky:          #5484B4;
  --sky-mid:      #6C9CC0;
  --sky-light:    #90C0E4;
  --sky-pale:     #DCEAF5;  /* derived, for light tinted bands */
  --paper:        #FFF9F7;  /* the deck's type colour over photography */
  --cream:        #EFEAE1;  /* the decorative rule on every slide */
  --ink:          #1F3A57;  /* deep navy for body text on light grounds */
  --ink-soft:     #5C7690;

  /* Per-track accent. Overridden by [data-track]; the hub keeps the orange. */
  --accent:       var(--orange);
  --accent-deep:  var(--orange-deep);
  /* ⚠️ --orange and --orange-deep are DISPLAY colours. In the deck the orange only ever
     appears as the ~100px wordmark; at label and button sizes it measures ~2.1–2.6:1 on
     every light ground here, well under the 4.5:1 small text needs. Anything under
     18.66px on a light ground uses --accent-text, which stays in the same family. */
  --accent-text:  #A8481A;

  --radius:       22px;
  --radius-sm:    14px;
  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur:          380ms;
  --maxw:         1120px;
  --pad:          clamp(20px, 5vw, 64px);
  --font-head:    'GreycliffHebrewCF', -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-body:    'NarkissBlock', 'GreycliffHebrewCF', -apple-system, 'Segoe UI', Arial, sans-serif;
}

/* The three cycles are told apart by accent only — all three stay inside the deck's
   own range, so no page drifts away from the family. */
[data-track="relationships"] { --accent: #FF9750; --accent-deep: #FC7D3D; --accent-text: #A8481A; }
[data-track="career"]        { --accent: #5484B4; --accent-deep: #3C78A8; --accent-text: #2C5C86; }
[data-track="general"]       { --accent: #FD917B; --accent-deep: #E86E55; --accent-text: #B04A32; }

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* Form controls do NOT inherit the body font — declare it or they fall back to the
   system font and the page silently loses its typography. */
input, select, button, textarea { font-family: var(--font-body); font-size: 1rem; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.22; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(32px, 5.4vw, 60px); }
h2 { font-size: clamp(26px, 3.5vw, 42px); }
h3 { font-size: clamp(19px, 1.9vw, 24px); }
p { margin: 0 0 1.1em; }
/* --accent-text, not the display orange: a link is body-size text (see the contrast note on
   --accent-text above). Bands and the ink section override it. */
a { color: var(--accent-text); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 8vw, 110px); }
/* Bands shift by background — never a divider rule (house rule). */
.section--paper { background: var(--paper); }
.section--pale  { background: var(--sky-pale); }
.section--cream { background: var(--cream); }
.section__lead  { max-width: 62ch; font-size: clamp(17px, 1.2vw, 19px); }
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .08em; color: var(--accent-text); margin: 0 0 12px;
}

/* ── Photographic bands ──────────────────────────────────────────────────
   The deck's core move: a full-bleed sky photo carrying white type. The scrim is a
   directional gradient rather than a flat wash, so the sky stays legible as sky while
   the type side keeps its contrast. */
.band {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--paper);
  padding-block: clamp(64px, 10vw, 132px);
  isolation: isolate;
}
/* The scrim keeps a floor on the light side too. A band is a two-column layout, so
   content can land anywhere across it — a gradient that fades to nothing would leave
   whatever sits on the bright half unreadable. */
.band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to left, rgba(24,54,84,.82) 0%, rgba(24,54,84,.68) 52%, rgba(24,54,84,.56) 100%);
}
.band h1, .band h2, .band h3 { color: var(--paper); }
.band .eyebrow { color: var(--paper); }
.band a { color: var(--paper); }
.band--sky      { background-image: url('../images/sky-band.jpg'); }
.band--island   { background-image: url('../images/cloud-island.jpg'); }
.band--horizon  { background-image: url('../images/horizon.jpg'); }
.band--walking  { background-image: url('../images/walking.jpg'); }
.band--sea      { background-image: url('../images/sea.jpg'); }
.band--reflect  { background-image: url('../images/reflection.jpg'); }
/* On a portrait-heavy photo the subject sits on one side; keep the scrim off them. */
.band--right { background-position: right center; }
.band--left  { background-position: left center; }

/* ── Top bar ─────────────────────────────────────────────────────────────── */
.topbar { position: absolute; inset-inline: 0; top: 0; z-index: 30; }
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 20px;
}
.brand-logo { height: 34px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo { height: 26px; } }
.topbar__back {
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  text-decoration: none; color: var(--paper);
}
/* On pages whose first block is light, the dark mark and dark link are used instead. */
.topbar--light { position: static; background: var(--paper); }
.topbar--light .topbar__back { color: var(--accent-text); }

/* ── Hero — full-bleed photography, type over it ─────────────────────────── */
.hero {
  position: relative; min-height: min(88vh, 780px);
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  color: var(--paper);
  padding-block: clamp(120px, 18vw, 190px) clamp(48px, 7vw, 86px);
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to left, rgba(20,48,78,.82) 0%, rgba(20,48,78,.66) 52%, rgba(20,48,78,.56) 100%),
    linear-gradient(to top, rgba(20,48,78,.42) 0%, rgba(20,48,78,0) 42%);
}
/* The girl spans 20-54% of the photo's width. Centred, a phone or tablet crop cut her left
   side off (Elinor, 19.9.2026); at 30% she stays whole at every width from 375px up. Where
   the photo isn't cropped sideways (wide desktops) the value changes nothing. */
.hero--sky       { background-image: url('../images/hero-sky.jpg'); background-position: 30% center; }
.hero--relations { background-image: url('../images/hero-relations.jpg'); }
/* The hero's .wrap IS .hero__inner. A max-width on that element plus the wrap's
   margin:auto centred a narrow block in the middle of the page; the text belongs on the
   RTL start edge. So the wrap keeps the page width and its children carry the measure. */
.hero > .wrap { width: 100%; }
.hero__inner > * { max-width: 46rem; }
.hero__kicker {
  font-family: var(--font-head); font-weight: 600; font-size: clamp(15px, 1.2vw, 18px);
  color: var(--paper); margin: 0 0 10px; letter-spacing: .02em;
}
/* The wordmark treatment from the title slide: heavy, orange, tight. */
.hero__title { color: var(--paper); margin-bottom: .3em; text-wrap: balance; }
.hero__title em { font-style: normal; color: var(--orange); }
.hero__sub { font-size: clamp(17px, 1.4vw, 21px); max-width: 40ch; color: var(--paper); }
.hero__meta { font-size: clamp(15px, 1.1vw, 17px); font-weight: 400; color: var(--paper); margin-bottom: 26px; }
.hero h1, .hero h2 { color: var(--paper); }

@media (max-width: 700px) {
  .hero { min-height: 0; padding-block: clamp(96px, 26vw, 150px) 44px; }
  .hero::before {
    background:
      linear-gradient(to top, rgba(20,48,78,.86) 0%, rgba(20,48,78,.72) 46%, rgba(20,48,78,.58) 100%);
  }
}

/* ── Card — light, quiet, no shadow ──────────────────────────────────────── */
.card {
  border: 2px solid color-mix(in srgb, var(--accent) 42%, transparent);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 30px);
  background: transparent;
}
.card--solid { background: var(--paper); border-color: color-mix(in srgb, var(--sky) 22%, transparent); }
.card--sky   { background: #fff; border-color: color-mix(in srgb, var(--sky) 30%, transparent); }
/* --accent-text on light cards: at 18-21px the display orange measures ~2.6:1 on white,
   under the 3:1 even large text needs. Cards on a band keep the orange (on dark). */
.card__title { font-family: var(--font-head); font-weight: 800; color: var(--accent-text); margin: 0 0 .35em; font-size: clamp(18px, 1.5vw, 21px); }
.card > :last-child { margin-bottom: 0; }
/* A card on a band carries its own dark backing rather than trusting the scrim beneath
   it — cards sit in the second column, which is the bright side of the gradient. */
.band .card {
  border-color: rgba(255,249,247,.40);
  background: rgba(20,48,78,.66);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.band .card__title { color: var(--orange); }

.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ── Curriculum — the six meetings ───────────────────────────────────────── */
.sessions { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.session {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(14px, 2vw, 22px); align-items: center;
  background: #fff; border-radius: var(--radius-sm);
  padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 24px);
  transition: transform var(--dur) var(--ease);
}
.session:hover { transform: translateX(-4px); }
.session__n {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 18px;
}
.session__t { font-family: var(--font-head); font-weight: 600; font-size: clamp(16px, 1.35vw, 19px); color: var(--ink); }
/* Dark translucent, not white — a white wash over a bright cloud lightens the strip and
   the white type on it loses contrast exactly where the photo is brightest. */
.band .session {
  background: rgba(20,48,78,.66);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.band .session__t { color: var(--paper); }

/* ── Fit block — "ביסוס לא בירור" ─────────────────────────────────────────── */
.fit { display: grid; gap: clamp(16px, 2.4vw, 28px); }
@media (min-width: 780px) { .fit { grid-template-columns: 1fr 1fr; } }
.fit ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fit li { padding-inline-start: 30px; position: relative; }
.fit li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .62em;
  width: 13px; height: 13px; border-radius: 50%; border: 2.5px solid currentColor;
}
.fit--in  li::before { border-color: var(--accent); }
.fit--out li { color: var(--ink-soft); }
.fit--out li::before { border-color: var(--sky-light); }

/* ── Price ───────────────────────────────────────────────────────────────── */
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.price__now { font-family: var(--font-head); font-weight: 900; font-size: clamp(34px, 4vw, 50px); color: var(--orange-deep); line-height: 1; }
.price__was { font-family: var(--font-head); font-weight: 600; font-size: clamp(18px, 1.6vw, 22px); color: var(--ink-soft); text-decoration: line-through; }
.price__badge {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  color: var(--ink); background: var(--orange);
  border-radius: 999px; padding: 5px 13px;
}
.band .price__now { color: var(--orange); }
.band .price__was { color: rgba(255,249,247,.7); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  padding: 15px 32px; border-radius: 999px; border: 2.5px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn--primary { background: var(--orange); color: #24405C; }
.btn--primary:hover { background: var(--orange-deep); color: #1F3A57; }
.btn--ghost { background: transparent; color: var(--accent-text); border-color: var(--accent-text); }
.btn--ghost:hover { background: color-mix(in srgb, var(--accent) 14%, transparent); }
.band .btn--ghost, .hero .btn--ghost { color: var(--paper); border-color: rgba(255,249,247,.75); }
.band .btn--ghost:hover, .hero .btn--ghost:hover { background: rgba(255,249,247,.16); }
.btn--wide { width: 100%; }
.btn__arrow { font-size: 1.05em; line-height: 1; }

/* ── Dual CTA panel ──────────────────────────────────────────────────────── */
.cta-panel {
  background: #fff; border-radius: var(--radius);
  padding: clamp(22px, 3vw, 40px);
  border: 2px solid color-mix(in srgb, var(--sky) 24%, transparent);
}
.cta-panel__routes { display: grid; gap: clamp(20px, 2.6vw, 32px); }
@media (min-width: 820px) { .cta-panel__routes { grid-template-columns: 1fr 1fr; align-items: start; } }
.route__head { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: clamp(18px, 1.5vw, 21px); margin: 0 0 .3em; }
.route__note { font-size: 15px; color: var(--ink-soft); margin: 10px 0 0; }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.field { display: block; margin-bottom: 14px; }
.field__label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 2px solid color-mix(in srgb, var(--sky) 26%, transparent);
  background: var(--paper); color: var(--ink); font-weight: 400;
  transition: border-color var(--dur) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field.is-error input, .field.is-error textarea, .field.is-error select { border-color: #C9503C; }
.field__err { display: none; color: #C9503C; font-size: 14px; margin-top: 5px; }
.field.is-error .field__err { display: block; }
.field--row { display: grid; gap: 14px; }
@media (min-width: 520px) { .field--row { grid-template-columns: 1fr 1fr; } }

.choice { display: grid; gap: 10px; margin: 6px 0 0; }
.choice label {
  display: flex; gap: 11px; align-items: flex-start; cursor: pointer;
  border: 2px solid color-mix(in srgb, var(--sky) 26%, transparent);
  border-radius: var(--radius-sm); padding: 13px 15px;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.choice label:hover { border-color: var(--accent); }
.choice label:has(input:checked) { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; margin: 14px 0 18px; cursor: pointer; }
.consent input { margin-top: .3em; }
.form-note { font-size: 14px; color: var(--ink-soft); margin-top: 12px; }

/* ── Sold-out / status strip ─────────────────────────────────────────────── */
.notice {
  border: 2.5px solid var(--orange-deep); border-radius: var(--radius-sm);
  padding: 16px 20px; margin-bottom: 20px;
  background: color-mix(in srgb, var(--orange) 14%, transparent);
}
.notice__title { font-family: var(--font-head); font-weight: 800; color: var(--ink); margin: 0 0 .2em; }
.notice > :last-child { margin-bottom: 0; }
.seats-left { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; }

/* ── Track cards on the hub ──────────────────────────────────────────────── */
.track-card {
  display: flex; flex-direction: column; gap: 10px;
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: var(--paper);
  background: var(--sky) center/cover;
  min-height: 300px; padding: clamp(20px, 2.4vw, 28px);
  position: relative; isolation: isolate;
  transition: transform var(--dur) var(--ease);
}
.track-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20,48,78,.82) 0%, rgba(20,48,78,.34) 62%, rgba(20,48,78,.14) 100%);
}
.track-card:hover { transform: translateY(-4px); }
.track-card--relationships { background-image: url('../images/hero-relations.jpg'); }
.track-card--career        { background-image: url('../images/walking.jpg'); }
.track-card--general       { background-image: url('../images/reflection.jpg'); }
.track-card__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(19px, 1.7vw, 23px); color: var(--paper); margin: 0; }
.track-card p { color: rgba(255,249,247,.9); margin: 0; }
.track-card__go { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--paper); }
/* "Coming soon" is signalled by draining the PHOTO, not by fading the card — a blanket
   opacity took the title to 2.4:1 and the body copy to 2.1:1. */
.track-card.is-soon { pointer-events: none; filter: grayscale(.45); }
.track-card.is-soon::before {
  background: linear-gradient(to top, rgba(20,48,78,.90) 0%, rgba(20,48,78,.66) 62%, rgba(20,48,78,.52) 100%);
}
.track-card__soon { margin-top: auto; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--paper); }

/* ── Routing banner ──────────────────────────────────────────────────────── */
.route-banner {
  border: 2px solid rgba(255,249,247,.5); border-radius: var(--radius);
  padding: clamp(14px, 1.8vw, 20px); margin-bottom: 24px;
  background: rgba(20,48,78,.42); color: var(--paper);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.route-banner p { margin: 0 0 .5em; }
.route-banner__alts { display: flex; flex-wrap: wrap; gap: 10px 18px; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.route-banner a { color: var(--orange); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff; border-radius: var(--radius-sm);
  padding: clamp(14px, 1.8vw, 20px) clamp(16px, 2vw, 24px);
}
.faq summary {
  font-family: var(--font-head); font-weight: 600; font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--accent-text); transition: transform var(--dur) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { margin: .8em 0 0; }

/* ── Side nav + floating CTA ─────────────────────────────────────────────── */
.sidenav { display: none; }
@media (min-width: 1240px) {
  .sidenav {
    display: grid; gap: 11px; position: fixed; top: 50%; inset-inline-start: 26px;
    transform: translateY(-50%); z-index: 40;
  }
  .sidenav a {
    display: block; width: 11px; height: 11px; border-radius: 50%;
    border: 2px solid var(--sky-light); background: transparent;
    transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .sidenav a:hover, .sidenav a.is-active { background: var(--orange); border-color: var(--orange); transform: scale(1.25); }
}
.floating-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 50;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: rgba(31, 58, 87, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transform: translateY(110%); transition: transform var(--dur) var(--ease);
}
.floating-cta.is-visible { transform: translateY(0); }
.floating-cta__inner { max-width: var(--maxw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.floating-cta__price {
  font-family: var(--font-head); font-weight: 700; color: var(--paper);
  display: inline-flex; align-items: baseline; gap: 8px;
}
.floating-cta__price s { color: rgba(255,249,247,.75); font-weight: 400; }
@media (min-width: 900px) { .floating-cta__inner .btn { min-width: 260px; } }
@media (max-width: 560px) { .floating-cta__price { font-size: 15px; } .floating-cta .btn { padding: 13px 22px; font-size: 15px; } }

/* ── Modal (glassmorphism, per the house landing-page rules) ─────────────── */
.modal {
  position: fixed; inset: 0; z-index: 90; display: grid; place-items: center;
  padding: 20px; background: rgba(31, 58, 87, .42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.modal[hidden] { display: none; }
.modal__box {
  background: #fff; border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px); max-width: 460px; width: 100%;
  box-shadow: 0 20px 40px rgba(31, 58, 87, .06);
}
.modal__title { font-family: var(--font-head); font-weight: 800; color: var(--ink); margin: 0 0 .4em; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
/* The floating CTA is fixed over the page, so the footer reserves its height —
   otherwise the last line sits underneath the bar and can never be scrolled clear. */
.footer { background: var(--sky-deep); color: var(--paper);
  padding-block: clamp(36px, 5vw, 60px) calc(clamp(36px, 5vw, 60px) + 84px); }
/* Pages without the floating CTA don't need the reserved space. */
.footer--short { padding-block: clamp(32px, 4vw, 48px); }
.footer__inner { display: grid; gap: 14px; }
.footer p { margin: 0; font-size: 15px; color: rgba(255,249,247,.86); }
.footer a { color: var(--paper); }

/* ── Reveal on scroll ────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); filter: blur(5px); transition: opacity 620ms var(--ease), transform 620ms var(--ease), filter 620ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; filter: none; }

.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;
}

/* ===========================================================================
   Final copy of 16.9.2026: one page, the entry questionnaire, a checkout page.
   Everything below keeps the house rules: no pure black, no 1px dividers, no drop
   shadows, transitions ≥300ms. Contrast pairs noted where they were measured.
   =========================================================================== */

/* ── Hero: the copy's long H1 ──────────────────────────────────────────── */
.hero__title { font-size: clamp(30px, 4.3vw, 54px); max-width: 22ch; }
/* The wordmark move from the deck's title slide: the workshop's name on its own line, in
   the display orange (display size only — see --accent-text). */
.hero__brand { display: block; color: var(--orange); font-size: 1.12em; margin-bottom: .12em; }
.hero__meta .sep { opacity: .6; margin-inline: .35em; }
.hero__date {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 1.4vw, 20px);
  color: var(--paper); margin: -10px 0 26px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: flex-start; }
.hero__cta { display: grid; gap: 10px; justify-items: start; max-width: 22rem; }
.hero__note { font-size: 15px; font-weight: 400; color: var(--paper); margin: 0; }
.hero__note s { opacity: .85; }
@media (max-width: 560px) {
  .hero__cta { max-width: none; width: 100%; }
  .hero__cta .btn { width: 100%; }
}

/* ── 2 · Reflecting the problem ────────────────────────────────────────── */
.statement {
  font-family: var(--font-head); font-weight: 600; color: var(--ink);
  font-size: clamp(21px, 2.4vw, 30px); line-height: 1.5; max-width: 42ch; margin: 0 0 1.4em;
}
.statement strong { font-weight: 800; color: var(--accent-text); }
.h-sub {
  font-family: var(--font-head); font-weight: 800; color: var(--ink);
  font-size: clamp(20px, 2vw, 26px); line-height: 1.3; margin: 0 0 .9em;
}
.h-sub--accent { color: var(--accent-text); margin-top: -.2em; }
/* The heading over the three moments (Elinor, 19.9.2026): larger than the statement above it,
   so it reads as the heading it is. */
.h-sub--lead { font-size: clamp(26px, 3.2vw, 38px); }
.moment {
  background: #fff; border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 28px);
  border-inline-start: 5px solid var(--sky-light);
}
.moment p { margin: 0; font-size: clamp(17px, 1.3vw, 19px); }

/* ── 3 · The root, on a photo band ─────────────────────────────────────── */
/* Kept to the right (RTL start) half of the band, where the scrim is darkest. */
.prose--band { max-width: 36rem; }
.prose--band p { color: var(--paper); }
.prose__turn { font-family: var(--font-head); font-weight: 700; font-size: clamp(19px, 1.7vw, 23px); }
.prose--band .card { margin-top: 26px; }
.prose--band .card p { margin: 0; font-family: var(--font-head); font-weight: 600; }

/* ── 4 · Four anchors ──────────────────────────────────────────────────── */
.pull-quote {
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
  font-size: clamp(19px, 2vw, 26px); line-height: 1.5; max-width: 46ch;
  margin: 8px 0 32px; padding-inline-start: 22px;
  border-inline-start: 5px solid var(--orange);
}
.closing-line {
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
  font-size: clamp(18px, 1.6vw, 21px); margin: 30px 0 0; max-width: 52ch;
}

/* ── 5 · Syllabus: "רכיב סילבוס בצבע אחר" ─────────────────────────────────
   The one solid dark section on the page. Paper on ink ≈ 11:1; the orange labels on
   ink ≈ 5.4:1, so the orange is legible here even at label size. */
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink a { color: var(--orange); }
.section--ink h2 { max-width: 26ch; }
.syllabus { display: grid; gap: 12px; margin-top: 28px; }
.syllabus__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.envelope {
  border: 2px dashed rgba(255,249,247,.38); border-radius: var(--radius);
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2.4vw, 26px);
}
.envelope__label { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--orange); margin: 0 0 4px; letter-spacing: .04em; }
.envelope__title { font-size: clamp(18px, 1.6vw, 21px); margin: 0 0 .25em; }
.envelope p:last-child { margin: 0; color: rgba(255,249,247,.88); }
.session-acc { background: rgba(255,249,247,.07); border-radius: var(--radius-sm); transition: background-color var(--dur) var(--ease); }
.session-acc[open] { background: rgba(255,249,247,.12); }
.session-acc summary {
  list-style: none; cursor: pointer; position: relative;
  display: grid; gap: 4px;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.4vw, 26px);
  padding-inline-end: 60px;
}
.session-acc summary::-webkit-details-marker { display: none; }
.session-acc summary::after {
  content: "+"; position: absolute; inset-inline-end: 22px; top: 50%; transform: translateY(-50%);
  font-size: 26px; line-height: 1; color: var(--orange); transition: transform var(--dur) var(--ease);
}
.session-acc[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.session-acc summary:focus-visible { outline: 3px solid var(--sky-light); outline-offset: 2px; border-radius: var(--radius-sm); }
.session-acc__head { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.session-acc__n { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--orange); letter-spacing: .04em; }
.tag {
  font-family: var(--font-head); font-weight: 700; font-size: 13px; line-height: 1.6;
  color: var(--ink); background: var(--sky-light); border-radius: 999px; padding: 1px 11px;
}
.session-acc__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(18px, 1.6vw, 22px); color: var(--paper); }
.session-acc__teaser { color: rgba(255,249,247,.86); }
.session-acc__detail {
  margin: 0; padding: 0 clamp(18px, 2.4vw, 26px) clamp(16px, 2vw, 22px);
  color: rgba(255,249,247,.94); max-width: 68ch;
}

/* ── 6 · Entry questionnaire ───────────────────────────────────────────── */
.quiz-shell { max-width: 780px; }
.quiz {
  background: #fff; border-radius: var(--radius);
  padding: clamp(22px, 3vw, 38px); margin-top: 26px;
}
.quiz__progress { height: 6px; border-radius: 999px; background: var(--sky-pale); overflow: hidden; }
.quiz__progress span { display: block; height: 100%; background: var(--orange); border-radius: 999px; transition: width var(--dur) var(--ease); }
.quiz__count { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--accent-text); margin: 14px 0 6px; }
.quiz__q { font-size: clamp(20px, 2vw, 26px); margin: 0 0 18px; }
.quiz__q:focus, .quiz__picked:focus, .quiz__done-title:focus { outline: none; }
.quiz__optional { font-weight: 400; font-size: .68em; color: var(--ink-soft); }
.quiz__opts { display: grid; gap: 10px; }
.quiz__opts--grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.quiz__opt {
  text-align: start; font-weight: 400; font-size: 17px; line-height: 1.5; color: var(--ink);
  background: var(--paper); cursor: pointer;
  border: 2px solid color-mix(in srgb, var(--sky) 26%, transparent);
  border-radius: var(--radius-sm); padding: 14px 16px;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.quiz__opt:hover { border-color: var(--accent); }
.quiz__opt.is-on { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, var(--paper)); }
.quiz__opt:focus-visible, .quiz__back:focus-visible { outline: 3px solid var(--sky-deep); outline-offset: 2px; }
.quiz__back {
  background: none; border: 0; cursor: pointer; padding: 6px 0; margin-top: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--accent-text);
}
.quiz__text { margin-bottom: 18px; }
/* Back and forward in one row, each on the side its arrow points to: in RTL the first child
   ("→ back") sits on the right and the last ("continue ←") on the left. */
.quiz__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.quiz__nav .quiz__back { margin: 0; }
.quiz__nav .btn { margin-inline-start: auto; }
.quiz__result { background: var(--sky-pale); border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 22px; }
.quiz__result p:last-child { margin: 0; }
.quiz__picked { font-family: var(--font-head); font-weight: 600; font-size: clamp(18px, 1.6vw, 21px); margin: 0 0 .5em; }
.quiz__picked strong { font-weight: 800; color: var(--accent-text); }
.quiz__form .btn--wide { margin-top: 4px; }
.quiz__alt { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 22px; align-items: center; margin-top: 18px; }
.quiz__alt .quiz__back { margin: 0; }
.quiz__done-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); color: var(--ink); margin: 0 0 .3em; }
.quiz__done p:last-child { margin: 0; }

/* ── 7 · The team, the upcoming cycles, the facts ──────────────────────── */
/* The carousel is native horizontal scroll-snap: swipes on a phone, sits in one row on a
   desktop, and needs no script or arrows. */
.facilitators__row {
  list-style: none; margin: 28px 0 0; padding: 0 0 8px;
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
}
.fac {
  scroll-snap-align: start; text-align: center;
  background: var(--sky-pale); border-radius: var(--radius); padding: 26px 22px;
}
.fac__photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 14px; }
/* White on --sky ≈ 3.9:1, passes for text this large and bold. */
.fac__photo--initial {
  display: grid; place-content: center; background: var(--sky); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 46px;
}
.fac__name { font-family: var(--font-head); font-weight: 800; font-size: 19px; margin: 0; }
/* A three-sentence bio reads better from the RTL edge than centred. */
.fac__bio { font-size: 15px; line-height: 1.7; text-align: start; margin: .8em 0 0; }
.brand-grid { display: grid; gap: 36px; margin-top: 48px; }
@media (min-width: 900px) { .brand-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.block-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(18px, 1.6vw, 22px); margin: 0 0 .6em; }
.brand-grid p + .block-title { margin-top: 1.4em; }
.cycles__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.cycles__tab {
  font-family: var(--font-head); font-weight: 700; font-size: 15px; cursor: pointer;
  padding: 8px 18px; border-radius: 999px; color: var(--ink); background: transparent;
  border: 2px solid color-mix(in srgb, var(--sky) 34%, transparent);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.cycles__tab[aria-selected="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cycles__panel { background: var(--sky-pale); border-radius: var(--radius); padding: clamp(18px, 2.4vw, 26px); }
.cycles__lead { font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 1.5vw, 20px); margin: 0 0 .3em; }
.cycles__meta { color: var(--ink-soft); margin: 0 0 18px; }
.facts { margin: 0; display: grid; gap: 12px; }
.facts div { display: grid; grid-template-columns: 64px 1fr; gap: 10px; }
.facts dt { font-family: var(--font-head); font-weight: 800; color: var(--accent-text); }
.facts dd { margin: 0; }

/* ── 8 · Price and registration ────────────────────────────────────────── */
.price-panel { display: grid; gap: clamp(22px, 3vw, 40px); }
@media (min-width: 860px) { .price-panel { grid-template-columns: 1.15fr 1fr; align-items: start; } }
.price-panel .price { margin: 4px 0 8px; }
.price-panel .block-title { margin-top: 26px; }
.price-panel__actions { display: grid; gap: 12px; align-content: start; }
.price-panel__actions .form-note { margin: 0; }
.price__instead { font-family: var(--font-head); font-weight: 600; font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-soft); }
.included { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.included li { position: relative; padding-inline-start: 28px; }
.included li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .6em;
  width: 13px; height: 13px; border-radius: 50%; border: 2.5px solid var(--orange-deep);
}

/* ── Checkout page ─────────────────────────────────────────────────────── */
.checkout-page { padding-block: clamp(28px, 5vw, 64px); min-height: 70vh; }
.checkout { display: grid; gap: clamp(18px, 2.4vw, 28px); }
@media (min-width: 920px) { .checkout { grid-template-columns: .9fr 1.1fr; align-items: start; } }
.order__title { font-size: clamp(24px, 2.6vw, 32px); margin: 0 0 .5em; }
.order__lines { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 7px; }
.order__lines li { position: relative; padding-inline-start: 22px; }
.order__lines li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .62em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--orange-deep);
}
.order__label { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--accent-text); margin: 0 0 6px; }
.order__price { background: var(--sky-pale); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 18px; }
.order__price:last-child { margin-bottom: 0; }
.order__price .price__now { font-size: clamp(32px, 3.4vw, 44px); }
.order__price .route__note { margin: 6px 0 0; }
.legal-checks { margin: 8px 0 4px; }
.consent-field { margin-bottom: 0; }
.consent-field .consent { margin: 10px 0 4px; }
.consent-field.is-error .consent { color: #9E3A2A; }
.privacy-note { font-size: 14px; color: var(--ink-soft); margin: 10px 0 18px; }
.checkout__alt { font-size: 15px; margin: 20px 0 0; }

/* ── Terms page ────────────────────────────────────────────────────────── */
.legal-doc { max-width: 800px; }
.legal-doc h1 { font-size: clamp(28px, 3.4vw, 40px); }
.legal-doc h2 { font-size: clamp(22px, 2.4vw, 28px); margin-top: 1.6em; }
.legal-doc__sub { font-family: var(--font-head); font-weight: 600; font-size: clamp(17px, 1.4vw, 19px); }
.legal-doc__list { padding-inline-start: 1.4em; margin: 0 0 1em; display: grid; gap: 12px; }
.legal-doc__tiers { list-style: none; margin: 0 0 1.4em; padding: 0; display: grid; gap: 10px; }
.legal-doc__tiers li { background: var(--sky-pale); border-radius: var(--radius-sm); padding: 14px 18px; }
.legal-doc__tiers strong { display: block; font-family: var(--font-head); font-weight: 800; }
.legal-doc__version { font-size: 14px; color: var(--ink-soft); }

/* ── Thank-you pages ───────────────────────────────────────────────────── */
.thanks-page { min-height: 62vh; }
.thanks { max-width: 680px; margin-inline: auto; }
.thanks__title { font-size: clamp(26px, 3.4vw, 38px); }
.thanks__sub { font-size: clamp(19px, 1.7vw, 22px); margin: 1.2em 0 .5em; }
.thanks__steps { padding-inline-start: 1.2em; margin: 0 0 1.1em; display: grid; gap: 10px; }
.thanks__actions { margin: 22px 0 0; }

/* ===========================================================================
   Direction A, chosen by Elinor (19.9.2026): the same structure, with a photograph from the
   workshop's own decks on almost every section. Photos live in images/deck/.
   =========================================================================== */

/* ── The three moments, each with its own picture ──────────────────────── */
.photo-card { background: #fff; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.photo-card p { margin: 0; padding: 20px 22px 24px; font-size: clamp(17px, 1.3vw, 19px); }

/* ── The root, on its own photograph ───────────────────────────────────── */
/* The figure sits at ~58% of a very wide photo; anchoring the photo's right edge puts it on
   the left half of the band, clear of the text column. */
.band--root { background-image: url('../images/deck/root-sitting.jpg'); background-position: 100% center; }
/* On a phone the band is tall and narrow, so the background crop never reaches the seated
   figure (50-64% of the width). There the photo is shown as a picture of its own, right
   under the heading (Elinor, 19.9.2026: "it's important"). 66% centres the figure in 4:3. */
.band-photo { display: none; }
@media (max-width: 700px) {
  .band-photo { display: block; margin: 4px 0 24px; border-radius: var(--radius); overflow: hidden; }
  .band-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 66% center; display: block; }
}

/* ── Anchors with a picture each ───────────────────────────────────────── */
.anchor-pic { background: #fff; border-radius: var(--radius); overflow: hidden; }
.anchor-pic img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: var(--pos, center); display: block; }
.anchor-pic div { padding: 18px 20px 22px; }
.anchor-pic h3 { color: var(--accent-text); font-size: clamp(18px, 1.5vw, 21px); margin: 0 0 .35em; }
.anchor-pic p { margin: 0; font-size: 16px; }

/* Phones (Elinor, 19.9.2026): a full-width photo per card cost a screen per card and
   drowned the text. Where the grid is one column, the photo becomes a narrow strip at the
   card's start (right, in RTL) and the text leads. */
@media (max-width: 600px) {
  .photo-card, .anchor-pic { display: grid; grid-template-columns: 104px 1fr; align-items: stretch; }
  .photo-card img, .anchor-pic img { aspect-ratio: auto; height: 100%; min-height: 128px; }
  .anchor-pic img { object-position: var(--mpos, var(--pos, center)); }
  .photo-card p { padding: 16px 18px; align-self: center; font-size: 17px; }
  .anchor-pic div { padding: 14px 16px 16px; align-self: center; }
  .anchor-pic p { font-size: 15.5px; }
}

/* ── Syllabus beside a tall photograph ─────────────────────────────────── */
.syl-grid { display: grid; gap: clamp(20px, 3vw, 40px); margin-top: 28px; }
@media (min-width: 960px) { .syl-grid { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.syl-grid .syllabus { margin-top: 0; }
.syl-photo { margin: 0; border-radius: var(--radius); overflow: hidden; position: sticky; top: 24px; }
.syl-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 38% center; display: block; }
/* Stacked (under 960px), this photo would close the syllabus right before the quiz's own
   photo opens the next section: two photos back to back (Elinor, 19.9.2026). The quiz
   keeps its photo; this one only shows beside the syllabus on wide screens. */
@media (max-width: 959px) { .syl-photo { display: none; } }

/* ── Questionnaire beside a photograph ─────────────────────────────────── */
.quiz-grid { display: grid; gap: clamp(20px, 3vw, 40px); }
@media (min-width: 960px) { .quiz-grid { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.quiz-photo { margin: 0; border-radius: var(--radius); overflow: hidden; }
.quiz-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 58% center; display: block; }
@media (max-width: 959px) { .quiz-photo { order: -1; } .quiz-photo img { aspect-ratio: 16 / 9; } }

/* ── The next cycle: group photo, facilitator, the two info panels ─────── */
.group-shot { position: relative; margin: 0 0 40px; border-radius: var(--radius); overflow: hidden; }
.group-shot img { width: 100%; aspect-ratio: 21 / 8; object-fit: cover; object-position: center 30%; display: block; }
.group-shot figcaption {
  position: absolute; inset-inline-start: 0; bottom: 0; margin: 18px; padding: 10px 16px; border-radius: 999px;
  background: rgba(20,48,78,.78); color: var(--paper); font-family: var(--font-head); font-weight: 700; font-size: 15px;
}
@media (max-width: 700px) { .group-shot img { aspect-ratio: 4 / 3; } }
.next-cycle__title { margin-bottom: .2em; }
/* Warm stone, not sky (Elinor, 19.9.2026): Mira's portrait is shot on a beige studio
   backdrop (#91887C on average), and this is that tone mixed 30% into the deck's cream
   #EFEAE1, so the photo sits in its own colour and the card stays in the page's family.
   Ink on it 7.4:1. The orange link colour would drop under 4.5:1 here, so links are ink. */
/* Sized to the bio, not the other way round (Elinor, 19.9.2026: the card was too big for
   its text): a 180px photo is about the height of the name plus five lines of bio. */
.fac-card {
  display: grid; gap: clamp(16px, 2.4vw, 28px); margin-top: 22px;
  background: #D3CDC3; border-radius: var(--radius); padding: clamp(16px, 2.2vw, 24px);
}
.fac-card a { color: var(--ink); font-weight: 400; }
@media (min-width: 760px) { .fac-card { grid-template-columns: 180px 1fr; align-items: center; } }
/* height:auto matters: the img carries width/height attributes (no layout shift), and
   without it the height attribute wins over aspect-ratio and the photo turns into a tall
   strip. */
.fac-card__photo { width: 100%; max-width: 180px; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-sm); display: block; }
@media (max-width: 759px) { .fac-card__photo { max-width: 140px; } }
.fac-card__name { font-size: clamp(22px, 2.2vw, 28px); margin: 0 0 .4em; }
.fac-card__bio { font-size: clamp(16px, 1.2vw, 18px); margin: 0; max-width: 60ch; }
.info-grid { display: grid; gap: 16px; margin-top: 16px; }
@media (min-width: 860px) { .info-grid { grid-template-columns: 1fr 1fr; } }
/* The two panels carry the practical facts, so they read as cards, not footnotes. */
.info-card { border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); }
.info-card h3 { font-size: clamp(20px, 2vw, 26px); margin: 0 0 .6em; }
.info-card p, .info-card dd { font-size: clamp(17px, 1.3vw, 19px); }
.info-card > :last-child { margin-bottom: 0; }
.info-card--about { background: #fff; border: 2px solid color-mix(in srgb, var(--sky) 30%, transparent); }
.info-card--facts { background: var(--ink); color: var(--paper); }
.info-card--facts h3 { color: var(--paper); }
.info-card--facts dt { color: var(--orange); }  /* orange on ink ≈ 5.4:1 */
.info-card--facts a { color: var(--orange); }
.info-card--facts .facts div { grid-template-columns: 72px 1fr; }
.team-cta { margin: 28px 0 0; }

/* ── Price on a photo band ─────────────────────────────────────────────── */
.band--join { background-image: url('../images/deck/join-clouds.jpg'); background-position: center 35%; }
.band--join .cta-panel { color: var(--ink); }
.band--join .cta-panel .eyebrow { color: var(--accent-text); }
.band--join .cta-panel h3, .band--join .cta-panel .block-title { color: var(--ink); }
.band--join .cta-panel a:not(.btn) { color: var(--accent-text); }
.band--join .cta-panel .btn--ghost { color: var(--accent-text); border-color: var(--accent-text); }
.band--join .price__now { color: var(--orange-deep); }
.band--join .notice p { color: var(--ink); }
