/* ==========================================================================
   ARRION — cinematic dark system
   Warm near-black ground · aged gold · Fraunces / Inter / JetBrains Mono.
   Shared by / (index.html) and /booking/ (same theme; no variant needed).
   Type scale: exactly five sizes (--fs-1 … --fs-5).
   ========================================================================== */

/* ---------- 1. Tokens ---------- */

:root {
  /* cinematic warm-black elevation ramp */
  --bg:      #0B0A08;
  --elev-1:  #14130F;   /* cards, panels */
  --elev-2:  #1C1A14;   /* raised / hover */
  --fg:      #F2EEE6;   /* warm off-white */
  --fg-muted:#9C9587;   /* warm gray body */
  --fg-dim:  #6E695D;   /* captions */
  --gold:    #C4A265;
  --gold-soft:#D9BE8A;

  --hair:      rgba(242, 238, 230, 0.09);
  --hair-gold: rgba(196, 162, 101, 0.30);

  /* type — exactly five sizes, fluid */
  --fs-1: clamp(2.75rem, 1.15rem + 5.2vw, 5.5rem);
  --fs-2: clamp(1.9rem, 1.25rem + 2.1vw, 3rem);
  --fs-3: clamp(1.2rem, 1.05rem + 0.62vw, 1.5rem);
  --fs-4: 1.0625rem;
  --fs-5: 0.8125rem;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* layout */
  --wrap-max: 78rem;
  --wrap-pad: clamp(1.5rem, 5vw, 4rem);
  --gap: clamp(1.5rem, 3vw, 2.75rem);
  --space-section: clamp(5rem, 11vw, 9rem);

  color-scheme: dark;
}

/* ---------- 2. Base ---------- */

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

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

body {
  position: relative;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-4);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* film grain — the single biggest "expensive" tell. Fixed, faint, over everything. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: #0B0A08; }

a { color: inherit; }

:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }

[id] { scroll-margin-top: 6rem; }

/* ---------- 3. Typography ---------- */

h1, h2, h3, .wordmark, .contact-email, .statement p {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 400;
  color: var(--fg);
}

h1 {
  font-size: var(--fs-1);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.section-title {
  font-size: var(--fs-2);
  line-height: 1.12;
  letter-spacing: -0.012em;
  max-width: 24ch;
  margin-bottom: 1.5rem;
}

h3 { font-size: var(--fs-3); font-weight: 600; line-height: 1.28; }

.lead {
  font-size: var(--fs-3);
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 52ch;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: var(--fs-5);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: var(--gold);
  flex: none;
  opacity: 0.7;
}

/* ---------- 4. Layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-pad);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
}

.section {
  border-top: 1px solid var(--hair);
  padding-block: var(--space-section);
}

.section--panel { background: var(--elev-1); }

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

/* ---------- 5. Skip link ---------- */

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 100;
  padding: 0.8rem 1.4rem;
  background: var(--gold); color: #0B0A08;
  font-family: var(--font-mono); font-size: var(--fs-5);
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ---------- 6. Nav ---------- */

.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 10, 8, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hair);
}

.nav-row {
  display: flex; flex-wrap: wrap;
  align-items: baseline; justify-content: space-between;
  gap: 0.6rem 2rem; padding-block: 1.4rem;
}

.wordmark {
  display: inline-flex; align-items: center;
  font-size: var(--fs-3); font-weight: 600;
  letter-spacing: 0.01em; text-decoration: none;
}
.mark {
  width: 0.86em; height: 0.86em; flex: none;
  fill: var(--fg);
  transition: transform 440ms cubic-bezier(0.34, 1.45, 0.4, 1), fill 320ms ease;
}
/* the name unfolds out of the arrow on hover/focus */
.wordmark-text {
  display: inline-block; white-space: nowrap; overflow: hidden;
  max-width: 0; margin-left: 0; opacity: 0; transform: translateX(-6px);
  transition:
    max-width 500ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-left 500ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.wordmark:hover .mark,
.wordmark:focus-visible .mark { transform: translateY(-3px); fill: var(--gold); }
.wordmark:hover .wordmark-text,
.wordmark:focus-visible .wordmark-text {
  max-width: 9em; margin-left: 0.55rem; opacity: 1; transform: translateX(0);
}
/* touch devices have no hover — always show the name */
@media (hover: none) {
  .wordmark-text { max-width: 9em; margin-left: 0.55rem; opacity: 1; transform: none; }
}

.nav-links {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 0.35rem 0.9rem;
  font-family: var(--font-mono); font-size: var(--fs-5);
  letter-spacing: 0.15em; text-transform: uppercase;
}

.nav-links a { color: var(--fg-muted); text-decoration: none; transition: color 200ms ease; }
.nav-links a:hover { color: var(--fg); }
.nav-sep { color: var(--fg-dim); user-select: none; }

.nav-links a.nav-booking { color: var(--gold); }
.nav-links a.nav-booking:hover { color: var(--gold-soft); }

/* ---------- 7. Hero (cinematic) ---------- */

.hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  min-height: calc(94vh - 4.85rem);
  min-height: calc(94svh - 4.85rem);
  padding-block: clamp(5rem, 12vh, 8rem);
}

