/* =========================================================================
   jesko.me — "Composed" direction
   ========================================================================= */

@font-face {
  font-family: "Fluxisch Else";
  src: url("assets/fonts/FluxischElse-Regular.otf") format("opentype");
  font-weight: 400 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fluxisch Else";
  src: url("assets/fonts/FluxischElse-Bold.otf") format("opentype");
  font-weight: 600 800; font-style: normal; font-display: swap;
}

/* Immaculate base. The analytical mind (precise typeset structure) with
   a refined intuition (the rare mark that catches the thing that matters).
   Hanken Grotesk, with Fluxisch Else as the active display face.
   Two temperatures: base = homepage (calm). body.warm = sessions (warmer). */

:root {
  /* surfaces — warm cream paper */
  --paper:   #F4ECD9;
  --paper-2: #EEE4CC;
  --card:    #FBF5E7;
  --night:   #181425;
  --night-2: #211B34;

  /* ink */
  --ink:       #262019;
  --ink-soft:  #5E5749;
  --ink-faint: #948A75;
  --line:      #DCD0B4;
  --line-2:    #E7DDC6;

  /* accent — overridden by theme.css for the live site */
  --accent:      #3B5A82;
  --accent-deep: #2C476A;
  --accent-tint: #E6E3D2;

  --gold: #B98C3E;
  --blue: #3B5A82;

  /* type */
  --display: Georgia, serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;
  --mono:    "Hanken Grotesk", ui-monospace, monospace;
  --display-weight: 500;
  --display-spacing: -0.02em;

  --maxw: 1140px;
  --maxw-narrow: 720px;
  --gutter: clamp(22px, 5vw, 56px);
  --section-y: clamp(76px, 10vw, 138px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.66;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* very subtle paper grain */
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: -2;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 400; }

/* Optional display font override controlled by html.font-flux */
.font-flux {
  --display: "Fluxisch Else", Georgia, serif;
  --display-weight: 400;
  --display-spacing: -0.018em;
}
.font-flux h1, .font-flux .h1 { font-weight: 700; letter-spacing: -0.026em; }
.font-flux h2, .font-flux .h2 { font-weight: 700; }
.font-flux h3, .font-flux .h3 { font-weight: 600; }
.font-flux .statement { font-weight: 600; }
.font-flux .brand { font-weight: 700; }

h1, .h1 {
  font-family: var(--display);
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: 1.02;
  letter-spacing: var(--display-spacing);
  font-weight: var(--display-weight);
}
h2, .h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 500;
}
h3, .h3 {
  font-family: var(--display);
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.em { color: var(--accent-deep); font-style: italic; }
.serif { font-family: var(--display); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(19px, 1.7vw, 23px); line-height: 1.56; color: var(--ink); font-weight: 400; }
.muted { color: var(--ink-soft); }
.faint { color: var(--ink-faint); }
a { color: inherit; }

/* eyebrow — composed, not marker */
.eyebrow {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow .star { color: var(--accent); font-size: 1.15em; transform: translateY(-0.5px); }

/* the sparing hand: a single confident underline stroke under one word */
.mark { position: relative; display: inline-block; color: var(--accent-deep); font-style: italic; }
.mark > svg {
  position: absolute; left: -4%; bottom: -0.16em; width: 108%; height: 0.42em;
  color: var(--accent); pointer-events: none; overflow: visible;
}
.mark > svg path { fill: none; stroke: currentColor; stroke-width: 3.4; stroke-linecap: round; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--maxw-narrow); }
.section { padding-block: var(--section-y); position: relative; z-index: 2; }
.bg-2 { background: var(--paper-2); }
.bg-night { background: var(--night); color: var(--paper); }
.bg-night .muted { color: #C5BFD4; }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1em; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--accent);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.005em;
  padding: 14px 26px;
  border-radius: 11px;
  border: 1px solid var(--bg);
  background: var(--bg);
  color: var(--fg);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(38,32,25,0.12), 0 14px 30px -20px rgba(38,32,25,0.5);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-2px); background: var(--accent-deep); border-color: var(--accent-deep); box-shadow: 0 2px 4px rgba(38,32,25,0.14), 0 20px 38px -20px rgba(38,32,25,0.55); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--card); border-color: var(--ink-faint); }

