/* ============================================================
   BAGMUTSKIY · ПОРТРЕТНАЯ ФОТОСЕССИЯ — v1
   Portrait first. Quiet UI. Face, posture, space.
   Not /art/. Not a studio landing. Not LinkedIn. Not dating.
   ============================================================ */

:root {
  --paper: #f5f3ee;
  --paper-2: #eae7df;
  --paper-3: #fffdf9;
  --ink: #161614;
  --stage: #100f0d;
  --stage-2: #16130f;
  --muted: #57554f;
  --on-stage: #f2efe8;
  --on-stage-muted: #a8a39a;
  --line: #dcd8cf;
  --line-stage: rgba(255, 255, 255, 0.13);
  --accent: #1a1714;
  --accent-hi: #0c0b0a;
  --accent-on-stage: #e8e2d8;

  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shell: 1180px;
  --rail-w: min(var(--shell), 100% - 2.5rem);
  --edge: max(1.25rem, calc((100vw - var(--shell)) / 2));
  --measure: 33rem;
  --header-h: 56px;
  /* Overridden by the editor bar for logged-in editors; 0 for visitors. */
  --admin-bar-h: 0px;

  --fs-display: clamp(1.9rem, 5vw, 3.9rem);
  --fs-h2: clamp(1.45rem, 2.6vw, 2.1rem);
  --fs-h3: clamp(1.15rem, 1.9vw, 1.45rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;
  --fs-label: 0.6875rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  /* Smooth scrolling is handled in JS for [data-scroll] only. A global
     scroll-behavior: smooth makes programmatic "auto" jumps still animate,
     so the corrective second pass lands mid-animation and feels short. */
  scroll-behavior: auto;
  overflow-x: clip;
}

/* Anchor targets must clear the sticky header and the editor bar above it. */
section[id],
#main,
#book-form,
[id$="-title"] { scroll-margin-top: calc(var(--admin-bar-h) + var(--header-h) + 2rem); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

a { color: var(--accent); text-underline-offset: 0.18em; }
a:hover { color: var(--accent-hi); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin: 0;
}

h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

/* Phone widths leave most headings with a single word on the last line;
   balancing evens the lines out without hardcoding a break. */
@media (max-width: 899px) {
  h2, h3 { text-wrap: balance; }
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- layout primitives ---------- */

.rail { width: var(--rail-w); margin-inline: auto; }
.measure { max-width: var(--measure); }

/* the small uppercase label replaces the big serif H2 on every
   informational section — this is what creates hierarchy between
   narrative moments and ordinary sections */
.label {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  color: var(--muted);
  max-width: var(--measure);
  margin: 0.9rem 0 0;
}

.h-sm { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.quiet { color: var(--muted); }

figcaption {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ---------- buttons / links ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.7rem 1.35rem;
  border: 0; border-radius: 2px;
  background: var(--accent); color: #fff;
  font: inherit; font-weight: 600; text-decoration: none;
  white-space: nowrap; cursor: pointer;
  transition: background 0.25s var(--ease);
}
.btn:hover { background: var(--accent-hi); color: #fff; }

.btn-sm { min-height: 42px; padding: 0.5rem 1.1rem; font-size: var(--fs-sm); }

/* Actionable, but one step quieter than the recommended package's solid CTA. */
.btn-quiet {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent);
}
.btn-quiet:hover {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  color: var(--accent);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  min-height: 34px;
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--ink); text-decoration: none;
  box-shadow: inset 0 -1px 0 var(--line);
  transition: box-shadow 0.25s var(--ease);
}
.link-arrow::after { content: "→"; font-weight: 400; }
.link-arrow:hover { color: var(--ink); box-shadow: inset 0 -1px 0 var(--ink); }
.link-arrow.quiet { color: var(--muted); font-weight: 400; }

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
.strip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.iceland a:focus-visible,
.iceland button:focus-visible,
.final a:focus-visible,
.final button:focus-visible,
.final summary:focus-visible,
.lightbox button:focus-visible {
  outline-color: var(--accent-on-stage);
}

/* Focus restored programmatically after a pointer interaction. */
.no-focus-ring:focus-visible { outline: none; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: var(--admin-bar-h); z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}

.brand {
  display: inline-flex; align-items: center;
  min-height: 40px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  letter-spacing: -0.01em;
  text-decoration: none; color: var(--ink);
}

.nav { display: none; gap: clamp(1rem, 2vw, 1.75rem); }
.nav a {
  display: inline-flex; align-items: center; min-height: 36px;
  font-size: 0.875rem; text-decoration: none; color: var(--muted);
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

/* 320: brand + «Обсудить съёмку» is 4px wider than the rail with default
   gap/padding. Shrink the row, do not clip the page. */
@media (max-width: 380px) {
  .header-row { gap: 0.4rem; }
  .header-actions .btn-sm { padding-inline: 0.7rem; }
}
.link-quiet { display: none; font-size: 0.875rem; text-decoration: none; color: var(--muted); }
.link-quiet:hover { color: var(--ink); }

/* ============================================================
   1. HERO — editorial spread, photographs at native ratio
   ============================================================ */

.hero { padding-bottom: 0; }

/* Small-screen hero: the H1 sits inside the photograph's lower area, so the
   photo is sized by height rather than ratio — that keeps the headline, sub
   and CTA above the fold on both tall phones and short/wide tablets. */
.hero { --hero-h: min(calc(100vw * 1.12), 56vh); }

.hero-figure-main { position: relative; }
.hero-figure button {
  padding: 0; border: 0; background: none; cursor: zoom-in;
  display: block; width: auto; max-width: 100%;
}
.hero-figure button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
@media (max-width: 899px) {
  .hero-figure-main button { width: 100%; }
}

.hero-figure-main img {
  width: 100%;
  height: var(--hero-h);
  object-fit: cover;
  /* Mirrors live in the middle of the frame. Crop sky and grass, keep both glasses. */
  object-position: center 42%;
}

.hero-figure-main::after {
  content: "";
  position: absolute; inset: 38% 0 0;
  background: linear-gradient(to bottom, rgba(12, 12, 10, 0) 0%, rgba(12, 12, 10, 0.68) 58%, rgba(12, 12, 10, 0.9) 100%);
  pointer-events: none;
}

.hero-figure-main figcaption { display: none; }

.hero-figure-alt { display: none; }

.hero h1 { display: grid; gap: 0.55rem; margin: 0; }

.h1-kicker {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
}

.h1-main {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.028em;
}

.hero-sub {
  color: var(--muted);
  max-width: 30rem;
  margin: 1.1rem 0 0;
}

.hero-cta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.6rem;
}

/* The credibility strip carries the price anchor and the rating, so it has to
   finish inside the first viewport on a phone. */
.hero-facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(1.1rem, 3vh, 3rem);
}
/* Two tidy rows of two on a phone; one hairline row from 900px up. */
.hero-facts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
  padding: 0.3rem 0;
  font-size: var(--fs-xs);
  color: var(--muted);
}
.hero-facts-row > span {
  display: inline-flex; align-items: center; min-height: 32px;
}
.hero-facts-row a {
  display: inline-flex; align-items: center; min-height: 32px;
  color: var(--muted);
}
.hero-facts-row a:hover { color: var(--ink); }

/* mobile hero: photo with the H1 inside it, then sub + CTA above the fold.
   The H1 is out of flow and resolves against .hero-grid, so .hero-copy must
   stay unpositioned. */
@media (max-width: 899px) {
  .hero-grid { width: 100%; display: grid; position: relative; }
  .hero-media { order: -1; }
  .hero-copy {
    width: var(--rail-w); margin-inline: auto;
    padding-top: 1.35rem;
  }
  .hero h1 {
    position: absolute; z-index: 2;
    top: 0; left: 0; right: 0;
    height: var(--hero-h);
    display: flex; flex-direction: column; justify-content: flex-end;
    gap: 0.5rem;
    padding: 0 1.25rem 1.35rem;
    color: #fff;
  }
  .h1-kicker { color: rgba(255, 255, 255, 0.78); }
}

@media (min-width: 900px) {
  .nav, .link-quiet { display: flex; }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: clamp(2.5rem, 7vh, 5rem) 0 clamp(2rem, 5vh, 3.5rem);
  }

  .hero-media {
    display: flex; justify-content: flex-end; align-items: flex-start;
    gap: 0.6rem;
  }

  .hero-figure-main { position: relative; }
  .hero-figure-main::after { display: none; }
  .hero-figure-main img {
    height: clamp(420px, 62vh, 640px);
    width: auto; max-width: none;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center 40%;
  }
  .hero-figure-main figcaption {
  display: block;
    color: var(--muted);
    margin-top: 0.55rem;
  }

  .hero-figure-alt { display: block; margin-top: clamp(70px, 16vh, 150px); }
  .hero-figure-alt img {
    height: clamp(200px, 32vh, 310px);
    width: auto; max-width: none;
  aspect-ratio: 2 / 3;
  object-fit: cover;
    object-position: center 25%;
  }
  .hero-figure-alt figcaption {
    display: block;
    color: var(--muted);
    margin-top: 0.55rem;
  }

  .h1-main { font-size: clamp(1.95rem, 3.3vw, 3rem); }
  .hero-sub { font-size: 1.0625rem; margin-top: 1.35rem; }
  .hero-facts { margin-top: 0; }
  .hero-facts-row {
    display: flex; flex-wrap: wrap;
    gap: 0.35rem 1.5rem;
    padding: 0.6rem 0;
  }
}