/* layered starfield — Orion in the ground */
.hero::before {
  content: ""; position: absolute; inset: -10%; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(242,238,230,0.7), transparent 50%),
    radial-gradient(1px 1px at 78% 16%, rgba(242,238,230,0.5), transparent 50%),
    radial-gradient(2px 2px at 88% 64%, rgba(196,162,101,0.6), transparent 50%),
    radial-gradient(1px 1px at 32% 78%, rgba(242,238,230,0.45), transparent 50%),
    radial-gradient(1.5px 1.5px at 64% 84%, rgba(196,162,101,0.5), transparent 50%),
    radial-gradient(1px 1px at 22% 52%, rgba(242,238,230,0.4), transparent 50%),
    radial-gradient(1px 1px at 46% 12%, rgba(196,162,101,0.55), transparent 50%),
    radial-gradient(1.5px 1.5px at 94% 38%, rgba(242,238,230,0.5), transparent 50%),
    radial-gradient(1px 1px at 6% 68%, rgba(242,238,230,0.4), transparent 50%),
    radial-gradient(1px 1px at 58% 40%, rgba(242,238,230,0.3), transparent 50%),
    radial-gradient(1px 1px at 70% 58%, rgba(242,238,230,0.35), transparent 50%),
    radial-gradient(1px 1px at 40% 62%, rgba(196,162,101,0.35), transparent 50%),
    radial-gradient(1px 1px at 16% 38%, rgba(242,238,230,0.3), transparent 50%),
    radial-gradient(1px 1px at 84% 80%, rgba(242,238,230,0.3), transparent 50%);
  animation: drift 140s linear infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-2.5%, -1.5%, 0); }
}

/* warm key light behind the headline */
.hero::after {
  content: ""; position: absolute; inset: -25%; pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 50% 44%, rgba(196,162,101,0.10), transparent 68%);
}

.hero .wrap { position: relative; z-index: 1; }
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::after {
  content: ""; width: 1.9rem; height: 1px;
  background: var(--gold); flex: none; opacity: 0.7;
}
.hero h1 { margin-inline: auto; }

.hero-sub {
  font-size: var(--fs-3); line-height: 1.5;
  color: var(--fg-muted); max-width: 46ch;
  margin: 2rem auto 0;
}

.cta-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1.25rem 2rem; margin-top: 2.75rem;
}

/* cinematic headline — words rise from behind a mask, in sequence, on load */
.hero h1 .word {
  display: inline-block; overflow: hidden; vertical-align: top;
  line-height: 1.04; padding-bottom: 0.12em; margin-bottom: -0.12em;
}
.hero h1 .word > span {
  display: inline-block; transform: translateY(118%);
  animation: wordRise 880ms cubic-bezier(0.2, 0.85, 0.25, 1) both;
}
@keyframes wordRise { to { transform: translateY(0); } }

/* scroll cue — a gold filament travelling down a hairline */
.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  width: 1px; height: 46px; overflow: hidden; z-index: 1;
  background: linear-gradient(to bottom, var(--hair-gold), transparent);
}
.scroll-cue::after {
  content: ""; position: absolute; left: 0; top: 0; width: 1px; height: 45%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: cueTravel 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes cueTravel {
  0% { transform: translateY(-100%); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(230%); opacity: 0; }
}

/* ---------- 8. Buttons & links ---------- */

.btn {
  display: inline-block; cursor: pointer;
  font-family: var(--font-mono); font-size: var(--fs-5); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  color: var(--fg); background: transparent;
  border: 1px solid var(--hair-gold);
  padding: 1.05rem 2.1rem;
  transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}
.btn:hover { background: var(--gold); color: #0B0A08; border-color: var(--gold); }

.btn--solid { background: var(--gold); color: #0B0A08; border-color: var(--gold); }
.btn--solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

.link-quiet {
  font-family: var(--font-mono); font-size: var(--fs-5); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg);
  text-decoration: underline; text-decoration-thickness: 1px;
  text-decoration-color: var(--hair-gold); text-underline-offset: 6px;
  transition: text-decoration-color 200ms ease, color 200ms ease;
}
.link-quiet:hover { color: var(--gold-soft); text-decoration-color: var(--gold); }

/* ---------- 8b. Overview video ---------- */
.video-frame {
  margin-top: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid var(--hair);
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transition: border-color 360ms ease;
}
.video-frame:hover { border-color: var(--hair-gold); }
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 9. Work cards (cinematic showcase) ---------- */

.work-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap); margin-top: clamp(2.5rem, 5vw, 4rem);
}