/* text link with arrow */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-deep);
  text-decoration: none;
  width: fit-content;
  transition: gap .25s var(--ease);
}
.link .arrow { transition: transform .25s var(--ease); }
.link:hover { gap: 0.55em; }
.link:hover .arrow { transform: translateX(3px); }
.bg-night .link { color: #fff; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; transition: background .4s, border-color .4s, backdrop-filter .4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: color-mix(in srgb, var(--paper) 84%, transparent); backdrop-filter: saturate(1.2) blur(12px); border-bottom-color: var(--line); }
.nav-inner { max-width: var(--maxw); margin-inline: auto; padding: 16px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-family: var(--display); font-weight: 600; font-size: 25px; letter-spacing: -0.01em; text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; line-height: 1; }
.brand .star { color: var(--accent); font-size: 17px; display: inline-block; transition: transform .5s var(--ease); }
.brand:hover .star { transform: rotate(72deg); }

.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-family: var(--body); font-weight: 500; font-size: 15px; position: relative; padding: 4px 2px; white-space: nowrap; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.nav-cta { color: #fff !important; background: var(--accent); border-radius: 9px; padding: 10px 34px; font-weight: 600; transition: background .2s; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent-deep); }

.nav-toggle { display: none; }
@media (max-width: 820px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 40px var(--gutter); background: var(--paper-2); border-left: 1px solid var(--line); box-shadow: -30px 0 60px -30px rgba(0,0,0,0.3); transform: translateX(100%); transition: transform .45s var(--ease); z-index: 60; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 19px; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 70; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
  .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); }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(34px, 6vw, 76px); padding-bottom: clamp(48px, 7vw, 100px); overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin: 0.42em 0 0; }
.hero .lead { max-width: 40ch; margin-top: 1.1em; color: var(--ink-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 2em; align-items: center; }
.hero-meta { margin-top: 1.9em; font-size: 14.5px; color: var(--ink-faint); display: flex; align-items: center; gap: 0.6em; }
.hero-meta .star { color: var(--accent); }

/* hero portrait — atmospheric, premium */
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 6;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 2px 4px rgba(38,32,25,0.07), 0 36px 70px -36px rgba(38,32,25,0.5);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 38%; }
/* a faint constellation echo over the sky — ties photo to the brand motif */
.hero-photo .spark { position: absolute; color: #fff; opacity: 0.85; font-size: 13px; pointer-events: none; text-shadow: 0 1px 4px rgba(0,0,0,0.35); }
.hero-photo .cap {
  position: absolute; left: 16px; bottom: 13px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); text-shadow: 0 1px 6px rgba(0,0,0,0.5); pointer-events: none;
}
@media (max-width: 880px) {
  .hero-photo { aspect-ratio: 3 / 2; max-height: 420px; }
}

/* ---------- Full-bleed atmospheric band ---------- */
.band {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 30%;
  z-index: 2;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,16,28,0.62) 0%, rgba(20,16,28,0.34) 42%, rgba(20,16,28,0.06) 72%, rgba(20,16,28,0) 100%);
}
.band .wrap { position: relative; z-index: 2; }
.band .eyebrow { color: rgba(255,255,255,0.82); margin-bottom: 18px; }
.band .eyebrow .star { color: var(--gold); }
.band h2 { color: #fff; max-width: 18ch; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.band .em { color: #fff; font-style: italic; }
.band p { color: rgba(255,255,255,0.9); max-width: 42ch; margin-top: 1em; font-size: clamp(17px,1.4vw,19px); }

/* ---------- Statement paired with the confluence chart ---------- */
.statement-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 880px) { .statement-grid { grid-template-columns: 1fr; gap: 40px; } .statement-grid .plate { order: 2; max-height: 360px; aspect-ratio: 1.618 / 1; } }

/* confluence plate — clean, composed (no tape, no tilt) */
.plate {
  position: relative;
  aspect-ratio: 1.618 / 1;
  width: 100%;
  background: radial-gradient(125% 125% at 32% 18%, #FFFDF7, var(--paper-2));
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(38,32,25,0.06), 0 30px 60px -34px rgba(38,32,25,0.45);
  overflow: hidden;
}
.plate canvas { width: 100%; height: 100%; display: block; cursor: crosshair; }
.plate-cap { position: absolute; left: 18px; bottom: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); pointer-events: none; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .plate { aspect-ratio: 1.618 / 1; max-height: 360px; }
}

