/* ═══════════════════════════════════════════════════════
   HERO - one held frame + editorial mark
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
}
.hero__layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKenBurns 22s var(--ease-in-out) infinite alternate;
  will-change: transform;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.15) 0%, rgba(12,12,12,0.00) 18%, rgba(12,12,12,0.00) 55%, rgba(12,12,12,0.85) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(245,165,36,0.10) 0%, rgba(12,12,12,0) 55%);
}
.hero__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1px solid var(--line);
  margin: var(--space-6);
}
.hero__body {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--rail);
  padding-bottom: clamp(3rem, 8vh, 6rem);
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-meta);
  text-transform: uppercase;
  color: var(--ink-70);
}
.hero__meta::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--accent);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  color: var(--ink);
  max-width: 15ch;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.hero__sub {
  font-family: var(--font-ui);
  font-size: var(--fs-md);
  color: var(--ink-70);
  margin-top: var(--space-5);
  max-width: 44ch;
  line-height: var(--lh-snug);
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.hero__corner {
  position: absolute;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-meta);
  text-transform: uppercase;
  color: var(--ink-70);
}
.hero__corner--tr { top: var(--space-6); right: var(--space-6); }
.hero__corner--br { bottom: var(--space-6); right: var(--space-6); }
.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-meta);
  text-transform: uppercase;
  color: var(--ink-70);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1.00) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1.0%); }
}
@keyframes scrollPulse {
  0%   { opacity: 0.2; transform: scaleY(0.3); transform-origin: top; }
  50%  { opacity: 1;   transform: scaleY(1.0); }
  100% { opacity: 0.2; transform: scaleY(0.3); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════
   KINETIC MARK - scroll-linked section banner
   ═══════════════════════════════════════════════════════ */
.kinetic {
  position: relative;
  padding: var(--space-10) 0 var(--space-8);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.kinetic__track {
  display: flex;
  gap: var(--space-8);
  white-space: nowrap;
  font-family: var(--font-mark);
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  will-change: transform;
  animation: kineticScroll 32s linear infinite;
}
.kinetic__track--reverse { animation-direction: reverse; opacity: 0.35; font-size: clamp(3rem, 8vw, 8rem); margin-top: var(--space-4); }
.kinetic__track span { display: inline-flex; align-items: center; gap: var(--space-8); }
.kinetic__track span::after {
  content: "●";
  color: var(--accent);
  font-size: 0.35em;
  margin-left: var(--space-8);
}
@keyframes kineticScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   CHAPTERS - portfolio category cards
   ═══════════════════════════════════════════════════════ */
.chapters {
  padding: var(--space-10) 0 var(--space-10);
}
.chapters__header {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 var(--rail);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-8);
}
.chapters__eyebrow {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--accent);
}
.chapters__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
  font-weight: 300;
  max-width: 18ch;
}
.chapters__lead {
  font-family: var(--font-ui);
  font-size: var(--fs-md);
  color: var(--ink-70);
  max-width: 48ch;
  line-height: var(--lh-snug);
  justify-self: end;
}
.chapters__grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 var(--rail);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}

.chapter {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  color: var(--ink);
  isolation: isolate;
  border-radius: var(--radius-sm);
  cursor: none;
}
.chapter--lg  { grid-column: span 7; aspect-ratio: 16/11; }
.chapter--md  { grid-column: span 5; aspect-ratio: 4/5; }
.chapter--sm  { grid-column: span 4; aspect-ratio: 1/1; }
.chapter--wide { grid-column: span 8; aspect-ratio: 16/8; }

@media (max-width: 900px) {
  .chapter, .chapter--lg, .chapter--md, .chapter--sm, .chapter--wide { grid-column: span 12; aspect-ratio: 4/3; }
}