.card {
  position: relative; display: block; overflow: hidden;
  background: var(--elev-1);
  border: 1px solid var(--hair); text-decoration: none;
  transition: transform 360ms cubic-bezier(0.22,0.61,0.36,1), border-color 360ms ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--hair-gold); }

.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: saturate(0.88) brightness(0.82) contrast(1.02);
  transition: transform 600ms cubic-bezier(0.22,0.61,0.36,1), filter 600ms ease;
}
.card:hover .card-media img { transform: scale(1.04); filter: saturate(1) brightness(0.95) contrast(1.02); }

.card-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, var(--elev-1) 3%, rgba(11,10,8,0.35) 38%, transparent 72%);
}

.card-body { position: relative; padding: 1.4rem 1.6rem 1.7rem; }
.card-label {
  font-family: var(--font-mono); font-size: var(--fs-5);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.card-body h3 { margin-top: 0.55rem; }
.card-note { margin-top: 0.5rem; color: var(--fg-muted); max-width: 38ch; }
.card-arrow {
  position: absolute; top: 1.5rem; right: 1.6rem;
  font-family: var(--font-mono); color: var(--fg-dim);
  transition: color 300ms ease, transform 300ms ease;
}
.card:hover .card-arrow { color: var(--gold); transform: translate(3px, -3px); }

/* ---------- 10. Services (definition rhythm) ---------- */

.entries { margin-top: clamp(2.5rem, 5vw, 4rem); }

.entry {
  display: grid;
  grid-template-columns: auto minmax(0, 4fr) minmax(0, 7fr);
  column-gap: var(--gap); align-items: baseline;
  border-top: 1px solid var(--hair);
  padding-block: clamp(1.9rem, 4vw, 2.6rem);
  transition: background-color 280ms ease;
}
.entry:last-child { border-bottom: 1px solid var(--hair); }

.entry dt, .entry h3 {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-size: var(--fs-3); font-weight: 600; line-height: 1.28; max-width: 18ch;
}
.entry dd, .entry p { color: var(--fg-muted); max-width: 52ch; }
.entry-index {
  font-family: var(--font-mono); font-size: var(--fs-5);
  letter-spacing: 0.12em; color: var(--gold); align-self: start;
}

/* services accordion — native <details>, no JS, one open at a time */
.services-list { margin-top: clamp(2.5rem, 5vw, 4rem); }
.svc { border-top: 1px solid var(--hair); }
.svc:last-child { border-bottom: 1px solid var(--hair); }
.svc summary {
  display: flex; align-items: baseline; gap: var(--gap);
  padding-block: clamp(1.6rem, 3.5vw, 2.3rem);
  cursor: pointer; list-style: none;
}
.svc summary::-webkit-details-marker { display: none; }
.svc summary:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 4px; }
.svc-num {
  flex: none; width: 2.4rem;
  font-family: var(--font-mono); font-size: var(--fs-5);
  letter-spacing: 0.12em; color: var(--gold);
}
.svc-head { flex: 1 1 auto; }
.svc-title {
  display: block; font-family: var(--font-display); font-optical-sizing: auto;
  font-size: var(--fs-3); font-weight: 600; line-height: 1.28; color: var(--fg);
  transition: color 220ms ease;
}
.svc-tag { display: block; margin-top: 0.45rem; color: var(--fg-muted); }
.svc-toggle {
  flex: none; font-family: var(--font-mono); font-size: var(--fs-3); line-height: 1;
  color: var(--fg-muted);
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
}
.svc summary:hover .svc-title { color: var(--gold-soft); }
.svc[open] .svc-toggle { transform: rotate(45deg); color: var(--gold); }
.svc-body {
  margin-left: calc(2.4rem + var(--gap));
  padding-bottom: clamp(1.8rem, 4vw, 2.4rem);
}
.svc-body p { color: var(--fg-muted); max-width: 62ch; }
.svc[open] .svc-body { animation: svcReveal 380ms cubic-bezier(0.22, 0.61, 0.36, 1); }
@keyframes svcReveal { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- 11. Statement band ---------- */

.statement { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.statement p {
  font-size: var(--fs-2);
  line-height: 1.28; letter-spacing: -0.01em;
  max-width: 26ch;
}
.statement--wide p { max-width: 34ch; }

/* ---------- 12. The Firm ---------- */

.bio-grid { margin-top: clamp(2.5rem, 5vw, 4rem); row-gap: 2.5rem; }
.bio { grid-column: span 6; }
.bio--offset { margin-top: clamp(2rem, 4vw, 3.5rem); }
.bio-role { font-weight: 400; color: var(--fg-muted); }
.bio p { margin-top: 1rem; color: var(--fg-muted); max-width: 40ch; }

.firm-note {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--hair);
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.firm-note p { color: var(--fg-muted); max-width: 56ch; font-size: var(--fs-3); line-height: 1.5; }

/* About — contact block merged into the firm section */
.about-contact {
  margin-top: clamp(2.75rem, 5vw, 3.75rem);
  border-top: 1px solid var(--hair);
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* ---------- 13. Flagship plate (full-bleed cinematic) ---------- */

.plate {
  position: relative; overflow: hidden;
  background: var(--elev-1);
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  padding-block: clamp(7rem, 16vw, 12rem);
  text-align: center;
}
.plate::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 46% 60% at 50% 50%, rgba(196,162,101,0.12), transparent 70%),
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(196,162,101,0.5), transparent 50%),
    radial-gradient(1px 1px at 80% 26%, rgba(242,238,230,0.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 70% 74%, rgba(196,162,101,0.45), transparent 50%),
    radial-gradient(1px 1px at 30% 70%, rgba(242,238,230,0.35), transparent 50%);
}
.plate .wrap { position: relative; z-index: 1; }
.plate .eyebrow { justify-content: center; }
.plate .eyebrow::after {
  content: ""; width: 1.9rem; height: 1px; background: var(--gold); flex: none; opacity: 0.7;
}
.plate-title { font-size: var(--fs-1); line-height: 1.04; letter-spacing: -0.02em; margin-inline: auto; }
.plate-lead {
  font-size: var(--fs-3); line-height: 1.5; color: var(--fg-muted);
  max-width: 50ch; margin: 1.75rem auto 0;
}
.plate-cta { margin-top: 2.75rem; }
.plate + .section { border-top: 0; }

/* ---------- 14. Contact ---------- */

.contact-copy { color: var(--fg-muted); max-width: 48ch; }
.contact-email-row { margin-top: 2.5rem; }
.contact-email {
  display: inline-block; font-size: var(--fs-2); line-height: 1.12; letter-spacing: -0.012em;
  text-decoration: underline; text-decoration-thickness: 1px;
  text-decoration-color: var(--hair-gold); text-underline-offset: 0.18em;
  overflow-wrap: anywhere; transition: text-decoration-color 220ms ease, color 220ms ease;
}
.contact-email:hover { color: var(--gold-soft); text-decoration-color: var(--gold); }
.contact-place {
  margin-top: 2rem; font-family: var(--font-mono); font-size: var(--fs-5);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-dim);
}
.status-line {
  margin-top: 2rem; font-family: var(--font-mono); font-size: var(--fs-5);
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
}

