/* =====================================================================
   KEITH CHERNEK — "THE GALLERY WALL" concept redesign
   A fashion photographer's prints hung in a bright white gallery.
   Gallery-white canvas, near-black ink, one restrained petrol-teal accent.
   The photographs are the only real color. Editorial, not corporate.
   Shared design system. Page-local layout lives in each page's <style>.
   ===================================================================== */

/* ------------------------------------------------------------------ *
   TOKENS
 * ------------------------------------------------------------------ */
:root {
  /* Color — gallery white + ink + petrol-teal (OKLCH). Chroma 0 on the neutrals
     so the white reads as a clean gallery wall, never warm "cream/sand". */
  --paper:     oklch(0.992 0 0);    /* page background */
  --paper-2:   oklch(0.968 0 0);    /* raised panels / wells */
  --paper-3:   oklch(0.940 0 0);    /* deeper panels / footer */
  --hair:      oklch(0.870 0 0);    /* hairlines / borders */
  --hair-soft: oklch(0.920 0 0);

  --ink:       oklch(0.205 0.006 40);  /* primary text — warm near-black */
  --ink-soft:  oklch(0.400 0.010 40);  /* secondary text */
  --muted:     oklch(0.520 0.012 40);  /* meta / captions */

  /* Phase-0 LOCKED accent: deep petrol-teal, warm-leaning (hue ~216) so it reads
     inviting against warm skin tones and is not a flat corporate navy.
     --accent ≈ 5:1 on the near-white canvas (AA for text + large). */
  --accent:        oklch(0.450 0.095 216);  /* petrol-teal — links, marks, CTA */
  --accent-bright: oklch(0.555 0.100 214);  /* hover */
  --accent-deep:   oklch(0.375 0.080 220);  /* pressed */
  --accent-tint:   oklch(0.450 0.095 216 / 0.09);
  --on-accent:     oklch(0.99 0 0);          /* paper text on accent fills */
  /* Brand accent lifted for legibility as text on dark hero scrims; same hue
     family, just brighter (lifting further turns cyan). Use ONLY on dark surfaces. */
  --accent-on-dark: oklch(0.640 0.110 211);

  /* Type — Spectral (readable editorial serif) + Archivo (grotesque text/labels) */
  --display: "Spectral", Georgia, "Times New Roman", serif;
  --sans:    "Archivo", system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.78rem, 0.74rem + 0.18vw, 0.86rem);
  --step-0:  clamp(0.98rem, 0.93rem + 0.25vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.06rem + 0.62vw, 1.5rem);
  --step-2:  clamp(1.55rem, 1.25rem + 1.2vw, 2.2rem);
  --step-3:  clamp(2.1rem, 1.55rem + 2.5vw, 3.4rem);
  --step-4:  clamp(2.9rem, 1.85rem + 5vw, 5.6rem);
  --step-5:  clamp(3.3rem, 1.7rem + 7.4vw, 7.4rem);
  /* Shared page H1 / hero-title size — one consistent (smaller) scale across pages. */
  --h1: clamp(2.2rem, 1.6rem + 3vw, 3.6rem);
  /* Shared section display-heading size (H2 statements/section heads), below --h1. */
  --h2: clamp(1.8rem, 1.35rem + 2.2vw, 3rem);

  --label-size: 0.7rem;
  --label-track: 0.24em;

  /* Space */
  --gutter: clamp(20px, 5vw, 72px);
  --bay:    clamp(64px, 9vw, 168px);
  --rail:   1440px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);

  /* Z scale */
  --z-nav: 100;
  --z-overlay: 200;
  --z-lightbox: 300;

  color-scheme: light;
}

/* ------------------------------------------------------------------ *
   RESET / BASE
 * ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }

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

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

main { position: relative; z-index: 2; }

/* ------------------------------------------------------------------ *
   LAYOUT HELPERS
 * ------------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--rail); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 940px; }
.bay { padding-block: var(--bay); }
.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;
}
.skip-nav {
  position: absolute; left: 12px; top: -60px; z-index: var(--z-lightbox);
  background: var(--accent); color: var(--on-accent);
  padding: 10px 16px; font: 600 var(--label-size)/1 var(--sans);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: top 0.2s var(--ease-out);
}
.skip-nav:focus { top: 12px; }

/* ------------------------------------------------------------------ *
   SHARED TYPE PRIMITIVES
 * ------------------------------------------------------------------ */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--label-size);
  font-weight: 600;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--muted { color: var(--muted); }

.kicker-line { display: inline-flex; align-items: center; gap: 12px; }
.kicker-line::before { content: ""; width: 30px; height: 1px; background: var(--accent); }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch;
  text-wrap: pretty;
}

.prose { max-width: 68ch; color: var(--ink-soft); }
.prose p { margin-bottom: 1.25em; line-height: 1.78; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: oklch(0.450 0.095 216 / 0.4);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1.5px;
  transition: color 0.18s var(--ease-out), text-decoration-color 0.18s var(--ease-out);
}
.prose a:hover { color: var(--accent-bright); text-decoration-color: currentColor; }

