/* ==========================================================================
   J3 Productions — site styles
   Brand standards: Navy #021540 · Gold #B38B4D · White · Montserrat
   Usage balance ~60% navy / 15% gold / 25% white-neutral. Gold is an accent.
   ========================================================================== */

:root {
  --navy: #021540;
  --ink: #0E1730;
  --gold: #B38B4D;
  --gold-soft: #C9A66B;
  --gold-tint: #EFE6D6;
  --paper: #F5F6F8;
  --slate: #8A90A0;
  --white: #FFFFFF;
  --navy-deep: #010D2A;

  --line: rgba(255, 255, 255, .14);
  --line-dark: rgba(2, 21, 64, .14);
  --text-soft: rgba(255, 255, 255, .78);

  --font: "Montserrat", Arial, Helvetica, sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(72px, 10vw, 148px);
  --header-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--navy); color: var(--white);
  font-family: var(--font); font-size: 1.0625rem; line-height: 1.65; font-weight: 400;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--navy); }

.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--gold); color: var(--navy); padding: 10px 16px; font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 12px; }
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(860px + var(--gutter) * 2); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ------------------------------------------------------------ type */
.eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); display: flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); flex: none; }
.eyebrow--plain::before { display: none; }
.display { font-size: clamp(2.5rem, 6.4vw, 5.5rem); font-weight: 800; line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
.h1 { font-size: clamp(2.25rem, 5vw, 4.25rem); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; text-wrap: balance; }
.h2 { font-size: clamp(1.85rem, 3.6vw, 3rem); font-weight: 800; line-height: 1.06; letter-spacing: -.028em; text-wrap: balance; }
.h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); font-weight: 700; line-height: 1.2; letter-spacing: -.012em; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.6; color: var(--text-soft); max-width: 60ch; font-weight: 400; }
.gold { color: var(--gold-soft); }
em.gold { font-style: normal; }
.prose p + p { margin-top: 1.1em; }
.prose p { color: var(--text-soft); max-width: 64ch; }
.prose a { color: var(--gold-soft); text-underline-offset: 3px; }

