/* ============================================================
   Jump Start Exhibitions — static site
   Implements the "visibility and rhythm" design refinement.

   Principles carried from the handoff:
   - Palette is the client's, sampled from their logo and live site.
   - Radius 0 everywhere. No pills, no rounded cards.
   - Width changes at least three times per page: 1240 / 860 / full-bleed.
   - Motion is CSS scroll-driven only, with a static end-state fallback.
   ============================================================ */

@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
/* metric-matched fallback so swapping the webfont does not reflow */
@font-face {
  font-family: "Raleway Fallback";
  src: local("Helvetica Neue"), local("Arial"), local("Liberation Sans");
  ascent-override: 92%;
  descent-override: 23%;
  line-gap-override: 0%;
  size-adjust: 98%;
}

:root {
  --indigo: #333399;        /* brand blue: headings, panels, links */
  --indigo-deep: #262673;   /* image backdrops, hover */
  --indigo-ink: #1a1831;    /* footer, strongest rules */
  --yellow: #ffff33;        /* statement bands, rules, tabs */
  --lime: #99cc33;          /* logo green — graphics only, never small text on white */
  --green-text: #5f7d14;    /* the logo green sunk far enough to carry label text */
  --pink: #dd0075;          /* the single call to action, and the CTA field */
  --pink-hover: #b8005f;
  --white: #ffffff;
  --paper: #fbfbfd;
  --grey-text: #4a4a58;     /* body copy, labels — 8.71:1 on white */
  --grey-line: #e4e4ee;     /* hairlines */
  --dash: #c9c9dd;          /* dashed placeholder borders only, never text */

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sans: "Raleway", "Raleway Fallback", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(3rem, 5.6vw, 5rem);
  --edge: 2.5rem;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
:target { scroll-margin-top: 7rem; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
::selection { background: var(--yellow); color: var(--indigo); }

a { color: var(--indigo); text-underline-offset: 0.2em; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.hero :focus-visible, .cta :focus-visible { outline-color: var(--yellow); }

.skip {
  position: fixed; top: 0; left: 50%; transform: translate(-50%, -200%);
  z-index: 300; background: var(--indigo); color: var(--white);
  font-weight: 800; padding: 0.9em 1.5em; text-decoration: none;
}
.skip:focus-visible { transform: translate(-50%, 0); }

/* three widths, used deliberately — a single column for a whole page is what
   made the previous build read as a template */
.wrap   { width: min(100% - 5rem, 1240px); margin-inline: auto; }
.narrow { width: min(100% - 5rem, 860px);  margin-inline: auto; }

/* ---------- type ---------- */
h1, h2, h3, h4 { color: var(--indigo); font-weight: 800; line-height: 1.06; }
.h-hero  { font-size: clamp(3rem, 6.4vw, 5.4rem); line-height: .95; letter-spacing: -.035em; color: var(--white); }
.h-poster{ font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.04; letter-spacing: -.03em; }
.h-cta   { font-size: clamp(2rem, 3.8vw, 3.1rem); line-height: 1.03; letter-spacing: -.03em; }
.h-sec   { font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1.06; letter-spacing: -.025em; }
.h-feat  { font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.06; letter-spacing: -.03em; }
.h-card  { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.14; letter-spacing: -.02em; font-weight: 700; }
.lead    { font-size: clamp(1.2rem, 1.85vw, 1.6rem); line-height: 1.5; font-weight: 500; }
p { max-width: 74ch; }

.eyebrow {
  font-size: 11.5px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--green-text); margin-bottom: .9rem;
  max-width: none;
}
.eyebrow--yellow { color: var(--yellow); }
.eyebrow--pink   { color: var(--pink); }

/* the brand rule: solid, not dashed */
.rule { height: 6px; width: 220px; background: var(--yellow); border: 0; margin: 1.4rem 0 0; }
.rule--full { width: 100%; }
.rule--sm { width: 150px; }

/* ---------- colour rule + header ---------- */
.edge-rule { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 6px; }
.edge-rule span:nth-child(1) { background: var(--indigo); }
.edge-rule span:nth-child(2) { background: var(--yellow); }
.edge-rule span:nth-child(3) { background: var(--pink); }

.site-head {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--grey-line);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch;
}
.head-left {
  display: flex; align-items: center; gap: 20px; min-width: 0; min-height: 118px;
  padding: 0 20px 0 max(var(--edge), calc((100% - 1240px) / 2));
}
.lockup { display: flex; align-items: center; flex: 0 0 auto; }
.lockup img { width: 186px; height: auto; }
.head-hair { width: 1px; align-self: stretch; background: var(--grey-line); margin: 34px 0; flex: 0 0 auto; }

.site-nav { display: flex; align-items: stretch; flex: 1 1 auto; min-width: 0; }
.site-nav a {
  display: flex; align-items: center; color: var(--indigo-ink); text-decoration: none;
  font-weight: 700; font-size: 15px; padding: 0 9px; white-space: nowrap;
  border-bottom: 4px solid transparent;
  transition: border-bottom-color .25s var(--ease), color .25s var(--ease);
}
.site-nav a:hover { border-bottom-color: var(--yellow); color: var(--indigo); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--yellow); color: var(--indigo); }