/* ============================================================
   2. WORKS — full-bleed rail, zero card chrome
   ============================================================ */

.works { padding: clamp(3.5rem, 9vh, 6rem) 0 clamp(2.5rem, 6vh, 4rem); }

.works-head { display: grid; gap: 1.25rem; }
.works-head h2 { max-width: 26ch; }

@media (min-width: 820px) {
  .works-head {
    grid-template-columns: 1fr auto;
  align-items: end;
    gap: 2rem;
  }
  .works-head-aside { padding-bottom: 0.35rem; }
}

.strip-wrap { position: relative; margin-top: clamp(1.75rem, 4vh, 2.5rem); }

.strip {
  display: flex; gap: 0.5rem;
  list-style: none; margin: 0;
  padding: 0 var(--edge);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.strip::-webkit-scrollbar { display: none; }

.strip > li { flex: 0 0 auto; scroll-snap-align: start; }

.strip button {
  display: block; border: 0; padding: 0; margin: 0;
  background: var(--paper-2); cursor: zoom-in;
  overflow: hidden;
}
.strip img {
  height: clamp(330px, 54vh, 560px);
  width: auto; max-width: none;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.strip button:hover img { transform: scale(1.035); }

.strip-sm img { height: clamp(280px, 42vh, 420px); }
.strip-sm button > span {
  display: block;
  padding: 0.55rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-xs);
  color: var(--muted);
  text-align: left;
  background: var(--paper);
}

.strip-hint {
  margin: 1.1rem auto 0;
  font-size: var(--fs-xs);
  color: var(--muted);
  padding-right: 6rem;
}

.strip-nav { display: none; gap: 0.4rem; }
.strip-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--paper);
  color: var(--ink); font-size: 1.15rem; line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.strip-btn:hover { border-color: var(--ink); background: var(--paper-3); }

@media (min-width: 900px) {
  .strip-nav {
    display: flex;
    position: absolute;
    right: var(--edge);
    bottom: -3.6rem;
  }
}

/* ============================================================
   3. STATEMENT — the scroll pause
   ============================================================ */

.statement {
  background: var(--stage);
  color: var(--on-stage);
  display: flex; align-items: center;
  min-height: min(82vh, 780px);
  padding: clamp(4.5rem, 12vh, 8rem) 0;
}

.statement .label { color: var(--on-stage-muted); margin-bottom: clamp(1.75rem, 5vh, 3rem); }

.statement h2 {
  font-size: var(--fs-display);
  line-height: 1.07;
  letter-spacing: -0.032em;
  max-width: 25ch;
  margin: 0;
  text-wrap: balance;
}