/* ------------------------------------------------------------------ *
   BUTTONS
 * ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 54px; padding: 0 30px;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out),
              transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.99); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hair); }
.btn--ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

.btn .arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

/* Mobile: primary actions read as full-width bars, matching the live site's
   conversion moments (375 is the priority viewport - a narrow centered button
   is a smaller tap target exactly where the inquiry happens). */
@media (max-width: 620px) {
  .btn { width: 100%; justify-content: center; }
}

.text-link {
  display: inline-flex; align-items: center; gap: 9px; min-height: 44px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  transition: color 0.18s var(--ease-out);
}
.text-link .arrow { transition: transform 0.25s var(--ease-out); }
.text-link:hover { color: var(--accent-bright); }
.text-link:hover .arrow { transform: translateX(5px); }
.text-link:active { transform: translateY(1px); }

/* ------------------------------------------------------------------ *
   IMAGE PLATE — a framed print on the wall
 * ------------------------------------------------------------------ */
.plate {
  position: relative; display: block; overflow: hidden;
  background: var(--paper-2); isolation: isolate;
}
.plate img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease-out);
}
.plate::after { /* thin inset frame on hover — a hung print */
  content: ""; position: absolute; inset: 12px;
  border: 1px solid oklch(0.99 0 0 / 0.6);
  box-shadow: 0 0 0 1px oklch(0.2 0 0 / 0.08) inset;
  opacity: 0; transition: opacity 0.35s var(--ease-out), inset 0.35s var(--ease-out);
  pointer-events: none; z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .plate:hover img { transform: scale(1.045); }
  a:hover > .plate::after, .plate:hover::after { opacity: 1; inset: 16px; }
}

.plate-caption {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px; padding-top: 14px;
  font-family: var(--sans); font-size: var(--step--1);
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
}
.plate-caption .num { color: var(--muted); font-variant-numeric: tabular-nums; letter-spacing: 0.1em; }

/* ------------------------------------------------------------------ *
   NAV
 * ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: oklch(0.992 0 0 / 0.82);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--hair-soft);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand__name {
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: 1.3rem; letter-spacing: 0; color: var(--ink);
}
.brand__tag {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); padding: 10px 14px;
  transition: color 0.18s var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current]::after { transform: scaleX(1); }
.nav-links a[aria-current] { color: var(--ink); }

/* Contact is the action — marked by the accent colour, not a filled box.
   Inherits sizing + the underline affordance from .nav-links a. */
.nav-links a.nav-cta { color: var(--accent); }
.nav-links a.nav-cta:hover { color: var(--accent-bright); }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 0;
  cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: 0.3s var(--ease-out); }
/* Open state: the three lines morph into an X (transform/opacity only).
   Offsets = span height (1.5px) + flex gap (5px) so the outer lines meet center. */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (prefers-reduced-motion: reduce) { .nav-toggle span { transition: none; } }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--hair);
    padding: 12px var(--gutter) 28px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0s linear 0.25s;
  }
  .nav-links[data-open="true"] { transform: none; opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }
  .nav-links a { padding: 16px 4px; font-size: 0.84rem; border-bottom: 1px solid var(--hair-soft); }
  .nav-links a::after { display: none; }
  .brand__tag { display: none; }
}

/* ------------------------------------------------------------------ *
   FOOTER
 * ------------------------------------------------------------------ */
/* The footer is the site's one DARK surface — it anchors the all-light system.
   Near-black with a whisper of warmth (hue 40); light text tuned for AA on dark;
   accent hovers use --accent-on-dark (the lifted teal). */
.site-footer {
  position: relative; z-index: 2;
  background: oklch(0.185 0.006 40); color: oklch(0.84 0.006 40);
  padding-block: clamp(56px, 7vw, 96px) 40px;
}
.footer-grid { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1.4fr repeat(3, 1fr); }
.footer-mark { font-family: var(--display); font-weight: 600; font-style: italic; font-size: 1.7rem; color: var(--paper); margin-bottom: 14px; }
.footer-meta { font-size: var(--step--1); color: oklch(0.66 0.008 40); line-height: 1.85; }
.footer-meta a { color: oklch(0.84 0.006 40); transition: color 0.18s var(--ease-out); }
.footer-meta a:hover { color: var(--accent-on-dark); }
.footer-col h3 {
  font-family: var(--sans); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: oklch(0.62 0.008 40); margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: var(--step--1); color: oklch(0.84 0.006 40); transition: color 0.18s var(--ease-out); }