.head-contact { margin-left: auto; text-align: right; flex: 0 0 auto; padding-left: 12px; }
.head-cities {
  font-size: 10.5px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--grey-text); max-width: none;
}
.head-mail {
  font-size: 14px; font-weight: 700; color: var(--indigo); text-decoration: none;
  display: inline-block; border-bottom: 2px solid transparent; padding: 3px 0;
  transition: border-bottom-color .25s var(--ease);
}
.head-mail:hover { border-bottom-color: var(--yellow); }

.head-cta {
  display: flex; align-items: center; gap: 14px; background: var(--pink); color: var(--white);
  text-decoration: none; font-weight: 800; font-size: 15px; text-transform: uppercase;
  letter-spacing: .06em; padding: 0 32px; white-space: nowrap;
  transition: background .25s var(--ease);
}
.head-cta:hover { background: var(--pink-hover); }
.head-cta::after { content: ""; width: 22px; height: 2px; background: var(--yellow); flex: 0 0 auto; }

.nav-toggle {
  display: none; background: var(--indigo); color: var(--white); border: 0;
  font-family: var(--sans); font-weight: 800; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; padding: 0 24px; cursor: pointer;
  min-height: 48px;
}
.menu {
  display: none; background: var(--white); border-bottom: 1px solid var(--grey-line);
}
.menu.open { display: grid; }
.menu a {
  padding: 1rem max(var(--edge), calc((100% - 1240px) / 2));
  color: var(--indigo-ink); text-decoration: none; font-weight: 700;
  border-top: 1px solid var(--grey-line); min-height: 48px; display: flex; align-items: center;
}
.menu a:hover { background: var(--paper); color: var(--indigo); }

/* ---------- hero ---------- */
.hero { position: relative; height: clamp(440px, 50vw, 620px); overflow: hidden; background: var(--indigo-deep); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* graded, not a flat wash: dark under the header, clear through the middle third
   so the stand stays visible, dark at the bottom where the type sits */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(26,24,49,.40) 0%, rgba(26,24,49,.06) 36%,
    rgba(26,24,49,.32) 64%, rgba(26,24,49,.86) 100%);
}
.hero-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: clamp(1.8rem, 3vw, 2.6rem);
}
.hero-inner .h-hero { text-shadow: 0 2px 26px rgba(16,14,32,.42); }
/* absolute + left:0 would override the container's auto margins and pin the
   crumbs to the viewport edge, so centre it explicitly */