.chapter__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.00);
  transition: transform var(--dur-5) var(--ease-out), filter var(--dur-4) var(--ease-out);
}
.chapter:hover .chapter__img {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.1);
}
.chapter__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0) 45%, rgba(12,12,12,0.55) 80%, rgba(12,12,12,0.88) 100%);
}
.chapter__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5);
  gap: var(--space-2);
}
.chapter__meta {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-meta);
  text-transform: uppercase;
  color: var(--ink-70);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.chapter__meta::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.chapter__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
  font-weight: 300;
  color: var(--ink);
}
.chapter__count {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  color: var(--accent);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   ABOUT - editorial split
   ═══════════════════════════════════════════════════════ */
.about {
  padding: var(--space-10) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 var(--rail);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 900px) {
  .about__wrap { grid-template-columns: 1fr; gap: var(--space-6); }
}
.about__portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.about__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}
.about__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  margin: var(--space-3);
}
.about__eyebrow {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.about__name {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
  font-weight: 300;
  margin-bottom: var(--space-6);
  font-variation-settings: "opsz" 144, "SOFT" 20;
}
.about__body {
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--ink-90);
  max-width: 56ch;
}
.about__body p + p { margin-top: 1em; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line-strong);
}
@media (max-width: 600px) { .about__stats { grid-template-columns: repeat(2, 1fr); } }
.about__stat dt {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: var(--space-2);
}
.about__stat dd {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   HORIZONTAL ESSAY - portfolio chapter body
   ═══════════════════════════════════════════════════════ */
.essay {
  position: relative;
  padding: var(--space-8) 0;
}
.essay__header {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 var(--rail);
  margin-bottom: var(--space-7);
}
.essay__eyebrow {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.essay__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
  font-weight: 300;
  margin-bottom: var(--space-4);
}
.essay__lead { color: var(--ink-70); font-size: var(--fs-md); max-width: 56ch; line-height: var(--lh-snug); }
.essay__track-wrap {
  position: relative;
}
.essay__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 42vw, 640px);
  gap: var(--space-4);
  padding: 0 var(--rail) var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  scroll-padding-inline: var(--rail);
  cursor: grab;
  /* touch-action default (auto) so horizontal swipe pans the track and
     vertical swipe passes through to the page. overscroll-behavior-x:
     contain stops iOS edge-swipe from triggering browser back/forward. */
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}
.essay__track::-webkit-scrollbar { display: none; }
.essay__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.essay__track.is-dragging img { pointer-events: none; user-select: none; -webkit-user-drag: none; }
.essay__track .essay__frame {
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.essay__frame--tall { aspect-ratio: 3/4; }
.essay__frame--wide { aspect-ratio: 16/10; }
.essay__frame--square { aspect-ratio: 1/1; }
.essay__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-5) var(--ease-out);
}
.essay__frame:hover img { transform: scale(1.04); }
.essay__caption {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-meta);
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(12, 12, 12, 0.70);
  padding: var(--space-2) var(--space-3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-block;
  width: max-content;
  max-width: 100%;
}
.essay__rule {
  max-width: var(--max-w);
  margin: var(--space-5) auto 0;
  padding: 0 var(--rail);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-meta);
  color: var(--ink-50);
  border-top: 1px solid var(--line);
  padding-top: var(--space-5);
}

/* ═══════════════════════════════════════════════════════
   CTA - closing band
   ═══════════════════════════════════════════════════════ */
