/*
 * styles.css — Orchestrate Leadership Consulting
 * Concept: "The Seating Chart" — a navy hall, gold stand-light, one downbeat, then stillness.
 * Every page hangs from one center axis: the nav's podium tab → hero → footer logo.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #1B2A4A;
  --color-secondary: #C9A84C;
  --color-accent: #C9A84C;
  --color-bg: #F5F5F0;
  --color-text: #2E2E2E;
  --color-text-secondary: #5B5A55;
  --color-surface: #EBE8DE;
  --font-primary: 'Bodoni Moda', 'Bodoni 72', Didot, 'Times New Roman', serif;
  --font-secondary: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 17px;
  --spacing-base: 8px;
  --motion-duration: 320ms;
  --motion-duration-slow: 480ms;
  --motion-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Named palette (all locked client colors + tints of them) */
  --navy: #1B2A4A;
  --pit: #111C33;
  --house: #DCE1EA;
  --gold: #C9A84C;
  --gold-dk: #B8963E;
  --paper: #F5F5F0;
  --stock: #EBE8DE;
  --char: #2E2E2E;
  --pencil: #5B5A55;
  --stave: #CFC9B8;

  --serif: var(--font-primary);
  --sans: var(--font-secondary);

  --pad: clamp(20px, 4.5vw, 64px);
  --gap: clamp(12px, 2vw, 28px);
  --sec: clamp(72px, 9vw, 136px);
  --nav-h: 72px;
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base, 16px);
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  font-family: var(--sans);
  background-color: var(--pit);   /* the 42px partner-bar gutter continues the footer pit */
  color: var(--char);
  line-height: 1.65;
  padding-bottom: 42px; /* required */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--color-accent, inherit);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-style: normal;
  text-wrap: balance;
}

p { text-wrap: pretty; }