/* ------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 56px; padding: 0 30px; border: 1px solid transparent; border-radius: 0;
  font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn::after { content: "→"; font-size: 1.05rem; letter-spacing: 0; transition: transform .3s var(--ease); }
.btn:hover::after { transform: translateX(4px); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--white); }
.btn--ghost { border-color: rgba(255, 255, 255, .45); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--gold); color: var(--navy); }
.btn--outline-navy { border-color: var(--navy); color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--sm { min-height: 46px; padding: 0 22px; font-size: .7rem; }
.btn--sm::after { display: none; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--gold-soft); padding-bottom: 6px; border-bottom: 1px solid currentColor; transition: gap .3s var(--ease), color .3s; }
.text-link::after { content: "→"; letter-spacing: 0; }
.text-link:hover { gap: 16px; color: var(--white); }
.on-light .text-link { color: var(--navy); }
.on-light .text-link:hover { color: var(--gold); }

/* ------------------------------------------------------------ header */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h); transition: background .4s var(--ease), height .4s var(--ease), box-shadow .4s; }
.site-header::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(1, 13, 42, .78), rgba(1, 13, 42, 0)); pointer-events: none; transition: opacity .4s; }
.site-header.is-solid { background: rgba(2, 21, 64, .96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); height: 68px; box-shadow: 0 1px 0 var(--line); }
.site-header.is-solid::before { opacity: 0; }
.site-header__inner { position: relative; height: 100%; max-width: calc(1440px + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; gap: 32px; }
.site-header__logo { display: block; flex: none; }
.site-header__logo img { height: 50px; width: auto; transition: height .4s var(--ease); }
.site-header.is-solid .site-header__logo img { height: 40px; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: clamp(18px, 2.4vw, 36px); }
.site-nav a { position: relative; display: block; padding: 10px 0; font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; color: rgba(255, 255, 255, .86); transition: color .25s; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.site-nav a:hover, .site-nav a[aria-current] { color: var(--white); }
.site-nav a:hover::after, .site-nav a[aria-current]::after { transform: scaleX(1); }
.menu-toggle { display: none; align-items: center; gap: 12px; margin-left: auto; background: none; border: 0; padding: 12px 0 12px 12px; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.menu-toggle__bars { position: relative; width: 26px; height: 12px; }
.menu-toggle__bars i { position: absolute; left: 0; right: 0; height: 2px; background: var(--white); transition: transform .35s var(--ease), top .35s var(--ease); }
.menu-toggle__bars i:first-child { top: 0; }
.menu-toggle__bars i:last-child { top: 10px; background: var(--gold); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:first-child { top: 5px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:last-child { top: 5px; transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--navy); padding: calc(var(--header-h) + 24px) var(--gutter) 32px; display: flex; flex-direction: column; overflow-y: auto; opacity: 0; transition: opacity .3s var(--ease); }
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; }
.mobile-menu ul { border-top: 1px solid var(--line); }
.mobile-menu li a { display: flex; align-items: baseline; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.5rem, 6.5vw, 2rem); font-weight: 800; letter-spacing: -.02em; text-decoration: none; }
.mobile-menu li a span { font-size: .7rem; font-weight: 600; letter-spacing: .2em; color: var(--gold-soft); }
.mobile-menu .btn { margin-top: 28px; }
.mobile-menu__meta { margin-top: auto; padding-top: 28px; font-size: .85rem; color: var(--text-soft); }
.mobile-menu__meta a { text-decoration: none; }

@media (max-width: 1140px) {
  .site-nav, .site-header__cta { display: none; }
  .menu-toggle { display: inline-flex; }
  :root { --header-h: 72px; }
  .site-header__logo img { height: 42px; }
}

/* ------------------------------------------------------------ hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media img { animation: slow-zoom 24s var(--ease) both; }
@keyframes slow-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(to top, var(--navy) 0%, rgba(2, 21, 64, .82) 22%, rgba(2, 21, 64, .25) 55%, rgba(1, 13, 42, .55) 100%),
  linear-gradient(to right, rgba(1, 13, 42, .72) 0%, rgba(1, 13, 42, 0) 62%); }
.hero__inner { width: 100%; padding-top: calc(var(--header-h) + 48px); padding-bottom: clamp(36px, 5vw, 64px); }
.hero__title { max-width: 13ch; margin-top: 22px; }
.hero__lede { margin-top: 26px; max-width: 54ch; color: rgba(255, 255, 255, .88); }
.hero .btn-row { margin-top: 36px; }
.hero__proof { margin-top: clamp(40px, 6vw, 80px); padding-top: 26px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hero__proof div { display: flex; flex-direction: column; gap: 4px; }
.hero__proof dt { order: 2; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .7); line-height: 1.5; }
.hero__proof dd { font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--white); }
.hero__proof dd.is-text { font-size: clamp(1.15rem, 1.9vw, 1.6rem); letter-spacing: -.02em; line-height: 1.15; padding-top: .2em; }
.hero__proof dd small { font-size: .5em; font-weight: 700; color: var(--gold-soft); letter-spacing: 0; margin-left: 2px; }
@media (max-width: 760px) {
  .hero__media img { object-position: 76% 40% !important; }
  .hero::after { background: linear-gradient(to top, var(--navy) 0%, rgba(2, 21, 64, .86) 30%, rgba(2, 21, 64, .42) 62%, rgba(1, 13, 42, .62) 100%); }
}
@media (max-width: 760px) { .hero__proof { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; } }

.page-hero { position: relative; min-height: min(78vh, 760px); display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; }
.page-hero--short { min-height: min(62vh, 580px); }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img, .page-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, var(--navy) 2%, rgba(2, 21, 64, .7) 38%, rgba(1, 13, 42, .5) 100%); }
.page-hero__inner { width: 100%; padding-top: calc(var(--header-h) + 56px); padding-bottom: clamp(40px, 6vw, 80px); }
.page-hero__inner .h1, .page-hero__inner .display { margin-top: 20px; max-width: 17ch; }
.page-hero__inner .lede { margin-top: 24px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .65); margin-bottom: 26px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--gold-soft); }
.crumbs li + li::before { content: "/"; margin-right: 10px; color: var(--gold); }

/* portrait-footage hero: full-bleed on phones, framed panel beside the copy on desktop */
@media (min-width: 900px) {
  .page-hero--portrait { min-height: min(94vh, 920px); background: radial-gradient(ellipse at 78% 45%, rgba(179, 139, 77, .13), transparent 58%), var(--navy-deep); }
  .page-hero--portrait::after { display: none; }
  .page-hero--portrait .page-hero__media { inset: calc(var(--header-h) + 36px) max(var(--gutter), calc((100vw - var(--container)) / 2)) 60px auto; aspect-ratio: 9 / 16; z-index: 0; border: 1px solid var(--line); box-shadow: 16px 16px 0 -1px var(--navy-deep), 16px 16px 0 0 var(--gold); }
  .page-hero--portrait .page-hero__inner { position: relative; z-index: 1; }
  .page-hero--portrait .page-hero__inner > * { max-width: min(660px, 52vw); }
}

/* ------------------------------------------------------------ sections */
.section { padding-block: var(--section); position: relative; }
.section--ink { background: var(--ink); }
.section--deep { background: var(--navy-deep); }
.section--paper { background: var(--paper); color: var(--navy); }
.section--tint { background: var(--gold-tint); color: var(--navy); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.on-light .eyebrow { color: #7A5A24; }
.on-light .lede, .on-light .prose p { color: #2B3553; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 6vw, 80px); }
.section-head .h2, .section-head .h1 { margin-top: 20px; }
.section-head--center { display: block; text-align: center; max-width: 820px; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .lede { margin: 22px auto 0; }
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; align-items: start; } }

/* statement */
.statement { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 4fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.statement__text { font-size: clamp(1.5rem, 2.9vw, 2.5rem); font-weight: 700; line-height: 1.18; letter-spacing: -.025em; text-wrap: balance; }
.statement__text span { color: var(--gold-soft); }
.statement__aside { padding-top: 8px; }
.statement__aside p { color: var(--text-soft); }
.statement__aside p + p { margin-top: 1em; }
.statement__aside .text-link { margin-top: 28px; }
@media (max-width: 820px) { .statement { grid-template-columns: 1fr; } }

/* range: big stage / intimate room */
.range { display: grid; grid-template-columns: 1fr 1fr; min-height: min(92vh, 900px); }
.range__panel { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: flex-end; min-height: 560px; text-decoration: none; color: var(--white); }
.range__panel img, .range__panel video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.range__panel::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(1, 13, 42, .94) 0%, rgba(1, 13, 42, .45) 45%, rgba(1, 13, 42, .15) 100%); transition: background .5s; }
.range__panel:hover img, .range__panel:hover video { transform: scale(1.04); }
.range__body { padding: clamp(28px, 4vw, 56px); width: 100%; }
.range__body .range__stat { color: var(--white); max-width: none; font-size: clamp(3.4rem, 7vw, 6.5rem); font-weight: 800; letter-spacing: -.045em; line-height: .9; }
.range__body .range__stat small { display: block; margin-top: 12px; font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); line-height: 1.5; }
.range__body h3 { margin-top: 26px; }
.range__body p { margin-top: 10px; color: var(--text-soft); max-width: 44ch; font-size: 1rem; }
.range__body .text-link { margin-top: 24px; }
.range__panel + .range__panel { border-left: 1px solid var(--line); }
@media (max-width: 820px) { .range { grid-template-columns: 1fr; } .range__panel { min-height: 520px; } .range__panel + .range__panel { border-left: 0; border-top: 1px solid var(--line); } }

/* services */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { position: relative; isolation: isolate; overflow: hidden; background: var(--navy); min-height: 520px; padding: 32px 28px; display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; color: var(--white); }
.service-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: opacity .6s var(--ease), transform 1.2s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(2, 21, 64, .98) 8%, rgba(2, 21, 64, .55) 55%, rgba(2, 21, 64, .25)); }
.service-card:hover img { opacity: .95; transform: scale(1.05); }
.service-card__num { position: absolute; top: 28px; left: 28px; font-size: .74rem; font-weight: 700; letter-spacing: .2em; color: var(--gold-soft); }
.service-card p { margin-top: 12px; font-size: .95rem; line-height: 1.6; color: var(--text-soft); }
.service-card__more { margin-top: 22px; font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.service-card__more::after { content: " →"; }
@media (max-width: 1100px) { .service-grid { grid-template-columns: repeat(2, 1fr); } .service-card { min-height: 420px; } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } .service-card { min-height: 360px; } }