.cta {
  position: relative;
  padding: var(--space-11) var(--rail);
  background: var(--bg);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-dim) 0%, transparent 65%);
  pointer-events: none;
}
.cta::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}
.cta__eyebrow {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
  position: relative;
}
.cta__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
  font-weight: 300;
  max-width: 18ch;
  margin: 0 auto var(--space-5);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  position: relative;
}
.cta__title em { color: var(--accent); font-style: italic; }
.cta__sub {
  color: var(--ink-70);
  max-width: 52ch;
  margin: 0 auto var(--space-6);
  font-size: var(--fs-md);
  position: relative;
}
.cta__actions {
  display: inline-flex;
  gap: var(--space-4);
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   CONTACT / BOOKING / FAQ
   ═══════════════════════════════════════════════════════ */
.page-head {
  padding: calc(var(--space-11) + 60px) var(--rail) var(--space-8);
  max-width: var(--max-w);
  margin-inline: auto;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.page-head__eyebrow {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.page-head__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
  font-weight: 300;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.page-head__sub { color: var(--ink-70); max-width: 56ch; margin-top: var(--space-5); font-size: var(--fs-md); }

.split {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--space-8) var(--rail) var(--space-10);
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-8);
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__pane { }
.split__aside {
  position: sticky;
  top: calc(60px + var(--space-6));
  align-self: start;
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
}
.split__aside h3 {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.split__aside ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-4); }
.split__aside li { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--ink-90); }
.split__aside li strong { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 500; color: var(--ink); display: block; margin-bottom: 2px; }

/* Booking steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: var(--space-4);
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.steps li::before {
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: var(--tr-meta);
  padding-top: 3px;
}
.steps li strong { display: block; font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: var(--fs-md); margin-bottom: 2px; }
.steps li span { color: var(--ink-70); font-size: var(--fs-sm); }

/* FAQ */
.faq { display: grid; gap: var(--space-3); }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  transition: border-color var(--dur-2), background var(--dur-2);
}
.faq details[open] { border-color: var(--accent-ring); background: var(--surface-2); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  color: var(--accent);
  transition: transform var(--dur-2) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__answer {
  color: var(--ink-70);
  margin-top: var(--space-3);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  max-width: 68ch;
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO PAGE - index + spreads
   ═══════════════════════════════════════════════════════ */
.portfolio-index {
  padding: var(--space-6) var(--rail) var(--space-8);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
}
.portfolio-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}
.portfolio-index__list a {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-2) 0;
  position: relative;
  min-width: 120px;
}
.portfolio-index__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: var(--tr-meta);
}
.portfolio-index__kick {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-caps);
  color: var(--ink-50);
}
.portfolio-index__title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}
.portfolio-index__list a:hover .portfolio-index__title { color: var(--accent); }

.chapter-spread {
  padding: var(--space-10) 0 var(--space-9);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px;
}
.chapter-spread__intro {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-7);
  align-items: start;
  margin-bottom: var(--space-7);
}
@media (max-width: 800px) {
  .chapter-spread__intro { grid-template-columns: 1fr; gap: var(--space-4); }
}
.chapter-spread__num {
  font-family: var(--font-mono);
  font-size: var(--fs-md);
  color: var(--accent);
  letter-spacing: var(--tr-meta);
  text-transform: uppercase;
  padding-top: 6px;
}
.chapter-spread__kicker {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-caps);
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.chapter-spread__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
  font-weight: 300;
  margin-bottom: var(--space-5);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  max-width: 16ch;
}
.chapter-spread__lead {
  color: var(--ink-70);
  font-size: var(--fs-md);
  line-height: var(--lh-snug);
  max-width: 56ch;
  margin-bottom: var(--space-5);
}
.chapter-spread__meta {
  display: flex;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-meta);
  color: var(--ink-50);
}
.chapter-spread__cover {
  max-width: var(--max-w);
  margin: 0 auto var(--space-6);
  padding: 0 var(--rail);
}
.chapter-spread__cover > span {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 21/9;
  cursor: none;
  background: var(--surface);
}
.chapter-spread__cover > span img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-5) var(--ease-out);
}
.chapter-spread__cover:hover > span img { transform: scale(1.02); }
.chapter-spread__cover figcaption {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-meta);
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: var(--space-3);
  max-width: var(--max-w);
  padding: 0 var(--rail);
  margin-inline: auto;
}
@media (max-width: 720px) {
  .chapter-spread__cover > span { aspect-ratio: 4/5; }
}

/* ═══════════════════════════════════════════════════════
   BOOKING PAGE
   ═══════════════════════════════════════════════════════ */

