/* ============================================================
   KIANNA'S KREW HOCKEY FOUNDATION
   Editorial-luxe design system
   Palette: gold #C89241 · black #0A0A0A · warm grey #605D5D · ivory #F6F4ED
   Type: Oswald (display) × Fraunces (editorial serif) × system sans (UI)
   ============================================================ */

:root {
  /* Brand */
  --gold: #c89241;
  --gold-deep: #a9772f;
  --ink: #0a0a0a;
  --ink-soft: #16130f;
  --grey: #605d5d;
  --grey-light: #8b8885;
  --ivory: #f6f4ed;
  --ivory-warm: #efe9dc;
  --line: rgba(10, 10, 10, 0.14);
  --line-light: rgba(246, 244, 237, 0.16);

  /* Type */
  --display: "Oswald", "Arial Narrow", sans-serif;
  --serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --pad-x: clamp(1.25rem, 5vw, 6rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --maxw: 1400px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--serif);
  background: var(--ivory);
  color: var(--ink);
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.1rem);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typographic primitives ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center::before { display: none; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.h-hero { font-size: clamp(3.2rem, 12vw, 10.5rem); font-weight: 600; }
.h-section { font-size: clamp(2.4rem, 6vw, 5rem); }
.h-sub { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.45;
  font-weight: 400;
}
.lede em { font-style: italic; color: var(--gold-deep); }

.muted { color: var(--grey); }
.serif-note { font-style: italic; color: var(--grey); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
section { padding-block: var(--section-y); }
section[id] { scroll-margin-top: clamp(4.5rem, 9vw, 6.5rem); }
.section-dark { background: var(--ink); color: var(--ivory); }
.section-dark .muted { color: var(--grey-light); }
.rule { height: 1px; background: var(--line); border: 0; }
.section-dark .rule { background: var(--line-light); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn .arw { transition: transform 0.4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.section-dark .btn, .hero .btn { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.section-dark .btn:hover, .hero .btn:hover { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.section-dark .btn-ghost, .hero .btn-ghost { background: transparent; color: var(--ivory); border-color: var(--line-light); }
.section-dark .btn-ghost:hover, .hero .btn-ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

.textlink {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s var(--ease);
}
.textlink:hover { gap: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad-x);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header.scrolled {
  background: rgba(246, 244, 237, 0.86);
  backdrop-filter: blur(14px);
  padding-block: 0.7rem;
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand-badge {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ivory); border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.brand-badge img { width: 118%; }
.brand:hover .brand-badge { transform: rotate(-4deg); }
.brand-word { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1; }
.brand-word b { display: block; font-weight: 600; font-size: 1.02rem; }
.brand-word span { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.28em; color: var(--grey); font-weight: 600; }

.nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.6rem); }
.nav a {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; padding: 0.4rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--gold-deep); }
.nav .btn { padding: 0.75rem 1.4rem; }

.nav-toggle { display: none; }

/* Header over dark hero */
.site-header:not(.scrolled) .brand-word b,
.site-header:not(.scrolled) .nav a { color: var(--ivory); }
.site-header:not(.scrolled) .brand-word span { color: var(--gold); }
.site-header:not(.scrolled) .nav .btn { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.site-header:not(.scrolled) .nav .btn:hover { background: var(--ivory); border-color: var(--ivory); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: radial-gradient(120% 100% at 50% 0%, #1c1712 0%, var(--ink) 60%);
  color: var(--ivory);
  padding: 8rem var(--pad-x) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(closest-side, rgba(200,146,65,0.16), transparent 70%);
  background-size: 60% 60%; background-position: 82% 12%; background-repeat: no-repeat;
  pointer-events: none;
}
.hero-mark {
  position: absolute; top: clamp(6rem, 14vw, 10rem); right: var(--pad-x);
  width: clamp(120px, 22vw, 300px); opacity: 0.9;
  filter: saturate(0.9);
}
.hero-mark .seal {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: var(--ivory); display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.7);
}
.hero-mark .seal img { width: 116%; }
.hero-inner { position: relative; max-width: var(--maxw); margin-inline: auto; width: 100%; }
.hero h1 { margin: 1.4rem 0 0; }
.hero h1 .g { color: var(--gold); }
.hero-foot {
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 2rem 3rem;
  justify-content: space-between;
}
.hero-foot p { max-width: 42ch; color: rgba(246,244,237,0.82); font-size: clamp(1.05rem,1.4vw,1.3rem); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; left: var(--pad-x); bottom: 1.6rem;
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(246,244,237,0.6);
  display: flex; align-items: center; gap: 0.6rem;
}
.scroll-hint .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0%,100%{ opacity: 0.3; } 50%{ opacity: 1; } }

/* ---------- Marquee ticker ---------- */
.ticker { background: var(--gold); color: var(--ink); overflow: hidden; padding-block: 0.85rem; border-block: 1px solid var(--ink); }
.ticker-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: slide 84s linear infinite; }
.ticker span { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 3rem; }
.ticker span::after { content: "◆"; font-size: 0.6rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Generic grid helpers ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.wide-right { grid-template-columns: 0.85fr 1.15fr; }
.split.wide-left { grid-template-columns: 1.15fr 0.85fr; }

/* ---------- Mission ---------- */
.mission .lede { max-width: 20ch; }
.mission-body { max-width: 46ch; }
.mission-body p + p { margin-top: 1.4rem; }

/* editorial mission typography + gold accents */
.mission-lede { font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.24; max-width: 18ch; letter-spacing: -0.01em; }
.mission-lede em { font-family: var(--serif); font-style: italic; color: var(--gold-deep); }
.dropcap::first-letter { float: left; font-family: var(--display); font-weight: 700; font-size: 3.6em; line-height: 0.62; margin: 0.09em 0.14em 0 0; color: var(--gold); }
.gold-word { color: var(--gold-deep); font-weight: 500; }
.gold-em { color: var(--gold-deep); font-style: italic; }
.mission-logo { display: flex; justify-content: center; align-items: center; }
.mission-logo .logo-badge { width: min(100%, 400px); aspect-ratio: 1; border-radius: 50%; border: 2px solid var(--gold); background: #fdfaf6; display: grid; place-items: center; overflow: hidden; padding: clamp(1.4rem, 3.5vw, 2.6rem); box-shadow: 0 40px 70px -40px rgba(10,10,10,0.28); }
.mission-logo .logo-badge img { width: 100%; height: auto; display: block; }

/* founder headshot */
.portrait-frame .founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; filter: contrast(1.02); }

/* founder signature (replaces the read-story link) */
.founder-sign { margin-top: 2.2rem; }
.founder-sign .sig-name { display: block; font-family: "Alex Brush", cursive; font-size: clamp(2.7rem, 4.8vw, 4rem); line-height: 0.85; color: var(--ink); }
.founder-sign .sig-role { display: block; margin-top: 0.5rem; font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }

/* ---------- Programs index ---------- */
.index-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem; }
.prog {
  display: grid; grid-template-columns: 5rem 1fr auto; gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline; padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-top: 1px solid var(--line); transition: padding-left 0.4s var(--ease);
}
.section-dark .prog { border-color: var(--line-light); }
.prog:last-child { border-bottom: 1px solid var(--line); }
.section-dark .prog:last-child { border-color: var(--line-light); }
.prog:hover { padding-left: 0.8rem; }
.prog-no { font-family: var(--display); font-size: 1rem; color: var(--gold-deep); letter-spacing: 0.1em; }
.prog-title { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.5rem, 3.2vw, 2.6rem); font-weight: 500; line-height: 1; }
.prog-desc { max-width: 40ch; color: var(--grey); font-size: 1rem; margin-top: 0.6rem; }
.section-dark .prog-desc { color: var(--grey-light); }
.prog-tag { font-family: var(--sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); white-space: nowrap; }
.prog-tag.soon { color: var(--grey); border: 1px solid var(--line); padding: 0.35rem 0.7rem; border-radius: 100px; }

/* ---------- Interactive program index ---------- */
.sec-programs { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.prog-explorer { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; margin-top: clamp(2rem, 4vw, 3rem); }
.prog-list { list-style: none; }
.prog-row { border-top: 1px solid var(--line); }
.prog-row:last-child { border-bottom: 1px solid var(--line); }
.prog-row > button { width: 100%; display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem, 2.5vw, 2rem); align-items: center; padding: clamp(1.1rem, 2.4vw, 1.7rem) 0.3rem; background: none; border: 0; cursor: pointer; text-align: left; font: inherit; color: inherit; transition: padding-left .45s var(--ease); }
.prog-row > button:hover, .prog-row.active > button { padding-left: 1rem; }
.pr-num { font-family: var(--display); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.12em; color: var(--gold-deep); }
.pr-title { font-family: var(--display); text-transform: uppercase; font-weight: 500; font-size: clamp(1.3rem, 2.7vw, 2.1rem); line-height: 1; color: var(--grey); transition: color .4s var(--ease); }
.prog-row.active .pr-title, .prog-row > button:hover .pr-title { color: var(--ink); }
.pr-arrow { font-family: var(--sans); font-size: 1.1rem; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.prog-row.active .pr-arrow, .prog-row > button:hover .pr-arrow { opacity: 1; transform: none; }
.pr-desc { display: none; }
.pr-img { display: none; }

.prog-detail { padding-left: clamp(0.5rem, 2vw, 1.5rem); }
.pd-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #17130e; box-shadow: 0 30px 60px -34px rgba(10,10,10,0.4); }
.pd-img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; filter: contrast(1.02) saturate(1.03); display: block; }
.pd-media .pd-num { position: absolute; left: 0.6rem; bottom: 0.1rem; z-index: 2; font-family: "Roboto Slab", var(--serif); font-weight: 900; font-size: clamp(3.6rem, 8vw, 6.5rem); line-height: 0.8; color: transparent; -webkit-text-stroke: 2.5px var(--gold); text-stroke: 2.5px var(--gold); filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); }
.pd-title { font-family: var(--display); text-transform: uppercase; font-weight: 500; font-size: clamp(1.6rem, 3.2vw, 2.6rem); line-height: 1; margin: 1.4rem 0 1.1rem; }
.pd-desc { color: var(--grey); max-width: 42ch; font-size: 1.05rem; line-height: 1.6; }
.pd-tag { display: inline-block; margin-top: 1.6rem; font-family: var(--sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line); padding: 0.45rem 0.9rem; border-radius: 100px; }
.pd-inner.in { animation: pdFade .5s var(--ease); }
@keyframes pdFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .prog-explorer { grid-template-columns: 1fr; gap: 0; }
  .prog-detail { display: none; }
  .pr-desc { display: block; color: var(--grey); font-size: 0.95rem; line-height: 1.55; max-width: 52ch; margin: 0 0 clamp(1.2rem, 4vw, 1.8rem) 0.3rem; }
  .pr-img { display: block; width: 100%; max-width: 34rem; aspect-ratio: 3/2; object-fit: cover; object-position: center 18%; margin: 0.4rem 0 1rem 0.3rem; }
  .prog-row > button { padding-bottom: 0.6rem; }
}