/* feature event */
.feature-event { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(96px, 13vw, 190px); }
.feature-event__media { position: absolute; inset: 0; z-index: -2; }
.feature-event__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; }
.feature-event::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to right, rgba(1, 13, 42, .95) 0%, rgba(1, 13, 42, .78) 45%, rgba(1, 13, 42, .25) 100%), linear-gradient(to top, var(--navy), transparent 30%, transparent 75%, var(--navy)); }
.feature-event .display { margin-top: 22px; max-width: 12ch; }
.feature-event .lede { margin-top: 24px; max-width: 52ch; }
.feature-event .btn-row { margin-top: 36px; }
@media (max-width: 820px) { .feature-event::after { background: linear-gradient(to top, var(--navy) 0%, rgba(1, 13, 42, .86) 55%, rgba(1, 13, 42, .55) 100%); } }

.fact-row { display: flex; flex-wrap: wrap; gap: 14px 44px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); max-width: 760px; }
.fact-row dt { font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); }
.fact-row dd { margin-top: 4px; font-weight: 600; font-size: 1rem; }
.fact-row--stack { margin-top: 26px; margin-bottom: 30px; }
.on-light .fact-row { border-color: var(--line-dark); }
.on-light .fact-row dt { color: #7A5A24; }

.event-card { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); background: var(--ink); }
.event-card + .event-card { margin-top: 32px; }
.event-card__media { position: relative; min-height: 420px; }
.event-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: clamp(28px, 4vw, 60px); }
.event-card__body .h2 { margin-top: 18px; }
.event-card__body > p:not(.eyebrow) { margin-top: 18px; color: var(--text-soft); }
@media (max-width: 900px) { .event-card { grid-template-columns: 1fr; } .event-card__media { min-height: 300px; } }