.footer-col a:hover { color: var(--accent-on-dark); }
.footer-base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px; margin-top: clamp(40px, 6vw, 72px); padding-top: 28px; border-top: 1px solid oklch(0.32 0.006 40);
}
/* Bare social icons (no box), matching the current footer's look. */
.footer-social { display: flex; align-items: center; gap: 18px; }
.footer-social a {
  display: inline-flex; color: oklch(0.74 0.006 40);
  transition: color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.footer-social a:hover { color: var(--accent-on-dark); transform: translateY(-2px); }
.footer-copy { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.04em; color: oklch(0.64 0.008 40); }
.footer-copy strong { color: oklch(0.86 0.006 40); font-weight: 600; }
.footer-rights { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.04em; color: oklch(0.64 0.008 40); }
.footer-legal {
  font-family: var(--sans); font-size: 0.66rem; line-height: 1.65; letter-spacing: 0.02em;
  color: oklch(0.64 0.008 40); max-width: 92ch; margin-top: clamp(18px, 2.4vw, 26px);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ *
   MOTION — reveal on scroll (visible by default; hidden only with JS)
 * ------------------------------------------------------------------ */
.js [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal-stagger] > * {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.js [data-reveal-stagger].in > * { opacity: 1; transform: none; }

/* Mask wipe for hero/feature plates — animates on LOAD via CSS (gated by .js,
   set synchronously in <head>), NOT via the deferred app.js / IntersectionObserver.
   Above-the-fold heroes must never wait on JS or the page reads as "still loading". */
.js [data-wipe] { animation: wipeIn 1.15s var(--ease-out-expo) both; }
@keyframes wipeIn { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }

/* Above-the-fold copy: fade up on load via CSS (same rationale as data-wipe).
   Below-the-fold content keeps data-reveal / IntersectionObserver. */
.js [data-enter] { animation: enterUp 0.7s var(--ease-out) both; }
@keyframes enterUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > *, [data-wipe], [data-enter] {
    opacity: 1 !important; transform: none !important; clip-path: none !important;
    animation: none !important; transition: none !important;
  }
  .plate img { transition: none; }
}

/* ------------------------------------------------------------------ *
   LIGHTBOX (galleries)
 * ------------------------------------------------------------------ */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  background: oklch(0.16 0 0 / 0.9); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 5vmin;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0s linear 0.3s;
}
.lightbox[data-open="true"] { opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; box-shadow: 0 30px 90px -20px oklch(0 0 0 / 0.6); }
.lightbox__close {
  position: absolute; top: 24px; right: 24px; width: 48px; height: 48px;
  background: var(--paper); border: 1px solid var(--hair); color: var(--ink);
  font-size: 1.2rem; cursor: pointer;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.lightbox__close:hover { border-color: var(--accent); color: var(--accent); }
.lightbox__close:active { transform: scale(0.96); }
/* Prev/next gallery controls — same chrome as close, centered on the side rails. */
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--hair); color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__nav svg { width: 20px; height: 20px; }
.lightbox__nav:hover { border-color: var(--accent); color: var(--accent); }
.lightbox__nav:active { transform: translateY(-50%) scale(0.96); }
.lightbox__count {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  font: 600 0.66rem/1 var(--sans); letter-spacing: 0.16em;
  color: oklch(0.99 0 0); background: oklch(0.16 0 0 / 0.55); padding: 7px 12px;
}
@media (max-width: 520px) {
  .lightbox__prev { left: 10px; } .lightbox__next { right: 10px; }
}

/* ------------------------------------------------------------------ *
   FAILED-IMAGE FALLBACK + SCROLL PROGRESS (wired by system.js)
 * ------------------------------------------------------------------ */
/* A failed image load shows a labeled panel rather than a stark blank box. */
[data-img-failed] { position: relative; }
[data-img-failed]::after {
  content: "Image unavailable"; position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center; background: var(--paper-2);
  font: 600 0.66rem/1 var(--sans); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
/* Thin scroll-progress bar for long gallery pages — orientation on tall towers. */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: calc(var(--z-nav) + 1); background: var(--accent);
  transform: scaleX(0); transform-origin: 0 50%; pointer-events: none;
}

/* ------------------------------------------------------------------ *
   FORM (contact)
 * ------------------------------------------------------------------ */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--sans); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  background: var(--paper); border: 1px solid var(--hair);
  color: var(--ink); font: inherit; padding: 14px 16px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field .hint { font-size: 0.78rem; color: var(--muted); }