/* ---------- Founder / portrait ---------- */
.portrait-frame {
  position: relative; aspect-ratio: 4/5; background: var(--ivory-warm);
  border: 1px solid var(--line); overflow: hidden;
}
.section-dark .portrait-frame { background: #1a1611; border-color: var(--line-light); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-placeholder {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: 1rem;
  padding: 2rem;
}
.portrait-placeholder .pp-mark { width: 96px; margin-inline: auto; opacity: 0.55; }
.portrait-placeholder small { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }
.portrait-tag {
  position: absolute; left: 1rem; bottom: 1rem;
  font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--ink); color: var(--ivory); padding: 0.5rem 0.9rem;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.stat { background: var(--ink); padding: clamp(1.6rem, 3vw, 2.4rem); }
.stat b { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--gold); line-height: 1; }
.stat span { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-light); margin-top: 0.7rem; display: block; }

/* ---------- Alt light section ---------- */
.alt { background: var(--ivory-warm); }

/* ---------- Inline founder quote ---------- */
.inline-q {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.5;
  padding-left: 1.4rem; margin-top: 1.6rem;
  border-left: 2px solid var(--gold); color: var(--ink);
}

/* ---------- Editorial pull-quote band ---------- */
.pullquote { text-align: center; }
.pullquote blockquote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem); line-height: 1.32;
  max-width: 22ch; margin: 0 auto; quotes: "\201C" "\201D";
}
.pullquote blockquote .q { font-style: normal; color: var(--gold-deep); }
.pullquote cite {
  display: block; margin-top: 2.2rem; font-family: var(--display); font-style: normal;
  letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.8rem; color: var(--grey);
}
.pullquote .mark { width: 44px; margin: 0 auto 2rem; opacity: 0.6; }