/* work cards */
.work-grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(16px, 2vw, 28px); }
.work-grid--even { grid-template-columns: 1fr 1fr; }
.work-card { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(460px, 56vw, 680px); display: flex; align-items: flex-end; text-decoration: none; color: var(--white); }
.work-card img, .work-card video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.work-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(1, 13, 42, .95) 0%, rgba(1, 13, 42, .3) 55%, rgba(1, 13, 42, .1)); }
.work-card:hover img, .work-card:hover video { transform: scale(1.04); }
.work-card__body { padding: clamp(24px, 3.4vw, 48px); width: 100%; }
.work-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tag { display: inline-block; padding: 6px 12px; border: 1px solid rgba(255, 255, 255, .4); font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.tag--gold { border-color: var(--gold); color: var(--gold-soft); }
.work-card__body p { margin-top: 12px; color: var(--text-soft); max-width: 50ch; font-size: 1rem; }
.work-card__body .text-link { margin-top: 22px; }
@media (max-width: 900px) { .work-grid, .work-grid--even { grid-template-columns: 1fr; } }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.stats > div { padding: clamp(28px, 4vw, 52px) clamp(16px, 2.4vw, 36px); display: flex; flex-direction: column; }
.stats > div + div { border-left: 1px solid var(--line); }
.stats dt { order: 2; margin-top: 14px; font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-soft); line-height: 1.6; }
.stats dd { font-size: clamp(2.6rem, 5.6vw, 4.75rem); font-weight: 800; letter-spacing: -.04em; line-height: .95; color: var(--gold-soft); }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } .stats > div:nth-child(3) { border-left: 0; } .stats > div:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* split media/text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.split--top { align-items: start; }
.split__media { position: relative; }
.split__media img, .split__media video { width: 100%; }
.split__media--tall img, .split__media--tall video { aspect-ratio: 4 / 5; object-fit: cover; }
.split__media--frame::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); z-index: -1; }
.split__media--frame { isolation: isolate; }
.split .h2 { margin-top: 20px; }
.split .prose { margin-top: 24px; }
.split .btn-row, .split .text-link { margin-top: 32px; }
.split--flip .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--flip .split__media { order: 0; } .split__media--frame::before { inset: 12px -10px -12px 10px; } }

/* lists */
.tick-list { margin-top: 22px; display: grid; gap: 12px; }
.tick-list li { position: relative; padding-left: 30px; color: var(--text-soft); }
.tick-list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 16px; height: 1px; background: var(--gold); }
.on-light .tick-list li { color: #2B3553; }
.tick-list--cols { grid-template-columns: 1fr 1fr; column-gap: 32px; }
@media (max-width: 600px) { .tick-list--cols { grid-template-columns: 1fr; } }

/* service detail rows */
.service-row { display: grid; grid-template-columns: 110px minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 72px); padding-block: clamp(48px, 6vw, 88px); border-top: 1px solid var(--line); }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row__num { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--gold-soft); }
.service-row__body p { margin-top: 18px; color: var(--text-soft); }
.service-row__body .text-link { margin-top: 28px; }
.service-row__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-row__proof { margin-top: 16px; font-size: .78rem; color: var(--slate); letter-spacing: .04em; }
@media (max-width: 900px) { .service-row { grid-template-columns: 1fr; gap: 22px; } .service-row__media { order: -1; } }