.hero-crumbs {
  position: absolute; top: clamp(1.2rem, 2.4vw, 2rem);
  left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 11.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.hero-crumbs a { color: var(--yellow); text-decoration: none; padding: 6px 0; display: inline-block; }
.hero-crumbs a:hover { text-decoration: underline; }
.hero-crumbs span { padding: 0 .45em; }

/* hero as a flat indigo field (homepage) */
.hero--field {
  height: auto; background: var(--indigo); padding-top: clamp(3rem, 6vw, 5.5rem);
  /* 130px of this is what the mosaic pulls back over; the rest is clearance
     so the overlap reads as deliberate rather than as a collision */
  padding-bottom: 200px; overflow: visible;
}
.hero--field .h-hero { text-shadow: none; }
.hero-row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(1.6rem, 3vw, 3.4rem);
  align-items: end; margin-top: clamp(1.6rem, 3vw, 2.6rem);
}
.hero-row p { color: rgba(255,255,255,.88); max-width: 46ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* the mosaic that crosses the hero's bottom edge — the key move on the homepage */
.mosaic {
  position: relative; z-index: 2; margin-top: -130px;
  display: grid; grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr); gap: 4px;
}
.mosaic-side { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; min-width: 0; }
.mosaic figure, .mosaic .slot { overflow: hidden; margin: 0; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic > figure { height: clamp(300px, 34vw, 460px); }

/* the film opens in place over the hero */
.hero-frame { position: absolute; inset: 0; z-index: 5; background: #000; }
.hero-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; background: var(--pink);
  color: var(--white); text-decoration: none; font-weight: 800; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase; padding: 18px 30px;
  border: 0; font-family: var(--sans); cursor: pointer; min-height: 48px;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { background: var(--pink-hover); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(221,0,117,.28); }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); box-shadow: none; }

/* ---------- sections ---------- */
.section { padding-block: var(--pad); }
.section--tight { padding-block: clamp(2rem, 3.6vw, 3.2rem); }
.section--paper { background: var(--paper); }

/* ---------- yellow poster band ---------- */
.poster { background: var(--yellow); padding-block: clamp(3.4rem, 6.4vw, 5.4rem); }
.poster h2 { color: var(--indigo); max-width: 18ch; }

/* ---------- pink CTA ---------- */
.cta { background: var(--pink); padding-block: var(--pad); color: var(--white); }
.cta-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3vw, 3.4rem); align-items: end;
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.92); }
.cta-mail {
  display: inline-block; background: var(--white); color: var(--pink);
  font-weight: 800; font-size: clamp(1rem, 1.5vw, 1.2rem); text-decoration: none;
  padding: 22px 32px; margin-top: 1.1rem;
  /* the address is one unbreakable token: 32px padding either side pushed it
     past a 360px viewport, so let it break and shed padding when narrow */
  overflow-wrap: anywhere; max-width: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cta-mail:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16,14,32,.22); }

/* the homepage CTA is deliberately quieter — the hero is already an indigo field */
.cta--quiet { background: var(--paper); color: var(--grey-text); }
.cta--quiet h2 { color: var(--indigo); }
.cta--quiet p { color: var(--grey-text); }
.cta--quiet .cta-mail { background: var(--pink); color: var(--white); }

/* ---------- service list (homepage) ---------- */
.svc-list { border-top: 1px solid var(--grey-line); }
.svc-row {
  display: grid; grid-template-columns: 64px minmax(0, 1fr) 132px; align-items: center;
  gap: 1rem; border-bottom: 1px solid var(--grey-line); text-decoration: none;
  padding: 1.15rem 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-row:hover { background: var(--paper); box-shadow: inset 6px 0 0 var(--yellow); }
/* the indent is a transform on the two text cells, not padding on the row:
   padding-left re-runs layout on the whole grid every frame */
.svc-num, .svc-name { transition: transform .3s var(--ease); }
.svc-row:hover .svc-num, .svc-row:hover .svc-name { transform: translateX(20px); }
.svc-num { font-size: 11.5px; font-weight: 800; letter-spacing: .18em; color: var(--grey-text); }
.svc-name { font-size: clamp(1.3rem, 2.1vw, 1.75rem); font-weight: 800; color: var(--indigo); letter-spacing: -.02em; }
.svc-thumb { width: 132px; height: 74px; overflow: hidden; }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- big captioned photograph ---------- */
.photo-band { position: relative; overflow: hidden; height: clamp(360px, 47vw, 680px); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; }
.photo-cap {
  position: absolute; left: 0; bottom: 0; background: var(--indigo);
  color: var(--white); padding: 1.4rem 1.8rem; max-width: min(90%, 520px);
}
.photo-cap p { color: rgba(255,255,255,.92); max-width: none; font-size: .96rem; }

/* ---------- portfolio wall (industry pages) ---------- */
.wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; }
.wall-item { min-width: 0; }
.wall-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper); }
.wall-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.wall-item:hover .wall-frame img { transform: scale(1.06); }
.chip-tag {
  position: absolute; top: 0; left: 0; z-index: 2;
  font-size: 9.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 10px; background: var(--yellow); color: var(--indigo);
}
.chip-tag--ours { background: var(--green-text); color: var(--white); }
.wall-num {
  position: absolute; left: 0; bottom: 0; z-index: 2; background: var(--indigo); color: var(--white);
  font-size: 12px; font-weight: 800; letter-spacing: .18em; padding: 11px 16px;
}
.wall-body { padding-top: 1.1rem; }
.wall-body p { font-size: .98rem; }

