/* Hallmark · genre: editorial · macrostructure: Photographic · theme: Atelier
 * enrichment: none (real photography) · nav: N9 edge-aligned · footer: Ft1 mast-headed
 * hero: H6 photographic fold · persistent CTA: C4 sticky bottom bar
 * tone: luxury · audience: SoCal event hosts & planners · use: drive a text or a DM
 * pre-emit critique: P5 H5 E5 S5 R5 V4
 */

/* ─────────────────────────────────────────────────────────────
   1 · Reset & base
   ───────────────────────────────────────────────────────────── */

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

html, body {
  overflow-x: clip;          /* clip, never hidden — hidden breaks position:sticky */
  max-width: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-style: normal;                    /* display type is always roman */
  font-optical-sizing: auto;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  overflow-wrap: anywhere;
  min-width: 0;
  margin: 0;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

img, picture, video { display: block; max-width: 100%; }

a { color: inherit; }

::selection {
  background: var(--color-accent-ink);
  color: var(--color-paper);
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
  /* Never animate a focus ring — it must appear the instant focus lands. */
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100%;
  z-index: 100;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-ink);
  color: var(--color-paper);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  text-decoration: none;
}
.skip-link:focus-visible { top: var(--space-md); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────
   2 · Shared type voice
   ───────────────────────────────────────────────────────────── */

.label {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0;
}

.lede {
  font-size: var(--text-xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-tight);
  max-width: var(--measure);
  text-wrap: pretty;
}

.prose {
  max-width: var(--measure);
  color: var(--color-neutral);
  text-wrap: pretty;
}

.prose + .prose { margin-top: var(--space-md); }
.lede + .prose { margin-top: var(--space-lg); }

/* Typographic link (C3) — the editorial button voice. The rule under the
   word is drawn with a gradient so it can retract on hover without reflow. */
.tlink {
  display: inline-block;
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent-ink);
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: background-size var(--dur-base) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.tlink:hover { background-size: 0% 1px; color: var(--color-ink); }
.tlink:active { color: var(--color-accent); }

/* Solid CTA — used sparingly: nav, contact fold, sticky bar. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.7rem 1.15rem;
  background: var(--color-ink);
  color: var(--color-paper);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;              /* never let a button wrap to two lines */
  border: var(--rule-hair) solid var(--color-ink);
  border-radius: var(--radius-input);
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:hover { background: var(--color-accent); border-color: var(--color-accent); }
.btn:active { transform: translateY(1px); }

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

/* ─────────────────────────────────────────────────────────────
   3 · N9 · Edge-aligned nav — wordmark hard left, one CTA hard right.
   The emptiness between them is the design; no link row goes there.
   ───────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--page-gutter);
  color: var(--color-on-photo);
  border-bottom: var(--rule-hair) solid transparent;
  transition: background-color var(--dur-slow) var(--ease-out),
              color var(--dur-slow) var(--ease-out),
              border-color var(--dur-slow) var(--ease-out);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  text-decoration: none;
  line-height: 1.1;
}

.nav__cta {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.55rem 0.95rem;
  border: var(--rule-hair) solid currentColor;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.nav__cta:hover {
  background: var(--color-on-photo);
  color: var(--color-ink);
}

/* Past the hero the nav lands on paper and inverts. */
.nav.is-solid {
  background: var(--color-paper);
  color: var(--color-ink);
  border-bottom-color: var(--color-rule);
}
.nav.is-solid .nav__cta:hover {
  background: var(--color-ink);
  color: var(--color-paper);
}

/* ─────────────────────────────────────────────────────────────
   4 · H6 · Photographic fold — the image is the fold; the edge is the divider.
   ───────────────────────────────────────────────────────────── */

.fold {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--color-photo-bed);
}

/* The photograph and its scrim are taken out of flow and pinned to the fold.
   As grid items with height:100% they hit a cyclic percentage-resolution case
   against the auto-sized implicit row, fell back to intrinsic height, and
   painted ~180px over the section below. Absolute positioning has no such
   ambiguity — the fold's own height is the only thing that decides the box. */
.fold picture,
.fold__scrim {
  position: absolute;
  inset: 0;
}

.fold picture { display: block; }

.fold__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.fold--hero {
  min-height: 33rem;
  height: 92svh;
  max-height: 54rem;
  display: grid;
}
.fold--hero > * { grid-area: 1 / 1; }