/* event types */
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.type-grid li { padding: 26px 22px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; line-height: 1.3; display: flex; flex-direction: column; gap: 10px; transition: background .3s, color .3s; }
.type-grid li span { font-size: .66rem; font-weight: 600; letter-spacing: .2em; color: #7A5A24; }
.type-grid li:hover { background: var(--navy); color: var(--white); }
.type-grid li:hover span { color: var(--gold-soft); }
.section:not(.on-light) .type-grid, .section:not(.on-light) .type-grid li { border-color: var(--line); }
.section:not(.on-light) .type-grid li span { color: var(--gold-soft); }
.section:not(.on-light) .type-grid li:hover { background: var(--gold); color: var(--navy); }
.section:not(.on-light) .type-grid li:hover span { color: var(--navy); }
@media (max-width: 900px) { .type-grid { grid-template-columns: repeat(2, 1fr); } }

/* process */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: step; }
.process li { counter-increment: step; padding: 30px 24px 8px 0; border-top: 1px solid var(--line); position: relative; }
.process li::before { content: "0" counter(step); display: block; font-size: .74rem; font-weight: 700; letter-spacing: .2em; color: var(--gold-soft); margin-bottom: 18px; }
.process li::after { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.process p { margin-top: 10px; font-size: .95rem; color: var(--text-soft); line-height: 1.6; }
.on-light .process li { border-color: var(--line-dark); }
.on-light .process li::before { color: #7A5A24; }
.on-light .process p { color: #2B3553; }
@media (max-width: 1000px) { .process { grid-template-columns: 1fr 1fr; gap: 0 28px; } .process li { padding-bottom: 28px; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* pillars */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.pillar { padding: 32px 26px; border: 1px solid var(--line); border-left: 3px solid var(--gold); background: rgba(255, 255, 255, .02); }
.pillar p { margin-top: 12px; font-size: .95rem; color: var(--text-soft); line-height: 1.6; }
.on-light .pillar { background: var(--white); border-color: var(--line-dark); border-left-color: var(--gold); }
.on-light .pillar p { color: #2B3553; }
.pillars--3 { grid-template-columns: repeat(3, 1fr); }
.pillar--feature { border-color: var(--gold); background: rgba(179, 139, 77, .08); }
.pillar .tag { align-self: flex-start; }
.pillar .tick-list { margin-top: 18px; gap: 10px; }
.pillar .tick-list li { font-size: .93rem; line-height: 1.5; padding-left: 26px; }
.mt-s { margin-top: 14px; }
.strip.strip--quad { grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 1000px) { .pillars, .pillars--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* quote */
.pull-quote { text-align: center; max-width: 980px; margin-inline: auto; }
.pull-quote blockquote { font-size: clamp(1.6rem, 3.6vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -.028em; text-wrap: balance; }
.pull-quote blockquote::before { content: "“"; display: block; font-size: 2.2em; line-height: .6; color: var(--gold); margin-bottom: 12px; font-weight: 800; }
.pull-quote figcaption { margin-top: 28px; font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); }

/* lineup */
.lineup { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1.2vw, 18px); }
.lineup__item { position: relative; isolation: isolate; overflow: hidden; aspect-ratio: 3 / 4; display: flex; align-items: flex-end; }
.lineup__item img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.lineup__item::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(1, 13, 42, .95), rgba(1, 13, 42, 0) 55%); }
.lineup__item:hover img { transform: scale(1.05); }
.lineup__item figcaption { padding: 18px 16px; }
.lineup__item strong { display: block; font-size: 1rem; font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
.lineup__item span { display: block; margin-top: 5px; font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.lineup__item--headliner { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.lineup__item--headliner strong { font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 800; letter-spacing: -.03em; }
.lineup__tile { grid-column: span 2; display: flex; align-items: flex-end; padding: 22px 20px; border: 1px solid var(--gold); }
.lineup__tile p { font-size: clamp(1.3rem, 2.4vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
@media (max-width: 1000px) { .lineup { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .lineup { grid-template-columns: repeat(2, 1fr); } .lineup__item--headliner { aspect-ratio: 1; } .lineup__tile { grid-column: span 1; } }

/* gallery */
.gallery { columns: 4; column-gap: clamp(8px, 1vw, 14px); }
.gallery__item { display: block; width: 100%; margin: 0 0 clamp(8px, 1vw, 14px); padding: 0; border: 0; background: var(--ink); break-inside: avoid; overflow: hidden; position: relative; cursor: zoom-in; }
.gallery__item img { width: 100%; transition: transform .9s var(--ease), opacity .4s; }
.gallery__item:hover img { transform: scale(1.04); opacity: .88; }
.gallery--portrait { columns: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1vw, 14px); }
.gallery--portrait .gallery__item { margin: 0; }
@media (max-width: 1000px) { .gallery { columns: 3; } }
@media (max-width: 640px) { .gallery { columns: 2; } .gallery--portrait { columns: auto; grid-template-columns: 1fr 1fr; } }

.strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.strip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 900px) { .strip { grid-template-columns: repeat(3, 1fr); } .strip.strip--quad { grid-template-columns: 1fr 1fr; } }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(1, 9, 30, .97); display: grid; grid-template-columns: 72px 1fr 72px; align-items: center; }
.lightbox[hidden] { display: none; }
.lightbox__figure { grid-column: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; height: 100dvh; padding: 56px 0 28px; }
.lightbox__figure img { max-width: 100%; max-height: calc(100% - 48px); width: auto; height: auto; object-fit: contain; }
.lightbox__figure figcaption { margin-top: 16px; font-size: .8rem; color: var(--text-soft); text-align: center; min-height: 1.4em; }
.lightbox__close, .lightbox__nav { background: none; border: 0; color: var(--white); font-size: 2.6rem; line-height: 1; width: 56px; height: 56px; display: grid; place-items: center; justify-self: center; transition: color .25s; font-weight: 300; }
.lightbox__close:hover, .lightbox__nav:hover { color: var(--gold-soft); }
.lightbox__close { position: absolute; top: 10px; right: 14px; z-index: 2; }
.lightbox__nav--prev { grid-column: 1; grid-row: 1; }
.lightbox__nav--next { grid-column: 3; grid-row: 1; }
@media (max-width: 640px) { .lightbox { grid-template-columns: 44px 1fr 44px; } .lightbox__nav { width: 44px; font-size: 2.1rem; } }

/* video */
.video-frame { position: relative; background: #000; border: 1px solid var(--line); }
.video-frame video { width: 100%; display: block; }
.video-frame--portrait { max-width: 400px; }
/* three-up reel of portrait clips; swipeable row on phones */
.clip-grid--reel video { border: 1px solid var(--line); }
.clip-grid--reel .is-featured video { border-color: var(--gold); }
.clip-grid--reel figcaption strong { color: var(--gold-soft); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .68rem; }
@media (max-width: 760px) {
  .clip-grid.clip-grid--reel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .clip-grid.clip-grid--reel::-webkit-scrollbar { display: none; }
  .clip-grid.clip-grid--reel figure { flex: 0 0 74%; scroll-snap-align: center; }
  .clip-grid.clip-grid--reel figure:last-child { display: block; }
}
/* clip mosaic: one tall featured clip beside a wide clip and a pair */
.clip-mosaic { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(14px, 1.8vw, 28px); align-items: stretch; }
.clip-mosaic figure { display: flex; flex-direction: column; min-width: 0; min-height: 0; }
.clip-mosaic video, .clip-mosaic img { width: 100%; display: block; object-fit: cover; background: #000; border: 1px solid var(--line); }
.clip-mosaic figcaption { flex: none; margin-top: 10px; font-size: .8rem; color: var(--text-soft); }
.clip-mosaic figcaption strong { color: var(--gold-soft); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .68rem; }
.clip-mosaic__main video { aspect-ratio: 9 / 16; border-color: var(--gold); }
.clip-mosaic__side { display: grid; grid-template-rows: auto minmax(0, 1fr); gap: clamp(14px, 1.8vw, 28px); min-height: 0; }
.clip-mosaic__wide video { aspect-ratio: 16 / 9; }
.clip-mosaic__pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.8vw, 28px); min-height: 0; }
.clip-mosaic__pair video, .clip-mosaic__pair img { flex: 1 1 0; min-height: 0; height: 0; }
@media (max-width: 900px) {
  .clip-mosaic { grid-template-columns: 1fr; }
  .clip-mosaic__main { max-width: 440px; margin-inline: auto; width: 100%; }
  .clip-mosaic__pair video, .clip-mosaic__pair img { flex: none; height: auto; aspect-ratio: 4 / 5; }
}
.video-feature { max-width: 1000px; margin: 0 auto clamp(28px, 4vw, 56px); }
.video-feature .video-caption { text-align: center; }
.video-feature--wide { max-width: 1120px; }
.video-feature--wide .video-frame { border-color: var(--gold); }
.video-caption strong { color: var(--gold-soft); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .68rem; }
.video-caption { margin-top: 14px; font-size: .8rem; color: var(--slate); letter-spacing: .02em; }
.clip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 24px); }
.clip-grid video, .clip-grid img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: #000; }
.clip-grid figcaption { margin-top: 12px; font-size: .8rem; color: var(--text-soft); }
@media (max-width: 760px) { .clip-grid { grid-template-columns: 1fr 1fr; } .clip-grid figure:last-child { display: none; } }

/* CTA band */
.cta-band { position: relative; isolation: isolate; overflow: hidden; text-align: center; padding-block: clamp(88px, 12vw, 170px); }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img, .cta-band__media video { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(2, 21, 64, .84); }
.cta-band .eyebrow { justify-content: center; }
.cta-band .eyebrow::before { display: none; }
.cta-band .display, .cta-band .h1 { margin: 22px auto 0; max-width: 16ch; }
.cta-band .lede { margin: 24px auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 38px; }

/* forms */
.form-shell { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.form-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.form-aside .h2 { margin-top: 20px; }
.form-aside .prose { margin-top: 22px; }
.form-aside__contact { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line-dark); display: grid; gap: 16px; }
.form-aside__contact dt { font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #7A5A24; }
.form-aside__contact dd { margin-top: 2px; font-weight: 700; font-size: 1.1rem; }
.form-aside__contact a { text-decoration: none; }
.form-aside__contact a:hover { color: var(--gold); }
@media (max-width: 960px) { .form-shell { grid-template-columns: 1fr; } .form-aside { position: static; } }

.form { background: var(--white); color: var(--navy); padding: clamp(24px, 4vw, 56px); border-top: 3px solid var(--gold); box-shadow: 0 30px 80px -40px rgba(2, 21, 64, .35); }
.form--dark { background: var(--ink); color: var(--white); box-shadow: none; border: 1px solid var(--line); border-top: 3px solid var(--gold); }
.form fieldset { border: 0; padding: 0; margin: 0 0 38px; min-width: 0; }
.form legend { padding: 0; margin-bottom: 22px; width: 100%; display: flex; align-items: baseline; gap: 14px; font-size: .74rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; border-bottom: 1px solid var(--line-dark); padding-bottom: 14px; }
.form legend span { color: var(--gold); }
.form--dark legend { border-color: var(--line); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label, .field .label { font-size: .8rem; font-weight: 600; letter-spacing: .02em; }
.field label small, .field .label small { font-weight: 400; color: #5B647C; }
.form--dark .field label small { color: var(--slate); }
.req { color: #9A6B1F; }
.form--dark .req { color: var(--gold-soft); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 54px; padding: 14px 16px; border: 1px solid #C6CBD8; border-radius: 0; background: var(--white);
  font: inherit; font-size: 1rem; color: var(--navy); transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23021540' stroke-width='1.8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(179, 139, 77, .35); }
.form--dark .field input, .form--dark .field select, .form--dark .field textarea { background-color: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .25); color: var(--white); }
.form--dark .field input:focus { border-color: var(--gold-soft); }
.field input::placeholder, .field textarea::placeholder { color: #8A90A0; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B3261E; }
.field__error { font-size: .8rem; color: #B3261E; font-weight: 600; }
.form--dark .field__error { color: #FFB4AB; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 22px; }
.check { position: relative; display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border: 1px solid #DDE0E8; cursor: pointer; font-size: .93rem; line-height: 1.4; transition: border-color .2s, background .2s; }
.field .check { font-weight: 500; }
.check:hover { border-color: var(--navy); }
.field .check input, .check input { flex: none; width: 20px; height: 20px; min-height: 0; padding: 0; margin: 1px 0 0; appearance: auto; -webkit-appearance: checkbox; accent-color: var(--navy); box-shadow: none; }
.check:has(input:checked) { border-color: var(--navy); background: var(--paper); }
.form--dark .check { border-color: rgba(255, 255, 255, .2); }
.form--dark .check input { accent-color: var(--gold); }
.check--bare { border: 0; padding: 0; font-size: .82rem; color: #46506B; }
.form--dark .check--bare, .signup .check--bare { color: var(--text-soft); background: none; }
.check--bare:has(input:checked) { background: none; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }
.form__note { font-size: .82rem; color: #5B647C; max-width: 46ch; }
.form--dark .form__note { color: var(--slate); }
.form__status { margin-top: 20px; padding: 16px 18px; font-size: .95rem; font-weight: 600; border-left: 3px solid #B3261E; background: #FCEEEE; color: #7A1C16; }
.form__status[hidden] { display: none; }
.form__success { text-align: center; padding: clamp(24px, 5vw, 64px) 0; }
.form__success[hidden] { display: none; }
.form__success .h2 { margin-top: 18px; }
.form__success p { margin: 18px auto 0; max-width: 46ch; color: #2B3553; }
.form--dark .form__success p, .signup .form__success p { color: var(--text-soft); }
.form__success .eyebrow { justify-content: center; }
.form__success .eyebrow::before { display: none; }
@media (max-width: 640px) { .field-grid, .check-grid { grid-template-columns: 1fr; } }

/* signup band */
.signup { background: var(--navy-deep); border-top: 1px solid var(--line); padding-block: clamp(64px, 8vw, 112px); }
.signup__inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.signup .h2 { margin-top: 18px; }
.signup__copy p:not(.eyebrow) { margin-top: 18px; color: var(--text-soft); max-width: 46ch; }
.signup__form .field-grid { grid-template-columns: 1fr 1fr; }
.signup__form .field input { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .25); color: var(--white); }
.signup__form .field input:focus { border-color: var(--gold-soft); }
.signup__form .field label small { color: var(--slate); }
.signup__form .field__error { color: #FFB4AB; }
.signup__form .check--bare { margin-top: 18px; }
.signup__form .check--bare input { accent-color: var(--gold); }
.signup__form .btn { margin-top: 22px; }
.signup__form .form__status { background: rgba(179, 38, 30, .18); color: #FFDAD6; }
.signup .form__success { text-align: left; padding: 0; }
.signup .form__success .eyebrow { justify-content: flex-start; }
@media (max-width: 900px) { .signup__inner { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .signup__form .field-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 0; font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 700; letter-spacing: -.012em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-size: 1.6rem; font-weight: 300; color: var(--gold-soft); transition: transform .3s var(--ease); line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 28px; color: var(--text-soft); max-width: 70ch; }
.on-light .faq, .on-light .faq details { border-color: var(--line-dark); }
.on-light .faq details p { color: #2B3553; }
.on-light .faq summary::after { color: #7A5A24; }

/* contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card { background: var(--navy); padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; scroll-margin-top: calc(var(--header-h) + 24px); transition: background .3s; }
.contact-card:hover, .contact-card:target { background: var(--ink); }
.contact-card:target { box-shadow: inset 0 3px 0 var(--gold); }
.contact-card__num { font-size: .72rem; font-weight: 700; letter-spacing: .2em; color: var(--gold-soft); }
.contact-card .h3 { margin-top: 16px; }
.contact-card p { margin-top: 12px; font-size: .95rem; color: var(--text-soft); line-height: 1.6; flex: 1; }
.contact-card .text-link { margin-top: 24px; align-self: flex-start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }
.direct { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px); }
.direct dt { font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #7A5A24; }
.direct dd { margin-top: 8px; font-size: clamp(1.1rem, 1.8vw, 1.45rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.3; overflow-wrap: anywhere; }
.direct a { text-decoration: none; }
.direct a:hover { color: var(--gold); }
@media (max-width: 800px) { .direct { grid-template-columns: 1fr; } }

/* timeline */
.timeline { border-left: 1px solid var(--line); margin-left: 6px; display: grid; gap: 44px; }
.timeline li { position: relative; padding-left: 36px; }
.timeline li::before { content: ""; position: absolute; left: -5px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.timeline time { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); }
.timeline .h3 { margin-top: 8px; }
.timeline p { margin-top: 8px; color: var(--text-soft); max-width: 56ch; font-size: .98rem; }

/* footer */
.site-footer { background: var(--navy-deep); border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 96px); font-size: .92rem; }
.site-footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 64px); padding-bottom: clamp(44px, 6vw, 72px); }
.site-footer__brand img { width: 150px; height: auto; }
.site-footer__brand p { margin-top: 24px; color: var(--text-soft); max-width: 38ch; line-height: 1.65; }
.site-footer__col h2 { font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
.site-footer__col ul { display: grid; gap: 12px; }
.site-footer__col li { color: var(--text-soft); line-height: 1.55; }
.site-footer__col a { text-decoration: none; transition: color .2s; overflow-wrap: anywhere; }
.site-footer__col a:hover { color: var(--gold-soft); }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px; padding-block: 26px; border-top: 1px solid var(--line); font-size: .8rem; color: rgba(255, 255, 255, .62); }
.site-footer__bottom a { text-underline-offset: 3px; }
.social { display: flex; gap: 6px; }
.social a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); color: var(--white); transition: background .25s, color .25s, border-color .25s; }
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.social svg { width: 19px; height: 19px; }
@media (max-width: 960px) { .site-footer__top { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .site-footer__top { grid-template-columns: 1fr; } }

/* misc */
.credit { margin-top: 28px; font-size: .74rem; color: var(--slate); letter-spacing: .02em; }
.center { text-align: center; }
.mt-l { margin-top: clamp(40px, 6vw, 80px); }
.mt-m { margin-top: clamp(24px, 3vw, 40px); }
.error-page { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 40px) var(--gutter) 80px; }
.error-page .display { margin-top: 20px; }
.error-page .lede { margin: 22px auto 0; }
.error-page .btn-row { justify-content: center; margin-top: 36px; }
.error-page .eyebrow { justify-content: center; }
.error-page .eyebrow::before { display: none; }
.legal h2 { margin-top: 2.2em; font-size: 1.3rem; font-weight: 700; }
.legal p, .legal li { color: #2B3553; margin-top: .9em; max-width: 70ch; }
.legal ul { list-style: disc; padding-left: 1.3em; }

/* reveal */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
@media print { .site-header, .mobile-menu, .signup, .lightbox { display: none !important; } body { background: #fff; color: #000; } }