.statement-punch {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 24ch;
  margin: clamp(2.25rem, 6vh, 3.75rem) 0 0;
  padding-top: clamp(1.5rem, 4vh, 2.25rem);
  position: relative;
}
.statement-punch::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 3.5rem; height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   4. DIRECTION — sticky photo scene driven by the directives
   ============================================================ */

.direct {
  padding: clamp(3.5rem, 9vh, 6rem) 0;
  display: flex; flex-direction: column;
}

.direct-head { order: -2; }
.direct-head h2 { max-width: 22ch; }
.direct-strip-wrap { order: -1; margin-bottom: clamp(2rem, 5vh, 3rem); }

.direct-layout { margin-top: 0; }
.direct-media { display: none; }

.direct-caption {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  width: min(100%, calc(clamp(480px, 78vh, 760px) * 2 / 3));
  margin: 0.7rem auto 0;
  font-size: var(--fs-label);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.direct-count { font-variant-numeric: tabular-nums; }

/* On small screens the photo rail above carries the six directives visually,
   so this list is deliberately demoted to a dense run-in spec block. */
.directives { list-style: none; margin: 0; padding: 0; counter-reset: d; }

.directives li { padding: 0.5rem 0; }

.directives h3 {
  display: inline;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
}
.directives h3::before {
  counter-increment: d;
  content: counter(d, decimal-leading-zero) " ";
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-right: 0.5rem;
}
.directives h3::after { content: " — "; color: var(--muted); }

.directives p {
  display: inline;
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.direct-foot {
  margin-top: clamp(2rem, 5vh, 3rem);
  color: var(--muted);
  font-size: var(--fs-sm);
}

@media (min-width: 900px) {
  .direct-strip-wrap { display: none; }

  .direct-layout {
  display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
    margin-top: clamp(2rem, 5vh, 3.5rem);
  }

  .direct-media {
  display: block;
    position: sticky;
    top: calc(var(--admin-bar-h) + var(--header-h) + clamp(1rem, 3vh, 2rem));
  }
  .direct-stack {
    --scene-h: clamp(480px, 78vh, 760px);
  position: relative;
    height: var(--scene-h);
    width: min(100%, calc(var(--scene-h) * 2 / 3));
    margin-inline: auto;
    background: var(--paper-2);
  overflow: hidden;
  }
  .direct-stack img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
  object-fit: cover;
    opacity: 0;
    transition: opacity 0.65s var(--ease);
  }
  .direct-stack img.is-active { opacity: 1; }

  .directives li {
    min-height: clamp(230px, 34vh, 320px);
    display: flex; flex-direction: column; justify-content: center;
    border-top: 1px solid var(--line);
    padding: 1.5rem 0;
    opacity: 0.4;
    transition: opacity 0.5s var(--ease);
  }
  .directives li:last-child { border-bottom: 1px solid var(--line); }
  .directives li.is-active { opacity: 1; }

  .directives h3 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.3vw, 1.9rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
  }
  .directives h3::before { display: block; margin: 0 0 0.5rem; }
  .directives h3::after { content: none; }

  .directives p { display: block; font-size: var(--fs-base); max-width: 38ch; }

  .direct-foot { margin-top: clamp(2.5rem, 6vh, 4rem); }
}

/* ============================================================
   5. PROCESS — deliberately dense and quiet
   ============================================================ */

.process {
  background: var(--paper-2);
  padding: clamp(3rem, 7vh, 4.5rem) 0;
  border-block: 1px solid var(--line);
}

.steps {
  list-style: none; margin: clamp(1.5rem, 4vh, 2.25rem) 0 0; padding: 0;
  display: grid; gap: 0;
}
.steps li {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0;
}
.steps h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem; font-weight: 600;
  letter-spacing: 0;
  margin: 0.2rem 0 0.35rem;
}
.step-when {
  margin: 0;
  font-size: var(--fs-label); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.steps li > p:last-child {
  margin: 0; font-size: var(--fs-sm); color: var(--muted);
  max-width: 38ch;
}

@media (min-width: 820px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 clamp(1.5rem, 3.5vw, 3.5rem);
  }
  .steps li { padding: 1.15rem 0 0; }
}

/* ============================================================
   6. JOBS — four situations, four different visual weights
   ============================================================ */

.jobs { padding-top: clamp(3.5rem, 9vh, 6rem); }
.jobs-head { margin-bottom: clamp(2rem, 5vh, 3rem); }
.jobs-head h2 { max-width: 24ch; }

.job-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  max-width: 22ch;
}
.job-copy > p { max-width: 34ch; }
.job-copy .label { margin-bottom: 0.7rem; }

.job img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

/* — dating: full-bleed, dark, lifestyle-heavy pair — */
.job-dating {
  background: var(--stage-2);
  color: var(--on-stage);
  padding: clamp(3rem, 7vh, 5rem) 0;
}
.job-dating .label { color: var(--on-stage-muted); }
.job-dating .job-copy > p { color: #c8c3b9; }
.job-dating .link-arrow {
  color: var(--accent-on-stage);
  border-bottom-color: var(--line-stage);
}
.job-dating .link-arrow:hover { color: #fff; border-bottom-color: #fff; }

.job-dating-grid { display: grid; gap: clamp(1.75rem, 4vh, 2.5rem); }
.job-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; align-items: start; }

/* — work: contained, light, composed, single frame — */
.job-work {
  background: var(--paper-3);
  border-block: 1px solid var(--line);
  padding: clamp(3rem, 7vh, 5rem) 0;
}
.job-work-grid { display: grid; gap: clamp(1.75rem, 4vh, 2.5rem); }
.job-single { max-width: 21rem; }

/* — social: loose paper, small frames, caption-style —
   Two offset frames rather than two stacked equals: it reads as one casual
   composition and costs a third less vertical space on a phone. */
.job-social { padding: clamp(3rem, 7vh, 5rem) 0; }
.job-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vh, 2.25rem) 0.75rem;
}
.job-social-grid .job-copy { grid-column: 1 / -1; }
.job-social-grid figure { max-width: 20rem; }
.job-social-grid figure:nth-of-type(1) { grid-column: 1 / span 2; max-width: 74%; }
/* Spans the full grid so the percentage resolves against the rail, not a
   single column: at 62% of one column the second frame shrank to ~105px. */