.book-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--space-10) + 60px) 0 var(--space-9);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.book-hero__layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--book-hero-img);
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.42) saturate(0.85);
}
.book-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(12,12,12,0.30) 0%, rgba(12,12,12,0.20) 40%, rgba(12,12,12,0.92) 100%);
}
.book-hero__body {
  position: relative;
  z-index: 3;
  max-width: 880px;
  width: 100%;
}
.book-hero__eyebrow {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.book-hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent);
}
.book-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: var(--space-5);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.book-hero__title em { font-style: italic; color: var(--accent); font-weight: 300; }
.book-hero__lead {
  font-size: var(--fs-md);
  color: var(--ink-90);
  max-width: 60ch;
  line-height: var(--lh-snug);
  margin-bottom: var(--space-7);
}
.book-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line-strong);
}
.book-hero__stats dt {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 4px;
}
.book-hero__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}
@media (max-width: 720px) {
  .book-hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .book-hero { min-height: 50vh; padding-top: calc(var(--space-9) + 60px); }
}

/* Section heads shared */
.book-types__head,
.book-steps__head,
.book-faq__head,
.book-form__main > .book-types__eyebrow {
  margin-bottom: var(--space-6);
}
.book-types__eyebrow {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.book-types__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
  font-weight: 300;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: var(--space-4);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.book-types__lead {
  font-size: var(--fs-md);
  color: var(--ink-70);
  max-width: 62ch;
  line-height: var(--lh-snug);
}

/* Session type cards */
.book-types { padding: var(--space-10) 0 var(--space-8); }
.book-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-7);
}
.booktype {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: left;
  padding: 0;
  overflow: hidden;
  transition: border-color var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out), background var(--dur-3);
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.booktype:hover { border-color: var(--accent-ring); transform: translateY(-3px); background: var(--surface-2); }
.booktype.is-active { border-color: var(--accent); background: var(--surface-2); box-shadow: 0 0 0 1px var(--accent); }
.booktype__imgwrap { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #000; }
.booktype__imgwrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0) 45%, rgba(12,12,12,0.8) 100%);
}
.booktype__imgwrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-5) var(--ease-out); filter: brightness(0.85); }
.booktype:hover .booktype__imgwrap img { transform: scale(1.04); filter: brightness(0.98); }
.booktype__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.booktype__meta { display: flex; gap: var(--space-3); align-items: center; }
.booktype__num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-meta);
}
.booktype__kick {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--ink-50);
}
.booktype__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: var(--tr-display);
}
.booktype__summary {
  font-size: var(--fs-sm);
  color: var(--ink-70);
  line-height: var(--lh-body);
  margin: 0;
  max-width: none;
}
.booktype__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: var(--space-3) 0 0;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.booktype__stats dt {
  font-family: var(--font-mark);
  font-size: 10px;
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 2px;
}
.booktype__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  font-size: var(--fs-md);
  line-height: 1;
}
.booktype__cta {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-top: var(--space-3);
}
.booktype:hover .booktype__cta { color: var(--accent-hot); }