/* Focus states — WCAG AA required */
:focus-visible {
  outline: 3px solid var(--color-accent, #005fcc);
  outline-offset: 2px;
}
.on-paper :focus-visible,
.on-gold :focus-visible {
  outline-color: var(--navy);
}

/* Skip navigation link — WCAG 2.4.1 (managed by fix_ada_safe.py) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface, #ffffff);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-accent, #005fcc);
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  left: 0;
}

main:focus { outline: none; }

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

/* ============================================================
   Reveal-gating floor — content is visible without JavaScript.
   Hidden/offset states exist ONLY under html.js.
   Motion signature is "the-downbeat": one settle per page, then stillness.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* The interior downbeat: the hero photo settles 12px into place. Never hidden. */
html.js .reveal.reveal--settle {
  opacity: 1;
  transform: translateY(-12px);
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
html.js .reveal.reveal--settle.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal,
  html.js .reveal.reveal--settle { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Layout — the 12-column shell (named lines: c 1 … c 12, c-end)
   ============================================================ */
.shell {
  display: grid;
  grid-template-columns:
    [full-start] minmax(var(--pad), 1fr)
    repeat(12, [c] minmax(0, 76px))
    [c-end] minmax(var(--pad), 1fr) [full-end];
  column-gap: var(--gap);
}
.shell > * { min-width: 0; }

.on-navy  { background: var(--navy); color: var(--paper); }
.on-char  { background: var(--char); color: var(--paper); }
.on-gold  { background: var(--gold); color: var(--char); }
.on-paper { background: var(--paper); color: var(--char); }

/* Faint five-line staves on score paper */
.staves { position: relative; isolation: isolate; }
.staves::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .09;
  background-image: linear-gradient(to bottom,
    var(--navy) 0 1px, transparent 1px 8px,
    var(--navy) 8px 9px, transparent 9px 16px,
    var(--navy) 16px 17px, transparent 17px 24px,
    var(--navy) 24px 25px, transparent 25px 32px,
    var(--navy) 32px 33px, transparent 33px 100%);
  background-size: 100% 112px;
  background-position: 0 64px;
}

/* ============================================================
   Typography
   ============================================================ */
.display {
  font-family: var(--serif);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -0.015em;
}
.h1 {
  font-weight: 700;
  font-size: clamp(2.6rem, 4.6vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.h2 {
  font-weight: 600;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
}
.h3 {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.2;
}
.lead {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  line-height: 1.5;
}
.label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .8125rem;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sublabel {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  margin-top: 12px;
}
.body-copy p + p { margin-top: 1.1em; }
.body-copy { max-width: 62ch; }
.tabular { font-variant-numeric: tabular-nums; }

/* Boxed rehearsal letters — [A] [B] [C] replace every eyebrow and numeral */
.rmark {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 48px;
  height: 48px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  font-variant-numeric: lining-nums;
}
.rmark--gold { border-color: var(--gold); color: var(--gold); }
.rmark--char { border-color: var(--char); color: var(--char); }
.rmark--lg { width: 64px; height: 64px; font-size: 36px; }

/* ============================================================
   Buttons & links — restrained; the design wins, not the button
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  padding: 17px 26px;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--motion-duration) var(--motion-ease),
              transform var(--motion-duration) var(--motion-ease);
}
.btn--gold { background: var(--gold); color: var(--char); }
.btn--gold:hover { background: var(--gold-dk); transform: translateY(-1px); }
.btn .ph, .btn .ph-bold { font-size: 1.1em; }
.on-navy .btn--gold:focus-visible,
.on-char .btn--gold:focus-visible { outline-color: var(--paper); }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: text-decoration-thickness var(--motion-duration) var(--motion-ease);
}
.tlink:hover { text-decoration-thickness: 2px; }
.tlink--char { color: var(--char); }
.tlink--gold { color: var(--gold); }

/* ============================================================
   Header — centered podium tab (breakout logo), split menu
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  overflow: visible;
}
.nav {
  position: relative;
  z-index: 2;
  height: var(--nav-h);
  overflow: visible;
}
.nav__inner {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
  align-items: center;
  overflow: visible;
}
.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links--left  { grid-column: 1; justify-content: flex-end; }
.nav__links--right { grid-column: 3; justify-content: flex-start; }
.nav__links a {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  color: rgba(245, 245, 240, .88);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transition: left var(--motion-duration) var(--motion-ease), right var(--motion-duration) var(--motion-ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--paper); }
.nav__links a:not(.nav__cta):hover::after,
.nav__links a[aria-current="page"]:not(.nav__cta)::after { left: 0; right: 0; }
.nav__links a[aria-current="page"] { color: var(--paper); }

.nav__links a.nav__cta {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--char);
  font-weight: 600;
  border-radius: 2px;
  transition: background-color var(--motion-duration) var(--motion-ease);
}
.nav__links a.nav__cta:hover { background: var(--gold-dk); }
.nav__links a.nav__cta[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  background: var(--char);
}
.nav__links a:focus-visible,
.nav__brand:focus-visible,
.nav__toggle:focus-visible,
.nav__call:focus-visible { outline-color: var(--paper); }

/* The podium tab: logo hangs from the bar's center and breaks out below it.
   Logo is never cropped or edited — the tab is widened so the full canvas
   (incl. its transparent right margin) fits while the visible ink sits on the axis. */
.nav__brand {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: block;
  width: 264px;
  height: 128px;              /* 72px bar + 56px overhang */
  background: var(--navy);
  border-bottom: 4px solid var(--gold);
}
.nav__logo {
  position: absolute;
  top: 10px;
  left: 59px;                 /* centers the logo's visible ink on the axis */
  height: 108px;              /* logo_nav_height_px (breakout) */
  width: auto;
  max-width: 202px;           /* breakout width: 108 × 1.854 */
  object-fit: contain;
}

.nav__toggle,
.nav__call { display: none; }

.nav-drawer {
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 1;
  background: var(--navy);
  padding: 88px var(--pad) 48px;
  overflow-y: auto;
}
.nav-drawer[hidden] { display: none; }
.nav-drawer ul { list-style: none; max-width: 480px; margin: 0 auto; }
.nav-drawer li { border-bottom: 1px solid rgba(201, 168, 76, .35); }
.nav-drawer a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 20px;
  color: var(--paper);
  text-decoration: none;
}
.nav-drawer a[aria-current="page"] { color: var(--gold); }
.nav-drawer a .ph { color: var(--gold); }
.nav-drawer__cta { margin-top: 32px; text-align: center; }
.nav-drawer .nav-drawer__cta a.btn { display: inline-flex; font-size: 17px; color: var(--char); padding: 17px 26px; }
body.drawer-open { overflow: hidden; }

/* ============================================================
   Footer — the orchestra pit; logo closes the center axis
   ============================================================ */
.site-footer {
  background: var(--pit);
  color: rgba(245, 245, 240, .82);
  padding: 80px var(--pad) 32px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.footer__contact { text-align: right; justify-self: end; }
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.footer__phone:hover { border-bottom-color: var(--gold); }
.footer__phone .ph, .footer__place .ph { color: var(--gold); font-size: 18px; }
.footer__place { margin-top: 8px; display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.footer__brand { display: block; justify-self: center; }
.footer__logo {
  height: 132px;              /* logo_footer_height_px */
  width: auto;
  max-width: 250px;           /* 132 × 1.854 — judged cap for this treatment */
  object-fit: contain;
  transform: translateX(15.4%); /* optical: centers the logo's visible ink on the site axis (file untouched) */
}
.footer__links { list-style: none; justify-self: start; }
.footer__links li + li { margin-top: 6px; }
.footer__links a {
  color: rgba(245, 245, 240, .82);
  text-decoration: none;
  background: linear-gradient(var(--gold), var(--gold)) no-repeat 50% 100% / 0 1px;
  padding-bottom: 2px;
  transition: background-size var(--motion-duration) var(--motion-ease), color var(--motion-duration);
}
.footer__links a:hover { background-size: 100% 1px; color: var(--paper); }
.site-footer a:focus-visible { outline-color: var(--paper); }
.footer__legal {
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 245, 240, .16);
  text-align: center;
  font-size: 14px;
  color: rgba(245, 245, 240, .72);
}

/* Phone numbers: low optical size so Bodoni's hairline "+" and hyphens stay legible */
.big-phone, .footer__phone, .inquiry__phone {
  font-optical-sizing: none;
  font-variation-settings: 'opsz' 11;
}

/* ============================================================
   HOME — Hero: the seating arc
   Geometry is authored in design px (1 design px = --u), so the whole
   arc scales as one composition. Design stage: 900 × --u tall,
   arc center at 92% (828u), tile bottoms on radius 550u.
   ============================================================ */
.arc {
  --u: max(0.62px, min(calc(100vw / 1440), calc((100svh - 154px) / 900), 1px));
  position: relative;
  isolation: isolate;
  min-height: max(calc(100svh - var(--nav-h)), calc(900 * var(--u) + 82px));
  background: var(--navy);
  color: var(--paper);
}
.arc__hall {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(1) contrast(1.1);
  mix-blend-mode: luminosity;
  opacity: .35;
}
.arc__stage {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;               /* clears the partner bar pinned to the viewport foot */
  height: calc(900 * var(--u));
}
.arc__seats {
  list-style: none;
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
}
.arc__section {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
.arc__tile {
  position: absolute;
  left: calc(-66 * var(--u));
  top: calc(652 * var(--u));           /* 828u − 176u: bottom edge on the arc center */
  width: calc(132 * var(--u));
  height: calc(176 * var(--u));
  transform-origin: 50% 100%;
  transform: rotate(var(--a)) translateY(calc(-550 * var(--u)));
  background: var(--pit);
}
.arc__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.arc__tile--foh1 img { object-position: 95% 15%; }
.arc__tile::after {                    /* the gold stand-light edge (inner, facing the podium) */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  pointer-events: none;
  transition: height var(--motion-duration) var(--motion-ease),
              opacity var(--motion-duration-slow) var(--motion-ease);
}
.arc__tile:hover::after { height: 6px; }
.arc__label {
  --lift: 0px;
  position: absolute;
  left: calc(-110 * var(--u));
  top: calc(818 * var(--u));
  width: calc(220 * var(--u));
  height: calc(20 * var(--u));
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--gold);
  font-size: max(11px, calc(13 * var(--u)));
  white-space: nowrap;
  transform: rotate(var(--a)) translateY(calc(-520 * var(--u) - var(--lift)));
  transition: transform var(--motion-duration) var(--motion-ease), color var(--motion-duration);
}
.arc__section:hover .arc__label { --lift: 8px; color: #E3C877; }

.arc__headline {
  position: absolute;
  left: 50%;
  top: calc(362 * var(--u));
  width: calc(600 * var(--u));
  transform: translateX(-50%);
  text-align: center;
  font-size: max(30px, calc(52 * var(--u)));
  color: var(--paper);
}
.arc__headline span { display: block; }
.arc__barline {
  display: block;
  width: 64px;
  height: 4px;
  margin: calc(12 * var(--u)) auto;
  background: var(--gold);
}

.arc__podium {
  position: absolute;
  left: 50%;
  bottom: calc(44 * var(--u));
  width: calc(184 * var(--u));
  transform: translateX(-50%);
}
.arc__podium img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 40% 12%;
}
.arc__podium::after {                  /* the gold plinth */
  content: '';
  position: absolute;
  left: calc(-28 * var(--u));
  right: calc(-28 * var(--u));
  bottom: calc(-20 * var(--u));
  height: calc(20 * var(--u));
  background: var(--gold);
}
.arc__sub {
  position: absolute;
  right: calc(50% + 136 * var(--u));
  bottom: calc(40 * var(--u));
  width: calc(372 * var(--u));
  text-align: right;
  font-size: max(16px, calc(20 * var(--u)));
  line-height: 1.5;
  color: rgba(245, 245, 240, .88);
}
.arc__cta {
  position: absolute;
  left: calc(50% + 136 * var(--u));
  bottom: calc(76 * var(--u));
}

/* The downbeat: under html.js tiles start as dark shadows and light up one
   section per beat (0 / 480 / 960 / 1440ms). Failsafe class lights all. */
html.js .arc__tile img {
  filter: grayscale(1) brightness(.55);
  transition: filter var(--motion-duration-slow) var(--motion-ease);
}
html.js .arc__tile::after { opacity: 0; }
html.js .arc.is-lit .arc__tile img,
html.js.reveal-failsafe .arc__tile img { filter: none; }
html.js .arc.is-lit .arc__tile::after,
html.js.reveal-failsafe .arc__tile::after { opacity: 1; }
.arc__section[data-beat="2"] .arc__tile img,
.arc__section[data-beat="2"] .arc__tile::after { transition-delay: 480ms; }
.arc__section[data-beat="3"] .arc__tile img,
.arc__section[data-beat="3"] .arc__tile::after { transition-delay: 960ms; }
.arc__section[data-beat="4"] .arc__tile img,
.arc__section[data-beat="4"] .arc__tile::after { transition-delay: 1440ms; }
.arc__tile:hover::after { transition-delay: 0ms !important; }
@media (prefers-reduced-motion: reduce) {
  html.js .arc__tile img { filter: none; transition: none; }
  html.js .arc__tile::after { opacity: 1; transition: none; }
}

/* ============================================================
   HOME — Framework split: charcoal trap | gold barline | navy hall
   ============================================================ */
.split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  color: var(--paper);
}
.split::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  margin-left: -2px;
  background: var(--gold);
  z-index: 2;
}
.split__col { min-width: 0; display: flex; flex-direction: column; }
.split__col--trap { background: var(--char); }
.split__col--sym { background: var(--navy); }
.split__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.split__col--trap .split__media img { filter: saturate(.7) contrast(1.08); object-position: center 60%; }
.split__col--sym .split__media img { object-position: center 20%; }
.split__copy {
  width: 100%;
  max-width: calc(62ch + 144px);
  padding: 64px clamp(24px, 5vw, 72px) 96px;
}
.split__col--trap .split__copy { margin-left: auto; }
.split__col--trap .split__head { text-align: right; }
.split__title {
  font-weight: 600;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  line-height: 1.12;
}
.split__head .sublabel { color: var(--gold); }
.split__copy .body-copy { margin-top: 28px; color: rgba(245, 245, 240, .9); }
.split__col--trap .body-copy { margin-left: auto; }

/* ============================================================
   HOME — The load-bearing wall (gold field)
   ============================================================ */
.wall {
  position: relative;
  z-index: 2;
  padding-top: var(--sec);
}
.wall__copy {
  grid-column: c 1 / c 8;
  padding-bottom: var(--sec);
}
.wall__title {
  font-weight: 700;
  font-size: clamp(2.3rem, 4.3vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 15ch;
}
.wall__list {
  list-style: none;
  margin-top: 44px;
  max-width: 34rem;
}
.wall__list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(46, 46, 46, .28);
  font-size: 20px;
  line-height: 1.45;
}
.wall__list li:last-child { border-bottom: 1px solid rgba(46, 46, 46, .28); }
.rest {
  flex: none;
  width: 16px;
  height: 28px;
  fill: var(--char);
  transform: translateY(6px);
}
.wall__more { margin-top: 36px; }
.wall__media {
  grid-column: c 9 / full-end;
  align-self: end;
  position: relative;
  z-index: 3;
  margin-bottom: -48px;
}
.wall__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(.72) brightness(.94) hue-rotate(8deg);
}

/* ============================================================
   HOME — The path: three rising notes on a stave
   ============================================================ */
.path {
  padding: calc(var(--sec) + 48px) 0 var(--sec);
}
.path__head {
  grid-column: c 1 / c 7;
}
.tempo {
  margin-top: 14px;
  font-size: 16px;
  color: var(--pencil);
  font-variant-numeric: tabular-nums;
}
.tempo .note { font-size: 1.2em; color: var(--navy); }
.path__steps {
  grid-column: c 1 / c-end;
  list-style: none;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: calc(var(--gap) * 2);
  align-items: end;
}
.path__step:nth-child(2) { margin-bottom: 48px; }
.path__step:nth-child(3) { margin-bottom: 96px; }
.path__fig {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}
.path__fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.path__fig:hover img { transform: scale(1.02); }
.path__step .rmark { margin-top: 24px; }
.path__step h3 { margin-top: 14px; color: var(--navy); }
.path__step p { margin-top: 8px; max-width: 34ch; }

/* ============================================================
   Docked photo bands (Home: bottom-left; About: top-right)
   ============================================================ */
.dock {
  position: relative;
  z-index: 3;
  background: var(--navy);
}
.dock__media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 480px;
  object-fit: cover;
}
.dock__panel {
  position: absolute;
  width: max(360px, 41.6667%);
  padding: 48px clamp(28px, 4vw, 64px);
  background: var(--navy);
  color: var(--paper);
  border-top: 4px solid var(--gold);
  box-shadow: 0 30px 60px -30px rgba(17, 28, 51, .6);
}
.dock--bl .dock__panel { left: 0; bottom: -64px; }
.dock--tr .dock__panel { right: 0; top: -64px; width: max(340px, 33.3333%); border-top: 0; border-bottom: 4px solid var(--gold); }
.dock__line {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
}
.dock--tr .dock__line { font-size: 26px; }
.dock__panel .tlink { margin-top: 24px; }