/* ---------- split checklist ---------- */
.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.55fr); }
.split-panel {
  background: var(--indigo); color: var(--white);
  padding: clamp(2.4rem, 4.4vw, 3.6rem) clamp(1.6rem, 3vw, 3rem)
           clamp(2.4rem, 4.4vw, 3.6rem) max(var(--edge), calc((100vw - 1240px) / 2));
}
.split-panel h2 { color: var(--white); }
.split-panel p { color: rgba(255,255,255,.88); max-width: none; font-size: .96rem; }
.split-panel .eyebrow { color: var(--yellow); margin-top: 1.6rem; }
.split-body {
  background: var(--paper);
  padding: clamp(2.4rem, 4.4vw, 3.6rem) max(var(--edge), calc((100vw - 1240px) / 2))
           clamp(2.4rem, 4.4vw, 3.6rem) clamp(1.6rem, 3vw, 3rem);
}
.check {
  list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.6rem, 3vw, 3rem);
}
.check li {
  display: grid; grid-template-columns: 28px 1fr; align-items: start; gap: 12px;
  border-top: 2px solid var(--grey-line); padding: 1rem 0;
}
.check li::before {
  content: ""; width: 11px; height: 18px; margin-top: 2px;
  border: solid var(--indigo); border-width: 0 3px 3px 0; transform: rotate(45deg);
  justify-self: center;
}

/* ---------- chip row ---------- */
.chips-row { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 3fr); gap: clamp(1.6rem, 3vw, 3rem); align-items: start; }
.chips { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; }
.chip {
  display: flex; align-items: center; min-height: 60px; padding: 0 1.1rem;
  background: var(--white); box-shadow: inset 0 0 0 1px var(--grey-line);
  color: var(--indigo); text-decoration: none; font-weight: 700; font-size: .95rem;
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.chip:hover { background: var(--yellow); box-shadow: inset 5px 0 0 var(--indigo); }

/* ---------- A. sequence: a numbered spine down the left, image alternating.
   For pages whose content is genuinely a set of steps in order. ---------- */
.steps { border-top: 2px solid var(--indigo-ink); }
.step {
  display: grid; grid-template-columns: 92px minmax(0, 1.05fr) minmax(0, 1.05fr);
  gap: clamp(1.2rem, 2.4vw, 2.6rem); align-items: start;
  border-bottom: 1px solid var(--grey-line); padding-block: clamp(2rem, 3.6vw, 3.2rem);
}
/* the number stays pinned in column 1; only the text and image swap. Using
   `order` moved the number out of its column and scrambled alternate rows. */
.step > .step-n     { grid-column: 1; }
.step > div:not(.step-media) { grid-column: 2; }
.step > .step-media { grid-column: 3; }
.step--flip > div:not(.step-media) { grid-column: 3; }
.step--flip > .step-media { grid-column: 2; }
/* a yellow numeral on white is 1.07:1, and -webkit-text-stroke does not count
   toward contrast. Indigo numeral, yellow carried by the bar beneath it. */
/* headings sit directly on their body copy in several layouts */
.step h3 + p, .wall-body h3 + p, .band-grid h3 + p,
.showcase-panel h3 + p, .roster b + p, .disciplines h3 + ul { margin-top: .7rem; }
.step h3, .band-grid h3 { margin-bottom: 0; }

.step-n {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem); font-weight: 800; line-height: 1;
  color: var(--indigo); letter-spacing: -.04em;
}
.step-n::after {
  content: ""; display: block; width: 46px; height: 6px;
  background: var(--yellow); margin-top: .6rem;
}
/* the small label above a step or discipline heading */
.process-kicker {
  font-size: 11.5px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--green-text); margin-bottom: .7rem;
}
.step-media { overflow: hidden; aspect-ratio: 4 / 3; }
.step-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.step:hover .step-media img { transform: scale(1.05); }