.job-social-grid figure:nth-of-type(2) {
  grid-column: 1 / span 2;
  justify-self: end;
  max-width: 52%;
  margin-top: -11%;
}

/* — self: ink, one large quiet frame, minimal copy — */
.job-self {
  background: var(--stage);
  color: var(--on-stage);
  padding: clamp(3.5rem, 9vh, 6.5rem) 0;
}
.job-self .label { color: var(--on-stage-muted); }
.job-self .job-copy > p { color: #c8c3b9; }
.job-self-grid { display: grid; gap: clamp(1.75rem, 4vh, 2.5rem); }

@media (min-width: 640px) {
  .job-social-grid { align-items: start; }
  .job-social-grid figure:nth-of-type(1) { grid-column: 1 / span 1; max-width: 20rem; }
  .job-social-grid figure:nth-of-type(2) {
    grid-column: 2 / span 1;
    justify-self: start;
    max-width: 20rem;
    margin-top: clamp(2rem, 6vh, 4rem);
  }
}

@media (min-width: 900px) {
  .job-dating-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }
  .job-pair figure:last-child { margin-top: clamp(2rem, 7vh, 5rem); }

  .job-work-grid {
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
  }

  .job-social-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr) minmax(0, 0.42fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
  .job-social-grid .job-copy { grid-column: auto; padding-top: clamp(1rem, 4vh, 3rem); }
  .job-social-grid figure:nth-of-type(1) { grid-column: auto; max-width: 20rem; }
  .job-social-grid figure:nth-of-type(2) {
    grid-column: auto;
    max-width: 20rem;
    margin-top: clamp(2.5rem, 9vh, 6.5rem);
  }

  .job-self-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: end;
  }
  .job-self .job-copy { padding-bottom: clamp(1rem, 4vh, 3rem); }
}

/* ============================================================
   7. WARDROBE
   ============================================================ */

.wardrobe { padding: clamp(3.5rem, 8vh, 6rem) 0; }
.wardrobe-grid { display: grid; gap: clamp(1.75rem, 4vh, 2.5rem); }
.wardrobe-copy h2 { max-width: 22ch; margin-bottom: 0.9rem; }
.wardrobe-copy p { max-width: 34ch; }
.wardrobe-grid img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

@media (min-width: 560px) {
  .wardrobe-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .wardrobe-copy { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .wardrobe-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr) minmax(0, 0.6fr);
    gap: clamp(2rem, 4vw, 3.25rem);
  }
  .wardrobe-copy { grid-column: auto; }
  .wardrobe-b { margin-top: clamp(2.5rem, 8vh, 5.5rem); }
}

/* ============================================================
   8. SERIES — one man, one shoot, five frames
   ============================================================ */

.series {
  background: var(--paper-2);
  padding: clamp(3.5rem, 9vh, 6rem) 0;
  border-block: 1px solid var(--line);
}
.series-head { margin-bottom: clamp(2rem, 5vh, 3rem); }
.series-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  max-width: 22ch;
}

.series-grid { display: grid; gap: clamp(0.6rem, 1.5vw, 1.1rem); }
.series-grid img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.series-grid button {
  display: block; width: 100%;
  border: 0; padding: 0; margin: 0;
  background: var(--paper); cursor: zoom-in; overflow: hidden;
}
.series-grid button img { transition: transform 0.8s var(--ease); }
.series-grid button:hover img { transform: scale(1.03); }

.series-grid figcaption {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-style: normal;
}
.series-grid .num {
  font-family: var(--font-body);
  font-size: var(--fs-label); font-weight: 600;
  letter-spacing: 0.1em; color: var(--ink);
}

.series-note {
  align-self: start;
  padding-top: 0.5rem;
}
.series-note p { font-size: var(--fs-sm); color: var(--muted); }
.series-note p + p { margin-top: 0.9rem; }

@media (min-width: 560px) {
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .series-note { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .series-grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }
  .series-1 { grid-column: 1 / 6; }
  .series-2 { grid-column: 6 / 9; margin-top: clamp(2.5rem, 8vh, 5.5rem); }
  .series-3 { grid-column: 9 / 13; margin-top: clamp(1rem, 3vh, 2.25rem); }
  .series-4 { grid-column: 3 / 6; margin-top: clamp(1rem, 3vh, 2.25rem); }
  .series-5 { grid-column: 6 / 10; }
  .series-note {
    grid-column: 10 / 13;
    margin-top: clamp(1rem, 3vh, 2.25rem);
  }
  .series-note p { max-width: 26ch; }
}

/* ============================================================
   9. COMPARE — the same face, a different shoot
   ============================================================ */

.compare { padding: clamp(3.5rem, 9vh, 6rem) 0; }
.compare-head { margin-bottom: clamp(2rem, 5vh, 3rem); }
.compare-head h2 { max-width: 22ch; }
.compare-head .lead { max-width: 46ch; }

.compare-grid { display: grid; gap: clamp(1.75rem, 4vh, 2.25rem); }

/* Identical frames on purpose: a comparison is only readable when every pair
   is shown at the same size. */
.compare-slider {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-2);
  user-select: none;
}
.compare-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  pointer-events: none;
}
.compare-slider .after { clip-path: inset(0 0 0 48%); }

.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 48%;
  width: 1px; background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
}
.compare-handle span {
  position: absolute; top: 50%; left: 50%;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}
.compare-handle span::after {
  content: "‹ ›";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: -1px; color: var(--ink);
}

.compare-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0; padding: 0; border: 0;
  opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none;
  background: transparent;
  touch-action: pan-y;
}
.compare-range:focus { outline: none; }
.compare-range:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -4px;
}

.compare-tags {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 2.5rem 0.7rem 0.6rem;
  font-size: 0.625rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(to bottom, rgba(12, 12, 10, 0) 0%, rgba(12, 12, 10, 0.42) 55%, rgba(12, 12, 10, 0.78) 100%);
  pointer-events: none;
}