/* ---------- 15. Footer ---------- */

.site-footer { border-top: 1px solid var(--hair); padding-block: 2.25rem 2.75rem; }
.footer-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem 2rem;
  font-family: var(--font-mono); font-size: var(--fs-5);
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--fg-dim);
}
.footer-row a { color: var(--fg-dim); text-decoration: none; transition: color 200ms ease; }
.footer-row a:hover { color: var(--gold-soft); }

/* ---------- 16. Motion (progressive enhancement) ---------- */

html.reveal-ready [data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 620ms cubic-bezier(0.22,0.61,0.36,1), transform 620ms cubic-bezier(0.22,0.61,0.36,1);
}
html.reveal-ready [data-reveal="2"] { transition-delay: 110ms; }
html.reveal-ready [data-reveal="3"] { transition-delay: 220ms; }
html.reveal-ready [data-reveal="4"] { transition-delay: 330ms; }
html.reveal-ready [data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before { animation: none; }
  html.reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .card, .card-media img { transition: none; }
  .mark { transition: fill 300ms ease; }
  .wordmark:hover .mark, .wordmark:focus-visible .mark { transform: none; }
  .wordmark-text { max-width: 9em; margin-left: 0.55rem; opacity: 1; transform: none; transition: none; }
  .hero h1 .word > span { transform: none; animation: none; }
  .scroll-cue::after { animation: none; opacity: 0; }
  .svc[open] .svc-body { animation: none; }
  .svc-toggle { transition: color 220ms ease; }
}

/* ---------- 17. Responsive ---------- */

@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .bio { grid-column: auto; }
  .bio--offset { margin-top: 0; }
  .work-grid { grid-template-columns: 1fr; }
  .entry { grid-template-columns: auto 1fr; column-gap: 1.25rem; row-gap: 0.5rem; }
  .entry dd, .entry p { grid-column: 1 / -1; }
  .svc summary { gap: 1.1rem; }
  .svc-body { margin-left: calc(2.4rem + 1.1rem); }
  .hero { min-height: 0; padding-block: clamp(5rem, 16vh, 8rem); }
  [id] { scroll-margin-top: 7rem; }
}