/* How it works steps */
.book-steps { padding: var(--space-9) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.book-steps__grid {
  counter-reset: step;
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
@media (max-width: 900px) {
  .book-steps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .book-steps__grid { grid-template-columns: 1fr; }
}
.book-steps__grid li {
  padding: var(--space-5) var(--space-5) var(--space-6);
  border-right: 1px solid var(--line);
  position: relative;
  min-height: 240px;
}
.book-steps__grid li:last-child { border-right: 0; }
@media (max-width: 900px) {
  .book-steps__grid li:nth-child(2n) { border-right: 0; }
  .book-steps__grid li:nth-child(1), .book-steps__grid li:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .book-steps__grid li { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .book-steps__grid li:last-child { border-bottom: 0; }
}
.book-steps__num {
  font-family: var(--font-mark);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.book-steps__grid h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--space-3);
  letter-spacing: var(--tr-display);
}
.book-steps__grid p {
  color: var(--ink-70);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  margin: 0;
  max-width: 36ch;
}

/* Form section */
.book-form { padding: var(--space-9) 0; }
.book-form__wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--space-8);
}
@media (max-width: 960px) { .book-form__wrap { grid-template-columns: 1fr; } }
.book-form__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
  font-weight: 300;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: var(--space-4);
}
.book-form__lead {
  color: var(--ink-70);
  max-width: 54ch;
  margin-bottom: var(--space-7);
  font-size: var(--fs-md);
  line-height: var(--lh-snug);
}
.book-form__embed {
  padding: var(--space-6);
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.72), 0 6px 18px rgba(0,0,0,0.40);
}
.book-form__embed iframe {
  display: block;
  width: 100%;
  background: #ffffff;
  border-radius: 6px;
}
.book-form__fallback { color: #555555 !important; }

.book-form__side {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: calc(60px + var(--space-5));
  align-self: start;
}
@media (max-width: 960px) { .book-form__side { position: static; } }
.book-form__portrait {
  margin: 0;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.book-form__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04); }
.book-form__who {
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--line);
}
.book-form__who h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--space-3);
  letter-spacing: var(--tr-display);
}
.book-form__who p {
  color: var(--ink-70);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  margin: 0;
}
.book-form__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--line);
}
.book-form__trust dt {
  font-family: var(--font-mark);
  font-size: 10px;
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 2px;
}
.book-form__trust dd { margin: 0; font-family: var(--font-display); font-weight: 400; color: var(--ink); font-size: var(--fs-md); line-height: 1.1; }
.book-form__note {
  padding: var(--space-5);
  border-left: 2px solid var(--accent);
  background: var(--surface);
}
.book-form__note p { color: var(--ink-90); font-size: var(--fs-sm); margin: var(--space-3) 0 0; line-height: var(--lh-body); }

/* Brand quote band - SKY BLUE MOMENT */
.book-quote {
  padding: var(--space-11) 0;
  background: var(--accent);
  color: var(--brand-ink-on-light);
  position: relative;
  overflow: hidden;
}
.book-quote::before {
  content: "''";
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(20rem, 35vw, 32rem);
  line-height: 0.7;
  color: rgba(12,12,12,0.06);
  top: -4rem;
  left: -2rem;
  pointer-events: none;
  letter-spacing: -0.08em;
}
.book-quote blockquote {
  margin: 0;
  max-width: 1000px;
  padding: 0 var(--space-4);
  position: relative;
}
.book-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: var(--tr-display);
  font-weight: 400;
  color: var(--brand-ink-on-light);
  margin: 0 0 var(--space-5);
  max-width: none;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.book-quote p em { font-style: italic; font-weight: 400; }
.book-quote cite {
  font-family: var(--font-mark);
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  font-style: normal;
  color: var(--brand-ink-on-light);
  opacity: 0.7;
}

/* FAQ shortcut */
.book-faq { padding: var(--space-9) 0; border-top: 1px solid var(--line); }
.book-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
.book-faq__item {
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color var(--dur-2), background var(--dur-2);
}
.book-faq__item[open] { border-color: var(--accent-ring); background: var(--surface-2); }
.book-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
}
.book-faq__item summary::-webkit-details-marker { display: none; }
.book-faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--accent);
  transition: transform var(--dur-2);
}
.book-faq__item[open] summary::after { transform: rotate(45deg); }
.book-faq__item p { color: var(--ink-70); font-size: var(--fs-sm); margin: var(--space-3) 0 0; line-height: var(--lh-body); }
.book-faq__more { text-align: center; margin-top: var(--space-5); }

/* Input fill boost for booking form - stronger contrast */
body.nate-mono .book-form__embed .wpforms-form input[type="text"],
body.nate-mono .book-form__embed .wpforms-form input[type="email"],
body.nate-mono .book-form__embed .wpforms-form input[type="tel"],
body.nate-mono .book-form__embed .wpforms-form textarea,
body.nate-mono .book-form__embed .wpforms-form select {
  background: #1E1E1E !important;
  border-color: rgba(255,255,255,0.22) !important;
}
body.nate-mono .book-form__embed .wpforms-form input:focus,
body.nate-mono .book-form__embed .wpforms-form textarea:focus,
body.nate-mono .book-form__embed .wpforms-form select:focus {
  background: #252525 !important;
  border-color: var(--accent) !important;
}