.compare-meta { padding-top: 0.85rem; }
.compare-meta h3 { font-size: 1.15rem; margin: 0 0 0.25rem; }
.compare-meta p { margin: 0; font-size: var(--fs-sm); color: var(--muted); }

@media (min-width: 760px) {
  .compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 2rem);
    align-items: start;
  }
}

/* ============================================================
   10. AUTHORITY — a quiet band
   ============================================================ */

.authority { padding: clamp(3.5rem, 9vh, 6rem) 0; }
.authority-grid { display: grid; gap: 0.5rem; }
.authority h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.9rem; }
.authority-body p { max-width: 42ch; }
.authority-body p + p { margin-top: 0.75rem; }
.authority-body .link-arrow { margin-top: 0.5rem; }

.authority-figure { margin: 1.25rem 0 1.75rem; max-width: 20rem; }
.authority-figure img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

@media (min-width: 900px) {
  .authority-grid {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr) minmax(0, 0.5fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
  .authority .label { margin: 0; }
  .authority-body { grid-column: 2; grid-row: 1; }
  .authority-figure { grid-column: 3; grid-row: 1; margin: 0; max-width: 24rem; }
}

/* ============================================================
   11. PRICING — editorial rows + one quiet portrait
   ============================================================ */

.pricing {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding: clamp(3.5rem, 9vh, 6rem) 0;
}
.pricing-grid { display: grid; gap: clamp(2rem, 5vh, 3rem); }
.pricing-aside h2 { max-width: 20ch; }
.pricing-figure { display: none; }

.price-rows { border-bottom: 1px solid var(--line); }

.price-row {
  display: grid; gap: 0.15rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.price-name {
  margin: 0;
  font-size: var(--fs-label); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap;
}
.price-chip {
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  padding: 0.1rem 0.45rem;
  border-radius: 2px;
}
.price-hours {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em;
}
.price-sum {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em;
}
.price-sum s { font-size: 0.9rem; color: var(--muted); margin-left: 0.4rem; }
.price-desc {
  margin: 0.75rem 0 0;
  font-size: var(--fs-sm); color: var(--muted);
  max-width: 42ch;
}
.price-act { margin: 1rem 0 0; }

/* Chosen package: a hairline marker, not a SaaS selection card. */
.price-row.is-picked { background: var(--paper-3); }
.price-row.is-picked:not(.price-row-focus) {
  border-left: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
  padding-left: clamp(0.75rem, 2vw, 1.25rem);
}
.price-row.is-picked .price-act::after {
  content: "выбрано";
  margin-left: 0.8rem;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-row-focus {
  background: var(--paper-3);
  border-left: 2px solid var(--accent);
  padding: 1.75rem clamp(1rem, 2.5vw, 1.5rem);
  margin-block: 0.25rem;
}
.price-row-focus .price-hours,
.price-row-focus .price-sum { font-size: clamp(1.7rem, 3.1vw, 2.45rem); }
.price-row-focus .price-hours { color: var(--accent); }

.price-note {
  margin: 1.5rem 0 0;
  font-size: var(--fs-xs); color: var(--muted);
  max-width: 52ch;
}

@media (min-width: 560px) {
  .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name  sum"
      "hours sum"
      "desc  desc"
      "act   act";
    column-gap: clamp(1.5rem, 4vw, 3rem);
    align-items: baseline;
  }
  .price-name { grid-area: name; }
  .price-hours { grid-area: hours; }
  .price-sum { grid-area: sum; text-align: right; }
  .price-desc { grid-area: desc; }
  .price-act { grid-area: act; }
}

@media (min-width: 1000px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }
  .pricing-figure {
    display: block;
    margin-top: clamp(2rem, 5vh, 3rem);
    max-width: 18rem;
  }
  .pricing-figure img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
}

/* ============================================================
   12. REVIEWS — one dominant, two quiet
   ============================================================ */

.reviews { padding: clamp(3.5rem, 9vh, 6rem) 0; }

.review-lead { margin: 0; padding: 0; border: 0; }
.review-lead p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 2.55rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.022em;
  max-width: 30ch;
  margin: 0 0 1.25rem;
}
.review-lead footer { font-size: var(--fs-sm); font-weight: 600; }
.review-lead footer span { font-weight: 400; color: var(--muted); }

.review-pair {
  display: grid; gap: 1.5rem;
  margin-top: clamp(2.5rem, 7vh, 4rem);
}
.review-pair blockquote {
  margin: 0; padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review-pair p { margin: 0 0 0.6rem; font-size: var(--fs-sm); color: var(--muted); }
.review-pair footer { font-size: var(--fs-xs); color: var(--muted); }

.review-proof { margin-top: clamp(2rem, 5vh, 2.75rem); }

@media (min-width: 760px) {
  .review-pair {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    max-width: 46rem;
  }
}

/* ============================================================
   13. FAQ
   ============================================================ */

.faq-section {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding: clamp(3.5rem, 9vh, 6rem) 0;
}
.faq-grid { display: grid; gap: clamp(1.75rem, 4vh, 2.5rem); }
.faq-aside p.quiet { font-size: var(--fs-sm); max-width: 24ch; margin-top: 0.75rem; }

.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 52px;
  padding: 0.6rem 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-weight: 400; color: var(--muted);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 0 0 1.05rem;
  font-size: var(--fs-sm); color: var(--muted);
  max-width: 52ch;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }
  .faq-aside { position: sticky; top: calc(var(--admin-bar-h) + var(--header-h) + 2rem); }
}

/* ============================================================
   14. FINAL — the visual conclusion
   ============================================================ */

.final {
  background: var(--stage);
  color: var(--on-stage);
  /* Trailing room so #book-form can clear the sticky header. Without this,
     max scroll leaves the form tight under the bar — it feels like the
     anchor "didn't quite arrive". */
  padding-bottom: max(6rem, calc(var(--admin-bar-h) + var(--header-h) + 4rem));
}
.final-grid {
  display: grid; gap: clamp(2rem, 5vh, 3rem);
  padding: clamp(2.75rem, 7vh, 5rem) 0 clamp(3rem, 8vh, 5rem);
}
.final h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
  max-width: 21ch;
}
.final-sub { color: #c8c3b9; max-width: 42ch; margin: 1.1rem 0 0; text-wrap: pretty; }

.final-figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 20%; }
.final-figure figcaption { color: var(--on-stage-muted); }