/* ---------- B. roster: the list IS the page. One photograph, then dense
   bordered blocks. For pages that are a set of things we arrange. ---------- */
.roster { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; }
.roster div {
  background: var(--paper); box-shadow: inset 0 0 0 1px var(--grey-line);
  padding: clamp(1.2rem, 2.2vw, 1.8rem); min-height: 118px;
  display: flex; flex-direction: column; justify-content: space-between; gap: .8rem;
}
.roster b { color: var(--indigo); font-weight: 700; font-size: 1.02rem; line-height: 1.25; }
.roster span { font-size: 10.5px; font-weight: 800; letter-spacing: .18em; color: var(--grey-text); }

/* ---------- C. showcase: one very large photograph with the point
   overlapping it. For pages where the decision is the subject. ---------- */
.showcase { position: relative; }
.showcase-media { overflow: hidden; height: clamp(320px, 42vw, 560px); }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; }
.showcase-panel {
  background: var(--indigo); color: var(--white); padding: clamp(1.8rem, 3.4vw, 3rem);
  max-width: 620px; margin-top: clamp(-8rem, -9vw, -4rem); position: relative; z-index: 2;
}
.showcase-panel h3 { color: var(--white); }
.showcase-panel p { color: rgba(255,255,255,.9); max-width: none; }
.ruled { border-top: 2px solid var(--indigo-ink); }
.ruled > div {
  display: grid; grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem); align-items: baseline;
  border-bottom: 1px solid var(--grey-line); padding-block: 1.15rem;
}
.ruled span { font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--green-text); }
.ruled b { color: var(--indigo-ink); font-weight: 600; font-size: 1.02rem; }

/* ---------- placeholders: the gaps are labelled, not filled with stock ---------- */
.slot {
  background: var(--paper); box-shadow: inset 0 0 0 2px var(--dash);
  display: grid; place-items: center; text-align: center; padding: 1.6rem; min-height: 160px;
}
.slot span {
  font-size: 11px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--grey-text);
}
.slot--dark { background: var(--indigo-deep); box-shadow: none; outline: 2px dashed var(--yellow); outline-offset: -8px; }
.slot--dark span, .slot--dark p { color: var(--white); }
.slot--dark .lbl { color: var(--yellow); }
.proof { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 1.4rem; }
.proof-cell { border: 2px dashed var(--dash); }
.proof-cell .fill { display: grid; place-items: center; min-height: 190px; padding: 1.4rem; text-align: center; }
.proof-cell .fill span { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-text); }
.proof-cell .meta { border-top: 2px dashed var(--dash); padding: 1.1rem 1.2rem; }
.proof-cell .meta b { display: block; color: var(--indigo-ink); font-weight: 800; }
.proof-cell .meta small { color: var(--grey-text); }
.proof-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.proof-head .eyebrow { margin-bottom: 0; }

/* ---------- contact ---------- */
.mail-block {
  display: block; background: var(--indigo); color: var(--white); text-decoration: none;
  padding-block: clamp(2.4rem, 5vw, 4rem); transition: background .3s var(--ease);
}
.mail-block:hover { background: var(--indigo-deep); }
/* the address is one unbreakable token; at 390px it ran 72px past the
   viewport, so it must be allowed to break and start smaller */