.fold--plate {
  height: clamp(24rem, 62svh, 40rem);
  display: grid;
}
.fold--plate > * { grid-area: 1 / 1; }

.fold__scrim { pointer-events: none; }

/* Hero darkens at BOTH ends: the nav sits on bare sky up top and was
   unreadable against it. Plates darken only where the caption lands, so the
   interiors — the actual proof the trailer is nice — stay bright. */
.fold--hero .fold__scrim  { background: var(--scrim-hero); }
.fold--plate .fold__scrim { background: var(--scrim-plate); }

.fold__body {
  position: relative;      /* paint above the absolutely-placed photograph */
  z-index: 1;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-2xl) var(--page-gutter) var(--space-3xl);
  color: var(--color-on-photo);
  max-width: 46rem;
}

.fold__label {
  color: var(--color-on-photo-soft);
  line-height: 1.4;    /* if it ever wraps, keep it clear of the headline above */
}

.fold__title {
  font-size: var(--text-display);
  text-wrap: balance;
}

.fold__lede {
  color: var(--color-on-photo-soft);
  max-width: var(--measure-narrow);
  font-size: var(--text-lg);
  line-height: var(--lh-snug);
}

.fold__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-lg);
  margin-top: var(--space-xs);
}

.btn--on-photo {
  background: var(--color-paper);
  color: var(--color-ink);
  border-color: var(--color-paper);
}
.btn--on-photo:hover {
  background: var(--color-accent-ink);
  border-color: var(--color-accent-ink);
  color: var(--color-paper);
}

.tlink--on-photo { color: var(--color-on-photo); }
.tlink--on-photo:hover { color: var(--color-on-photo-soft); }

/* Plate caption — factual, cornered, never a marketing line. */
.fold__caption {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  margin: 0;
  padding: var(--space-lg) var(--page-gutter);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-on-photo-soft);
  text-align: right;
}

/* ─────────────────────────────────────────────────────────────
   5 · Text bands — narrow measure between the photographs.
   Padding deliberately varies band to band; even padding reads templated.
   ───────────────────────────────────────────────────────────── */

.band {
  padding-block: var(--section-gap);
  padding-inline: var(--page-gutter);
}

.band__inner {
  max-width: var(--page-max);
  margin-inline: auto;
}

.band--tight { padding-block: calc(var(--section-gap) * 0.62); }

/* Standalone pages (404) have no hero fold to sit beneath the fixed nav,
   so they carry their own top clearance. */
.band--plain { padding-top: var(--space-4xl); min-height: 60svh; }
.band--plain .prose { margin-top: var(--space-lg); }
.band--plain .foot__links { margin-top: var(--space-xl); }
.band--sunk  { background: var(--color-paper-2); }
.band--ink   { background: var(--color-ink); color: var(--color-paper); }
.band--ink .label { color: var(--color-rule); }
.band--ink .prose { color: var(--color-paper-3); }

/* Section head — tag stacked ABOVE the heading in one column.
   The tag-left / heading-right split is the templated-editorial tell. */
.head { margin-bottom: var(--space-xl); }
.head .label { margin-bottom: var(--space-sm); }
.head__title {
  font-size: var(--text-display-s);
  max-width: 20ch;
  text-wrap: balance;
}
.head__note {
  margin-top: var(--space-md);
  max-width: var(--measure);
  color: var(--color-neutral);
}
.band--ink .head__note { color: var(--color-paper-3); }

/* Asymmetric two-column prose — 5:7, not 6:6. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--space-2xl) var(--space-3xl);
  align-items: start;
}

/* ─────────────────────────────────────────────────────────────
   6 · Spec sheet (F3) — hairline rows, not icon tiles.
   ───────────────────────────────────────────────────────────── */

.spec { border-top: var(--rule-hair) solid var(--color-rule); }

.spec__row {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: var(--space-xs) var(--space-xl);
  padding-block: var(--space-lg);
  border-bottom: var(--rule-hair) solid var(--color-rule);
}

.spec__term {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-accent-ink);
  padding-top: 0.28rem;
}

.spec__def {
  margin: 0;
  color: var(--color-neutral);
  max-width: var(--measure);
}

.band--ink .spec { border-top-color: var(--color-rule-2); }
.band--ink .spec__row { border-bottom-color: var(--color-rule-2); }
.band--ink .spec__def { color: var(--color-paper-3); }

/* ─────────────────────────────────────────────────────────────
   7 · Events index — a list with hairlines, read as an index not a grid.
   ───────────────────────────────────────────────────────────── */