/* ============================================================
   Closer: navy sheet-music texture — the final bar of the score
   ============================================================ */
.closer {
  position: relative;
  isolation: isolate;
  padding: calc(var(--sec) + 64px) 0 var(--sec);
  row-gap: 0;
}
.closer__tex {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  filter: invert(1) grayscale(1) contrast(1.3);
  mix-blend-mode: screen;
}
.closer__title { grid-column: c 2 / c 9; grid-row: 1; align-self: end; }
.closer__sub { grid-column: c 2 / c 9; grid-row: 2; margin-top: 20px; color: rgba(245, 245, 240, .88); max-width: 40ch; }
.closer__bar {
  grid-column: c 9 / c 10;
  grid-row: 1 / 3;
  justify-self: center;
  width: 4px;
  background: var(--gold);
}
.closer__cta { grid-column: c 10 / c-end; grid-row: 1; align-self: end; justify-self: start; }

/* ============================================================
   Brass CTA band (Method, About)
   ============================================================ */
.brass {
  position: relative;
  isolation: isolate;
  min-height: min(42.857vw, 600px);
  display: grid;
  place-items: center;
  padding: var(--sec) var(--pad);
  text-align: center;
  color: var(--paper);
  background: var(--navy);
}
.brass__tex {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 50%;
}
.brass::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(27, 42, 74, .66);
  mix-blend-mode: multiply;
}
.brass::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 28, 51, .28);
}
.brass__inner { max-width: 760px; }
.brass .btn { margin-top: 36px; }