.field select { appearance: none; background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 6 5-6' stroke='%231d6573' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* ------------------------------------------------------------------ *
   PORTFOLIO INDEX — shoot covers (a familiar social-feed grid that
   links out to per-shoot pages). The cover cross-fades through a few
   frames on hover; on touch a "set" badge signals there's more inside.
 * ------------------------------------------------------------------ */
.cover { display: block; color: inherit; -webkit-tap-highlight-color: transparent; }
.cover__frame {
  position: relative; overflow: hidden; background: var(--paper-2);
  aspect-ratio: 4 / 5; isolation: isolate;
}
.cover--lead .cover__frame { aspect-ratio: 3 / 2; }
/* On mobile the lead cover keeps the standard portrait ratio: the 3/2 crop
   halves the photograph's area at 375 and cuts the full-body composition
   (project rule: be conservative with image crop/aspect changes). */
@media (max-width: 620px) {
  .cover--lead .cover__frame { aspect-ratio: 4 / 5; }
}
.cover__frame > picture { position: absolute; inset: 0; display: block; }
.cover__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.cover__preview { opacity: 0; transition: opacity 0.8s var(--ease-inout); z-index: 1; }
.cover__preview.on { opacity: 1; }
.cover__badge {
  position: absolute; top: 12px; right: 12px; z-index: 3; color: oklch(0.99 0 0);
  opacity: 0.85; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45));
  transition: opacity 0.2s var(--ease-out);
}
.cover__badge svg { display: block; width: 18px; height: 18px; }
.cover__frame::after { /* thin inset frame, like the .plate hung-print cue */
  content: ""; position: absolute; inset: 12px; z-index: 2; pointer-events: none;
  border: 1px solid oklch(0.99 0 0 / 0.6); box-shadow: 0 0 0 1px oklch(0.2 0 0 / 0.08) inset;
  opacity: 0; transition: opacity 0.35s var(--ease-out), inset 0.35s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .cover:hover .cover__frame img,
  .cover:focus-visible .cover__frame img { transform: scale(1.04); }
  .cover:hover .cover__badge { opacity: 0; }
  .cover:hover .cover__frame::after,
  .cover:focus-visible .cover__frame::after { opacity: 1; inset: 16px; }
}
.cover:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.cover__meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px; padding-top: 14px;
}
.cover__name {
  font-family: var(--display); font-weight: 600; font-size: var(--step-1);
  line-height: 1.1; color: var(--ink);
}
.cover__name .arrow { color: var(--accent); margin-left: 8px; display: inline-block; transition: transform 0.25s var(--ease-out); }
.cover:hover .cover__name .arrow { transform: translateX(5px); }
.cover__loc {
  font-family: var(--sans); font-size: var(--step--1); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .cover__frame img, .cover__preview, .cover__frame::after, .cover__name .arrow { transition: none; }
}

/* ------------------------------------------------------------------ *
   SHOOT POST — editorial, SEO-driven article page for one photoshoot
   (the page each portfolio cover links to). Lives in redesign/portfolio/.
 * ------------------------------------------------------------------ */
.post-head { padding-block: clamp(28px, 5vw, 56px) clamp(24px, 3vw, 36px); }
.post-crumb {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  font-family: var(--sans); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.post-crumb a { color: var(--accent); transition: color 0.18s var(--ease-out); }
.post-crumb a:hover { color: var(--accent-bright); }
.post-title { font-family: var(--display); font-weight: 600; font-size: var(--step-4); line-height: 1.0; letter-spacing: -0.015em; margin: 0; max-width: 18ch; }
.post-title em { font-style: italic; color: var(--accent); }
.post-sub {
  margin-top: 18px; font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
}
.post-hero { margin-block: clamp(20px, 3vw, 36px); }
.post-hero .plate { aspect-ratio: 3 / 2; }
@media (max-width: 640px) { .post-hero .plate { aspect-ratio: 4 / 5; } }

/* Shoot facts — a small SEO-friendly definition list */
.post-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(16px, 2.5vw, 32px); margin: 0;
  padding: clamp(20px, 3vw, 30px) 0; border-block: 1px solid var(--hair);
}
.post-facts div { display: flex; flex-direction: column; gap: 5px; }
.post-facts dt { font-family: var(--sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.post-facts dd { margin: 0; font-size: 0.95rem; color: var(--ink); }

/* Narrative + interleaved images */
.post-body { padding-block: clamp(36px, 6vw, 80px); }
.post-section { max-width: 64ch; margin-inline: auto; }
.post-section + .post-figures { margin-top: clamp(28px, 4vw, 52px); }
.post-figures + .post-section { margin-top: clamp(28px, 4vw, 52px); }
.post-section h2 { font-family: var(--display); font-weight: 600; font-size: var(--step-2); line-height: 1.1; margin: 0 0 18px; }
.post-section h2 em { font-style: italic; color: var(--accent); }
.post-figures { display: grid; gap: 10px; }
.post-figures--duo { grid-template-columns: 1fr 1fr; }
.post-figures--trio { grid-template-columns: repeat(3, 1fr); }
.post-figures .plate { aspect-ratio: 4 / 5; }
@media (max-width: 640px) {
  .post-figures--trio { grid-template-columns: 1fr 1fr; }
}

/* Contact-sheet gallery (lightbox-enabled) */
.post-gallery-head { max-width: 64ch; margin: 0 auto clamp(20px, 3vw, 32px); }
.post-gallery-head .eyebrow { display: block; margin-bottom: 10px; }
.post-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 1fr; gap: 12px;
}
.post-gallery .plate { aspect-ratio: 4 / 5; }
@media (max-width: 620px) { .post-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* Post footer CTA */
.post-cta { text-align: center; padding-block: clamp(56px, 9vw, 120px); border-top: 1px solid var(--hair); }
.post-cta h2 { font-family: var(--display); font-weight: 600; font-style: italic; font-size: var(--step-3); margin: 0 0 26px; }
.post-cta__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 28px; }

/* ------------------------------------------------------------------ *
   FILM-STRIP — a contained horizontal scroller that adds a "dwell"
   beat: gentle auto-advance, scroll-snap, a peek of the next frame,
   arrows, a progress thumb, and a pause control. Stays horizontal at
   every width (never collapses to a grid). prefers-reduced-motion
   removes auto-advance and smooth/snap. Used on home + commercial +
   the design board. JS hook: [data-filmstrip] on the wrapper.
 * ------------------------------------------------------------------ */
.filmstrip-wrap { position: relative; }
.filmstrip {
  display: flex;
  gap: clamp(12px, 1.4vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-inline: var(--gutter);          /* full-bleed with breathing room */
  scroll-padding-inline: var(--gutter);
}
.filmstrip::-webkit-scrollbar { display: none; }
.filmstrip:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; }
.filmstrip__item {
  flex: 0 0 auto;
  width: clamp(238px, 80vw, 360px);       /* < viewport so the next frame peeks */
  scroll-snap-align: center;
  margin: 0;
}
@media (min-width: 640px)  { .filmstrip__item { width: clamp(300px, 44vw, 380px); } }
@media (min-width: 1024px) { .filmstrip__item { width: clamp(320px, 26vw, 430px); } }
.filmstrip__item .plate { aspect-ratio: 4 / 5; }
.filmstrip__item--wide { width: clamp(300px, 86vw, 680px); }
.filmstrip__item--wide .plate { aspect-ratio: 3 / 2; }

.filmstrip-controls {
  display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px);
  margin-top: clamp(20px, 2.6vw, 30px);
}
.filmstrip-progress { flex: 1; height: 2px; background: var(--hair); position: relative; overflow: hidden; }
.filmstrip-progress__bar {
  position: absolute; top: 0; bottom: 0; left: 0; width: 20%;
  background: var(--accent);
  transition: left 0.18s var(--ease-out), width 0.18s var(--ease-out);
}
.filmstrip-nav { display: flex; gap: 8px; }
.filmstrip-btn {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--hair); color: var(--ink);
  cursor: pointer; transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.filmstrip-btn:hover { border-color: var(--accent); color: var(--accent); }
