/* ── SAARI ────────────────────────────────────────────────────────────────
   Direction B. Quiet and cinematic. The photograph is the page; type is a
   whisper laid over it — Cormorant Garamond at display sizes, Jost at caption
   sizes, nothing bolder than light. Chrome is four words and a hairline.
   ─────────────────────────────────────────────────────────────────────── */

:root {
  --night: #0C0D0E;
  --night-2: #131517;
  --bone: #EDEAE3;
  --bone-50: rgba(237,234,227,.52);
  --bone-20: rgba(237,234,227,.20);
  --pad: clamp(20px, 4.4vw, 64px);
  --shell: 1320px;
}

body {
  background: var(--night);
  color: var(--bone);
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 15px; line-height: 1.62; font-weight: 400;
}

.shell { max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: 760px; margin-inline: auto; padding-inline: var(--pad); }

/* ── type ─────────────────────────────────────────────────────────────── */
.disp {
  font-family: 'Cormorant', Georgia, serif; font-weight: 300;
  font-size: clamp(46px, 9.2vw, 146px); line-height: 1.0; letter-spacing: -0.02em;
}
.disp-s {
  font-family: 'Cormorant', Georgia, serif; font-weight: 300;
  font-size: clamp(32px, 4.8vw, 70px); line-height: 1.04; letter-spacing: -0.015em;
}
.serif-body {
  font-family: 'Cormorant', Georgia, serif; font-weight: 300;
  font-size: clamp(21px, 1.9vw, 29px); line-height: 1.45; letter-spacing: -0.005em;
}
.cap {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; color: var(--bone-50);
}
.dim { color: var(--bone-50); }
em, .it { font-style: italic; }

/* ── chrome ───────────────────────────────────────────────────────────── */
.top {
  position: fixed; inset: 0 0 auto 0; z-index: 70;
  display: flex; align-items: center; gap: 20px;
  padding: 20px var(--pad);
  color: #fff; text-shadow: 0 1px 20px rgba(0,0,0,.5);
}
.top .mark { font-family: 'Cormorant', Georgia, serif; font-weight: 400; font-size: 20px; letter-spacing: .01em; text-decoration: none; }
.top nav { margin-left: auto; display: flex; gap: 22px; }
.top nav a { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; opacity: .78; transition: opacity .3s; }
.top nav a:hover { opacity: 1; }
@media (max-width: 760px) { .top nav a:nth-child(n+3) { display: none; } }

/* ── stage (hero) ─────────────────────────────────────────────────────── */
.stage { position: relative; height: 100svh; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 2s ease; }
.slide.on { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.slide.on img { animation: drift 11s linear forwards; }
@keyframes drift { from { transform: scale(1.06); } to { transform: scale(1.13); } }
.stage::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,9,10,.5) 0%, rgba(8,9,10,.02) 26%, rgba(8,9,10,.2) 54%, rgba(8,9,10,.92) 100%);
}
.stage-body {
  position: absolute; inset: auto 0 0 0; z-index: 3;
  padding-bottom: clamp(40px, 8vh, 90px);
}
.stage-body .disp { max-width: 12ch; }
.stage-tag { margin-top: 26px; max-width: 40ch; }
.dots { position: absolute; right: var(--pad); bottom: clamp(44px, 8vh, 94px); z-index: 4; display: grid; gap: 9px; }
.dots button { width: 26px; height: 13px; position: relative; padding: 0; }
.dots button::after { content: ''; position: absolute; left: 0; right: 0; top: 6px; height: 1px; background: var(--bone); opacity: .3; transition: opacity .4s, right .4s; }
.dots button[aria-current='true']::after { opacity: 1; }
.dots button:not([aria-current='true'])::after { right: 13px; }
.scroll-hint { position: absolute; left: var(--pad); bottom: 18px; z-index: 4; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; opacity: .5; }

/* ── prose blocks ─────────────────────────────────────────────────────── */
section { position: relative; }
.quiet { padding-block: clamp(90px, 16vh, 200px); text-align: center; }
.quiet .cap { margin-bottom: 30px; }
.quiet .disp-s { margin-inline: auto; max-width: 18ch; }
.quiet p + p { margin-top: 22px; }
.quiet .body-col { margin-top: 44px; text-align: left; max-width: 62ch; margin-inline: auto; color: var(--bone-50); }

