:root {
  --sand: #f6eddc;        /* warm paper */
  --tuff: #eeddc9;        /* rose tuff stone */
  --tuff-deep: #e3cdb2;
  --apricot: #e07b26;     /* Armenian apricot */
  --apricot-deep: #c4641a;
  --pom: #83203a;         /* pomegranate */
  --pom-deep: #631428;
  --blue: #27436e;        /* flag blue */
  --ink: #2b1c12;         /* warm dark brown */
  --ink-soft: #71604f;
  --radius: 16px;
  --arch: 999px 999px 20px 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page-in: 240ms;
  --page-out: 180ms;
  --display: "Bricolage Grotesque", sans-serif;
  --section-y: 104px; /* content-to-content gap between homepage sections */
  --program-aside: minmax(280px, 420px); /* Club / CET / Mafia price + CTA column */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--sand); }
#about, #sessions, #programs, #program-trial, #program-club, #program-gamenight, #program-curriculum, #formats, #why, #rules, #faq, #join, #contact, #top, #team, #apply {
  scroll-margin-top: 92px;
}

body {
  font-family: "Instrument Sans", sans-serif;
  background: var(--sand);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

/* Cross-page fade through sand paper. JS adds the html classes; reduced motion stays instant. */
@media (prefers-reduced-motion: no-preference) {
  html.with-page-transition body {
    opacity: 0;
  }
  html.with-page-transition.is-visible body {
    opacity: 1;
    transition: opacity var(--page-in) var(--ease);
  }
  html.with-page-transition.is-leaving body {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--page-out) var(--ease);
  }
}

::selection { background: var(--apricot); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.02; letter-spacing: -0.01em; text-wrap: balance; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--sand) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-logo {
  width: 44px; height: 44px; object-fit: cover; display: block; flex-shrink: 0;
  border-radius: 10px; border: 1.5px solid var(--ink);
}
.brand-name { font-family: var(--display); font-weight: 800; font-size: 16px; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 15px; transition: color 0.2s var(--ease); }
.nav-links a:hover { color: var(--pom); }
.nav-links a[aria-current="page"]:not(.btn) { color: var(--pom); }
.nav-links a.btn { color: #000; }
.nav-links a.btn:hover { color: var(--sand); }
.nav-links a:focus-visible { outline: 2px solid var(--pom); outline-offset: 3px; border-radius: 6px; }
.nav-links a.btn:focus-visible { outline-offset: 4px; border-radius: 12px; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  margin-left: auto;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: color-mix(in srgb, var(--sand) 70%, #fff);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-toggle:hover {
  background: var(--tuff);
  border-color: var(--pom);
  color: var(--pom);
}
.nav-toggle:focus-visible { outline: 2px solid var(--pom); outline-offset: 3px; }
.nav-toggle[aria-expanded="true"] {
  background: var(--pom);
  border-color: var(--pom);
  color: var(--sand);
}
.nav-toggle[aria-expanded="true"]:hover {
  background: var(--pom-deep);
  border-color: var(--pom-deep);
  color: var(--sand);
}
.nav-toggle-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease), top 0.22s var(--ease);
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 5px; }
.nav-toggle-bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

html.nav-open,
html.nav-open body { overflow: hidden; }
html.nav-open .nav {
  background: var(--sand);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--apricot); color: #000;
  font-family: var(--display); font-weight: 800; font-size: 15px;
  padding: 13px 24px; border-radius: 12px; border: none;
  text-decoration: none; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { background: var(--pom); color: var(--sand); transform: translateY(-2px); box-shadow: 0 12px 28px -12px color-mix(in srgb, var(--pom) 60%, transparent); }