.lead-form { margin-top: clamp(1.75rem, 4vh, 2.5rem); max-width: 30rem; }
/* Carries the pricing-section decision into the form, so nobody picks twice. */
.form-pick {
  display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap;
  margin: 0 0 1rem;
  font-size: var(--fs-sm);
  color: var(--on-stage-muted);
}
.form-pick[hidden] { display: none; }
.form-pick strong { color: #fff; font-weight: 600; }
.form-pick a { color: var(--accent-on-stage); }

.lead-fields { display: grid; gap: 0.85rem; }
.lead-form label { display: grid; gap: 0.3rem; font-size: var(--fs-xs); color: var(--on-stage-muted); }
.lead-form input {
  min-height: 48px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-stage);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff; font: inherit;
  /* Anything under 16px makes iOS Safari zoom the page on focus. */
  font-size: max(16px, 1em);
}
.lead-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.lead-form input:focus,
.lead-form select:focus { border-color: rgba(255, 255, 255, 0.4); outline: none; }
.lead-form input:focus-visible,
.lead-form select:focus-visible {
  outline: 2px solid var(--accent-on-stage);
  outline-offset: 2px;
}
.lead-form .btn { margin-top: 1rem; }
.form-note {
  margin: 0.85rem 0 0;
  font-size: var(--fs-xs); color: #949087; max-width: 36ch;
}
.form-note a, .final-direct a { color: var(--accent-on-stage); }

.form-bait {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  margin: 0.85rem 0 0;
  font-size: var(--fs-sm); color: #fff; max-width: 36ch;
}
.form-status[data-state="error"] { color: #e8a49a; }
.lead-form.is-sending .btn { opacity: 0.6; pointer-events: none; }

.final-direct {
  margin-top: clamp(1.5rem, 4vh, 2rem);
  font-size: var(--fs-sm);
  color: var(--on-stage-muted);
}
/* Telegram / WhatsApp / phone are a primary path on a phone, so they need a
   thumb-sized hit area, not a 21px line of text. */
.final-direct a { display: inline-block; padding-block: 0.7rem; }

@media (min-width: 560px) {
  .lead-fields { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (min-width: 900px) {
  .final-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.76fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
    padding-block: clamp(3.5rem, 9vh, 6rem);
  }
  .final-figure img { aspect-ratio: 2 / 3; object-position: center 15%; }
}

@media (max-width: 899px) {
  .final-figure { order: -1; }
}

/* ============================================================
   footer / sticky CTA / lightbox
   ============================================================ */

.site-footer {
  /* No reserve for the sticky CTA: it is already hidden by the time the
     footer can be on screen, so a 5rem gap just dangles under the page. */
  padding: 1.5rem 0 calc(2.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--muted);
  background: var(--paper);
}
.footer-row {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem 1.5rem; justify-content: space-between;
}
.footer-row p { margin: 0; }
.footer-links a {
  display: inline-flex; align-items: center;
  min-height: 34px; margin-right: 1rem;
  color: var(--muted); text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 35;
  display: flex; align-items: stretch; gap: 0.5rem;
  padding: 0.6rem 1.25rem calc(0.6rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.sticky-cta[hidden] { display: none; }
.sticky-cta .btn { flex: 1 1 auto; min-height: 46px; }
.sticky-tg {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 52px; border: 1px solid var(--line); border-radius: 2px;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.06em;
  color: var(--muted); text-decoration: none;
}
.sticky-tg:hover { color: var(--ink); border-color: var(--ink); }

.lightbox {
  position: fixed; inset: var(--admin-bar-h) 0 0; z-index: 80;
  background: rgba(10, 10, 9, 0.94);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 0.5rem;
  padding: 1rem;
  padding-top: max(1rem, env(safe-area-inset-top));
}
.lightbox[hidden] { display: none; }
.lightbox figure { max-height: calc(90vh - var(--admin-bar-h)); display: grid; justify-items: center; }
.lightbox img {
  max-height: calc(82vh - var(--admin-bar-h)); width: auto;
  max-width: min(760px, 92vw);
  object-fit: contain;
}
.lightbox figcaption {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-xs); font-style: normal;
  display: flex; gap: 1rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  border: 0; background: transparent; color: #fff;
  font-size: 1.9rem; line-height: 1; cursor: pointer;
  min-width: 44px; min-height: 44px;
}
.lightbox-close { position: absolute; top: 0.75rem; right: 0.75rem; }
body.lightbox-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .site-footer { padding-bottom: 2rem; }
  .sticky-cta { display: none !important; }
}

/* ============================================================
   motion — reveals only; the page is complete without them
   ============================================================ */

.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* The wipe lives on the image, never on the observed element: a clip-path on
   the target itself zeroes its intersection rect, so the observer that is
   supposed to un-hide it would never fire. */
.reveal-mask img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.95s var(--ease);
}
.reveal-mask.is-in img { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-mask img, .strip img, .series-grid button img, .btn, .directives li, .direct-stack img {
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-mask img { clip-path: none; }
  .directives li { opacity: 1 !important; }
  .strip button:hover img,
  .series-grid button:hover img { transform: none; }
}

/* ============================================================
   model portfolio — range mosaic, formats, publications, routes
   ============================================================ */

.range { padding: 4.5rem 0 3.5rem; }
.range-head { max-width: 38rem; margin-bottom: 2rem; }
.range-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
}
.range-grid button {
  padding: 0; border: 0; background: none; cursor: zoom-in;
  display: block; width: 100%;
}
.range-grid button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.range-grid img {
  width: 100%; height: 100%; object-fit: cover;
}
.range-grid figure { margin: 0; height: 100%; }
.range-grid figcaption {
  font-size: var(--fs-label); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.4rem;
}
.range-cell { min-height: 0; }
.range-cell img { aspect-ratio: 2 / 3; }
.range-cell-wide img { aspect-ratio: 3 / 2; }
@media (min-width: 900px) {
  .range-grid {
    grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.65rem;
  }
  .range-span2 { grid-column: span 2; }
  .range-cell-tall { grid-row: span 2; }
  .range-cell-tall img { aspect-ratio: auto; height: 100%; }
}

.need { padding: 4rem 0; border-top: 1px solid var(--line); }
.need-grid {
  display: grid;
  gap: 1.75rem 2.5rem;
}
@media (min-width: 820px) {
  .need-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.need-item h3 { margin-bottom: 0.5rem; }
.need-item p { color: var(--muted); margin: 0; }

.formats { background: var(--stage); color: var(--on-stage); padding: 4.5rem 0; }
.formats .label { color: var(--on-stage-muted); }
.formats h2 { color: var(--on-stage); }
.formats-lead { color: var(--on-stage-muted); max-width: 36rem; margin: 0.75rem 0 2.25rem; }
.formats-list { display: grid; gap: 0; border-top: 1px solid var(--line-stage); }
.formats-item {
  display: grid;
  gap: 0.35rem 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-stage);
}
@media (min-width: 820px) {
  .formats-item { grid-template-columns: 9rem 1fr; align-items: start; }
}
.formats-item h3 {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-on-stage);
}
.formats-item p { margin: 0; color: var(--on-stage-muted); max-width: 36rem; }