/* ============================================================
   METHOD — Hero: the downbeat poster (gold field | baton)
   ============================================================ */
.poster {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: 82svh;
}
.poster__field {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: 56px clamp(24px, 4.5vw, 72px) 72px var(--pad);
}
.poster__field h1 { font-weight: 800; max-width: 11ch; }
.poster__field .lead { margin-top: 24px; max-width: 30ch; }
.poster__media { position: relative; min-height: 420px; }
.poster__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 38%;
}

/* ============================================================
   METHOD — The Execution Trap (charcoal)
   ============================================================ */
.trap { padding: var(--sec) 0; align-items: center; }
.trap__media { grid-column: full-start / c 6; }
.trap__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.8); }
.trap__copy { grid-column: c 7 / c 12; }
.trap__copy .sublabel { color: var(--gold); }
.trap__copy .body-copy { margin-top: 28px; color: rgba(245, 245, 240, .9); }
.pull {
  margin: 40px 0 0 -28px;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: var(--paper);
  max-width: 24ch;
}

/* ============================================================
   METHOD — The Symphony of Scale: panel takes the podium's place
   ============================================================ */
.hall {
  position: relative;
  display: grid;
  background: var(--navy);
}
.hall__img {
  grid-area: 1 / 1;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 560px;
  object-fit: cover;
  object-position: center 55%;
}
.hall__panel {
  grid-area: 1 / 1;
  justify-self: center;
  align-self: end;
  width: clamp(340px, 41.6667%, 600px);
  margin-bottom: 48px;
  padding: 40px clamp(28px, 3.5vw, 52px) 44px;
  background: var(--stock);
  color: var(--char);
  border-top: 4px solid var(--gold);
}
.hall__panel h2 { color: var(--navy); }
.hall__panel .sublabel { color: var(--navy); }
.hall__panel .body-copy { margin-top: 20px; }

/* ============================================================
   METHOD — Team Tuning: three players on one gold baseline
   ============================================================ */
.tuning { padding: var(--sec) 0; align-items: center; }
.tuning__copy { grid-column: c 1 / c 6; }
.tuning__copy h2 { margin-top: 28px; }
.tuning__copy .body-copy { margin-top: 20px; color: rgba(245, 245, 240, .9); }
.tuning__copy .btn { margin-top: 32px; }
.rail {
  --rh: clamp(260px, 30vw, 440px);
  grid-column: c 7 / c-end;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  border-bottom: 4px solid var(--gold);
}
.rail__tile { position: relative; }
.rail__tile img { width: 100%; height: var(--rh); object-fit: cover; object-position: center 25%; }
.rail__tile:nth-child(2) img { height: calc(var(--rh) - 40px); }
.rail__tile:nth-child(3) img { height: calc(var(--rh) - 80px); }
.rail__tile::after,
.formats__fig::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: var(--gold);
  pointer-events: none;
  transition: height var(--motion-duration) var(--motion-ease);
}
.rail__tile:hover::after,
.formats__fig:hover::after { height: 6px; }

/* ============================================================
   METHOD — The engagement: rehearsal letters on stave systems
   ============================================================ */
.engage { padding: var(--sec) 0; }
.engage__list-wrap { grid-column: c 1 / c 7; }
.engage__steps { list-style: none; margin-top: 48px; }
.engage__step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0 36px;
  position: relative;
}
.engage__step::before,
.expect__row::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 33px;
  opacity: .45;
  background-image: linear-gradient(to bottom,
    var(--stave) 0 1px, transparent 1px 8px,
    var(--stave) 8px 9px, transparent 9px 16px,
    var(--stave) 16px 17px, transparent 17px 24px,
    var(--stave) 24px 25px, transparent 25px 32px,
    var(--stave) 32px 33px, transparent 33px 100%);
}
.engage__step:first-child::before,
.expect__row:first-child::before { display: none; }
.engage__step + .engage__step { margin-top: 24px; }
.engage__step h3 { color: var(--navy); }
.engage__step p { margin-top: 8px; max-width: 48ch; }
.engage__media { grid-column: c 8 / c-end; align-self: center; }
.engage__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* ============================================================
   SPEAKING — Hero: the proscenium
   ============================================================ */
.proscenium {
  padding: 96px var(--pad) 88px;
  text-align: center;
}
.arch {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.arch__frame {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--gold);
  border-radius: 18% 18% 0 0 / 40% 40% 0 0;
  aspect-ratio: 21 / 9;
  background: var(--pit);
}
.arch__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.proscenium h1 { margin: 56px auto 0; max-width: 18ch; }
.proscenium .lead { margin: 20px auto 0; max-width: 46ch; color: rgba(245, 245, 240, .88); }
.proscenium .btn { margin-top: 36px; }