/* ═══════════════════════════════════════════════════════
   404 / SEARCH / ARCHIVE fallbacks
   ═══════════════════════════════════════════════════════ */
.generic-body {
  max-width: 68ch;
  margin: 120px auto 80px;
  padding: 0 var(--rail);
}
.generic-body h1 { font-size: var(--fs-2xl); margin-bottom: var(--space-5); }

/* ═══════════════════════════════════════════════════════
   TABLET & MOBILE TUNING
   Collapsing editorial rhythm so generous 10–12rem block
   padding doesn't crater the experience on small screens.
   ═══════════════════════════════════════════════════════ */

/* Horizontal strip container needs relative positioning so the
   right-edge fade affordance can be absolutely placed inside it. */
.essay__track-wrap { position: relative; }

/* Right-edge swipe-more hint (mobile only) — a subtle fade signals
   the strip extends past the viewport. Hidden when the user has
   scrolled the track to the end via data-at-end. */
@media (max-width: 900px) {
  .essay__track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: var(--space-5);
    right: 0;
    width: 56px;
    background: linear-gradient(to right, transparent 0%, rgba(12,12,12,0.72) 100%);
    pointer-events: none;
    z-index: 3;
    opacity: 1;
    transition: opacity var(--dur-2) var(--ease-out);
  }
  .essay__track-wrap.at-end::after { opacity: 0; }
  /* same for the surface-backed about section where bg is --surface */
  .about .essay__track-wrap::after {
    background: linear-gradient(to right, transparent 0%, rgba(20,20,20,0.72) 100%);
  }
}

/* Force uniform aspect on mobile so the horizontal strip doesn't
   produce giant vertical gaps where wide cells sit in tall rows. */
@media (max-width: 820px) {
  .essay__track {
    grid-auto-columns: 78vw;
    gap: var(--space-3);
    scroll-snap-type: x mandatory;
  }
  .essay__frame,
  .essay__frame--tall,
  .essay__frame--wide,
  .essay__frame--square { aspect-ratio: 3/4; }
}

/* Hide decorative hero corner labels on mobile — they collide with
   the hamburger / NR mark and add noise at narrow widths. */
@media (max-width: 820px) {
  .hero__corner,
  .hero__corner--tr,
  .hero__corner--br,
  .book-hero__corner { display: none; }
}

/* Hero viewport sizing — prefer svh so iOS Safari's dynamic
   toolbar doesn't push hero content under the chrome. */
@media (max-width: 820px) {
  .hero {
    height: 100svh;
    min-height: 560px;
  }
  .hero__frame { margin: var(--space-4); }
  .hero__scroll { bottom: var(--space-4); }
  .hero__body {
    padding-bottom: clamp(4.5rem, 12vh, 7rem);
  }
  .hero__title { max-width: none; }
  .hero__sub { font-size: var(--fs-base); }
}

/* Section padding — scale --space-11 (12rem) down to --space-8 (4rem)
   so full-width editorial bands breathe without eating half the
   mobile screen. */
@media (max-width: 820px) {
  .kinetic      { padding: var(--space-7) 0 var(--space-6); }
  .chapters     { padding: var(--space-8) 0; }
  .chapters__header { grid-template-columns: 1fr; gap: var(--space-4); margin-bottom: var(--space-6); }
  .chapters__lead { justify-self: start; }
  .about        { padding: var(--space-8) 0; }
  .essay        { padding: var(--space-7) 0; }
  .essay__header { margin-bottom: var(--space-5); }
  .cta          { padding: var(--space-8) var(--rail); }
  .page-head    { padding: calc(var(--space-7) + 60px) var(--rail) var(--space-5); }
  .split        { padding: var(--space-6) var(--rail) var(--space-8); gap: var(--space-6); }
  .book-types   { padding: var(--space-8) 0 var(--space-6); }
  .book-steps   { padding: var(--space-7) 0; }
  .book-form    { padding: var(--space-7) 0; }
  .book-faq     { padding: var(--space-7) 0; }
  .book-quote   { padding: var(--space-8) 0; }
  .book-hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}