.btn:active { transform: translateY(0); }
.btn.big { font-size: 17px; padding: 16px 30px; }
.btn.line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--ink) 30%, transparent); }
.btn.line:hover { box-shadow: inset 0 0 0 2px var(--pom); color: var(--pom); background: transparent; }
.btn.on-dark { background: var(--apricot); color: var(--ink); }
.btn.on-dark:hover { background: var(--sand); color: var(--pom); }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 96px; overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pom); margin-bottom: 26px;
}
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--apricot); }
.hero h1 { font-size: clamp(46px, 6.6vw, 92px); font-weight: 800; margin-bottom: 10px; }
.hero h1 em { font-style: normal; color: var(--apricot-deep); }
.hero p.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 32em; margin: 22px 0 38px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art { position: relative; display: flex; justify-content: center; padding: 28px 8px 36px; }
.sun {
  position: absolute; top: -6%; right: 6%;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--apricot); opacity: 0.9; z-index: 0;
}
.arch-frame {
  position: relative; z-index: 1;
  width: min(340px, 88%);
  background: var(--tuff);
  border: 2px solid var(--ink);
  border-radius: var(--arch);
  padding: 58px 30px 34px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  box-shadow: 12px 12px 0 var(--pom);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.arch-frame:hover { transform: translate(-4px, -4px); box-shadow: 16px 16px 0 var(--pom); }
.arch-frame img { width: 72%; border-radius: 14px; display: block; border: 2px solid var(--ink); }
.arch-caption { font-family: var(--display); font-weight: 600; font-size: 14.5px; color: var(--ink-soft); text-align: center; }
.arch-caption strong { color: var(--ink); }
.chip {
  position: absolute; z-index: 2; background: var(--sand); color: var(--ink);
  border: 1.5px solid var(--ink);
  font-family: var(--display); font-weight: 600; font-size: 12.5px;
  padding: 7px 13px; border-radius: 999px;
  white-space: nowrap;
  animation: float 5.5s ease-in-out infinite;
}
.chip.c1 { top: 14%; left: 6%; animation-delay: 0s; }
.chip.c2 { top: 8%; right: 8%; animation-delay: 0.7s; }
.chip.c3 { top: 55%; right: 2%; animation-delay: 1.4s; background: var(--apricot); }
.chip.c4 { bottom: 8%; left: 10%; animation-delay: 2.1s; }
.chip.c5 { top: 40%; left: 2%; animation-delay: 2.8s; }
.chip.c6 { bottom: 2%; right: 4%; animation-delay: 3.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--pom); color: var(--sand);
  overflow: hidden; white-space: nowrap; padding: 15px 0;
  border-block: 2px solid var(--ink);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  flex-shrink: 0;
}
.ticker span {
  font-family: var(--display); font-weight: 600; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 44px;
}
.ticker span::after { content: "❖"; color: var(--apricot); font-size: 11px; }
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track, .chip { animation: none; } }

/* ---------- Sections ---------- */
/* Half of --section-y on each side so adjacent sections make one gap, not two. */
section { padding: calc(var(--section-y) / 2) 0; }
.sessions { padding-top: var(--section-y); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 58px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(34px, 4.4vw, 58px); font-weight: 800; }
.sec-head h2 .tag-line {
  display: block; font-family: "Instrument Sans", sans-serif; font-size: 13px; font-weight: 700;
  color: var(--apricot-deep); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px;
}
.sec-head p { color: var(--ink-soft); font-size: 17.5px; max-width: 26em; }

/* What we do — editorial numbered list */
.do-list { border-top: 2px solid var(--ink); }
.do-row {
  display: grid; grid-template-columns: 90px 1fr 1.2fr; gap: 28px; align-items: baseline;
  padding: 30px 8px; border-bottom: 2px solid var(--ink);
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.do-row:hover { background: var(--tuff); padding-left: 20px; }
.do-row .no { font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--apricot-deep); }
.do-row h3 { font-size: clamp(20px, 2.2vw, 27px); font-weight: 800; }
.do-row p { color: var(--ink-soft); font-size: 16.5px; }

/* Home — three current-program cards (not a carousel) */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.path-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: color-mix(in srgb, var(--sand) 70%, #fff);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.path-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--apricot);
}
.path-card:focus-visible {
  outline: 2px solid var(--pom);
  outline-offset: 3px;
}
.path-card h3 {
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 800;
  margin-bottom: 10px;
  text-wrap: balance;
}
.path-card > p {
  color: var(--ink-soft);
  font-size: 15.5px;
  text-wrap: pretty;
}
.path-card .program-meta { margin-top: 14px; }
.path-card-go {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--pom);
}
.path-card:hover .path-card-go { color: var(--pom-deep); }

/* Formats — pomegranate band with horizontal scroll */
.formats { background: var(--pom); color: var(--sand); padding: 0; }
.formats-inner { padding: calc(var(--section-y) / 2) 0; }
.formats { border-block: 2px solid var(--ink); }
.formats .sec-head h2 { color: var(--sand); }
.formats .sec-head h2 .tag-line { color: var(--apricot); }
.fmt-rail {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 64px;
}
.fmt-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding: 8px 4px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fmt-scroll::-webkit-scrollbar { display: none; }
.fmt-arrow {
  position: absolute; top: calc(50% - 14px); z-index: 3;
  width: 52px; height: 60px;
  display: grid; place-items: center;
  background: var(--apricot); color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px 999px 14px 14px;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.25s var(--ease);
}
.fmt-arrow svg { width: 18px; height: 18px; display: block; }
.fmt-arrow.prev { left: 8px; }
.fmt-arrow.next { right: 8px; }
.fmt-arrow:hover {
  background: var(--sand);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.fmt-arrow:active { transform: translate(1px, 1px); box-shadow: 3px 3px 0 var(--ink); }
.fmt-arrow:disabled {
  opacity: 0.28; cursor: default;
  transform: none; box-shadow: 3px 3px 0 var(--ink);
  background: var(--apricot);
}
.fmt-arrow:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }
.fmt-card {
  flex: 0 0 285px; scroll-snap-align: start;
  background: var(--sand); color: var(--ink);
  border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 26px 24px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fmt-card:hover { transform: translateY(-6px); box-shadow: 0 8px 0 var(--apricot); }
.fmt-card .no {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--apricot); color: var(--ink);
  font-family: var(--display); font-weight: 800; font-size: 15px; margin-bottom: 18px;
}
.fmt-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.fmt-card h3 small { display: block; font-family: "Instrument Sans", sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pom); margin-top: 4px; }
.fmt-card p { font-size: 15px; color: var(--ink-soft); }