.mail-block .addr {
  font-size: clamp(1.25rem, 4.4vw, 3.6rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.05;
  overflow-wrap: anywhere; max-width: none;
}
.cities-row {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 3rem);
}
.city { border-top: 2px solid var(--indigo-ink); padding-top: 1.4rem; }
.city .eyebrow { margin-bottom: .6rem; }
.city h3 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); letter-spacing: -.035em; line-height: .98; }
.city .rule { margin: 1.1rem 0 1rem; }
.city p { font-size: .98rem; max-width: none; }

/* the closing line is the point of the section, not a trailing sentence */
.reach { background: var(--indigo); color: var(--white); padding-block: clamp(2.2rem, 4vw, 3.4rem); }
.reach .lead { color: var(--white); max-width: 30ch; }
.reach-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3vw, 3.4rem); align-items: center;
}
.reach p:last-child { color: rgba(255,255,255,.86); }

/* ---------- alternating bands (exhibition management) ---------- */
.band { border-top: 2px solid var(--indigo-ink); padding-block: clamp(2rem, 3.6vw, 3.2rem); }
.band-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.6rem, 3vw, 3.4rem); align-items: center; }
.band--flip .band-media { order: 2; }
.band-media { overflow: hidden; aspect-ratio: 649 / 433; }
.band-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.band:hover .band-media img { transform: scale(1.04); }
.band-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 1rem;
  color: var(--pink); font-weight: 800; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; text-decoration: none; padding: 6px 0;
}
.band-link::after {
  content: ""; width: 22px; height: 2px; background: var(--pink);
  transform-origin: left; transition: transform .25s var(--ease);
}
/* 40 / 22 — scaleX rather than width, so hover never triggers layout */
.band-link:hover::after { transform: scaleX(1.818); }

/* ---------- gallery / mosaic grids ---------- */
.mosaic-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 190px; gap: 2px; }
.mosaic-grid figure { margin: 0; overflow: hidden; }
.mosaic-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.mosaic-grid figure:hover img { transform: scale(1.06); }
.mosaic-grid .big { grid-column: span 2; grid-row: span 2; }
.blocks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; }
.blocks div { background: var(--indigo); color: var(--white); padding: clamp(1.4rem, 2.4vw, 2rem); font-weight: 700; }
.lookbook { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; }
.lookbook figure { margin: 0; overflow: hidden; aspect-ratio: 1; }
.lookbook img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.lookbook figure:hover img { transform: scale(1.06); }
.disciplines { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.6rem, 3vw, 3rem); }
.disciplines .m { overflow: hidden; aspect-ratio: 16 / 10; margin-bottom: 1.1rem; }
.disciplines img { width: 100%; height: 100%; object-fit: cover; }
.disciplines .check { grid-template-columns: 1fr; }
.split-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); min-height: clamp(380px, 42vw, 520px); }
.split-hero-panel { background: var(--indigo); color: var(--white); display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.4rem, 4.4vw, 4rem) clamp(1.6rem, 3vw, 3rem) clamp(2.4rem, 4.4vw, 4rem) max(var(--edge), calc((100vw - 1240px) / 2)); }
.split-hero-panel h1 { color: var(--white); }
.split-hero-media { overflow: hidden; }
.split-hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- contact form ---------- */
.form-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.2vw, 2rem);
}
.field { display: flex; flex-direction: column; gap: .5rem; min-width: 0; }
.field--wide { grid-column: 1 / -1; }
.field label {
  font-size: 11px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--indigo);
}
.field .hint { font-size: .86rem; color: var(--grey-text); font-weight: 400;
  letter-spacing: 0; text-transform: none; }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 1rem; color: var(--indigo-ink);
  background: var(--white); border: 0; box-shadow: inset 0 0 0 2px var(--grey-line);
  padding: 14px 16px; min-height: 52px; width: 100%;
  transition: box-shadow .2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input:hover, .field textarea:hover, .field select:hover { box-shadow: inset 0 0 0 2px #c8c8dc; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; box-shadow: inset 0 0 0 3px var(--indigo);
}
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible {
  outline: 3px solid var(--pink); outline-offset: 2px;
}
.req { color: var(--pink); }
/* the honeypot: present for a bot, gone for everyone else */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.6rem; }
.form-note { font-size: .9rem; max-width: 46ch; }
/* an inline link in prose is 17px tall, under the 24px minimum */
.form-note a { display: inline-block; padding: 4px 0; }
.form-msg {
  margin-top: 1.4rem; padding: 1.1rem 1.3rem; font-weight: 600;
  box-shadow: inset 0 0 0 2px var(--grey-line);
}
.form-msg[data-state="ok"]   { box-shadow: inset 0 0 0 2px var(--indigo); color: var(--indigo); background: var(--paper); }
.form-msg[data-state="bad"]  { box-shadow: inset 0 0 0 2px var(--pink); color: var(--pink-hover); background: var(--white); }
.form-msg:empty { display: none; }