.pub { padding: 4.5rem 0; }
.pub-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .pub-grid { grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: 1.5rem; }
}
.pub-copy { max-width: 32rem; }
.pub-frames {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.pub-frames img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.pub-frames .pub-cover img { aspect-ratio: 3 / 4; }
.pub-credit {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 0.75rem;
}

.routes { padding: 0 0 4rem; }
.routes-row {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
@media (min-width: 700px) {
  .routes-row { grid-template-columns: 1fr 1fr; }
}
.routes a { color: var(--ink); }
.routes p { color: var(--muted); margin: 0.35rem 0 0; }

.lead-fields select {
  font: inherit;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--paper-3);
  color: var(--ink);
  border-radius: 0;
}
.lead-fields select:focus-visible { outline: 2px solid var(--accent-on-stage); outline-offset: 2px; }

.process .steps { grid-template-columns: 1fr; }
@media (min-width: 820px) {
  .process .steps { grid-template-columns: 1fr 1fr; gap: 0 2rem; }
  .process .steps li { border-top: 1px solid var(--line); }
}
@media (min-width: 1100px) {
  .process .steps { grid-template-columns: repeat(4, 1fr); }
}

.series { padding: 4rem 0 2rem; }

.faq { padding: 3.5rem 0 1rem; }

/* ============================================================
   horse landing — logistics, riding, case, iceland, who
   ============================================================ */

@media (min-width: 900px) {
  .range-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .range-span2 { grid-column: auto; }
}

.riding-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 900px) {
  .riding-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
}
.riding-figure button {
  padding: 0; border: 0; background: none; cursor: zoom-in; display: block; width: 100%;
}
.riding-figure img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 45% 12%;
}

.case-head { max-width: 38rem; margin-bottom: 1.75rem; }
.case-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
}
.case-grid button {
  padding: 0; border: 0; background: none; cursor: zoom-in; display: block; width: 100%;
}
.case-grid img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 18%;
}
.case-a { grid-column: 1 / -1; }
.case-a img { aspect-ratio: 3 / 4; object-position: center 20%; }
@media (min-width: 900px) {
  .case-grid {
    grid-template-columns: 1.15fr 0.9fr 0.9fr;
    grid-template-rows: auto auto;
  }
  .case-a { grid-column: 1; grid-row: 1 / span 2; }
  .case-a img { aspect-ratio: auto; height: 100%; }
}
.case-note { margin: 1.25rem 0 0; }

.iceland {
  background: var(--stage);
  color: var(--on-stage);
  padding: 4.5rem 0 0;
}
.iceland .label { color: var(--on-stage-muted); }
.iceland h2 { color: var(--on-stage); }
.iceland-head { padding-bottom: 2rem; }
.iceland-copy {
  color: var(--on-stage-muted);
  max-width: 38rem;
  margin: 0.85rem 0 0;
}
.iceland-grid {
  display: grid;
  gap: 0.4rem;
}
.iceland-grid button {
  padding: 0; border: 0; background: none; cursor: zoom-in; display: block; width: 100%;
}
.iceland-grid img {
  width: 100%;
  object-fit: cover;
}
.ice-wide img {
  aspect-ratio: 3 / 2;
  object-position: center 40%;
}
.iceland-grid button:not(.ice-wide) img {
  aspect-ratio: 2 / 3;
  object-position: center 18%;
}
@media (min-width: 900px) {
  .iceland-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ice-wide { grid-column: 1 / -1; }
}

.who { padding: 4.5rem 0 3rem; }
.who-head { max-width: 36rem; margin-bottom: 1.75rem; }
.who-grid {
  display: grid;
  gap: 0.65rem;
}
.who-grid img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 16%;
}
.who-grid button {
  padding: 0; border: 0; background: none; cursor: zoom-in; display: block; width: 100%;
}
.who-grid figcaption { margin-top: 0.55rem; }
.who-note { margin-top: 1.5rem; max-width: 46rem; }
@media (min-width: 800px) {
  .who-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.process-prep {
  margin-top: 1.75rem;
  max-width: 46rem;
}
.trust-line {
  margin-top: 1.1rem;
  max-width: 46rem;
}

.range-grid img { object-position: center 14%; }
.case-grid .case-d img { object-position: center 22%; }
.pricing-figure img { object-position: center 18%; }

.lead-form select {
  min-height: 48px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-stage);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  font-size: max(16px, 1em);
  width: 100%;
}
.lead-form select:focus { border-color: rgba(255, 255, 255, 0.4); outline: none; }

@media (max-width: 899px) {
  .iceland-head { width: var(--rail-w); margin-inline: auto; }
}