.filmstrip-btn:active { transform: scale(0.94); }
.filmstrip-btn:disabled { opacity: 0.32; cursor: default; }
.filmstrip-btn:disabled:hover { border-color: var(--hair); color: var(--ink); }
.filmstrip-btn svg { width: 18px; height: 18px; }
.filmstrip-toggle {
  display: inline-flex; align-items: center; gap: 9px;
  background: none; border: 0; cursor: pointer; padding: 8px 2px; min-height: 44px;
  font-family: var(--sans); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  transition: color 0.18s var(--ease-out);
}
.filmstrip-toggle:hover { color: var(--ink); }
.filmstrip-toggle__icon { position: relative; width: 10px; height: 11px; flex: 0 0 auto; }
.filmstrip-toggle__icon::before, .filmstrip-toggle__icon::after {
  content: ""; position: absolute; top: 0; width: 3px; height: 11px; background: currentColor;
}
.filmstrip-toggle__icon::before { left: 0; } .filmstrip-toggle__icon::after { right: 0; }
.filmstrip-toggle[aria-pressed="true"] .filmstrip-toggle__icon::before {
  left: 0; width: 0; height: 0; background: none;
  border-style: solid; border-width: 5.5px 0 5.5px 9px;
  border-color: transparent transparent transparent currentColor;
}
.filmstrip-toggle[aria-pressed="true"] .filmstrip-toggle__icon::after { content: none; }
@media (prefers-reduced-motion: reduce) {
  .filmstrip { scroll-behavior: auto; }
  .filmstrip-toggle { display: none; }
  .filmstrip-progress__bar { transition: none; }
}

/* ------------------------------------------------------------------ *
   MARQUEE — a slow, seamless wordmark loop for credits / labels.
   Pure CSS: two identical groups translate -50% for a seamless join.
   Pauses on hover/focus; under reduced-motion it becomes a static
   centered row (no scroll, no edge mask). The visible marquee is
   decorative (aria-hidden); an sr-only line carries the real text.
 * ------------------------------------------------------------------ */
.marquee {
  --mq-gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: var(--mq-gap); padding-right: var(--mq-gap); flex: 0 0 auto; }
.marquee__item {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  color: var(--ink); letter-spacing: 0.01em; white-space: nowrap;
}
.marquee__dot { color: var(--accent); font-size: 0.55em; flex: 0 0 auto; }
/* Row-break hints for the static reduced-motion layout only; inert while the
   loop animates (display:none keeps the two groups identical for the -50%
   seamless join). */