/* Tools */
.tools-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tool {
  background: var(--tuff); border-radius: var(--arch);
  padding: 56px 30px 38px; text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.tool:hover { border-color: var(--ink); transform: translateY(-4px); }
.tool .tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pom); margin-bottom: 16px; }
.tool h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.tool p { color: var(--ink-soft); font-size: 15.5px; }

/* Why + Who */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: start; }
.check-list { list-style: none; }
.check-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 19px 0; border-bottom: 1.5px solid color-mix(in srgb, var(--ink) 18%, transparent);
  font-weight: 600; font-size: 17.5px;
}
.check-list li:last-child { border-bottom: none; }
.tick {
  flex: none; width: 26px; height: 26px; margin-top: 3px;
  background: var(--apricot); color: var(--ink);
  display: grid; place-items: center; font-size: 13px; font-weight: 900;
  border-radius: 8px;
}
.who-card {
  background: var(--blue); color: var(--sand);
  border-radius: 120px 120px 24px 24px;   /* gentle arch so content stays inside */
  padding: 84px 40px 48px;
  position: sticky; top: 100px;
}
.who-card h3 { font-size: 25px; font-weight: 800; margin-bottom: 26px; }
.who-card ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.who-card li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: color-mix(in srgb, var(--sand) 82%, var(--blue)); }
.who-card li strong { color: var(--sand); }
.who-card li::before { content: "❖"; color: var(--apricot); flex: none; font-size: 12px; margin-top: 5px; }

/* Rules — Armenian numerals */
.rules { background: var(--tuff); padding-bottom: 28px; }
.rule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.rule {
  background: var(--sand); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.rule:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--apricot); }
.rule .no {
  font-family: var(--display); font-weight: 800; font-size: 44px; line-height: 1;
  color: var(--pom); margin-bottom: 18px; display: block;
}
.rule h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.rule p { color: var(--ink-soft); font-size: 15.5px; }
.rule code {
  font-family: ui-monospace, "SF Mono", monospace; font-size: 14px;
  background: color-mix(in srgb, var(--apricot) 25%, transparent);
  color: var(--pom); padding: 2px 7px; border-radius: 6px; font-weight: 700;
}

/* Session facts */
.sessions { background: var(--sand); }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 2px solid var(--ink);
  padding-top: 28px;
  align-items: stretch;
}
.fact {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  background: color-mix(in srgb, var(--sand) 70%, #fff);
  min-height: 148px;
}
.fact dt {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--apricot-deep); margin-bottom: 10px;
}
.fact dd { font-family: var(--display); font-weight: 800; font-size: 18px; line-height: 1.25; }
.fact a { color: var(--pom); }

/* FAQ */
.faq { background: var(--tuff); padding-top: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.faq-item {
  background: var(--sand); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 6px 22px 6px;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 800; font-size: 18px;
  padding: 16px 0; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--pom); font-size: 28px; line-height: 1; font-weight: 800; flex: none;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--ink-soft); padding: 0 0 18px; }
.faq-item a { color: var(--pom); font-weight: 700; }
.faq-item a:hover { color: var(--pom-deep); }
.faq-item summary:focus-visible { outline: 2px solid var(--pom); outline-offset: 4px; border-radius: 8px; }