@media (max-width: 360px) {
  .hero { --hero-h: min(calc(100vw * 1.05), 50vh); }
  .hero-facts-row { font-size: 0.72rem; gap: 0 0.55rem; }
  .h1-main { font-size: 1.5rem; }
  .hero-copy { padding-top: 1rem; }
  .hero-sub { margin-top: 0.85rem; }
  .hero-cta { margin-top: 1.15rem; }
}

/* ============================================================
   art landing — definition, idea, extras, authority, crops
   ============================================================ */

.define { padding: 4.5rem 0 3rem; }
.define-grid { display: grid; gap: 1.75rem; }
.define-copy { max-width: 38rem; }
.define-copy em { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.define-figure button {
  padding: 0; border: 0; background: none; cursor: zoom-in; display: block; width: 100%;
}
.define-figure img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 18%;
}
@media (min-width: 900px) {
  .define-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
}

.idea .formats-list { border-top-color: var(--line); margin-top: 2rem; }
.idea .formats-item { border-bottom-color: var(--line); }
.idea .formats-item h3 { color: var(--ink); }
.idea .formats-item p { color: var(--muted); }

.range-more { margin: 1.35rem 0 0; }

/* Range: square opener + landscape closer so the mosaic is not six identical 2:3 tiles. */
.range-cell-sq,
.range-cell-wide { grid-column: 1 / -1; }
.range-grid .range-cell-sq img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-position: center 42%;
}
.range-grid .range-cell-wide img {
  height: auto;
  aspect-ratio: 3 / 2;
  object-position: center 38%;
}
.range-grid img { object-position: center 28%; }
@media (min-width: 900px) {
  .range-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: unset;
  }
  .range-cell-sq,
  .range-cell-wide { grid-column: 1 / -1; }
}

.define-figure { min-width: 0; width: 100%; }
.define-figure button { width: 100%; }

.case-mirrors img { object-position: center 46%; }
.case-mirrors .case-c img { object-position: center 58%; }
.case-mirrors .case-d img { object-position: center 40%; }
@media (max-width: 899px) {
  .case-mirrors .case-d { grid-column: 1 / -1; }
  .case-mirrors .case-d img { aspect-ratio: 3 / 4; }
}
@media (min-width: 900px) {
  .case-mirrors .case-d {
    grid-column: 2 / span 2;
    grid-row: 2;
  }
  .case-mirrors .case-d img {
    aspect-ratio: 3 / 2;
    height: auto;
    object-position: center 58%;
  }
}

@media (max-width: 899px) {
  .iceland-grid { grid-template-columns: 1fr 1fr; }
  .ice-wide { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .ice-wide img {
    aspect-ratio: 2.15 / 1;
    max-height: 64vh;
    object-position: center 62%;
  }
  .iceland-grid button:last-child img { object-position: center 58%; }
}

.iceland a { color: var(--on-stage); }
.iceland a:hover { color: #fff; }
.formats a { color: var(--on-stage); }
.formats a:hover { color: #fff; }

.extras {
  margin-top: clamp(2rem, 5vh, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 40rem;
}
.extras h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.85rem;
}
.extras-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.extras-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
}

.authority { padding: 4.5rem 0 3rem; }
.authority-copy { max-width: 38rem; }
.authority-copy p + p { margin-top: 0.85rem; }
.authority-figure img {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 12%;
}
@media (min-width: 900px) {
  .authority-grid {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  .authority-figure {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    max-width: none;
  }
  .authority-copy { grid-column: 2; grid-row: 1; }
  .authority-figure img { max-width: none; }
}

.pricing-figure img {
  aspect-ratio: 3 / 2;
  object-position: center 42%;
}

@media (min-width: 560px) {
  .lead-fields label:nth-child(3) { grid-column: 1 / -1; }
}

.final .btn {
  background: var(--on-stage);
  color: var(--stage);
}
.final .btn:hover {
  background: #fff;
  color: var(--stage);
}
.final .lead-fields select {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--line-stage);
}
.final .lead-fields select option { color: #161614; background: #fff; }

.hero-figure-main img { object-position: 50% 18%; }
@media (min-width: 900px) {
  .hero-figure-alt { margin-top: clamp(48px, 10vh, 110px); }
  .hero-figure-alt img {
    height: clamp(260px, 42vh, 430px);
    object-position: 52% 18%;
  }
}

/* Photographs must be visible without JS. */
.reveal { opacity: 1; transform: none; }
.reveal-mask img { clip-path: none; }

.range-grid .range-cell-sq img {
  height: auto;
  width: min(100%, 72vh);
  max-height: min(72vh, 680px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center 42%;
  margin-inline: auto;
}

.case-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.case-portraits .case-a,
.case-portraits .case-b,
.case-portraits .case-c,
.case-portraits .case-d {
  grid-column: auto;
  grid-row: auto;
}
.case-portraits img {
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.case-portraits .case-a img { object-position: 50% 18%; }
.case-portraits .case-b img { object-position: 50% 16%; }
.case-portraits .case-c img { object-position: 50% 22%; }
.case-portraits .case-d img { object-position: 50% 12%; }
@media (min-width: 900px) {
  .case-portraits { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.quote-block {
  margin: 1.75rem 0 0;
  max-width: 40rem;
}
.quote-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}
.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.range-cell img.pos-face { object-position: 50% 16%; }
.range-cell img.pos-face-sq { object-position: 50% 42%; }
.range-cell img.pos-half { object-position: 50% 20%; }
.define-figure img { object-position: 48% 18%; aspect-ratio: 2/3; object-fit: cover; width: 100%; }
.final-figure img { object-position: 50% 16%; }

.clothes-note { max-width: var(--measure); }
.formats .clothes-note,
.formats .clothes-note.quiet {
  color: var(--on-stage-muted);
  margin-top: 1.5rem;
}
.formats .clothes-note a { color: var(--on-stage); }

@media (max-width: 899px) {
  .pricing,
  .authority,
  .faq,
  .place,
  .formats {
    padding-bottom: calc(5.5rem + var(--sticky-pad, 0px));
  }
  .price-note {
    padding-bottom: 0.5rem;
  }
  .faq details:last-of-type {
    padding-bottom: 0.75rem;
  }
}

@media (max-width: 430px) {
  .hero-figure-main img { object-position: 50% 14%; }
}