/* ============================================================
   SPEAKING — Signature talk as a printed concert programme
   ============================================================ */
.program-sec { padding: var(--sec) var(--pad); }
.program {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  padding: clamp(32px, 5vw, 60px);
  background: var(--stock);
  border: 4px solid var(--navy);
  box-shadow: inset 0 0 0 8px var(--stock), inset 0 0 0 10px var(--gold);
}
.program__portrait { align-self: start; overflow: hidden; }
.program__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 36% 30%;
  transform: scale(1.14);
  transform-origin: 34% 40%;
}
.program__label { color: var(--navy); }
.program h2 { margin-top: 16px; color: var(--navy); font-size: clamp(1.75rem, 2.6vw, 2.4rem); }
.program__dur {
  margin-top: 16px;
  padding: 8px 0;
  border-top: 1px solid var(--stave);
  border-bottom: 1px solid var(--stave);
  font-size: 15px;
  color: var(--pencil);
  font-variant-numeric: tabular-nums;
}
.program .body-copy { margin-top: 20px; }

/* ============================================================
   SPEAKING — Formats: letters bite into the photo corners
   ============================================================ */
.formats { padding: var(--sec) 0 calc(var(--sec) + 48px); }
.formats__head { grid-column: c 1 / c 4; align-self: start; }
.formats__head p { margin-top: 20px; color: rgba(245, 245, 240, .85); }
.formats__row {
  grid-column: c 4 / c-end;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(var(--gap) + 8px);
  padding: 16px 0 0 16px;
}
.formats__item:nth-child(2) { margin-top: 48px; }
.formats__fig { position: relative; }
.formats__fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%; }
.formats__fig .rmark {
  position: absolute;
  top: -16px;
  left: -16px;
  z-index: 2;
  background: var(--navy);
}
.formats__item h3 { margin-top: 22px; }
.formats__item p { margin-top: 8px; font-size: 16px; color: rgba(245, 245, 240, .85); }

/* ============================================================
   SPEAKING — Beach Blvd band with a gold stage-lip strip
   ============================================================ */
.lipband { position: relative; }
.lipband img {
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 420px;
  object-fit: cover;
  object-position: center 55%;
}
.lipband__strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px var(--pad);
  background: var(--gold);
  color: var(--char);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
}

/* ============================================================
   Forms — shared
   ============================================================ */
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 28px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--sans); font-weight: 600; font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; }
.field .req { font-weight: 400; letter-spacing: 0; text-transform: none; opacity: .85; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.4;
  padding: 10px 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.field textarea { resize: vertical; min-height: 160px; }
.select-wrap { position: relative; }
.select-wrap .ph { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.field select { padding-right: 32px; cursor: pointer; }
.form-actions { grid-column: 1 / -1; margin-top: 8px; }
.form-note { grid-column: 1 / -1; font-size: 14px; }

/* Stave-ruled form (Speaking inquiry — on paper) */
.form--staves label { color: var(--navy); }
.form--staves input,
.form--staves select {
  box-shadow: inset 0 -2px 0 var(--navy);
  color: var(--char);
}
.form--staves textarea {
  color: var(--char);
  line-height: 32px;
  padding: 0 4px;
  background-image: repeating-linear-gradient(to bottom, transparent 0 31px, rgba(27, 42, 74, .45) 31px 32px);
  background-attachment: local;
  box-shadow: inset 0 -2px 0 var(--navy);
}
.form--staves input:focus,
.form--staves select:focus,
.form--staves textarea:focus {
  outline: none;
  background-color: var(--house);
  box-shadow: inset 0 -3px 0 var(--navy);
}
.form--staves .select-wrap .ph { color: var(--navy); }
.form--staves .form-note { color: var(--pencil); }

/* Notebook form (Audit — directly on the dimmed photo) */
.form--notebook label { color: var(--gold); }
.form--notebook input,
.form--notebook select,
.form--notebook textarea {
  font-size: 18px;
  color: var(--paper);
  box-shadow: inset 0 -1px 0 rgba(245, 245, 240, .6);
}
.form--notebook ::placeholder { color: rgba(245, 245, 240, .55); }
.form--notebook input:focus,
.form--notebook textarea:focus {
  outline: none;
  box-shadow: inset 0 -2px 0 var(--gold);
  background-color: rgba(245, 245, 240, .05);
}
.form--notebook textarea { min-height: 140px; }
.form--notebook .form-note { color: rgba(245, 245, 240, .78); }

/* ============================================================
   SPEAKING — Inquiry on sheet music
   ============================================================ */
.inquiry {
  position: relative;
  isolation: isolate;
  padding: var(--sec) 0;
  color: var(--char);
  scroll-margin-top: 150px;
}
.inquiry__tex {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(245, 245, 240, .8);
}
.inquiry__intro { grid-column: c 1 / c 5; align-self: start; }
.inquiry__intro h2 { color: var(--navy); }
.inquiry__intro p { margin-top: 20px; max-width: 32ch; }
.inquiry__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.inquiry__panel {
  grid-column: c 6 / c-end;
  padding: clamp(28px, 4vw, 52px);
  background: var(--stock);
  border-top: 4px solid var(--navy);
}

/* ============================================================
   ABOUT — Hero: the soloist
   ============================================================ */
.soloist {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: 88svh;
}
.soloist__field {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px clamp(24px, 4.5vw, 72px) 80px var(--pad);
}
.soloist__field h1 { font-weight: 800; }
.soloist__field .lead { margin-top: 20px; color: rgba(245, 245, 240, .88); max-width: 30ch; }
.soloist__media { position: relative; min-height: 460px; border-left: 4px solid var(--gold); background: #2a3550; }
.soloist__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 14%;
}

/* ============================================================
   ABOUT — Story with engraved drop cap
   ============================================================ */
.story { padding: var(--sec) 0 calc(var(--sec) + 24px); }
.story__text { grid-column: c 2 / c 8; font-size: 19px; line-height: 1.7; }
.story__text p { max-width: 62ch; }
.story__text p + p { margin-top: 1.2em; }
.story__text p:first-of-type::first-letter {
  float: left;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 8.1em;
  line-height: .74;
  margin: .045em .09em 0 -.02em;
  color: var(--navy);
}
.story__media { grid-column: c 9 / c-end; margin-top: 64px; }
.story__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 30% center; }
.story__media figcaption {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 4px solid var(--gold);
  font-size: .8125rem;
  line-height: 1.45;
  letter-spacing: .01em;
  color: var(--pencil);
  max-width: 28ch;
}

/* ============================================================
   ABOUT — The podium years (gold)
   ============================================================ */
.years { padding: var(--sec) 0 calc(var(--sec) + 64px); align-items: center; }
.years__list { grid-column: c 1 / c 8; list-style: none; }
.years__list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(46, 46, 46, .3);
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.45rem, 2.3vw, 2.125rem);
  line-height: 1.25;
}
.years__list li:last-child { border-bottom: 1px solid rgba(46, 46, 46, .3); }
.years__list .rmark { margin-top: 2px; }
.years__media { grid-column: c 9 / full-end; }
.years__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* ============================================================
   AUDIT — Hero: the form on the café table
   ============================================================ */