/* Programs catalog cards */
.program-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.program {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--sand);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.program-alias {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  pointer-events: none;
}
.program:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--apricot); }
.program--featured {
  box-shadow: 8px 8px 0 var(--pom);
}
.program--featured:hover { box-shadow: 11px 11px 0 var(--pom); }
.program-head {
  display: grid;
  grid-template-columns: 1fr var(--program-aside);
  gap: 28px;
  align-items: start;
}
.program-kicker {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pom);
  margin-bottom: 12px;
}
.program-copy h2,
.program-copy h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
}
.program-copy p { color: var(--ink-soft); font-size: 16.5px; text-wrap: pretty; }
.program-copy p + p { margin-top: 10px; }
.program-copy .program-formats-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--apricot-deep);
  margin: 16px 0 8px;
}
.program-formats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.program-formats li {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: color-mix(in srgb, var(--sand) 70%, #fff);
}
.program-copy .program-hook {
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}
.program-aside { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.program-price { margin: 0; }
.program-price-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--apricot-deep);
  margin-bottom: 6px;
}
.program-price-value {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.program-price-value--phrase {
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
}
.program-meta-row {
  position: relative;
}
.program-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.program-meta li {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: color-mix(in srgb, var(--sand) 70%, #fff);
}
.program-meta li:has(> a) {
  padding: 0;
}
.program-meta li > a {
  display: inline-block;
  padding: 6px 11px;
  border-radius: inherit;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 3px;
}
.program-meta li > a:hover {
  color: var(--apricot-deep);
  text-decoration: underline;
}
.program-meta li > a:focus-visible {
  outline: 2px solid var(--pom);
  outline-offset: 3px;
}
.program-meta li.program-meta-pair {
  display: flex;
  padding: 0;
  border: none;
  background: none;
  letter-spacing: 0;
}
.program-meta-pair > ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
#program-gamenight {
  min-width: 0;
}
#program-gamenight .program-aside {
  min-width: 0;
}
#program-gamenight .program-meta {
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}
#program-gamenight .program-meta li {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 11.5px;
  padding: 5px 9px;
}
#program-gamenight .program-meta li:has(.info-tip) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#program-gamenight .program-meta li:has(.info-tip) .info-tip {
  margin-left: 0;
  position: static;
}
#program-gamenight .program-meta-row .info-tip-panel {
  left: 0;
  right: 0;
  width: auto;
}
#program-gamenight .program-meta li:has(> a) {
  padding: 0;
}
#program-gamenight .program-meta li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
}
.program-meta-pin {
  width: 12px;
  height: 12px;
  flex: none;
  display: block;
}
.program-meta li.program-meta-info {
  border: none;
  background: none;
  padding: 0;
  letter-spacing: 0;
}
.program-meta-info .info-tip {
  margin-left: 0;
}
.program-cta {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: stretch;
}
.program-cta--stack {
  flex-direction: column;
}
.program-cta--stack .btn {
  flex: 0 0 auto;
  width: 100%;
  text-align: center;
  text-wrap: pretty;
  white-space: normal;
  line-height: 1.25;
}
.program-cta .btn {
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  min-height: 51px;
  padding: 13px 14px;
  line-height: 1.65;
  white-space: nowrap;
}
.program-cta .btn:focus-visible {
  outline: 2px solid var(--pom);
  outline-offset: 4px;
}
.program-share-icon {
  width: 15px;
  height: 15px;
  flex: none;
}
.program-share-label { white-space: nowrap; }
.program-cta .btn.line.is-copied {
  box-shadow: inset 0 0 0 2px var(--pom);
  color: var(--pom);
}
.program-cta .btn.line.is-copied .program-share-icon { display: none; }
.program-aside > .btn { justify-content: center; width: 100%; }

.cohort-facts {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr) minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 18px 22px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}
.cohort-facts > div { min-width: 0; }
.cohort-facts dt {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--apricot-deep);
  margin-bottom: 6px;
}
.cohort-facts dd {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.3;
  text-wrap: pretty;
}

.info-tip {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 2px;
}
.info-tip-btn {
  appearance: none;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: -2px 0;
  padding: 0;
  border: 1.5px solid color-mix(in srgb, var(--ink) 55%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--sand) 70%, #fff);
  color: var(--ink);
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.info-tip-btn::after {
  content: "";
  position: absolute;
  inset: -11px;
}
.info-tip-mark {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  font-size: 12px;
  line-height: 1;
  transform: translateY(-0.5px);
}
.info-tip-btn:hover,
.info-tip.is-open .info-tip-btn {
  background: var(--pom);
  border-color: var(--pom);
  color: var(--sand);
}
.info-tip-btn:focus-visible {
  outline: 2px solid var(--pom);
  outline-offset: 3px;
}
.info-tip-panel {
  display: block;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 12;
  width: min(19.5rem, calc(100vw - 40px));
  padding: 12px 14px 13px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--sand);
  box-shadow: 4px 4px 0 var(--apricot);
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.45;
  text-wrap: pretty;
  text-align: left;
}
.info-tip-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 10px;
}
.info-tip-panel a {
  color: var(--pom);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.info-tip-panel a:hover { color: var(--pom-deep); }
.info-tip-panel a:focus-visible {
  outline: 2px solid var(--pom);
  outline-offset: 2px;
  border-radius: 4px;
}
.info-tip-panel[hidden] { display: none; }
@media (max-width: 900px) {
  .cohort-facts > div,
  .apply-cohort > div,
  .program-copy,
  .program-meta-row {
    position: relative;
  }
  .info-tip { position: static; }
  .info-tip-panel {
    left: 0;
    right: 0;
    width: auto;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .info-tip-panel {
    transform: translateY(-4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
  }
  .info-tip.is-open .info-tip-panel {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}

.curriculum {
  margin-top: 28px;
  padding-top: 8px;
  border-top: 2px solid var(--ink);
}
.curriculum h3,
.curriculum h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--apricot-deep);
  margin: 18px 0 12px;
}
.curriculum-item {
  border-bottom: 1.5px solid color-mix(in srgb, var(--ink) 18%, transparent);
}
.curriculum-item:last-child { border-bottom: none; }
.curriculum-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  font-family: var(--display);
  font-weight: 800;
}
.curriculum-item summary::-webkit-details-marker { display: none; }
.curriculum-item summary::after {
  content: "+";
  color: var(--pom);
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  flex: none;
  margin-left: auto;
  margin-top: -2px;
}
.curriculum-item[open] summary::after { content: "–"; }
.curriculum-item summary:focus-visible {
  outline: 2px solid var(--pom);
  outline-offset: 4px;
  border-radius: 8px;
}
.curriculum-no {
  flex: none;
  width: 40px;
  font-size: 18px;
  color: var(--apricot-deep);
  margin-top: 2px;
}
.curriculum-copy { min-width: 0; display: flex; flex-direction: column; gap: 4px; padding-right: 8px; }
.curriculum-name { font-size: 17.5px; line-height: 1.2; }
.curriculum-dur {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pom);
}
.curriculum-item p {
  color: var(--ink-soft);
  font-size: 15.5px;
  padding: 0 0 18px 54px;
  max-width: 46em;
}