.marquee__break { display: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  /* flex: 0 1 auto + max-width let the group shrink to the container so its
     items can actually wrap; with the default flex: 0 0 auto the group kept
     its full single-row width and overflowed both edges on small screens
     (only one or two client names were visible, with no way to scroll). */
  .marquee__group { flex: 0 1 auto; max-width: 100%; gap: 10px 28px; padding-right: 0; flex-wrap: wrap; justify-content: center; }
  .marquee__group + .marquee__group { display: none; }
  .marquee__group .marquee__dot:last-child { display: none; }
}
/* Static mobile fallback: owner-set row balance - Walmart · FloSports /
   Andi Bagus · AvalTheBrand / Sun Patrol Swimwear. The break spans force the
   wrap points; the dot just before each break is hidden so rows end clean. */
@media (prefers-reduced-motion: reduce) and (max-width: 620px) {
  .marquee__break { display: block; flex-basis: 100%; height: 0; }
  .marquee__group .marquee__dot:has(+ .marquee__break) { display: none; }
}

/* ------------------------------------------------------------------ *
   FORM STATES — used by the shared components/form-states.js on migrated
   form pages (validation, async submit, success/error panels).
 * ------------------------------------------------------------------ */
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint);
}
.field-error { font-size: 0.78rem; color: var(--accent-deep); margin-top: 4px; }
.field-error[hidden] { display: none; }
.field-redirect { display: none; margin-top: 8px; font-size: 0.82rem; line-height: 1.55; color: var(--ink-soft); }
.field-redirect a { color: var(--accent); text-decoration: underline; text-underline-offset: 0.2em; }
.field-redirect.is-visible { display: block; }