/* ---------- Editorial headline (43-Oak style: grotesk + italic serif) ---------- */
.ed-h { font-family: var(--display); font-weight: 700; text-transform: none; font-size: clamp(2.6rem, 6.4vw, 6rem); line-height: 0.98; letter-spacing: -0.01em; }
.ed-h .ser { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: 0; }
.ed-loc { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); display: inline-flex; align-items: center; gap: 0.8rem; }
.ed-loc::before { content: ""; width: 2.2rem; height: 1px; background: var(--gold); }
.ed-body { max-width: 46ch; }
.ed-body p { margin-top: 1.2rem; color: var(--grey); }
.ed-body p b { color: var(--ink); font-weight: 600; }
.section-dark .ed-body p { color: var(--grey-light); }
.section-dark .ed-body p b { color: var(--ivory); }
.section-dark .ed-h { color: var(--ivory); }

/* ---------- Manitoba photo panel (image-ready clip) ---------- */
.mb-stage { position: relative; min-height: clamp(340px, 44vw, 600px); }
.mb-shape { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); height: 104%; width: auto; overflow: visible; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18)); }
.mb-shape .ph-photo { filter: grayscale(1) contrast(1.06); }
.mb-duo { mix-blend-mode: multiply; opacity: 0.22; }
.mb-outline { fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: 0.9; }
.mb-caption { position: absolute; left: 0; bottom: 0.5rem; z-index: 3; font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); background: var(--ivory); padding: 0.45rem 0.8rem; border: 1px solid var(--line); }
.ph-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; fill: rgba(246,244,237,0.75); }