/* ---------- 404 ---------- */
.err { text-align: center; padding-block: clamp(4rem, 10vw, 7rem); }
/* an inline link in prose is 22px tall, under the 24px minimum */
.err a { display: inline-block; padding: 2px 0; }
.err .big { font-size: clamp(5rem, 16vw, 11rem); color: var(--indigo); font-weight: 800; line-height: 1; letter-spacing: -.04em; }

/* ---------- footer ---------- */
.site-foot { background: var(--indigo-ink); color: rgba(255,255,255,.72); padding-block: var(--pad); }
/* the header lockup has an indigo wordmark and disappears on the dark footer;
   this is the reversed stacked mark */
.site-foot .lockup img { width: 150px; }
.foot-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: clamp(1.6rem, 3vw, 3.4rem); }
.foot-cities { color: var(--white); font-weight: 800; letter-spacing: .1em; margin-top: 1.2rem; max-width: none; font-size: .9rem; }
.foot-mail { margin-top: .4rem; max-width: none; }
.foot-mail a { color: var(--yellow); text-decoration: none; display: inline-block; padding: 6px 0; font-weight: 700; }
.foot-mail a:hover { text-decoration: underline; }
.foot-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3vw, 3rem); }
.foot-h { font-size: 10.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); margin-bottom: .7rem; }
.foot-cols ul { list-style: none; }
.foot-cols a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .88rem; display: inline-block; padding: .3rem 0; }
.foot-cols a:hover { color: var(--yellow); }
.foot-nav { display: flex; flex-wrap: wrap; gap: .2rem 1.4rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.14); }
.foot-nav a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .88rem; padding: .35rem 0; }
.foot-nav a:hover { color: var(--yellow); }
.foot-social { display: flex; gap: .5rem; margin-top: 1.4rem; }
.foot-social a { display: grid; place-items: center; width: 44px; height: 44px; background: rgba(255,255,255,.1); color: var(--white); transition: background .25s var(--ease); }
.foot-social a:hover { background: var(--pink); }
.foot-social svg { width: 19px; height: 19px; fill: currentColor; }
.foot-base { margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .82rem; }

/* ============================================================
   Motion — CSS scroll-driven only. No scroll handlers, no JS
   animation. Every rule has a static end-state fallback and a
   reduced-motion escape.
   ============================================================ */