.audit-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--nav-h));
  padding: 120px 0 88px;
  color: var(--paper);
  align-items: start;
}
.audit-hero__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.audit-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(27, 42, 74, .78);
}
.audit-hero__copy { grid-column: c 1 / c 6; padding-right: clamp(0px, 2vw, 32px); }
.audit-hero__copy h1 { font-size: clamp(2.3rem, 3.7vw, 3.3rem); font-weight: 700; line-height: 1.04; letter-spacing: -0.01em; }
.audit-hero__copy .lead { margin-top: 24px; color: rgba(245, 245, 240, .9); max-width: 36ch; }
.mini-dir { list-style: none; margin-top: 40px; }
.mini-dir li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 17px; }
.mini-dir .ph { color: var(--gold); font-size: 20px; }
.mini-dir a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(201, 168, 76, .6); }
.mini-dir a:hover { border-bottom-color: var(--gold); }
.audit-hero__form {
  grid-column: c 6 / c-end;
  padding-left: clamp(28px, 4vw, 64px);
  border-left: 1px solid var(--gold);
}
.audit-hero a:focus-visible, .audit-hero .btn:focus-visible { outline-color: var(--paper); }

/* ============================================================
   AUDIT — What to expect: fifteen minutes at ♩ = 60
   ============================================================ */
.expect { padding: var(--sec) 0; align-items: center; }
.expect__list-wrap { grid-column: c 1 / c 8; }
.expect__rows { list-style: none; margin-top: 44px; }
.expect__row {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0 32px;
}
.expect__row + .expect__row { margin-top: 20px; }
.expect__time {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  padding-top: 6px;
}
.expect__time small { display: block; font-weight: 400; font-size: 13px; color: var(--pencil); margin-top: 2px; }
.expect__row h3 { color: var(--navy); }
.expect__row p { margin-top: 6px; max-width: 46ch; }
.expect__media { grid-column: c 9 / full-end; }
.expect__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ============================================================
   AUDIT — Contact directory: the phone as display type
   ============================================================ */