/* ---------- Offset KK monogram (image-ready clip on 2nd K) ---------- */
.kk-section { position: relative; overflow: hidden; }
.kk-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.kk-mono { display: flex; line-height: 0.8; letter-spacing: -0.02em; font-family: var(--display); font-weight: 700; font-size: clamp(9rem, 26vw, 22rem); }
.kk-mono .kk { display: block; }
.kk-mono .k1 { color: transparent; -webkit-text-stroke: 2px var(--gold); position: relative; z-index: 1; }
.kk-mono .k2 { margin-left: -0.34em; color: var(--gold); position: relative; z-index: 2; }
.kk-mono .k2.has-photo { color: transparent; background-image: var(--kkphoto); background-size: cover; background-position: center; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: grayscale(1) contrast(1.05); }
.section-dark .kk-mono .k1 { -webkit-text-stroke-color: rgba(246,244,237,0.5); }

/* ---------- Manitoba hero ---------- */
.mhero { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--ivory); overflow: hidden; padding: clamp(7rem,12vw,9rem) 0 clamp(3rem,6vw,4rem); }
.mhero .wrap { width: 100%; }
.mhero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.mhero .mb-stage { min-height: clamp(360px, 50vh, 620px); }
.mhero .mb-shape { height: 116%; left: 56%; }
.mhero .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }

@media (max-width: 900px) {
  .mhero-grid, .kk-grid { grid-template-columns: 1fr; }
  .mhero .mb-stage { min-height: 64vw; }
  .mhero .mb-shape { left: 50%; height: 100%; }
  .kk-mono { justify-content: center; font-size: clamp(8rem, 42vw, 15rem); }
  .ed-h { font-size: clamp(2.4rem, 8vw, 3.4rem); }
}

/* ---------- KK monogram HERO (big, diagonally offset, interlocking) ---------- */
.khero-kk {
  position: relative; min-height: 84svh; display: flex; align-items: center;
  background: var(--ivory); overflow: hidden;
  padding: clamp(4.5rem,7vw,5.5rem) 0 clamp(2.5rem,5vw,3.5rem);
}
.khk-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; width: 100%; }
.khk-stage { position: relative; height: clamp(300px, 52vh, 500px); }
/* Both K's are photo-filled letterforms (heavy, even-weight serif so the strokes
   are wide enough to hold an image). Swap the gradient placeholders for photos by
   setting --kk-a / --kk-b to url(...) on .khk-stage. */