.index { border-top: var(--rule-hair) solid var(--color-rule); }

.index__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: var(--space-2xs) var(--space-xl);
  align-items: baseline;
  padding-block: var(--space-lg);
  border-bottom: var(--rule-hair) solid var(--color-rule);
}

.index__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-snug);
}

.index__note {
  color: var(--color-neutral);
  font-size: var(--text-base);
  max-width: 46ch;
}

/* This index lives on the ink band, so its ink-on-paper colours have to invert
   — neutral-on-ink was effectively unreadable. */
.band--ink .index { border-top-color: var(--color-rule-2); }
.band--ink .index__item { border-bottom-color: var(--color-rule-2); }
.band--ink .index__note { color: var(--color-paper-3); }

/* ─────────────────────────────────────────────────────────────
   8 · Step sequence (F4) — genuinely ordinal, so the numerals are content.
   Numeral sits above its heading, same column.
   ───────────────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: var(--space-2xl) var(--space-xl);
}

.step { border-top: 2px solid var(--color-accent-ink); padding-top: var(--space-md); }

.step__n {
  display: block;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  color: var(--color-accent-ink);
  margin-bottom: var(--space-sm);
  font-variant-numeric: tabular-nums;
}

.step__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.step__note { color: var(--color-neutral); font-size: var(--text-base); }
.band--ink .step__note { color: var(--color-paper-3); }

/* ─────────────────────────────────────────────────────────────
   9 · Coverage
   ───────────────────────────────────────────────────────────── */

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
  margin-top: var(--space-lg);
}

.areas li {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-neutral);
  padding: 0.42rem 0.7rem;
  border: var(--rule-hair) solid var(--color-rule);
}

/* ─────────────────────────────────────────────────────────────
   10 · FAQ — native disclosure, no JS, keyboard-operable for free.
   ───────────────────────────────────────────────────────────── */

.faq { border-top: var(--rule-hair) solid var(--color-rule); }

.faq__item { border-bottom: var(--rule-hair) solid var(--color-rule); }

.faq__q {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-lg);
  padding-block: var(--space-lg);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-snug);
  transition: color var(--dur-fast) var(--ease-out);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--color-accent-ink); }

.faq__sign {
  flex: none;
  font-family: var(--font-label);
  font-size: var(--text-lg);
  color: var(--color-accent-ink);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__item[open] .faq__sign { transform: rotate(45deg); }

.faq__a {
  padding-bottom: var(--space-lg);
  max-width: var(--measure);
  color: var(--color-neutral);
}
.faq__a p + p { margin-top: var(--space-sm); }

/* ─────────────────────────────────────────────────────────────
   11 · Contact fold
   ───────────────────────────────────────────────────────────── */

.contact__title {
  font-size: var(--text-display-s);
  max-width: 16ch;
  margin-bottom: var(--space-lg);
  text-wrap: balance;
}

.contact__list { margin-top: var(--space-xl); }

.contact__row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: var(--space-2xs) var(--space-xl);
  align-items: baseline;
  padding-block: var(--space-md);
  border-top: var(--rule-hair) solid var(--color-rule-2);
}

.contact__key {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-rule);
}

.contact__val {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  text-decoration: none;
  overflow-wrap: anywhere;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size var(--dur-base) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.contact__val:hover {
  background-size: 100% 1px;
  color: var(--color-accent-ink);
}

.contact__aside {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: var(--rule-hair) solid var(--color-rule-2);
  color: var(--color-paper-3);
  max-width: var(--measure);
}

/* ─────────────────────────────────────────────────────────────
   12 · Ft1 · Mast-headed footer
   ───────────────────────────────────────────────────────────── */

.foot {
  padding: var(--space-3xl) var(--page-gutter);
  /* Clear the persistent contact bar so it never covers the last line. */
  padding-bottom: calc(var(--space-3xl) + var(--bar-h));
  border-top: var(--rule-hair) solid var(--color-rule);
  background: var(--color-paper-2);
}

.foot__inner {
  max-width: var(--page-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: var(--space-xl) var(--space-2xl);
  align-items: end;
}

.foot__mast {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: var(--tracking-display);
  margin-bottom: var(--space-sm);
}

.foot__tagline { color: var(--color-muted); max-width: 34ch; }

.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-lg);
}