.directory { padding: var(--sec) 0; row-gap: 0; }
.directory__phone { grid-column: c 1 / c 8; align-self: end; }
.big-phone {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 4px solid var(--gold);
  padding-bottom: 10px;
  font-variant-numeric: lining-nums;
}
.big-phone:hover { color: #fff; }
.directory__phone p { margin-top: 18px; color: rgba(245, 245, 240, .85); }
.directory__place { grid-column: c 9 / c-end; align-self: end; }
.directory__place p:first-child { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 600; font-size: 26px; }
.directory__place .ph { color: var(--gold); }
.directory__place p + p { margin-top: 10px; color: rgba(245, 245, 240, .85); }
.directory__inset { grid-column: c 1 / c-end; margin-top: 72px; border-top: 4px solid var(--gold); border-bottom: 4px solid var(--gold); }
.directory__inset img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.directory a:focus-visible { outline-color: var(--paper); }

/* ============================================================
   404 — a rest where a note should be
   ============================================================ */
.notfound {
  position: relative;
  isolation: isolate;
  min-height: 72svh;
  padding: 180px var(--pad) 120px;
  text-align: center;
}
.notfound__tex {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .12;
  filter: invert(1) grayscale(1);
  mix-blend-mode: screen;
}
.notfound .rest { width: 28px; height: 48px; fill: var(--gold); margin: 0 auto; transform: none; }
.notfound h1 { margin-top: 28px; }
.notfound p { margin: 20px auto 0; max-width: 44ch; color: rgba(245, 245, 240, .88); }
.notfound__links { list-style: none; margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 36px; }

/* ============================================================
   Responsive
   ============================================================ */

/* --- Nav collapses to the podium tab + drawer below 960px --- */
@media (max-width: 959px) {
  :root { --nav-h: 64px; }
  html { scroll-padding-top: 130px; }
  .nav__inner { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__call,
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    min-height: 44px;
    color: var(--paper);
    text-decoration: none;
  }
  .nav__call { justify-self: start; font-size: 22px; }
  .nav__call .ph { color: var(--gold); }
  .nav__toggle {
    justify-self: end;
    padding: 10px 12px;
    background: transparent;
    border: 1px solid rgba(245, 245, 240, .4);
    border-radius: 2px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .nav__toggle .ph { font-size: 18px; color: var(--gold); }
  .nav__brand { width: 240px; height: 112px; }   /* 64px bar + 48px overhang */
  .nav__logo { top: 8px; left: 54px; height: 96px; max-width: 180px; }
}
@media (max-width: 479px) {
  .nav__brand { width: 196px; }
  .nav__logo { left: 9px; }
  .nav__toggle { padding: 10px; }
  .nav__toggle-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

/* --- Home arc: tablet — six seats in one curved row --- */
@media (max-width: 1099px) {
  .arc {
    min-height: 0;
    padding: 150px var(--pad) 72px;
  }
  .arc__stage {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas:
      "seats seats seats"
      "head  head  head"
      "sub   pod   cta";
    column-gap: 36px;
    align-items: center;
  }
  .arc__seats {
    grid-area: seats;
    position: static;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 22px;
  }
  .arc__section {
    position: static;
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 8px;
  }
  .arc__section[data-beat="3"] { display: none; }
  .arc__tile {
    position: relative;
    left: auto;
    top: auto;
    width: clamp(92px, 12vw, 124px);
    height: auto;
    aspect-ratio: 3 / 4;
    transform-origin: 50% 50%;
    transform: rotate(var(--ta, 0deg)) translateY(var(--ty, 0px));
  }
  .arc__tile--fin1 { --ta: -12deg; --ty: 44px; }
  .arc__tile--fin2 { --ta: -8deg;  --ty: 22px; }
  .arc__tile--ops1 { --ta: -3deg;  --ty: 6px; }
  .arc__tile--ops2 { --ta: 0deg;   --ty: 0px; }
  .arc__tile--foh1 { --ta: 5deg;   --ty: 10px; }
  .arc__tile--foh2 { --ta: 10deg;  --ty: 32px; }
  .arc__tile--del1, .arc__tile--del2 { --ta: 0deg; }
  .arc__section:nth-child(1) .arc__tile:first-of-type { grid-row: 1; }
  .arc__label {
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
    width: auto;
    height: auto;
    margin-top: 16px;
    transform: translateY(calc(var(--ly, 0px) - var(--lift)));
    font-size: 12px;
  }
  .arc__section[data-beat="1"] .arc__label { --ly: 40px; }
  .arc__section[data-beat="2"] .arc__label { --ly: 8px; }
  .arc__section[data-beat="4"] .arc__label { --ly: 26px; }
  .arc__headline {
    grid-area: head;
    position: static;
    width: auto;
    max-width: 640px;
    margin: 56px auto 40px;
    transform: none;
    font-size: clamp(2.6rem, 6vw, 3.4rem);
  }
  .arc__barline { margin: 14px auto; }
  .arc__podium {
    grid-area: pod;
    position: relative;
    left: auto;
    bottom: auto;
    width: 180px;
    transform: none;
    margin-bottom: 20px;
  }
  .arc__podium::after { left: -24px; right: -24px; bottom: -20px; height: 20px; }
  .arc__sub { grid-area: sub; position: static; width: auto; font-size: 17px; }
  .arc__cta { grid-area: cta; position: static; justify-self: start; }
}

/* --- Tablet generally --- */
@media (max-width: 1023px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split::before { display: none; }
  .split__col--sym { border-top: 4px solid var(--gold); }
  .split__copy { max-width: none; padding: 48px var(--pad) 72px; }
  .split__col--trap .split__copy { margin-left: 0; }
  .split__col--trap .split__head { text-align: left; }
  .split__col--trap .body-copy { margin-left: 0; }

  .path__step:nth-child(2) { margin-bottom: 16px; }
  .path__step:nth-child(3) { margin-bottom: 32px; }

  .closer__title, .closer__sub { grid-column: c 1 / c 9; }
  .closer__bar { grid-column: c 9 / c 10; }
  .closer__cta { grid-column: c 10 / c-end; }

  .poster { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .formats__head { grid-column: c 1 / c-end; margin-bottom: 48px; }
  .formats__row { grid-column: c 1 / c-end; }
  .formats__item:nth-child(2) { margin-top: 24px; }
  .tuning__copy { grid-column: c 1 / c-end; }
  .rail { grid-column: c 1 / c-end; margin-top: 56px; }
  .trap__copy { grid-column: c 7 / c-end; }
  .engage__list-wrap { grid-column: c 1 / c-end; }
  .engage__media { grid-column: c 1 / c-end; margin-top: 48px; }
  .engage__media img { aspect-ratio: 16 / 10; }
  .inquiry__intro { grid-column: c 1 / c-end; margin-bottom: 40px; }
  .inquiry__panel { grid-column: c 1 / c-end; }
  .audit-hero__copy { grid-column: c 1 / c-end; }
  .audit-hero__form { grid-column: c 1 / c-end; margin-top: 48px; padding: 40px 0 0; border-left: 0; border-top: 1px solid var(--gold); }
  .directory__phone { grid-column: c 1 / c-end; }
  .directory__place { grid-column: c 1 / c-end; margin-top: 40px; }
}

/* --- Mobile --- */
@media (max-width: 767px) {
  :root { --sec: 72px; }

  /* Home arc: a tilted scroll-snap rail of all eight players, then the podium */
  .arc { padding: 128px 0 64px; }
  .arc__stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .arc__seats {
    order: -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 12px var(--pad) 20px;
    scrollbar-width: none;
  }
  .arc__seats::-webkit-scrollbar { display: none; }
  .arc__section,
  .arc__section[data-beat="3"] { display: grid; scroll-snap-align: start; scroll-margin-left: var(--pad); }
  .arc__tile { width: 132px; --ty: 0px !important; }
  .arc__section .arc__tile:nth-of-type(odd) { --ta: -3deg !important; }
  .arc__section .arc__tile:nth-of-type(even) { --ta: 3deg !important; }
  .arc__label { --ly: 0px !important; margin-top: 12px; }
  .arc__headline {
    margin: 36px 0 36px;
    padding: 0 var(--pad);
    text-align: left;
    font-size: clamp(2.3rem, 10.5vw, 3rem);
    font-weight: 800;
  }
  .arc__barline { margin: 14px 0; }
  .arc__podium {
    width: min(100% - 2 * var(--pad) - 48px, 360px);
    margin: 0 auto 20px;
  }
  .arc__sub { margin: 48px var(--pad) 0; text-align: left; }
  .arc__cta { margin: 28px var(--pad) 0; align-self: flex-start; }

  .split__media img { height: 240px; }

  .wall__copy { grid-column: c 1 / c-end; padding-bottom: 48px; }
  .wall__list li { font-size: 18px; }
  .wall__media { grid-column: c 3 / full-end; margin-bottom: -32px; }

  .path { padding-top: calc(var(--sec) + 32px); }
  .path__head { grid-column: c 1 / c-end; }
  .path__steps { grid-template-columns: minmax(0, 1fr); row-gap: 36px; margin-top: 40px; }
  .path__step,
  .path__step:nth-child(2),
  .path__step:nth-child(3) {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 40% minmax(0, 1fr);
    column-gap: 18px;
    align-items: start;
  }
  .path__fig { grid-row: 1 / 4; }
  .path__step .rmark { margin-top: 0; width: 40px; height: 40px; font-size: 24px; }
  .path__step h3 { font-size: 1.3rem; margin-top: 10px; }
  .path__step p { font-size: 16px; }

  .dock__media img { min-height: 340px; }
  .dock__panel { padding: 32px 24px; }
  .dock--bl .dock__panel { position: relative; left: auto; bottom: auto; width: calc(100% - 28px); margin-top: -96px; }
  .dock--tr .dock__panel { width: calc(100% - 40px); top: -40px; padding: 24px; }
  .dock__line, .dock--tr .dock__line { font-size: 22px; }
  .dock--bl + .closer { padding-top: var(--sec); }

  .closer__title, .closer__sub, .closer__cta { grid-column: c 1 / c-end; }
  .closer__title { grid-row: 1; }
  .closer__sub { grid-row: 2; }
  .closer__bar { grid-column: c 1 / c-end; grid-row: 3; justify-self: start; width: 64px; height: 4px; margin: 32px 0; }
  .closer__cta { grid-row: 4; }

  .poster { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .poster__media { order: -1; min-height: 0; aspect-ratio: 4 / 5; max-height: 78svh; }
  .poster__media img { object-position: 42% 40%; }
  .poster__field { padding: 40px var(--pad) 56px; }

  .trap__media { grid-column: full-start / c 11; }
  .trap__media img { aspect-ratio: 4 / 3; }
  .trap__copy { grid-column: c 1 / c-end; margin-top: 40px; }
  .pull { margin-left: 0; font-size: 24px; }

  .hall { display: block; }
  .hall__img { min-height: 0; aspect-ratio: 4 / 3; }
  .hall__panel { position: relative; width: auto; margin: -80px 16px 0; padding: 32px 24px; }

  .rail { --rh: clamp(200px, 56vw, 300px); gap: 8px; }

  .proscenium { padding: 96px var(--pad) 64px; }
  .arch { padding: 0; }
  .arch__frame { aspect-ratio: 4 / 3; border-radius: 22% 22% 0 0 / 30% 30% 0 0; }
  .proscenium h1 { margin-top: 40px; }

  .program { grid-template-columns: minmax(0, 1fr); }
  .program__portrait { max-width: 240px; }

  .formats__row {
    grid-column: full-start / full-end;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px var(--pad) 12px calc(var(--pad) + 16px);
    gap: 28px;
    scrollbar-width: thin;
  }
  .formats__item { flex: 0 0 72vw; scroll-snap-align: start; scroll-margin-left: calc(var(--pad) + 16px); }
  .formats__item:nth-child(2) { margin-top: 24px; }

  .lipband img { min-height: 380px; }
  .lipband__strip { font-size: 19px; min-height: 72px; }

  .contact-form { grid-template-columns: minmax(0, 1fr); gap: 24px; }

  .soloist { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .soloist__media { order: -1; min-height: 0; aspect-ratio: 4 / 5; max-height: 76svh; border-left: 0; border-bottom: 4px solid var(--gold); }
  .soloist__field { padding: 40px var(--pad) 56px; }

  .story__text { grid-column: c 1 / c-end; font-size: 18px; }
  .story__media { grid-column: c 3 / c-end; margin-top: 48px; }

  .years__list { grid-column: c 1 / c-end; }
  .years__list li { grid-template-columns: 40px minmax(0, 1fr); gap: 16px; }
  .years__list .rmark { width: 40px; height: 40px; font-size: 24px; }
  .years__media { grid-column: c 4 / full-end; margin-top: 40px; }

  .audit-hero { padding: 104px 0 64px; }
  .expect__list-wrap { grid-column: c 1 / c-end; }
  .expect__row { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .expect__media { grid-column: c 2 / full-end; margin-top: 40px; }
  .directory__inset { margin-top: 48px; }

  .footer__grid { grid-template-columns: minmax(0, 1fr); text-align: center; gap: 36px; }
  .footer__brand { order: -1; }
  .footer__contact { justify-self: center; text-align: center; }
  .footer__place { justify-content: center; }
  .footer__links { justify-self: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
  .footer__links li + li { margin-top: 0; }
}

@media (max-width: 479px) {
  .big-phone { font-size: clamp(1.9rem, 10vw, 2.3rem); }
  .lipband__strip { font-size: 17px; }
}
/* ============================================================
   Gallery lightbox — scaffolded shared mechanism (binding default)
   Inert until a data-lightbox group container exists on the page.
   Restyle this chrome freely to match the brand; do not remove
   the mechanism. (frontend-design.md § "Gallery lightbox")
   ============================================================ */
.lightbox-zoomable {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}
.lightbox.is-open {
  display: flex;
  animation: lightbox-in var(--motion-duration) var(--motion-ease);
}
@keyframes lightbox-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox.is-open { animation: none; }
}
.lightbox__scrim {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--color-text) 85%, transparent);
}
.lightbox__frame {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 80px -16px color-mix(in srgb, var(--color-text) 60%, transparent);
}
.lightbox__caption {
  font-family: var(--font-secondary, inherit);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-bg);
  text-align: center;
  max-width: 60ch;
}
.lightbox__counter {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--font-secondary, inherit);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-bg);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--color-text) 25%, transparent);
  font-size: 1.15rem;
  line-height: 1;
}
.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__prev:hover,
.lightbox__prev:focus-visible,
.lightbox__next:hover,
.lightbox__next:focus-visible {
  color: var(--color-accent);
}
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev  { left: 1rem;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__caption[hidden],
.lightbox__counter[hidden],
.lightbox__prev[hidden],
.lightbox__next[hidden] {
  display: none;
}

/* Lightbox chrome — brand restyle (pit-navy house, gold stand-light controls) */
.lightbox__scrim { background: rgba(17, 28, 51, .94); }
.lightbox__img { border-bottom: 4px solid var(--gold); box-shadow: 0 30px 90px -20px rgba(0, 0, 0, .6); }
.lightbox__caption { color: rgba(245, 245, 240, .9); font-size: .9375rem; }
.lightbox__counter { color: var(--gold); font-variant-numeric: tabular-nums; }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  background: var(--navy);
  color: var(--paper);
  border: 1px solid rgba(201, 168, 76, .7);
  border-radius: 2px;
  box-shadow: none;
}
.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__prev:hover,
.lightbox__prev:focus-visible,
.lightbox__next:hover,
.lightbox__next:focus-visible {
  color: var(--char);
  background: var(--gold);
}
.lightbox-zoomable:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* math */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJT2SKjWXFBPgas.woff2') format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJTkSKjWXFBPgas.woff2') format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* latin-ext */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJSESKjWXFBPgas.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJSKSKjWXFBP.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0She1ZuWi3hKpA.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0SZe1ZuWi3g.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