/* ---------- Statement ---------- */
.statement { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 3.6vw, 46px); line-height: 1.18; letter-spacing: -0.015em; max-width: 20ch; }
.statement.center { margin-inline: auto; }
.statement .em { color: var(--accent-deep); }
.statement-sub { margin-top: 1.4em; max-width: 56ch; color: var(--ink-soft); font-size: clamp(17px, 1.4vw, 19px); }
.statement.center + .statement-sub { margin-inline: auto; text-align: center; }
.statement-sub.center-block { margin-inline: auto; text-align: center; line-height: 1.62; }

/* ---------- Section heads ---------- */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(38px, 4.5vw, 60px); }
.sec-head h2 { max-width: 16ch; }
.sec-head .muted { max-width: 32ch; font-size: 17px; }
.sec-head--stack { flex-direction: column; align-items: flex-start; justify-content: flex-start; }
.sec-head--stack .muted { max-width: 60ch; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 720px) { .services { grid-template-columns: 1fr; } }
.svc {
  padding: clamp(26px, 3vw, 38px) clamp(24px, 3vw, 40px) clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.svc:nth-child(odd) { border-right: 1px solid var(--line); }
@media (max-width: 720px) { .svc:nth-child(odd) { border-right: 0; } }
.svc .num { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--accent); }
.svc-top { display: flex; align-items: center; justify-content: space-between; }
.svc-ico { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: color-mix(in srgb, var(--accent) 12%, var(--card)); }
.svc-ico svg { width: 27px; height: 27px; color: var(--accent-deep); display: block; }
.svc h3 { margin: 18px 0 10px; }
.svc p { margin: 0; font-size: 16.5px; color: var(--ink-soft); line-height: 1.58; }

/* ---------- Ways of working ---------- */
.ways { margin-top: clamp(34px, 4vw, 48px); padding-top: clamp(26px, 3vw, 34px); border-top: 1px solid var(--line); max-width: var(--maxw-narrow); }
.ways .eyebrow { display: block; margin-bottom: 14px; }
.ways p { margin: 0; font-family: var(--display); font-weight: 400; font-size: clamp(19px, 2vw, 25px); line-height: 1.46; letter-spacing: -0.01em; color: var(--ink); }

/* ---------- Clients ---------- */
.clients { margin-top: clamp(40px, 5vw, 64px); }
.clients .eyebrow { display: block; margin-bottom: 26px; }
.client-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(26px, 4vw, 48px); }
.client-logo {
  height: calc(clamp(30px, 3.4vw, 42px) * var(--lh, 1));
  width: auto; display: block;
  opacity: 0.62; transition: opacity .25s;
}
.client-logo:hover { opacity: 0.92; }
/* text stand-in for companies whose logo use isn't approved yet — matches the
   monochrome weight of the real logos so the row reads as one set */
.client-name {
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(17px, 1.95vw, 22px);
  letter-spacing: -0.012em;
  color: var(--ink);
  opacity: 0.62;
  transition: opacity .25s;
  white-space: nowrap;
}
.client-name:hover { opacity: 0.92; }
.client-logo[hidden], .client-name[hidden] { display: none; }
@media (max-width: 640px) { .client-row { justify-content: flex-start; gap: 22px 30px; } }