.foot__meta {
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
  border-top: var(--rule-hair) solid var(--color-rule);
  max-width: var(--page-max);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

/* ─────────────────────────────────────────────────────────────
   13 · C4 · Sticky contact bar — the whole funnel is a text or a DM,
   so the two ways to start one are always within thumb reach.
   ───────────────────────────────────────────────────────────── */

.bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 45;
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-inline: var(--page-gutter);
  background: var(--color-ink);
  color: var(--color-paper);
  border-top: var(--rule-hair) solid var(--color-accent-ink);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.bar.is-up { transform: translateY(0); }

.bar__note {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-paper-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar__actions { display: flex; align-items: center; gap: var(--space-sm); flex: none; }

.bar__link {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  border: var(--rule-hair) solid var(--color-rule-2);
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.bar__link:hover {
  background: var(--color-paper);
  color: var(--color-ink);
  border-color: var(--color-paper);
}
/* The single most important action on the site. Paper-on-ink rather than
   brass-on-ink — brass only cleared ~5:1 and read muddy at this size. */
.bar__link--key {
  background: var(--color-paper);
  border-color: var(--color-paper);
  color: var(--color-ink);
}
.bar__link--key:hover {
  background: var(--color-accent-ink);
  border-color: var(--color-accent-ink);
  color: var(--color-ink);
}

/* ─────────────────────────────────────────────────────────────
   14 · Responsive — verified at 320 / 375 / 414 / 768
   ───────────────────────────────────────────────────────────── */

@media (max-width: 60rem) {
  .split,
  .foot__inner { grid-template-columns: minmax(0, 1fr); }
  .foot__inner { align-items: start; }
  .index__item { grid-template-columns: minmax(0, 1fr); }
  .head__title { max-width: none; }
}

@media (max-width: 40rem) {
  :root { --bar-h: 3.25rem; }

  .spec__row,
  .contact__row { grid-template-columns: minmax(0, 1fr); }

  /* Let the hero grow with its copy, but keep enough of the photograph on
     screen that the fold still reads as photographic rather than as a banner.
     min() keeps it predictable when svh resolves oddly (iframes, in-app browsers). */
  .fold--hero { height: auto; min-height: min(84svh, 40rem); max-height: none; }
  .fold__body { padding-block: var(--space-4xl) var(--space-2xl); }

  /* 0.24em tracking pushed this eyebrow onto a second line at 320–390px. */
  .fold__label { letter-spacing: 0.16em; }
  .fold--plate { height: clamp(20rem, 56svh, 26rem); }

  .nav__cta {
    /* Long enough to wrap at 320px — the number lives in the sticky bar instead. */
    font-size: var(--text-xs);
    padding: 0.5rem 0.7rem;
  }

  .bar__note { display: none; }
  .bar { justify-content: stretch; }
  .bar__actions { flex: 1; }
  .bar__link { flex: 1; text-align: center; }

  .faq__q { font-size: var(--text-lg); }
  .index__name { font-size: var(--text-xl); }
  .contact__val { font-size: var(--text-xl); }
}

/* Desktop folds were cropping the photograph a second time: the file is already
   a 16:9 crop, then a fixed-height fold at ~2.25 made object-fit: cover shave
   another 20% off the top and bottom — so only about a third of the original
   frame survived and everything read zoomed in. Giving the fold the same 16:9
   ratio as the file means cover has nothing left to crop.

   Breakpoint matches the <picture> switch at 40em, and sits after the mobile
   block so it wins at the boundary. Mobile is deliberately untouched — the
   4:5 rendition in a portrait fold already frames correctly there. */
@media (min-width: 40em) {
  .fold--hero,
  .fold--plate {
    /* width must stay explicit: with aspect-ratio set, once max-height clamps
       the height Chrome derives the WIDTH from the ratio instead, and the
       full-bleed fold shrinks away from the viewport edge leaving a gutter. */
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Caps keep a fold inside the viewport on short screens. When one binds, the
     ratio gives and object-fit trims a little again — still far less than the
     fixed-height version it replaced. */
  .fold--hero  { min-height: 34rem; max-height: 94svh; }
  .fold--plate { max-height: 90svh; }
}

/* ─────────────────────────────────────────────────────────────
   15 · Reduced motion — spatial motion collapses to a short crossfade.
   ───────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 150ms !important;
  }

  .bar {
    transform: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 150ms linear, visibility 150ms linear;
  }
  .bar.is-up { opacity: 1; visibility: visible; }

  .faq__item[open] .faq__sign { transform: none; }
}