.khk-k {
  position: absolute; margin: 0; font-family: "Roboto Slab", var(--serif); font-weight: 900;
  line-height: 0.72; letter-spacing: -0.01em; user-select: none;
  font-size: clamp(15rem, 30vw, 33rem);
  color: transparent; -webkit-text-fill-color: transparent;
  -webkit-background-clip: text; background-clip: text;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.05);
}
/* back K — upper-left (lighter, warmer fill) */
.khk-k.k-back { top: 0; left: 2%; z-index: 1;
  background-image: var(--kk-a, linear-gradient(150deg,#4a4033 0%,#221b12 60%,#332a1c 100%)); }
/* front K — dropped down + right so the two interlock; darker fill + ivory edge
   separate it from the back K wherever they overlap */
.khk-k.k-front { top: 18%; left: 24%; z-index: 2;
  background-image: var(--kk-b, linear-gradient(150deg,#211b12 0%,#0b0906 55%,#1a140c 100%));
  -webkit-text-stroke: 3px var(--ivory); }

/* SVG variant: ONE photo spanning across both interlocking K's (union clip) */
.khk-svg { width: 100%; height: 100%; display: block; overflow: visible;
  filter: drop-shadow(0 26px 50px rgba(0,0,0,0.22)); }
.khk-svg text { font-family: "Roboto Slab", var(--serif); font-weight: 900; font-size: 560px; }
.khk-svg .ko { fill: none; stroke: var(--ivory); stroke-width: 5; opacity: 0.9; }

/* KK monogram + wordmark lockup (spells out the brand name) */
.khk-left { display: flex; flex-direction: column; align-items: center; gap: clamp(0.6rem, 1.6vw, 1.2rem); }
.khk-left .khk-stage { width: 100%; }
.khk-wordmark { text-align: center; position: relative; }
.khk-wordmark .wm-name { display: block; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: 0.05em; line-height: 0.95; color: var(--ink); }
.khk-wordmark .wm-sub { display: block; margin-top: 0.6rem; font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); }

/* ================= Hero editorial polish ================= */
/* hairline page-margin keyline */
.khero-kk::after { content: ""; position: absolute; inset: clamp(0.8rem, 1.6vw, 1.5rem); border: 1px solid var(--line); pointer-events: none; z-index: 4; }
/* faint film grain over the whole hero */
.khero-kk::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
/* rotated masthead meta label */
.hero-meta { position: absolute; left: clamp(1rem, 1.8vw, 1.7rem); top: 50%; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl;
  font-family: var(--sans); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--grey); z-index: 5; }
/* refined scroll cue */
.hero-scroll { position: absolute; left: 50%; bottom: clamp(0.9rem, 1.8vw, 1.5rem); transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.55rem; z-index: 5;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); }
.hero-scroll .ln { width: 1px; height: 32px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(0.4); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }

/* editorial photo caption + credit */
.khk-caption { max-width: 32ch; text-align: center; margin-top: 0.1rem; font-family: var(--serif); font-style: italic; font-size: 0.9rem; line-height: 1.5; color: var(--grey); }
.khk-caption em { color: var(--ink); font-style: italic; }
.khk-caption .cred { display: block; margin-top: 0.5rem; font-family: var(--sans); font-style: normal; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }

/* bigger, calmer headline + dek */
.khk-copy .h-section { font-size: clamp(2.9rem, 6.4vw, 5.6rem); line-height: 0.94; }
.hero-dek { max-width: 44ch; font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.6; color: var(--grey); }
.hero-dek b { color: var(--ink); font-weight: 600; }

/* quieter CTAs: one refined primary + a text link */
.btn-editorial { font-family: var(--sans); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.7rem; padding: 1rem 1.9rem; background: var(--ink); color: var(--ivory); border: 1px solid var(--ink); transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease); }
.btn-editorial .arw { transition: transform .4s var(--ease); }
.btn-editorial:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-editorial:hover .arw { transform: translateX(4px); }
.khk-copy .hero-cta { display: flex; gap: clamp(1rem, 2vw, 1.8rem); flex-wrap: wrap; align-items: center; margin-top: 2.2rem; }

@media (max-width: 900px) {
  .hero-meta, .hero-scroll { display: none; }
  .khero-kk::after { inset: 0.6rem; }
  .khk-caption { max-width: 40ch; }
}
.khk-badge {
  position: absolute; z-index: 3; right: 2%; bottom: 4%;
  font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--grey); writing-mode: vertical-rl; transform: rotate(180deg);
}
.khk-copy .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }

@media (max-width: 900px) {
  .khk-grid { grid-template-columns: 1fr; }
  .khk-stage { height: min(74vw, 380px); order: -1; }
  .khk-k { font-size: clamp(11rem, 45vw, 20rem); }
  .khk-badge { display: none; }
}

/* ---------- Big statement ---------- */
.statement { text-align: center; }
.statement .big { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 4.4vw, 3.6rem); line-height: 1.25; max-width: 20ch; margin-inline: auto; }
.statement .big em { font-style: italic; color: var(--gold); }
.statement .sig { margin-top: 2rem; font-family: var(--display); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.85rem; color: var(--gold); }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.value h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 0.8rem; }
.value .vno { font-family: var(--display); color: var(--gold-deep); font-size: 0.85rem; letter-spacing: 0.2em; display: block; margin-bottom: 1rem; }
.value p { color: var(--grey); font-size: 1rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1.5rem; }
.cta-band .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact / Forms ---------- */
.contact-hero { padding-top: clamp(8rem, 16vw, 12rem); }
.form-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }

.tabs { display: flex; gap: 1.4rem; margin-bottom: 2.5rem; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--line); }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  background: none; border: 0; border-bottom: 2px solid transparent; color: var(--grey);
  padding: 0.9rem 0.15rem; margin-bottom: -1px; cursor: pointer; white-space: nowrap; flex: 0 0 auto; transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--ink); border-color: var(--gold); }

.form-panel { display: none; animation: fade 0.5s var(--ease); }
.form-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.field { margin-bottom: 1.5rem; }
.field label { display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.6rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 0.7rem 0; transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-note { font-size: 0.85rem; color: var(--grey); margin-top: 1.5rem; font-style: italic; }
.form-success { display: none; padding: 1.2rem 1.4rem; background: var(--ink); color: var(--ivory); font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.04em; margin-top: 1.5rem; }
.form-success.show { display: block; }

.contact-aside .lede { margin-bottom: 2rem; }
.contact-list { list-style: none; }
.contact-list li { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .k { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); display: block; margin-bottom: 0.35rem; }
.contact-list .v { font-family: var(--display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: 0.02em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--ivory); padding: clamp(3.5rem, 7vw, 6rem) var(--pad-x) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer-brand .display { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 0.95; }
.footer-brand p { color: var(--grey-light); max-width: 34ch; margin-top: 1.2rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; color: var(--grey-light); font-family: var(--sans); font-size: 0.92rem; padding: 0.35rem 0; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; }
.footer-bottom p { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--grey); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: 0.08s; }
[data-reveal].d2 { transition-delay: 0.16s; }
[data-reveal].d3 { transition-delay: 0.24s; }
[data-reveal].d4 { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .split.wide-right, .split.wide-left, .form-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .prog { grid-template-columns: 3rem 1fr; }
  .prog-tag { grid-column: 2; }
  .hero-mark { display: none; }

  /* drop backdrop-filter on mobile: it creates a containing block that would
     trap the fixed off-canvas nav to the header's height */
  .site-header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(246, 244, 237, 0.98); }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    background: var(--ink); color: var(--ivory);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.8rem; padding: 3rem; transform: translateX(100%);
    transition: transform 0.5s var(--ease); z-index: 55;
  }
  .nav.open { transform: none; }
  .nav a { color: var(--ivory) !important; font-size: 1.1rem; }
  .site-header:not(.scrolled) .nav .btn { color: var(--ink); }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; width: 30px; height: 22px;
    background: none; border: 0; cursor: pointer; z-index: 60; justify-content: center;
  }
  .nav-toggle span { height: 2px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
  .site-header:not(.scrolled) .nav-toggle span { background: var(--ivory); }
  .nav-toggle.open span { background: var(--ivory); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 540px) {
  .stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-foot { gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