.form-success, .form-error { display: none; outline: none; }
.form-success.is-visible { animation: fadeInForm 0.42s var(--ease-out) forwards; }
.form-error.is-visible { animation: fadeInForm 0.24s var(--ease-out) forwards; }
@keyframes fadeInForm { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .form-success.is-visible, .form-error.is-visible { animation: none; }
}
.form-success {
  background: var(--paper-2); border-top: 2px solid var(--ink);
  padding: clamp(20px, 3vw, 28px); margin-bottom: 24px;
}
.form-success-heading {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.form-success-body { color: var(--ink-soft); line-height: 1.7; margin: 0; }
.form-success-body a { color: var(--accent); }
.form-error {
  font-size: 0.875rem; line-height: 1.6; color: var(--ink);
  background: var(--paper-2); border-top: 2px solid var(--accent-deep);
  padding: 14px 16px; margin: 0;
}
.form-error a { color: var(--accent); }
.contact-form.is-submitting .btn-submit { opacity: 0.7; }

/* ------------------------------------------------------------------ *
   SHOOT PAGE (editorial) — per-shoot portfolio article layout (.ep-*).
   Ported from the original shoot pages so their vetted copy and decided
   image order/grouping stay identical; only the skin (tokens) changes.
 * ------------------------------------------------------------------ */
.page-wrap { max-width: 1080px; margin: 0 auto; padding: clamp(48px, 5.5vw, 80px) var(--gutter) clamp(64px, 7vw, 100px); }
.page-close { text-align: center; padding: clamp(72px, 10vw, 150px) var(--gutter); border-top: 1px solid var(--hair); }

.breadcrumb { list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 0; margin: 0; padding: 0; font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before { content: '\2192'; margin: 0 8px; font-weight: 400; }
.breadcrumb a { color: var(--accent); text-decoration: none; transition: color 0.15s var(--ease-out); }
.breadcrumb a:hover { color: var(--accent-bright); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

.ep-head { padding-top: clamp(6px, 1.6vw, 20px); margin-bottom: clamp(28px, 4vw, 56px); }
.ep-head .breadcrumb { margin-bottom: clamp(18px, 2.6vw, 28px); }
.ep-head__title { font-family: var(--display); font-weight: 500; font-size: var(--h1); line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
.ep-head__sub { margin: 14px 0 0; font-size: 0.95rem; line-height: 1.5; letter-spacing: 0.01em; color: var(--muted); }

.ep-section { margin-bottom: clamp(14px, 2.4vw, 38px); }
.ep-text-section { margin: clamp(48px, 5vw, 80px) 0; }
.ep-single img { width: 100%; height: auto; display: block; }
.ep-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ep-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ep-duo-l { display: grid; grid-template-columns: 3fr 2fr; gap: 8px; align-items: start; }
.ep-duo-r { display: grid; grid-template-columns: 2fr 3fr; gap: 8px; align-items: start; }
.ep-single picture, .ep-pair picture, .ep-trio picture, .ep-duo-l picture, .ep-duo-r picture { display: block; overflow: hidden; background: var(--paper-2); }
/* Lightbox trigger wrapping each gallery picture (no-JS: plain link to the 1600w file). */
.ep-zoom { display: block; cursor: zoom-in; }
.ep-zoom:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.ep-pair img, .ep-trio img, .ep-duo-l img, .ep-duo-r img { width: 100%; height: auto; display: block; }
.ep-single img, .ep-pair img, .ep-trio img, .ep-duo-l img, .ep-duo-r img { transition: transform 0.6s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .ep-single picture:hover img, .ep-pair picture:hover img, .ep-trio picture:hover img, .ep-duo-l picture:hover img, .ep-duo-r picture:hover img { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .ep-single img, .ep-pair img, .ep-trio img, .ep-duo-l img, .ep-duo-r img { transition: none; }
  .ep-single picture:hover img, .ep-pair picture:hover img, .ep-trio picture:hover img, .ep-duo-l picture:hover img, .ep-duo-r picture:hover img { transform: none; }
}

.ep-intro, .ep-context { max-width: 60ch; }
.ep-intro p, .ep-context p { font-size: 1rem; line-height: 1.75; color: var(--ink); }
.ep-intro p + p, .ep-context p + p { margin-top: 1.2em; }
.ep-intro p:first-child { font-family: var(--display); font-weight: 400; font-size: clamp(1.28rem, 2.3vw, 1.7rem); line-height: 1.42; }
.ep-intro p:first-child em { font-style: italic; color: var(--accent); }
.ep-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }

.ep-nav { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 20px; }
.ep-nav a { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.15s var(--ease-out); min-height: 44px; display: inline-flex; align-items: center; }
.ep-nav a:hover { color: var(--accent); }
.ep-close .ep-nav { justify-content: center; margin-top: clamp(24px, 3vw, 34px); }

.bleed { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
html:has(.bleed) { overflow-x: clip; }

@media (max-width: 640px) {
  .ep-pair, .ep-duo-l, .ep-duo-r { grid-template-columns: 1fr; gap: 4px; }
  .ep-trio { grid-template-columns: 1fr 1fr; gap: 4px; }
  /* A 3-image trio collapsed to 2 columns leaves the 3rd image orphaned in a
     half-width cell with dead space beside it. Let that last-of-three span the
     full row so the set closes cleanly (contained and full-bleed alike). */
  .ep-trio > :last-child:nth-child(3) { grid-column: 1 / -1; }
  .ep-text-section { margin: 40px 0; }
}

/* ------------------------------------------------------------------ *
   LEGACY PAGE PRIMITIVES — page-header / page-title / page-intro and the
   expandable .page-details accordion, ported (retokenised) for the booking
   and info pages (model-development, digitals, portfolio-test-shoot,
   digitals-day, 404) migrating onto system.css.
 * ------------------------------------------------------------------ */
.page-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--hair); }
.page-title { font-family: var(--display); font-size: var(--h1); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 16px; text-wrap: balance; }
.page-intro { font-size: 1rem; line-height: 1.75; color: var(--ink); max-width: 60ch; text-wrap: pretty; }
/* page-title reused as an in-accordion section heading drops to the H2 scale. */
.page-details-content .page-title { font-size: var(--h2); }

.page-details-summary::-webkit-details-marker { display: none; }
.page-details-summary { list-style: none; position: relative; display: flex; align-items: center; justify-content: center; padding: clamp(32px, 4vw, 48px) var(--gutter); background-color: var(--paper-2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); cursor: pointer; user-select: none; transition: border-color 0.15s var(--ease-out); }
.page-details-summary:hover { border-top-color: var(--ink); border-bottom-color: var(--ink); }
.page-details-summary:active { border-top-color: var(--accent); border-bottom-color: var(--accent); }
.page-details-summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.page-details-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.page-details-hint { display: block; margin-top: 8px; font-size: 0.84rem; font-weight: 400; letter-spacing: 0; line-height: 1.5; text-transform: none; color: var(--ink-soft); }
.page-details-chevron { position: absolute; right: var(--gutter); display: flex; align-items: center; color: var(--ink); transition: transform 0.2s var(--ease-out); }
details[open] .page-details-chevron { transform: rotate(180deg); }
.page-details-content { max-width: 1080px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) var(--gutter); }
@media (prefers-reduced-motion: reduce) { .page-details-chevron { transition: none; } }

/* ------------------------------------------------------------------ *
   LEGACY BOOKING + FORM PRIMITIVES — split-hero, the compact .booking-hero,
   and the .form-field intake-form component (labels/inputs/select/.btn-submit),
   ported (retokenised) for the booking pages (digitals, portfolio-test-shoot,
   digitals-day). .form-success / .form-error live in the form-states block above.
 * ------------------------------------------------------------------ */
.split-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border-bottom: 1px solid var(--hair); }
.split-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5.5vw, 92px); }
.split-hero__media { position: relative; min-height: clamp(440px, 62vh, 780px); overflow: hidden; background-color: var(--paper-2); }
.split-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-hero__media::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to right, var(--paper), transparent 7%); }
@media (max-width: 860px) {
  .split-hero { grid-template-columns: 1fr; }
  .split-hero__media { order: -1; min-height: 54vh; }
  .split-hero__media::after { background: linear-gradient(to bottom, var(--paper), transparent 6%); }
  .split-hero__copy { padding: clamp(28px, 7vw, 48px); }
}