/* Team cards + Career English Track coach */
.person-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.person-card {
  background: var(--sand);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  gap: 18px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.person-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--apricot); }
.person-card > .person-photo { flex: none; }
.person-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--tuff-deep);
  border: 2px dashed color-mix(in srgb, var(--ink) 32%, transparent);
  color: color-mix(in srgb, var(--ink-soft) 80%, var(--tuff));
}
.person-photo--featured {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 300px;
  flex: none;
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.person-photo--top img {
  object-position: center top;
}
.person-photo--elen img {
  object-position: center 16%;
}
.person-photo--nikita img {
  object-position: center top;
}
.person-photo--jacob img {
  object-position: center 20%;
}
.person-card--founder .person-role {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  background: color-mix(in srgb, var(--apricot) 18%, var(--sand));
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 5px 10px;
}
.person-photo:has(img) {
  border-style: solid;
  border-color: var(--ink);
}
.person-photo:has(img) .person-photo-fallback { display: none; }
.person-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.person-silhouette {
  width: 42%;
  max-width: 88px;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.person-photo-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.person-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  width: 100%;
}
.person-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
}
.person-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pom);
  background: color-mix(in srgb, var(--apricot) 18%, var(--sand));
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 5px 10px;
  margin: 0 0 12px;
  text-decoration: none;
  text-underline-offset: 3px;
}
a.person-badge:hover {
  color: var(--apricot-deep);
  background: color-mix(in srgb, var(--apricot) 28%, var(--sand));
  text-decoration: underline;
}
a.person-badge:focus-visible {
  outline: 2px solid var(--pom);
  outline-offset: 3px;
}
.person-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 4px;
  text-wrap: pretty;
}
.person-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pom);
  margin-bottom: 12px;
}
.person-role:has(+ .person-badge) {
  margin-bottom: 8px;
}
.person-id {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin-bottom: 12px;
  min-height: 30px;
}
.person-id .person-role { margin-bottom: 0; }
.person-id .person-badge {
  margin: 0;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.person-bio {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  text-wrap: pretty;
  margin-bottom: 14px;
}
.team-page .person-card {
  padding: 18px 18px 8px;
}
.team-page .person-bio {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  height: calc(1.55em * 3);
  max-height: calc(1.55em * 3);
  min-height: calc(1.55em * 3);
  flex: none;
  min-width: 0;
}
.team-page .person-bio p { margin: 0; }
.team-page .person-bio ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.team-page .person-bio a {
  color: var(--pom);
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 3px;
}
.team-page .person-bio a:hover { color: var(--pom-deep); text-decoration: underline; }
.team-page .person-bio a:focus-visible { outline: 2px solid var(--pom); outline-offset: 3px; border-radius: 6px; }
.team-page .person-card:has(.person-about[open]) .person-bio {
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  height: auto;
  max-height: none;
  min-height: 0;
  flex: none;
}
.person-linkedin {
  color: var(--pom);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  text-underline-offset: 3px;
}
.person-about-teaser {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  text-wrap: pretty;
  width: 100%;
  margin-top: 12px;
  border-top: 1.5px solid color-mix(in srgb, var(--ink) 16%, transparent);
  padding-top: 12px;
}
.person-about {
  width: 100%;
}
.team-page .person-footer {
  border-top: 1.5px solid color-mix(in srgb, var(--ink) 16%, transparent);
  padding-top: 4px;
}
.team-page .person-about {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.team-page .person-about summary {
  padding: 8px 0;
}
.team-page .person-linkedin {
  padding: 2px 0 10px;
}
.team-page .person-linkedin + .person-linkedin {
  padding-top: 0;
}
.person-about summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--apricot-deep);
  padding: 8px 0;
}
.person-about summary::-webkit-details-marker { display: none; }
.person-about summary::after {
  content: "+";
  color: var(--pom);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  flex: none;
}
.person-about[open] summary::after { content: "–"; }
.person-about summary:hover { color: var(--pom); }
.person-about summary:focus-visible {
  outline: 2px solid var(--pom);
  outline-offset: 4px;
  border-radius: 8px;
}
.person-about-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 2px 0 4px;
}
.person-about-body p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  text-wrap: pretty;
}
a.person-linkedin:hover { color: var(--pom-deep); text-decoration: underline; }
a.person-linkedin:focus-visible { outline: 2px solid var(--pom); outline-offset: 3px; border-radius: 6px; }
span.person-linkedin {
  color: color-mix(in srgb, var(--ink-soft) 70%, var(--pom));
  cursor: default;
}