/* ── full-bleed plate ─────────────────────────────────────────────────── */
.plate { position: relative; height: min(108svh, 1000px); overflow: hidden; }
.plate img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.plate .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,10,.5), rgba(8,9,10,.1) 40%, rgba(8,9,10,.75)); }
.plate-body { position: absolute; inset: auto 0 0 0; padding-bottom: clamp(40px, 7vh, 80px); }
.plate-body .disp-s { max-width: 14ch; }
.plate-body p { margin-top: 18px; max-width: 48ch; color: rgba(237,234,227,.78); }

/* ── ages: type rows ──────────────────────────────────────────────────── */
.ages { padding-block: clamp(80px, 13vh, 160px); }
.age-row {
  display: grid; grid-template-columns: 4.5rem 1fr minmax(0, 2fr); gap: clamp(16px, 3vw, 48px);
  align-items: baseline; padding-block: clamp(24px, 3.2vw, 42px);
  border-top: 1px solid var(--bone-20);
}
.age-row:last-child { border-bottom: 1px solid var(--bone-20); }
.age-row .n { font-size: 11px; letter-spacing: .16em; color: var(--bone-50); }
.age-row h3 { font-family: 'Cormorant', Georgia, serif; font-weight: 300; font-size: clamp(30px, 4vw, 58px); line-height: 1; letter-spacing: -0.02em; }
.age-row .meta { margin-top: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-50); }
.age-row .txt { color: rgba(237,234,227,.72); font-size: 15px; }
.age-row .prom { margin-top: 16px; font-family: 'Cormorant', Georgia, serif; font-style: italic; font-weight: 300; font-size: 20px; line-height: 1.42; color: var(--bone); }
@media (max-width: 780px) {
  .age-row { grid-template-columns: 3.2rem 1fr; }
  .age-row .txt { grid-column: 2; }
}

/* ── strip gallery ────────────────────────────────────────────────────── */
.strip { padding-block: clamp(60px, 9vh, 110px); }
.strip-scroll {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-inline: var(--pad); scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.strip-scroll::-webkit-scrollbar { display: none; }
.strip-scroll figure { flex: none; width: min(62vw, 560px); scroll-snap-align: center; }
.strip-scroll img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.strip-scroll figcaption { margin-top: 12px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-50); }

/* ── contact / join ───────────────────────────────────────────────────── */
.join { padding-block: clamp(90px, 15vh, 190px); }
.join-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(28px, 5vw, 76px); }
.join h3 { font-family: 'Cormorant', Georgia, serif; font-weight: 400; font-size: 28px; letter-spacing: -0.01em; }
.join p { margin-top: 12px; color: var(--bone-50); }
.link {
  display: inline-block; margin-top: 20px; text-decoration: none;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  border-bottom: 1px solid var(--bone-20); padding-bottom: 5px; transition: border-color .3s;
}
.link:hover { border-color: var(--bone); }
.roster { margin-top: clamp(48px, 7vh, 90px); border-top: 1px solid var(--bone-20); }
.roster div { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; padding-block: 16px; border-bottom: 1px solid var(--bone-20); font-size: 14px; }
.roster a { color: var(--bone-50); text-decoration: none; }
.roster a:hover { color: var(--bone); }
@media (max-width: 720px) { .roster div { grid-template-columns: 1fr; gap: 3px; } }

/* ── yell ─────────────────────────────────────────────────────────────── */
.huuto { padding-block: clamp(80px, 14vh, 170px); text-align: center; }
.huuto p { font-family: 'Cormorant', Georgia, serif; font-weight: 300; font-style: italic; font-size: clamp(24px, 4.4vw, 60px); line-height: 1.18; letter-spacing: -0.02em; }

/* ── footer ───────────────────────────────────────────────────────────── */
footer { padding: clamp(46px, 7vh, 80px) 0 30px; border-top: 1px solid var(--bone-20); }
.foot { display: flex; flex-wrap: wrap; gap: 16px 44px; align-items: baseline; font-size: 12px; color: var(--bone-50); }
.foot a { color: var(--bone-50); text-decoration: none; border-bottom: 1px solid transparent; }
.foot a:hover { border-color: var(--bone-20); color: var(--bone); }
.foot .credits { flex-basis: 100%; font-size: 11px; line-height: 1.7; opacity: .7; margin-top: 12px; }

/* ── reveal ───────────────────────────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.16,.84,.3,1); }
.rv.in { opacity: 1; transform: none; }