.booking-hero .split-hero__media { min-height: clamp(300px, 42vh, 520px); }
.booking-hero .eyebrow { margin-bottom: 16px; }
.booking-hero-title { font-family: var(--display); font-weight: 500; letter-spacing: -0.01em; font-size: var(--h1); line-height: 1.05; color: var(--ink); margin: 0 0 clamp(14px, 2vw, 20px); text-wrap: balance; }
.booking-hero-thesis { font-family: var(--display); font-weight: 400; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.35; color: var(--ink-soft); margin: 0; max-width: 26ch; }
.booking-hero-thesis em { font-style: italic; color: var(--accent); }
/* Mobile-only price line: ≤768px the "What's included" context (and its price)
   sits below the form, so the hero carries the price instead. Desktop hides it;
   the left context column already leads with the price there. */
.booking-hero-price { display: none; }
@media (max-width: 768px) {
  .booking-hero-price {
    display: block; margin: 16px 0 0;
    font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
  }
}
.booking-body { padding-top: clamp(40px, 5vw, 72px); }
.booking-body .inquiry-form-wrap { border-top: 1px solid var(--hair); }

.context-subhead { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 32px 0 16px 0; }

.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-reassure { font-size: 0.85rem; line-height: 1.6; color: var(--ink-soft); margin: 6px 0 18px; }
.form-field > label:not(:has(input)), .field-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.form-field input, .form-field select, .form-field textarea { font-family: var(--sans); font-size: 0.9375rem; line-height: 1.5; color: var(--ink); background-color: var(--paper); border: 1px solid var(--hair); border-radius: 0; padding: 11px 14px; width: 100%; appearance: none; transition: border-color 0.16s var(--ease-out), background-color 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); opacity: 1; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6359'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.form-field input[aria-invalid="true"], .form-field select[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: var(--accent); background-color: var(--accent-tint); }
.form-addons { padding: 22px 0 2px; border: none; border-top: 1px solid var(--hair); background-color: transparent; }
/* Optional add-ons sub-section (digitals + portfolio-test-shoot booking forms).
   Ported from the legacy styles.css form component, retokenised. */
.addons-heading { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em; color: var(--accent); margin: 0 0 8px; }
.addons-intro { font-size: 0.85rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 20px; font-style: italic; }
.addon-option { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-top: 1px solid var(--hair); }
.addon-option:first-of-type { border-top: none; }
.addon-option input[type="checkbox"] {
  appearance: none; width: 44px; height: 44px; margin: -9px -9px 0 -11px;
  flex-shrink: 0; cursor: pointer; background-color: transparent; border: 0;
  display: grid; place-content: center;
}
.addon-option input[type="checkbox"]::before {
  content: ''; width: 22px; height: 22px;
  background-color: var(--paper); border: 1px solid var(--ink-soft);
  transition: background-color 0.15s var(--ease-out), border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}
.addon-option input[type="checkbox"]:checked::before {
  background-color: var(--accent); border-color: var(--accent);
  box-shadow: inset 0 0 0 5px var(--on-accent);
}
.addon-option input[type="checkbox"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.addon-option label { display: flex; flex-direction: column; cursor: pointer; flex: 1; }
.addon-name { font-size: 0.95rem; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.addon-desc { font-size: 0.85rem; line-height: 1.5; color: var(--ink-soft); }
.field-helper, .field-error { font-size: 0.78rem; line-height: 1.5; }
.field-helper { color: var(--muted); }
.field-error { color: var(--accent); margin-top: 2px; opacity: 1; transform: translateY(0); transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out); }
.field-error[hidden] { display: none; opacity: 0; transform: translateY(-2px); }

.btn-submit { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; background-color: var(--accent); color: var(--on-accent); font-family: var(--sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; padding: 16px 28px; border: none; border-radius: 0; cursor: pointer; white-space: nowrap; transition: background-color 0.16s var(--ease-out), transform 0.16s var(--ease-out), opacity 0.16s var(--ease-out); }
.btn-submit:hover { background-color: var(--accent-bright); color: var(--on-accent); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(1px) scale(0.985); }
.btn-submit:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-submit:disabled, .btn-submit[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; pointer-events: none; transform: none; }
.btn-submit[aria-busy="true"]::after { content: ''; position: absolute; inset: auto 18px 10px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.86), transparent); transform: translateX(-110%); animation: submit-sweep 1s var(--ease-out) infinite; }
@keyframes submit-sweep { 0% { transform: translateX(-110%); opacity: 0; } 18% { opacity: 1; } 82% { opacity: 1; } 100% { transform: translateX(110%); opacity: 0; } }