.track-coach {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}
.track-coach-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--apricot-deep);
  margin-bottom: 18px;
}
.track-coach-inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.track-coach .person-photo {
  border-style: solid;
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--apricot);
}
.track-coach .person-photo--featured { max-width: none; }
.track-coach .person-name { font-size: clamp(24px, 2.4vw, 30px); }
.track-coach .person-bio { font-size: 16px; margin-bottom: 14px; max-width: 38em; }
.track-coach .person-about,
.track-coach .person-about-teaser { max-width: 38em; }
.track-coach .person-about-teaser,
.track-coach .person-about-body p { font-size: 15.5px; }
.track-coach .person-linkedin { display: block; }
.track-coach .person-linkedin + .person-linkedin { margin-top: 4px; }

/* CTA — match production itspeakingclub.com */
.ararat-mini { display: block; width: 170px; height: 70px; margin: 0 auto 30px; overflow: visible; }
.cta { padding: 120px 0 130px; text-align: center; }
.cta h2 { font-size: clamp(40px, 5.6vw, 76px); font-weight: 800; margin-bottom: 22px; }
.cta h2 em { font-style: normal; color: var(--apricot-deep); }
.cta p { color: var(--ink-soft); font-size: 18.5px; max-width: 30em; margin: 0 auto 40px; }
.cta-mail {
  display: block; margin-top: 22px;
  color: var(--ink); font-weight: 700; font-size: 16px;
  text-decoration: none; letter-spacing: 0.01em;
}
.cta-mail:hover { color: var(--pom); }
.cta-mail span { display: block; font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }

/* Footer */
footer { background: var(--ink); color: color-mix(in srgb, var(--sand) 60%, var(--ink)); padding: 38px 0; font-size: 14.5px; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 10px; color: var(--sand); font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 14px; }
.foot-brand .brand-logo { width: 36px; height: 36px; border-radius: 9px; }
.foot-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
footer a { color: var(--sand); text-decoration: none; font-weight: 600; }
footer a:hover { color: var(--apricot); }
footer a[aria-current="page"] { color: var(--apricot); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .nav-links, .nav-toggle-bars span { transition: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 901px) {
  .nav-toggle { display: none !important; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-art { order: -1; }
  .chip { font-size: 11.5px; padding: 6px 11px; }
  .chip.c3 { top: auto; bottom: 20%; }
  .sun { width: 130px; height: 130px; }
  .do-row { grid-template-columns: 56px 1fr; }
  .do-row p { grid-column: 2; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .who-card { position: static; }
  .tools-inner { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .program-head { grid-template-columns: 1fr; gap: 22px; }
  .cohort-facts { grid-template-columns: 1fr 1fr; }
  .person-grid { grid-template-columns: 1fr; }
  .track-coach-inner { grid-template-columns: 1fr; gap: 18px; }
  .track-coach .person-photo--featured { max-width: 220px; }
  .path-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex !important; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 74px);
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px max(28px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--sand);
    border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
    box-shadow: inset 0 8px 0 var(--tuff);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s var(--ease), visibility 0s linear 0.28s;
  }
  html.nav-open .nav-links {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.28s var(--ease), visibility 0s;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 18px;
    padding: 10px 2px;
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  }
  .nav-links a.btn {
    margin-top: 18px;
    margin-bottom: 8px;
    justify-content: center;
    min-height: 52px;
    font-size: 16px;
    border-bottom: none;
  }
  :root { --section-y: 78px; }
  .fmt-rail { padding: 0 48px; }
  .fmt-arrow { width: 44px; height: 52px; }
  .fmt-arrow.prev { left: 4px; }
  .fmt-arrow.next { right: 4px; }
}
@media (max-width: 600px) {
  .fact-grid { grid-template-columns: 1fr; }
  .program { padding: 26px 20px 24px; }
  #program-gamenight .program-meta {
    gap: 6px;
    flex-wrap: wrap;
    overflow: visible;
  }
  #program-gamenight .program-meta li {
    font-size: 11px;
    padding: 4px 8px;
  }
  #program-gamenight .program-meta li:has(> a) {
    padding: 0;
  }
  #program-gamenight .program-meta li > a {
    padding: 4px 8px;
  }
  .cohort-facts { grid-template-columns: 1fr; gap: 14px; }
  .curriculum-item p { padding-left: 0; }
  .person-card { padding: 16px 16px 22px; }
  .team-page .person-card { padding: 16px 16px 8px; }
  .person-card .person-photo { max-width: 168px; }
}