@keyframes jsxRise    { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes jsxBarIn   { from { transform: scaleX(0); opacity: 0; }       to { transform: scaleX(1); opacity: 1; } }
@keyframes jsxBandPar { from { transform: translateY(-7%) scale(1.16); } to { transform: translateY(7%) scale(1.16); } }
@keyframes jsxFly     { from { transform: translate3d(-3%,-4%,0) scale(1.22); } to { transform: translate3d(3%,4%,0) scale(1.22); } }
@keyframes jsxZoom    { from { transform: scale(1.08); }                 to { transform: scale(1); } }

.jsx-rise    { animation: jsxRise .9s var(--ease) both; animation-timeline: view(); animation-range: entry 5% cover 26%; }
.jsx-bar     { transform-origin: left; animation: jsxBarIn .8s var(--ease) both; animation-timeline: view(); animation-range: entry 20% cover 34%; }
.jsx-bandpar { animation: jsxBandPar linear both; animation-timeline: view(); animation-range: cover 0% cover 100%; will-change: transform; }
.jsx-fly     { animation: jsxFly linear both; animation-timeline: view(); animation-range: cover 0% cover 100%; will-change: transform; }

/* Browsers without scroll-driven animations get the end state, not a blank page. */
@supports not (animation-timeline: view()) {
  .jsx-rise, .jsx-bar { animation: none; opacity: 1; transform: none; }
  .jsx-bandpar, .jsx-fly { animation: none; transform: scale(1.16); }
}
@media (prefers-reduced-motion: reduce) {
  .jsx-rise, .jsx-bar, .jsx-bandpar, .jsx-fly {
    animation: none !important; transform: none !important; opacity: 1 !important;
  }
  .svc-row, .svc-num, .svc-name, .btn, .chip, .wall-frame img, .band-media img,
  .mosaic-grid img, .lookbook img, .cta-mail, .mail-block, .step-media img,
  .field input, .field textarea, .band-link::after { transition: none !important; }
  .step:hover .step-media img { transform: none; }
  .svc-row:hover .svc-num, .svc-row:hover .svc-name,
  .band-link:hover::after { transform: none !important; }
  .btn:hover, .cta-mail:hover { transform: none; }
  .wall-item:hover .wall-frame img, .band:hover .band-media img,
  .mosaic-grid figure:hover img, .lookbook figure:hover img { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  :root { --edge: 1.6rem; }
  .wrap, .narrow { width: calc(100% - 3.2rem); }
  .proof { grid-template-columns: 1fr 1fr; }
  .chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .site-head { grid-template-columns: 1fr auto; }
  .head-left { min-height: 84px; gap: 12px; padding-right: 12px; }
  .lockup img { width: 148px; }
  .site-nav, .head-hair, .head-contact { display: none; }
  .nav-toggle { display: block; }
  .head-cta { display: none; }
  .menu { display: none; }
  .menu.open { display: grid; }
  .hero { height: clamp(360px, 62vw, 460px); }
  .split, .chips-row, .cta-grid, .hero-row, .foot-top, .band-grid,
  .split-hero { grid-template-columns: 1fr; }
  .band--flip .band-media, .split-hero-media { order: 0; }
  .split-panel, .split-body, .split-hero-panel { padding-inline: max(1.6rem, calc((100vw - 1240px) / 2)); }
  .wall { grid-template-columns: 1fr; gap: 2.2rem; }
  .step { grid-template-columns: 56px minmax(0, 1fr); }
  .step > /* headings sit directly on their body copy in several layouts */
.step h3 + p, .wall-body h3 + p, .band-grid h3 + p,
.showcase-panel h3 + p, .roster b + p, .disciplines h3 + ul { margin-top: .7rem; }
.step h3, .band-grid h3 { margin-bottom: 0; }

.step-n { grid-column: 1; }
  .step > div:not(.step-media), .step--flip > div:not(.step-media) { grid-column: 2; }
  .step > .step-media, .step--flip > .step-media { grid-column: 1 / -1; }
  .roster { grid-template-columns: 1fr 1fr; }
  .showcase-panel { margin-top: 0; max-width: none; }
  .disciplines, .blocks, .cities-row, .reach-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; margin-top: -96px; }
  .mosaic > figure { height: clamp(220px, 52vw, 320px); }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .lookbook { grid-template-columns: 1fr 1fr; }
  .proof { grid-template-columns: 1fr; }
  .check { grid-template-columns: 1fr; }
  .photo-band { height: clamp(260px, 58vw, 380px); }
}
@media (max-width: 560px) {
  .h-hero { font-size: 34px; }
  .cta-mail { padding: 18px 16px; font-size: .95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .chips { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 30px minmax(0, 1fr) 76px; }
  .svc-thumb { width: 76px; height: 52px; }
  .foot-cols { grid-template-columns: 1fr; }
  .roster { grid-template-columns: 1fr; }
  .mosaic-grid { grid-template-columns: 1fr; }
}
/* parallax off on small screens: will-change on every image at 60fps on a
   mid-range phone is not worth a drift that is barely legible at 390px */
@media (max-width: 760px) {
  .jsx-bandpar, .jsx-fly { animation: none; transform: none; will-change: auto; }
}