/* ---------- Story (pull-quote) ---------- */
.story { max-width: var(--maxw-narrow); }
.story .eyebrow { display: block; margin-bottom: 26px; }
.story p { font-family: var(--display); font-weight: 400; font-size: clamp(21px, 2.3vw, 29px); line-height: 1.42; letter-spacing: -0.01em; color: var(--ink); }
.story p + p { margin-top: 0.9em; }
.story .small { font-family: var(--body); font-size: 17px; line-height: 1.6; color: var(--ink-soft); letter-spacing: 0; margin-top: 1.4em; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.portrait-frame { position: relative; width: fit-content; margin-inline: auto; }
.portrait {
  position: relative;
  width: min(330px, 76vw);
  aspect-ratio: 4 / 5;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(38,32,25,0.08), 0 34px 60px -34px rgba(38,32,25,0.5);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait-note { position: absolute; bottom: -18px; right: -14px; font-family: var(--display); font-size: 22px; color: var(--accent-deep); transform: rotate(-5deg); display: none; }
.about-bio .eyebrow { display: block; margin-bottom: 18px; }
.about-bio h2 { margin-bottom: 0.5em; }
.about-cred { font-size: 15px; color: var(--ink-soft); margin: 1.6em 0 0; padding-top: 1.1em; border-top: 1px solid var(--line); max-width: 44ch; }
.about-cred strong { color: var(--ink); font-weight: 600; }

/* ---------- Principles ---------- */
.principles { display: grid; gap: 0; }
.principle { display: grid; grid-template-columns: 52px 1fr; gap: clamp(14px, 2vw, 28px); padding: clamp(20px, 2.4vw, 28px) 0; border-top: 1px solid var(--line); align-items: baseline; }
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle .num { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; }
.principle h3 { font-size: clamp(19px, 1.7vw, 23px); }
.principle p { margin: 6px 0 0; color: var(--ink-soft); font-size: 16.5px; }
@media (max-width: 540px) { .principle { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- Aside band (1:1 + notes) ---------- */
.aside-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 760px) { .aside-grid { grid-template-columns: 1fr; gap: 40px; } }
.aside-block .eyebrow { display: block; margin-bottom: 14px; }
.aside-block h3 { margin-bottom: 10px; }
.aside-block p { color: var(--ink-soft); font-size: 16.5px; }
.signup { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.signup input {
  flex: 1; min-width: 180px; padding: 12px 15px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--card); color: var(--ink);
  font-family: var(--body); font-size: 15.5px; outline: none; transition: border-color .2s;
}
.signup input:focus { border-color: var(--accent); }
.signup input::placeholder { color: var(--ink-faint); }
.signup button {
  padding: 12px 20px; border: 1px solid var(--ink); border-radius: 10px;
  background: var(--ink); color: var(--paper); font-family: var(--body);
  font-weight: 600; font-size: 15.5px; cursor: pointer; transition: background .2s;
}
.signup button:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Contact / CTA night band ---------- */
.contact { text-align: center; position: relative; overflow: hidden; }
.contact canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.contact .wrap { position: relative; z-index: 2; }
.contact .eyebrow { color: #B9B2CC; justify-content: center; }
.contact .eyebrow .star { color: var(--gold); }
.contact h2 { margin: 0.4em auto 0.5em; max-width: 18ch; }
.contact .lead { margin-inline: auto; max-width: 46ch; color: #CFC9DD; }
.contact .btn { margin-top: 1.8em; }
.contact .btn-night { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.contact .btn-night:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--night-2); color: var(--paper); position: relative; z-index: 2; padding-block: clamp(40px, 5vw, 64px); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer .brand { color: var(--paper); font-size: 26px; }
.footer .brand .star { color: var(--accent); }
.footer-base { margin-top: clamp(26px, 4vw, 40px); padding-top: 20px; border-top: 1px solid rgba(244,236,217,0.16); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: 14px; color: #8E87A1; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.no-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* =========================================================================
   Sessions page overrides
   ========================================================================= */
body.warm { }
body.warm .portrait-note { display: block; }

/* warm hero list "sound familiar?" */
.feel { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; max-width: 56ch; }
.feel li {
  position: relative; padding-left: 28px;
  font-family: var(--display); font-size: clamp(19px, 1.9vw, 23px); line-height: 1.4;
  color: var(--ink); font-style: italic; letter-spacing: -0.01em;
}
.feel li::before { content: "\2014"; position: absolute; left: 0; top: 0; color: var(--accent); font-style: normal; }

/* steps / what a session is like */
.prose { max-width: var(--maxw-narrow); }
.prose p { font-size: clamp(18px, 1.5vw, 20px); line-height: 1.62; color: var(--ink-soft); }
.prose p strong, .prose .em { color: var(--ink); }
.prose .lead-line { font-family: var(--display); font-size: clamp(21px, 2.2vw, 28px); line-height: 1.4; color: var(--ink); font-weight: 400; letter-spacing: -0.01em; margin-bottom: 0.7em; }

/* practicalities */
.facts { display: grid; gap: 0; max-width: var(--maxw-narrow); border-top: 1px solid var(--line); }
.fact { display: grid; grid-template-columns: 200px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.fact .k { font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.fact .v { font-size: 17.5px; color: var(--ink); }
.fact .v .price { font-family: var(--display); font-weight: 600; font-size: 22px; }
@media (max-width: 560px) { .fact { grid-template-columns: 1fr; gap: 4px; } }

/* FAQ */
.faq { display: grid; gap: 0; max-width: var(--maxw-narrow); }
.faq-item { padding: clamp(20px, 2.4vw, 26px) 0; border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { margin: 0; color: var(--ink-soft); font-size: 17px; }

/* minimal sessions nav */
.nav-min .nav-inner { justify-content: space-between; }