/* ---------- Join form ---------- */
.join-page { padding: 56px 0 110px; }

/* ---------- Careers / Programs inner pages ---------- */
.career-page,
.programs-page,
.cet-page,
.team-page,
.privacy-page,
.notfound-page { padding-top: 56px; }
.notfound-page { padding-bottom: 110px; }
.career-hero { max-width: 42em; padding-bottom: 72px; text-align: left; }
.career-hero .kicker { margin-bottom: 30px; }
.career-hero h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 800; margin-bottom: 26px; line-height: 1.02; }
.career-hero h1 em { font-style: normal; color: var(--apricot-deep); }
.career-hero .lead {
  margin: 0 0 42px;
  font-size: clamp(17px, 1.5vw, 19.5px);
  color: var(--ink-soft);
  max-width: 36em;
  line-height: 1.65;
}
.career-hero .hero-cta { gap: 16px; }

.career-band { background: var(--tuff); padding: 88px 0; }
.programs-page .career-band:last-child,
.team-page .career-band:last-child,
.privacy-page .career-band:last-child { padding-bottom: 110px; }
.programs-page .career-band:has(+ .faq) { padding-bottom: 28px; }
.programs-page .faq { padding-bottom: 110px; }
.programs-page .faq .sec-head { margin-bottom: 36px; }
.privacy-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 740px;
}
.privacy-item {
  background: var(--sand);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
}
.privacy-item .no {
  font-family: var(--display); font-weight: 800; font-size: 44px; line-height: 1;
  color: var(--pom); margin-bottom: 18px; display: block;
}
.privacy-item h2 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.privacy-item p { color: var(--ink-soft); font-size: 15.5px; }
.privacy-item p + p { margin-top: 12px; }
.privacy-item a { color: var(--pom); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.privacy-item a:hover { color: var(--pom-deep); }
.career-section { padding: 88px 0; }
.career-apply-wrap { padding: 88px 0 110px; border-top: 2px solid color-mix(in srgb, var(--ink) 12%, transparent); }
.career-form-head { max-width: 38em; margin-bottom: 42px; }
.career-form-head .kicker { margin-bottom: 18px; }
.career-form-head h2 { font-size: clamp(34px, 4.4vw, 52px); font-weight: 800; margin-bottom: 14px; }
.career-form-head h2 em { font-style: normal; color: var(--apricot-deep); }
.career-form-head p { color: var(--ink-soft); font-size: 17.5px; }
body.form-sent .career-form-head { display: none; }

.cet-page .career-form-head { max-width: 740px; }
.cet-page .career-form-head h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.1; }

.join-head { max-width: 38em; margin-bottom: 42px; }
.join-head h1 { font-size: clamp(40px, 5vw, 68px); font-weight: 800; margin-bottom: 14px; }
.join-head h1 em { font-style: normal; color: var(--apricot-deep); }
.join-head p { color: var(--ink-soft); font-size: 17.5px; }
.join-form { max-width: 740px; }
.field {
  background: color-mix(in srgb, var(--sand) 70%, #fff);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 28px 24px;
  margin-bottom: 16px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.field:focus-within { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--apricot); }
.field .q {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
fieldset.field {
  min-inline-size: 0;
  margin-inline: 0;
}
fieldset.field legend.q {
  float: left;
  width: 100%;
  padding: 0;
}
fieldset.field .choices {
  clear: both;
}
.req { color: var(--pom); }
.opt { font-family: "Instrument Sans", sans-serif; font-weight: 600; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; }
.hints { color: var(--ink-soft); font-size: 15.5px; margin: -4px 0 16px; padding-left: 1.15em; }
.hints li { margin: 4px 0; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 2px solid color-mix(in srgb, var(--ink) 22%, transparent);
  padding: 8px 0 10px;
  border-radius: 0;
}
.field select {
  appearance: none;
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%232b1c12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px;
}
.field select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  color: var(--ink-soft);
}
.field select:invalid {
  color: color-mix(in srgb, var(--ink-soft) 70%, var(--sand));
}
.field select option { color: var(--ink); }
.field-hint {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 10px;
}
.place-other { margin-top: 18px; }
.place-other-label {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: color-mix(in srgb, var(--ink-soft) 70%, var(--sand)); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--pom); }
.choices { display: flex; flex-direction: column; gap: 2px; }
.choice {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 4px; cursor: pointer; font-size: 16px;
  border-radius: 8px;
}
.choice:hover { background: var(--tuff); }
.choice input { margin-top: 5px; flex: none; accent-color: var(--pom); width: 17px; height: 17px; }
.choice a { color: var(--pom); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.choice a:hover { color: var(--pom-deep); }
.form-actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-top: 28px;
}
.btn-clear {
  background: none; border: none; padding: 8px 0;
  color: var(--pom); font-family: inherit; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}