/* The giant decorative '' mark on the quote band must shrink so it
   doesn't fully cover the quote text at mobile viewport widths. */
@media (max-width: 820px) {
  .book-quote::before {
    font-size: clamp(10rem, 55vw, 20rem);
    top: -1.5rem;
    left: -0.5rem;
  }
  .book-quote blockquote {
    padding: 0 var(--rail);
  }
}

/* split__aside was sticky even after stacking — creates a jarring
   "stick at top" when user scrolls past its natural position on
   mobile. Make static below the stacking threshold. */
@media (max-width: 900px) {
  .split__aside {
    position: static;
    top: auto;
  }
}

/* Portfolio chapter index — on mobile the 5 cards wrap to 3+ rows
   creating a 200px sticky block that covers most of the screen.
   Rework as a horizontal scroll strip pinned below the fixed nav. */
@media (max-width: 820px) {
  .portfolio-index {
    top: 0;
    padding: calc(60px + var(--space-3)) 0 var(--space-3);
    background: rgba(12, 12, 12, 0.94);
  }
  .portfolio-index__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: var(--space-4);
    padding: 0 var(--rail);
    scroll-snap-type: x proximity;
  }
  .portfolio-index__list::-webkit-scrollbar { display: none; }
  .portfolio-index__list li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .portfolio-index__list a {
    min-width: auto;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
  }
  .portfolio-index__list a[aria-current="true"],
  .portfolio-index__list a:hover {
    border-color: var(--accent-ring);
  }
  .portfolio-index__title { font-size: var(--fs-sm); }
}

/* Scroll-margin on chapter spreads must clear the sticky index + fixed
   nav on mobile so anchor jumps land correctly. */
@media (max-width: 820px) {
  .chapter-spread { scroll-margin-top: 180px; }
}

/* Chapter spread cover aspect tightens on narrow screens (existing
   720px rule), but add a mid-tier for tablet so 21/9 doesn't shrink
   covers to a sliver. */
@media (min-width: 721px) and (max-width: 900px) {
  .chapter-spread__cover > span { aspect-ratio: 16/9; }
}

/* Booking session-type cards — auto-fit 300px minimum means a single
   column at phone widths, which makes each card 300+ tall.  Keep,
   but reduce internal padding so they aren't cavernous. */
@media (max-width: 820px) {
  .booktype__body { padding: var(--space-4); gap: var(--space-2); }
  .booktype__imgwrap { aspect-ratio: 16/9; }
}

/* Ensure WPForms submit button is full-width on mobile for a clean
   primary CTA. */
@media (max-width: 620px) {
  body.nate-mono .wpforms-form button[type="submit"],
  body.nate-mono .wpforms-form .wpforms-submit {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* page-head__title runs off-screen on iPhone SE if clamped hero sizing
   is too large — cap the display font at narrow widths. */
@media (max-width: 520px) {
  .page-head__title,
  .chapter-spread__title,
  .cta__title {
    font-size: clamp(2.6rem, 9.5vw, 3.8rem);
  }
  .book-hero__title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero__title { font-size: clamp(3rem, 11vw, 4.4rem); }
}

/* About stats drop to 2 columns earlier for narrow tablets. */
@media (max-width: 820px) {
  .about__stats { grid-template-columns: repeat(2, 1fr); }
}

/* Footer padding on mobile. */
@media (max-width: 820px) {
  .footer { padding: var(--space-8) var(--rail) var(--space-6); }
}