.btn-clear:hover { color: var(--pom-deep); }
.hp { position: absolute; left: -9999px; }
.sent {
  display: none;
  max-width: 740px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--tuff);
}
.sent h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.sent p { color: var(--ink-soft); margin-bottom: 22px; }
body.form-sent .join-form { display: none; }
body.form-sent .sent { display: block; }
.field-error { color: var(--pom); font-size: 14px; font-weight: 700; margin-top: 10px; display: none; }
.field.has-error { border-color: var(--pom); }
.field.has-error .field-error { display: block; }

/* ---------- Program apply modal ---------- */
html.apply-modal-open,
html.apply-modal-open body { overflow: hidden; }

.apply-modal {
  width: min(740px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
  color: inherit;
}
.apply-modal::backdrop {
  background: color-mix(in srgb, var(--ink) 58%, transparent);
}
.apply-modal-panel {
  position: relative;
  max-height: calc(100dvh - 32px);
  overflow: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  background: var(--sand);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  box-shadow: 8px 8px 0 var(--apricot);
}
.apply-modal-head { max-width: 38em; margin-bottom: 28px; padding-right: 40px; }
.apply-modal-head .kicker { margin-bottom: 18px; }
.apply-modal-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1;
}
.apply-modal-head h2 em { font-style: normal; color: var(--apricot-deep); }
.apply-modal-head p { color: var(--ink-soft); font-size: 16.5px; }
.apply-cohort {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 14px 18px;
  margin-top: 16px;
}
.apply-cohort > div { min-width: 0; }
.apply-cohort dt {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--apricot-deep);
  margin-bottom: 4px;
}
.apply-cohort dd {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  text-wrap: pretty;
}
.apply-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: color-mix(in srgb, var(--sand) 70%, #fff);
  color: var(--ink);
  cursor: pointer;
}
.apply-modal-close:hover { background: var(--pom); color: var(--sand); border-color: var(--pom); }
.apply-modal-close:focus-visible { outline: 2px solid var(--pom); outline-offset: 3px; }
.apply-modal .join-form { max-width: none; position: relative; }
.apply-modal .hp {
  display: none;
}
.apply-modal .btn:disabled {
  opacity: 0.7;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}
.apply-fail {
  display: none;
  border: 2px solid var(--pom);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--sand) 70%, #fff);
  color: var(--pom-deep);
  font-weight: 600;
  font-size: 15.5px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.apply-fail.is-visible { display: block; }
.apply-fail a { color: var(--pom); font-weight: 700; }
.apply-sent h2,
.apply-sent h3 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.apply-modal.is-sent .apply-modal-head,
.apply-modal.is-sent .apply-form,
.apply-modal.is-sent .apply-fail { display: none; }
.apply-modal.is-sent .apply-sent { display: block; }
.apply-form { position: relative; }
.apply-form .btn:disabled {
  opacity: 0.7;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}
.apply-block.is-sent .career-form-head,
.apply-block.is-sent .apply-form,
.apply-block.is-sent .apply-fail { display: none; }
.apply-block.is-sent .apply-sent { display: block; }

@media (prefers-reduced-motion: no-preference) {
  .apply-modal[open] { animation: apply-modal-in 280ms var(--ease); }
  .apply-modal[open]::backdrop { animation: apply-backdrop-in 280ms var(--ease); }
}
@keyframes apply-modal-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes apply-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 600px) {
  .apply-modal {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }
  .apply-modal-panel {
    max-height: calc(100dvh - 16px);
    padding: 28px 18px 22px;
    box-shadow: 6px 6px 0 var(--apricot);
  }
  .apply-modal-head { padding-right: 48px; margin-bottom: 22px; }
  .apply-cohort { grid-template-columns: 1fr; gap: 12px; }
  .apply-modal .field { padding: 20px 18px 18px; }
}
