/* ============================================================
   CURATED ASPECT - Underground Luxury
   Syne + Inter. No cursors. No italics. No noise.
   ============================================================ */

:root {
  --black:    #000000;
  --deep:     #060606;
  --card:     #0A0A0A;
  --line:     rgba(255,255,255,0.07);
  --line-mid: rgba(255,255,255,0.11);
  --white:    #FFFFFF;
  --warm:     #E6D5A8;
  --stone:    #918C87;
  --stone-2:  #504C49;
  --stone-3:  #252220;
  --red:      #E50914;

  --display: 'Outfit', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:    0.5s var(--ease);
}

/* ── Day Mode ─────────────────────────────────────────────── */
[data-theme="day"] {
  --black:    #F4F2EE;
  --deep:     #ECEAE6;
  --card:     #FFFFFF;
  --line:     rgba(0,0,0,0.06);
  --line-mid: rgba(0,0,0,0.10);
  --white:    #0A0A0A;
  --warm:     #4A3800;
  --stone:    #5C5855;
  --stone-2:  #9A9590;
  --stone-3:  #D0CEC8;
}
[data-theme="day"] .nav.solid {
  background: rgba(244,242,238,0.92);
  backdrop-filter: blur(20px) saturate(130%);
}
[data-theme="day"] .gallery-item > img  { filter: brightness(0.92); }
[data-theme="day"] .intro               { background: var(--black); }

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Headlight sweep - theme transition wash ─────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  background: radial-gradient(
    ellipse 160% 100% at -5% 50%,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.45) 30%,
    transparent 62%
  );
  transform: translateX(-115%);
  will-change: transform;
  transition: none;
}
body.hl-sweep::after {
  transition: transform 520ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(125%);
}

/* ── Ambient page glow - single dim light from above ─────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    ellipse 90% 55% at 50% -5%,
    rgba(255,255,255,0.038) 0%,
    transparent 70%
  );
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Ambient music player ────────────────────────────────── */
.ambient {
  position: fixed;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-direction: row-reverse;
}

.ambient-label {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone-2);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.ambient:hover .ambient-label {
  opacity: 1;
  transform: translateX(0);
}

.ambient-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}
.ambient-btn:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.ambient-btn.playing {
  border-color: rgba(255,255,255,0.18);
  color: var(--warm);
}

/* Pulsing ring when playing */
.ambient-btn.playing::after {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  animation: ambientRing 2.4s ease-out infinite;
}
@keyframes ambientRing {
  from { transform: scale(1); opacity: 0.6; }
  to   { transform: scale(1.8); opacity: 0; }
}

.icon-pause { display: none; }

/* ── Grain ───────────────────────────────────────────────── */
.hero-grain,
.full-grain,
.phil-grain,
.pagani-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.018'/%3E%3C/svg%3E");
}

/* ── Eyebrow label ───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Reveal ──────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
[data-reveal].in {
  opacity: 1;
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s var(--ease);
}
.intro.out { opacity: 0; pointer-events: none; }

.intro-logo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  mix-blend-mode: screen;
  opacity: 0;
  animation: logoIn 0.9s var(--ease) 0.5s forwards;
}
@keyframes logoIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2.5rem;
  transition: padding var(--t), background var(--t);
}
.nav.solid {
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 2.5rem;
}
.nav-logo {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  flex-shrink: 0;
  transition: border-color var(--t), opacity var(--t);
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  mix-blend-mode: screen;
}
.nav-logo:hover {
  opacity: 0.75;
  border-color: rgba(255,255,255,0.28);
}

.nav-ig {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--t);
}
.nav-ig span { display: none; }
.nav-ig:hover { color: var(--white); }
@media (min-width: 640px) { .nav-ig span { display: inline; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 640px) {
  /* Full-bleed 100svh against a narrow phone width crops a 3:2 photo down
     to ~30% of its width. Capping height keeps more of the car in frame. */
  .hero { height: min(100svh, 150vw); min-height: 480px; }
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  animation: heroUnzoom 7s var(--ease) forwards;
}
@keyframes heroUnzoom {
  to { transform: scale(1); }
}
.hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.04) 48%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 4;
  padding: 0 3rem 3.5rem;
  will-change: transform, opacity;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 11vw, 13rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.04em;
  text-shadow: 0 2px 64px rgba(0,0,0,0.65);
}
.hero-title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.025em;
}

.hero-footer {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-id {
  font-family: var(--body);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.hero-id .x { color: rgba(255,255,255,0.15); }
.hero-loc {
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

.hero-scroll {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 1px; height: 60px;
  overflow: hidden;
}
.scroll-line {
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  transform: translateY(-100%);
  animation: scrollDrop 2.5s var(--ease) infinite 2.5s;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--deep);
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  align-items: center;
  animation: marquee 38s linear infinite;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-2);
  white-space: nowrap;
}
.marquee-track i { font-style: normal; color: var(--stone-3); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   EDITORIAL 1 - constrained height so landscape Lambo breathes
   ============================================================ */
.ed-1 {
  display: grid;
  grid-template-columns: 56fr 44fr;
  height: 68vh;
  min-height: 520px;
  max-height: 820px;
  background: var(--deep);
  overflow: hidden;                  /* clips both columns to same height */
}

.ed-1-img {
  position: relative;
  overflow: hidden;
}
.ed-1-img img {
  transition: transform 1.2s var(--ease);
}
.ed-1-img:hover img { transform: scale(1.04); }

.ed-1-right {
  display: grid;
  grid-template-rows: auto 1fr;
  border-left: 1px solid var(--line);
  overflow: hidden;
}

.ed-1-copy {
  padding: 4rem 3.5rem 3rem;
  border-bottom: 1px solid var(--line);
}

.ed-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 1.25rem 0 1.5rem;
}
.ed-title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.ed-sub {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.ed-1-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  overflow: hidden;
}
.stack-img {
  position: relative;
  overflow: hidden;
}
.stack-img img {
  transition: transform 1s var(--ease);
}
.stack-img:hover img { transform: scale(1.05); }

/* ============================================================
   FULL-WIDTH SHOT - Impala wheelie
   ============================================================ */
.full-shot {
  position: relative;
  height: 68vh;
  min-height: 420px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .full-shot { height: min(68vh, 100vw); min-height: 340px; }
}
.full-img {
  position: absolute;
  inset: 0;
}
.full-img img { transition: transform 1.5s var(--ease); }
.full-shot:hover .full-img img { transform: scale(1.02); }
.full-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

.full-text {
  position: absolute;
  bottom: 3.5rem;
  left: 3.5rem;
  z-index: 4;
}
.full-quote {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6.5vw, 7rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-top: 1rem;
  text-shadow: 0 2px 48px rgba(0,0,0,0.6);
}
.full-quote em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   DETAIL MOMENT - single image, gallery exhibit
   ============================================================ */
.detail-moment {
  background: var(--black);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 52fr 48fr;
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) clamp(3rem, 6.5vw, 7rem);
  gap: 0;
}

/* ── Image ── */
.dm-image {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 72vh;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Override default [data-reveal] fadeup - curtain does the work */
.dm-image[data-reveal] {
  opacity: 1;
  transform: none;
}

/* Curtain: starts covering, slides right→left on .in */
.dm-image[data-reveal]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 4;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1.3s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
}
.dm-image[data-reveal].in::after {
  transform: scaleX(0);
}

/* Image breathes out as curtain reveals */
.dm-image img {
  transition: transform 1.6s var(--ease);
}
.dm-image[data-reveal] img     { transform: scale(1.09); }
.dm-image[data-reveal].in img  { transform: scale(1); }
.dm-image:hover img             { transform: scale(1.04) !important; }

/* Inset edge shadow - grounds image into dark bg */
.dm-sheen {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.38);
  z-index: 2;
  pointer-events: none;
}

/* ── Text ── */
.dm-text {
  position: relative;
  padding: 0 0 0 clamp(3.5rem, 7vw, 7rem);
  overflow: hidden;
}

/* Ghosted large number - barely there, adds depth */
.dm-ghost {
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  font-family: var(--display);
  font-size: clamp(8rem, 17vw, 19rem);
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.dm-content {
  position: relative;
  z-index: 1;
}

.dm-statement {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 6.5rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 1.5rem 0 2.25rem;
}
.dm-statement em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.dm-rule {
  width: 44px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.75rem;
}

.dm-sub {
  font-family: var(--body);
  font-size: 0.64rem;
  font-weight: 400;
  color: var(--stone);
  line-height: 2.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   VOID BREAK - intentional negative space between sections
   ============================================================ */
.void-break {
  height: clamp(4rem, 7vh, 6rem);
  background: var(--black);
  border-top: 1px solid var(--line);
}

/* ============================================================
   PAGANI SPOTLIGHT - full-bleed hypercar with inset detail
   ============================================================ */
.pagani-shot {
  position: relative;
  height: 92vh;
  min-height: 520px;
  overflow: hidden;
}

.pagani-bg {
  position: absolute;
  inset: 0;
}
.pagani-bg img {
  transition: transform 1.5s var(--ease);
}
.pagani-shot:hover .pagani-bg img { transform: scale(1.02); }

.pagani-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.04) 52%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 2;
}

.pagani-text {
  position: absolute;
  bottom: 3.5rem;
  left: 3.5rem;
  z-index: 4;
}

.pagani-quote {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-top: 1rem;
  text-shadow: 0 2px 48px rgba(0,0,0,0.6);
}
.pagani-quote em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.pagani-detail {
  position: absolute;
  bottom: 3.5rem;
  right: 3.5rem;
  z-index: 5;
  width: clamp(180px, 26vw, 360px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
}
.pagani-detail img {
  transition: transform 1s var(--ease);
}
.pagani-detail:hover img { transform: scale(1.06); }

/* ============================================================
   PHILOSOPHY - full-bleed with text
   ============================================================ */
.philosophy {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 640px) {
  .philosophy { height: min(100vh, 150vw); min-height: 460px; }
}

.phil-bg {
  position: absolute;
  inset: 0;
}
.phil-bg img { filter: brightness(0.74) contrast(1.05); }
.phil-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.16) 60%, rgba(0,0,0,0.32) 100%);
}

.phil-body {
  position: relative;
  z-index: 4;
  padding: 0 3.5rem 5rem;
  max-width: 1000px;
}

.phil-quote {
  font-family: var(--display);
  font-size: clamp(3.5rem, 10vw, 11rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.phil-quote em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.phil-rule {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.75rem;
}

.phil-small {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--deep);
  border-top: 1px solid var(--line);
  padding: clamp(6rem, 12vw, 10rem) 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-inner {
  max-width: 760px;
  width: 100%;
}
.contact-inner .eyebrow {
  margin-bottom: 2rem;
}
.contact-title {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 2rem;
}
.contact-title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.contact-sub {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-bottom: 3rem;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.5rem;
  transition: color var(--t), border-color var(--t), gap var(--t);
}
.contact-link svg { opacity: 0.35; flex-shrink: 0; transition: opacity var(--t), transform var(--t); }
.contact-link:hover { color: var(--warm); gap: 1.75rem; border-color: rgba(255,255,255,0.35); }
.contact-link:hover svg { opacity: 0.65; transform: translateX(6px); }

.contact-alt {
  margin-top: 1.75rem;
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--stone);
}
.contact-alt a {
  color: var(--stone);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 1px;
  transition: color var(--t), border-color var(--t);
}
.contact-alt a:hover { color: var(--warm); border-color: rgba(255,255,255,0.35); }

.contact-carweek {
  font-family: var(--mono);
  font-size: 0.42rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 2.5rem;
}

.contact-form {
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.accred-field select {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line-mid);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 0.5rem 0 0.75rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.accred-field select:focus { border-color: var(--red); }
.accred-field select option { background: var(--deep); color: var(--white); }

.contact-confirm {
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin-top: 1.25rem;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
}
.contact-confirm.visible {
  opacity: 1;
  height: auto;
}

/* ============================================================
   IG CTA
   ============================================================ */
.ig-cta {
  background: var(--black);
  padding: clamp(7rem, 14vw, 11rem) 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid var(--line);
}
.ig-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.ig-prompt {
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone-2);
}
.ig-handle {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: color var(--t), gap var(--t);
}
.ig-handle svg { opacity: 0.25; flex-shrink: 0; transition: opacity var(--t), transform var(--t); }
.ig-handle:hover { color: var(--warm); gap: 2.75rem; }
.ig-handle:hover svg { opacity: 0.55; transform: translateX(8px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity var(--t), border-color var(--t);
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  mix-blend-mode: screen;
}
.footer-logo:hover {
  opacity: 0.8;
  border-color: rgba(255,255,255,0.18);
}
.footer-id,
.footer-loc {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .detail-moment { padding: clamp(4rem, 8vw, 7rem) clamp(2.5rem, 5vw, 5rem); }
}

@media (max-width: 900px) {
  .ed-1 {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .ed-1-img { height: 56vw; min-height: 280px; }
  .ed-1-right { border-left: none; border-top: 1px solid var(--line); }
  .ed-1-copy { padding: 3rem 2.5rem; }
  .ed-1-stack { grid-template-columns: 1fr 1fr; height: 260px; }

  .detail-moment { grid-template-columns: 1fr; gap: 3.5rem; padding: 5rem 2.5rem; }
  .dm-image { aspect-ratio: 4 / 3; max-height: none; }
  .dm-text { padding: 0; }
  .dm-ghost { font-size: clamp(5rem, 20vw, 11rem); }
}

@media (max-width: 640px) {
  .nav   { padding: 1.4rem 1.5rem; }
  .nav.solid { padding: 0.9rem 1.5rem; }

  .hero-body { padding: 0 1.5rem 2.5rem; }
  .hero-footer { padding: 1rem 1.5rem 1.5rem; }
  .hero-loc { display: none; }

  .full-text { left: 1.75rem; bottom: 2.5rem; }

  .ed-1-copy { padding: 2.5rem 1.75rem; }
  .ed-1-stack { grid-template-columns: 1fr; height: auto; }
  .stack-img { height: 200px; }

  .detail-moment { padding: 4rem 1.75rem; gap: 2.5rem; }
  .dm-image { aspect-ratio: 3 / 2; }

  .phil-body { padding: 0 1.75rem 3.5rem; }

  .pagani-text { left: 1.75rem; bottom: 2.5rem; }
  .pagani-detail { display: none; }

  .footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ============================================================
   EVENT BAND - thin identity strip below hero
   ============================================================ */
.event-band {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.event-band-accent {
  width: 2px;
  height: 2.5rem;
  background: var(--red);
  flex-shrink: 0;
}
.event-band-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.event-band-name {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
}
.event-band-meta {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-2);
}

@media (max-width: 640px) {
  .event-band { padding: 1.5rem; gap: 1.25rem; }
  .event-band-accent { height: 2rem; }
  .event-band-name { font-size: clamp(0.9rem, 4.5vw, 1.4rem); }
}

/* ============================================================
   EVENT EDITORIAL - text left, photo right
   ============================================================ */
.event-editorial {
  display: grid;
  grid-template-columns: 42fr 58fr;
  min-height: 72vh;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.event-ed-text {
  padding: clamp(4rem, 8vw, 7rem) clamp(3rem, 5.5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.event-ed-text .eyebrow { color: var(--red); }
.event-ed-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
  color: var(--white);
  margin: 1.25rem 0 0.75rem;
}
.event-ed-location {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 2rem;
}
.event-ed-sub {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.95;
  letter-spacing: 0.025em;
  max-width: 380px;
  margin-bottom: 3rem;
}
.event-ed-link {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 1px solid var(--stone-3);
  padding-bottom: 4px;
  transition: color var(--t), border-color var(--t), gap var(--t);
  width: fit-content;
}
.event-ed-link svg { opacity: 0.4; transition: opacity var(--t), transform var(--t); }
.event-ed-link:hover { color: var(--white); border-color: var(--stone); gap: 1.75rem; }
.event-ed-link:hover svg { opacity: 0.7; transform: translateX(5px); }

.event-ed-photo {
  position: relative;
  overflow: hidden;
}
.event-ed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
  filter: brightness(0.97);
}
.event-editorial:hover .event-ed-photo img { transform: scale(1.03); }

@media (max-width: 900px) {
  .event-editorial { grid-template-columns: 1fr; min-height: auto; }
  .event-ed-photo { min-height: 54vw; }
  .event-ed-text { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .event-ed-text { padding: 3.5rem 1.75rem; }
}

/* ============================================================
   PHOTO TRIO - three equal panels
   ============================================================ */
.photo-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  height: 58vh;
  min-height: 320px;
  background: var(--black);
}
.trio-item {
  position: relative;
  overflow: hidden;
}
.trio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: brightness(0.9);
}
.trio-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.trio-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--body);
  font-size: 0.46rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  transition: color 0.4s;
  pointer-events: none;
}
.trio-item:hover .trio-label { color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .photo-trio { grid-template-columns: 1fr; height: auto; gap: 2px; }
  .trio-item { height: 62vw; }
}

/* ============================================================
   CINEMA STRIP - wide, short, pure photography pause
   ============================================================ */
.cinema-strip {
  position: relative;
  height: 68vh;
  min-height: 440px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
}
@media (max-width: 640px) {
  .cinema-strip { height: min(68vh, 100vw); min-height: 340px; }
}
.cinema-img {
  position: absolute;
  inset: 0;
}
.cinema-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
  filter: brightness(0.96);
}
.cinema-strip:hover .cinema-img img { transform: scale(1.025); }
.cinema-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.2) 0%,
    transparent 35%,
    transparent 65%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   ASYMMETRIC PHOTO SPLIT - large left, two stacked right
   ============================================================ */
.photo-split {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 2px;
  height: 82vh;
  min-height: 460px;
  background: var(--black);
}
.split-main {
  position: relative;
  overflow: hidden;
}
.split-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.5s;
  filter: brightness(0.9);
}
.split-main:hover img {
  transform: scale(1.04);
  filter: brightness(0.98);
}
.split-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.split-item {
  position: relative;
  overflow: hidden;
}
.split-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: brightness(0.87);
}
.split-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.94);
}
.split-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--body);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  transition: color 0.4s;
  pointer-events: none;
  z-index: 2;
}
.split-main:hover .split-label,
.split-item:hover .split-label { color: rgba(255,255,255,0.55); }

@media (max-width: 768px) {
  .photo-split { grid-template-columns: 1fr; height: auto; }
  .split-main { height: 65vw; }
  .split-stack { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .split-item { height: 50vw; }
}
@media (max-width: 480px) {
  .split-stack { grid-template-columns: 1fr; }
  .split-item { height: 62vw; }
}

/* ── Full-dim variant (more balanced L/R gradient) ────────── */
.full-dim--mid {
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.4) 100%
  ) !important;
}

/* ── Right-aligned full-text variant ─────────────────────── */
.full-text--right {
  left: auto;
  right: 3.5rem;
  text-align: right;
}
@media (max-width: 640px) {
  .full-text--right { right: 1.75rem; left: auto; text-align: right; }
}

/* ── Section-specific height overrides ────────────────────── */
#porsches.full-shot { height: 90vh; min-height: 560px; }

/* ============================================================
   NAV LINKS - interior navigation
   ============================================================ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--warm);
  transition: width 0.35s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: rgba(255,255,255,0.75); }
.nav-link.active::after { width: 100%; background: var(--stone-2); }

@media (max-width: 768px) {
  .nav-links { gap: 1.5rem; }
  .nav-link { font-size: 0.5rem; }
}
@media (max-width: 480px) {
  .nav-links { display: none; }
}

/* ============================================================
   PAGE HEADER - interior pages
   ============================================================ */
.page-header {
  padding: 14rem 3.5rem 5rem;
  border-bottom: 1px solid var(--line);
  background: var(--deep);
}
.page-header-eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.75rem;
}
.page-header-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 10rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: var(--white);
}
.page-header-title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.page-header-sub {
  margin-top: 2rem;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--stone);
  max-width: 480px;
  line-height: 1.9;
}
@media (max-width: 640px) {
  .page-header { padding: 11rem 1.75rem 3.5rem; }
}

/* ============================================================
   GALLERY
   ============================================================ */

/* ── Filter wrap - sticky below nav ── */
.gallery-filters-wrap {
  background: var(--black);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 72px;
  z-index: 90;
}

/* ── Category tabs ── */
.gallery-filters {
  display: flex;
  align-items: center;
  padding: 1.6rem 3.5rem;
  background: var(--black);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-filters::-webkit-scrollbar { display: none; }
.gallery-filter-btn {
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-2);
  background: none;
  border: none;
  border-right: 1px solid var(--line-mid);
  cursor: pointer;
  padding: 0.4rem 1.6rem;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.gallery-filter-btn:first-child { padding-left: 0; }
.gallery-filter-btn:last-child  { border-right: none; }
.gallery-filter-btn:hover       { color: var(--stone); }
.gallery-filter-btn.active      { color: var(--white); }
.gallery-filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1.6rem;
  right: 1.6rem;
  height: 1px;
  background: #E50914;
}
.gallery-filter-btn:first-child.active::after { left: 0; }

/* ── Brand chips row ── */
.gallery-brands {
  display: flex;
  align-items: center;
  padding: 0.7rem 3.5rem;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.gallery-brands::-webkit-scrollbar { display: none; }
.gallery-brands-label {
  font-family: var(--body);
  font-size: 0.44rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-2);
  white-space: nowrap;
  margin-right: 1.4rem;
  flex-shrink: 0;
}
.gallery-brands-chips {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}
.brand-chip {
  font-family: var(--body);
  font-size: 0.44rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-2);
  background: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 0.3rem 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.brand-chip:hover {
  color: var(--stone);
  border-color: rgba(255,255,255,0.16);
}
.brand-chip.active {
  color: #E50914;
  border-color: #E50914;
  background: rgba(229,9,20,0.06);
}

/* ── Status bar ── */
.gallery-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 3.5rem;
  border-top: 1px solid var(--line);
}
.gallery-count {
  font-family: var(--body);
  font-size: 0.44rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-2);
}
.gallery-clear {
  font-family: var(--body);
  font-size: 0.44rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E50914;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.gallery-clear:hover { opacity: 0.65; }

/* Item reveal keyframe - triggered per-item by filter JS */
@keyframes ca-item-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gallery-masonry {
  columns: 3;
  column-gap: 3px;
  padding: 3px;
  background: var(--black);
  transition: opacity 0.12s ease;
}
.gallery-masonry.filtering {
  opacity: 0;
  pointer-events: none;
}
.gallery-masonry img {
  height: auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item > img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease), filter 0.4s;
  filter: brightness(0.95);
}
.gallery-item:hover > img {
  transform: scale(1.04);
  filter: brightness(1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.25rem 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  font-family: var(--body);
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.gallery-item.hidden { display: none; }

@media (max-width: 900px) {
  .gallery-masonry   { columns: 2; }
  .gallery-filters   { padding: 1.4rem 2.5rem; }
  .gallery-brands    { padding: 0.65rem 2.5rem; }
  .gallery-status    { padding: 0.5rem 2.5rem; }
}
@media (max-width: 480px) {
  .gallery-masonry   { columns: 2; column-gap: 2px; padding: 2px; }
  .gallery-item      { margin-bottom: 2px; }
  .gallery-filters   { padding: 1.2rem 1.5rem; }
  .gallery-brands    { padding: 0.6rem 1.5rem; }
  .gallery-status    { padding: 0.5rem 1.5rem; }
  .gallery-filters-wrap { top: 64px; }
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s;
}
.lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2.5rem;
  z-index: 10;
  background: none;
  border: none;
  color: var(--stone);
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.3s;
  padding: 0;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: var(--stone-2);
  cursor: pointer;
  padding: 1.5rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.lightbox-arrow:hover { color: var(--white); }
.lightbox-arrow.prev { left: 1rem; }
.lightbox-arrow.next { right: 1rem; }
.lightbox-caption {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--body);
  font-size: 0.48rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-2);
  white-space: nowrap;
}
.lightbox-counter {
  position: fixed;
  top: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--body);
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  color: var(--stone-2);
}

/* ============================================================
   STORE
   ============================================================ */
.store-section {
  padding: clamp(4rem, 8vw, 6.5rem) 3.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}
.store-section + .store-section { background: var(--deep); }
.store-section-header { margin-bottom: 3rem; }
.store-section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1.0;
  margin-top: 1rem;
}
.store-section-title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  background: var(--deep);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.4s;
}
.product-card:hover { border-color: var(--line-mid); }
.product-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--card);
}
.product-img img {
  transition: transform 1s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  font-family: var(--body);
  font-size: 0.44rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.35rem 0.75rem;
}
.product-info {
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid var(--line);
}
.product-name {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.product-detail {
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--warm);
}
.product-cta {
  font-family: var(--body);
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 1px solid var(--stone-3);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.product-cta:hover { color: var(--white); border-color: var(--stone); }
.product-card.coming-soon .product-img img { filter: grayscale(0.4) brightness(0.6); }
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}
.coming-soon-label {
  font-family: var(--body);
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.6rem 1.25rem;
  backdrop-filter: blur(4px);
}

@media (max-width: 900px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .store-section { padding: clamp(3rem, 6vw, 5rem) 2.5rem; }
}
@media (max-width: 560px) {
  .store-grid { grid-template-columns: 1fr; }
  .store-section { padding: 3rem 1.75rem; }
}

/* ============================================================
   MEDIA PAGE
   ============================================================ */
.media-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--deep);
}
.media-stat {
  padding: 3rem 3.5rem;
  border-right: 1px solid var(--line);
}
.media-stat:last-child { border-right: none; }
.media-stat-number {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.media-stat-label {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone-2);
}

.events-section {
  padding: clamp(4rem, 8vw, 7rem) 3.5rem;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}
.events-header { margin-bottom: 4rem; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.event-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--deep);
  cursor: default;
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  filter: brightness(0.78);
}
.event-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.75);
}
.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  z-index: 2;
}
.event-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.25rem;
  z-index: 3;
}
.event-name {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.05;
}
.event-meta {
  font-family: var(--body);
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── Press / Apply ────────────────────────────────────────── */
.press-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
}
.press-left {
  padding: clamp(5rem, 10vw, 9rem) clamp(3rem, 6vw, 6.5rem);
  border-right: 1px solid var(--line);
}
.press-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 1.5rem 0 2rem;
}
.press-title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.press-body {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 2;
  letter-spacing: 0.03em;
  max-width: 400px;
  margin-bottom: 3rem;
}
.press-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.press-includes li {
  font-family: var(--body);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.press-includes li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--stone-3);
  flex-shrink: 0;
}
.press-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.5rem;
  transition: color var(--t), border-color var(--t), gap var(--t);
}
.press-cta svg { opacity: 0.35; transition: opacity var(--t), transform var(--t); }
.press-cta:hover { color: var(--warm); gap: 1.75rem; border-color: rgba(255,255,255,0.35); }
.press-cta:hover svg { opacity: 0.65; transform: translateX(6px); }

.press-right {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.press-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 1.5s var(--ease);
}
.press-right:hover img { transform: scale(1.03); }
.press-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .media-stats { grid-template-columns: repeat(3, 1fr); }
  .media-stat { padding: 2.5rem 2rem; }
  .events-grid { grid-template-columns: 1fr; }
  .press-section { grid-template-columns: 1fr; }
  .press-right { min-height: 380px; }
  .press-left { border-right: none; border-bottom: 1px solid var(--line); }
  .events-section { padding: 4rem 2.5rem; }
}
@media (max-width: 560px) {
  .media-stats { grid-template-columns: 1fr; }
  .media-stat { border-right: none; border-bottom: 1px solid var(--line); padding: 2rem 1.75rem; }
  .media-stat:last-child { border-bottom: none; }
  .events-section { padding: 3.5rem 1.75rem; }
  .press-left { padding: 4rem 1.75rem; }
}


/* ============================================================
   HEADLIGHT SWITCH - dashboard rocker toggle
   ============================================================ */
.hs-switch {
  position: fixed;
  bottom: 5.8rem;
  right: 2.5rem;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}
.hs-label {
  font-family: var(--mono);
  font-size: 0.38rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-2);
  transition: color 0.3s;
  line-height: 1;
  user-select: none;
}
.hs-rocker {
  width: 22px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 11px;
  background: rgba(255,255,255,0.03);
  position: relative;
  transition: border-color 0.3s;
}
[data-theme="day"] .hs-rocker {
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.04);
}
.hs-thumb {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--stone-2);
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  transition:
    bottom 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s;
}
[data-theme="day"] .hs-thumb {
  bottom: 22px;
  background: var(--red);
}
@keyframes hs-pulse {
  0%   { box-shadow: 0 0 0 1px var(--red); }
  100% { box-shadow: 0 0 0 5px transparent; }
}
.hs-switch.pulsed .hs-rocker {
  animation: hs-pulse 700ms ease-out both;
}
.hs-switch:hover .hs-label  { color: var(--stone); }
.hs-switch:hover .hs-rocker { border-color: rgba(255,255,255,0.22); }
[data-theme="day"] .hs-switch:hover .hs-rocker { border-color: rgba(0,0,0,0.25); }

/* ============================================================
   PADDOCK WALK - horizontal scroll strip
   ============================================================ */
.paddock {
  position: relative;
  overflow: hidden;
  background: var(--black);
  height: 100vh;
}
.paddock-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  pointer-events: none;
}
.paddock-eyebrow {
  font-family: var(--body);
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-2);
}
.paddock-scroll-hint {
  font-family: var(--mono);
  font-size: 0.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  transition: opacity 0.6s;
}
.paddock-scroll-hint.visible { opacity: 1; }
.paddock-scroll-hint::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--stone-2);
  animation: hint-pulse 2s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* The scrolling track */
.paddock-track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.paddock-panel {
  position: relative;
  flex-shrink: 0;
  height: 100%;
  overflow: hidden;
}
.paddock-panel:nth-child(1)  { width: 72vw; }
.paddock-panel:nth-child(2)  { width: 58vw; clip-path: polygon(3vw 0, 100% 0, calc(100% - 3vw) 100%, 0 100%); margin-left: -3vw; }
.paddock-panel:nth-child(3)  { width: 68vw; clip-path: polygon(3vw 0, 100% 0, calc(100% - 3vw) 100%, 0 100%); margin-left: -3vw; }
.paddock-panel:nth-child(4)  { width: 55vw; clip-path: polygon(3vw 0, 100% 0, calc(100% - 3vw) 100%, 0 100%); margin-left: -3vw; }
.paddock-panel:nth-child(5)  { width: 70vw; clip-path: polygon(3vw 0, 100% 0, calc(100% - 3vw) 100%, 0 100%); margin-left: -3vw; }
.paddock-panel:nth-child(6)  { width: 62vw; clip-path: polygon(3vw 0, 100% 0, calc(100% - 3vw) 100%, 0 100%); margin-left: -3vw; }
.paddock-panel:nth-child(7)  { width: 65vw; clip-path: polygon(3vw 0, 100% 0, 100% 100%, 0 100%); margin-left: -3vw; }

.paddock-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.6s;
}
.paddock-panel:hover img { filter: brightness(0.92); }

/* Vertical micro-text */
.paddock-meta {
  position: absolute;
  left: calc(3vw + 1.5rem);
  bottom: 3rem;
  z-index: 5;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.75rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  pointer-events: none;
}
.paddock-panel:first-child .paddock-meta { left: 1.5rem; }
.paddock-location {
  font-family: var(--mono);
  font-size: 0.42rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.paddock-panel-label {
  font-family: var(--body);
  font-size: 0.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.5s 0.1s var(--ease), transform 0.5s 0.1s var(--ease);
}
.paddock-panel.in-view .paddock-location,
.paddock-panel.in-view .paddock-panel-label {
  opacity: 1;
  transform: translateX(0);
}

/* Progress bar */
.paddock-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
  z-index: 10;
}
.paddock-progress-fill {
  height: 100%;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
}

/* Below 900px, panels sized as 55-72vw at height:100vh crop a 3:2 photo
   down to ~22-33% of its width — cars end up as unrecognizable slivers.
   Swap to a native horizontally-swipeable strip sized to the photos'
   actual aspect ratio instead; the GSAP pin/scrub is skipped to match
   (see the inline script in index.html). */
@media (max-width: 900px) {
  .paddock {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .paddock-header { position: relative; padding: 1.75rem 1.5rem 1.25rem; }
  .paddock-track { height: auto; }
  .paddock-panel,
  .paddock-panel:nth-child(1),
  .paddock-panel:nth-child(2),
  .paddock-panel:nth-child(3),
  .paddock-panel:nth-child(4),
  .paddock-panel:nth-child(5),
  .paddock-panel:nth-child(6),
  .paddock-panel:nth-child(7) {
    width: 84vw;
    height: auto;
    aspect-ratio: 3 / 2;
    clip-path: none;
    margin-left: 0;
    scroll-snap-align: start;
  }
  .paddock-panel + .paddock-panel { margin-left: 0.6rem; }
  .paddock-panel .paddock-meta { opacity: 1; transform: none; }
  .paddock-progress { display: none; }
}

/* ============================================================
   PHOTO TELEMETRY - dashboard HUD overlay
   ============================================================ */
.telem-trigger {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  z-index: 11;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, border-color 0.3s, background 0.3s;
  padding: 0;
}
.gallery-item:hover .telem-trigger { opacity: 1; }
.telem-trigger.open {
  opacity: 1;
  border-color: var(--red);
  background: rgba(229,9,20,0.15);
}
.telem-trigger svg {
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

/* Tray */
.telem-tray {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(4,4,4,0.80);
  backdrop-filter: blur(16px) saturate(0.65);
  transform: translateY(100%);
  transition: transform 260ms cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.telem-tray.open {
  transform: translateY(0);
  pointer-events: auto;
}

/* Telemetry grid */
.telem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.telem-field {
  padding: 0.65rem 0.75rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid var(--red);
}
.telem-field:last-child { border-right: none; }
.telem-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.35rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.3rem;
}
.telem-value {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Chassis strip */
.telem-chassis {
  padding: 0.45rem 0.75rem;
  background: rgba(255,255,255,0.035);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.telem-chassis-label {
  font-family: var(--mono);
  font-size: 0.32rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.telem-chassis-value {
  font-family: var(--mono);
  font-size: 0.42rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   THEATER EXPAND - FLIP full-bleed image view
   ============================================================ */
.theater {
  position: fixed;
  z-index: 2000;
  background: #000;
  overflow: hidden;
  transition:
    left   480ms cubic-bezier(0.22,1,0.36,1),
    top    480ms cubic-bezier(0.22,1,0.36,1),
    width  480ms cubic-bezier(0.22,1,0.36,1),
    height 480ms cubic-bezier(0.22,1,0.36,1);
}
.theater[hidden] { display: none; }
.theater-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.theater-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.theater.expanded .theater-ui { opacity: 1; }
.theater-top {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.theater-close,
.theater-nav {
  font-family: var(--mono);
  font-size: 0.44rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.theater-close:hover,
.theater-nav:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.theater-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.theater-caption {
  font-family: var(--body);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.theater-counter {
  font-family: var(--mono);
  font-size: 0.4rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   ACCREDITATION & MEDIA KIT - media.html section
   ============================================================ */
.accred-section {
  background: var(--deep);
  border-bottom: 1px solid var(--line);
}

/* Credential header */
.accred-header {
  padding: clamp(4rem, 8vw, 7rem) 3.5rem 0;
  border-bottom: 1px solid var(--line);
}
.accred-rule {
  width: 1px;
  height: 4rem;
  background: var(--red);
  margin-bottom: 2rem;
}
.accred-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.accred-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--warm);
}
.accred-season {
  font-family: var(--mono);
  font-size: 0.44rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3rem;
}

/* Metrics dashboard */
.accred-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.accred-metric {
  padding: 2.5rem 2.5rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.accred-metric:last-child { border-right: none; }
.accred-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 2.5rem;
  background: var(--red);
}
.accred-metric:first-child::before { display: none; }
.accred-metric-num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.accred-metric-label {
  font-family: var(--body);
  font-size: 0.44rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-2);
}

/* Media kit + form row */
.accred-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

/* Kit card (left) */
.accred-kit {
  padding: clamp(3rem, 6vw, 5.5rem) 3.5rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.accred-kit-card {
  background: var(--card);
  border: 1px solid var(--line-mid);
  padding: 0;
  overflow: hidden;
}
.accred-kit-preview {
  aspect-ratio: 8.5 / 11;
  background: linear-gradient(160deg, #0e0e0e 0%, #1a1a1a 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  max-height: 260px;
}
.accred-kit-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.accred-kit-preview-brand {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.9);
}
.accred-kit-preview-accent {
  width: 1px;
  height: 3rem;
  background: var(--red);
}
.accred-kit-preview-title {
  font-family: var(--mono);
  font-size: 0.38rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.accred-kit-preview-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.accred-kit-preview-line {
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.accred-kit-preview-line:nth-child(1) { width: 80%; }
.accred-kit-preview-line:nth-child(2) { width: 65%; }
.accred-kit-preview-line:nth-child(3) { width: 90%; }
.accred-kit-meta {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
.accred-kit-meta-info {
  font-family: var(--mono);
  font-size: 0.38rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-2);
}
.accred-kit-download {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.44rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.3rem;
  transition: color var(--t), gap var(--t), border-color var(--t);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.accred-kit-download:hover {
  color: var(--warm);
  gap: 1rem;
  border-color: rgba(255,255,255,0.35);
}
.accred-kit-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.accred-kit-includes li {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.6;
}
.accred-kit-includes li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* Assignment form (right) */
.accred-form {
  padding: clamp(3rem, 6vw, 5.5rem) 3.5rem;
}
.accred-form-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.accred-form-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--warm);
}
.accred-form-sub {
  font-family: var(--body);
  font-size: 0.52rem;
  color: var(--stone);
  letter-spacing: 0.06em;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* Request type segmented control */
.accred-req-label {
  font-family: var(--mono);
  font-size: 0.38rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-2);
  display: block;
  margin-bottom: 0.75rem;
}
.accred-req-types {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--line-mid);
  overflow: hidden;
}
.req-type-btn {
  flex: 1;
  font-family: var(--body);
  font-size: 0.44rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-2);
  background: none;
  border: none;
  border-right: 1px solid var(--line-mid);
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.req-type-btn:last-child { border-right: none; }
.req-type-btn.active {
  color: var(--white);
  background: rgba(229,9,20,0.08);
  border-color: var(--red);
  box-shadow: inset 0 -1px 0 var(--red);
}
.req-type-btn:hover:not(.active) { color: var(--stone); }

/* Form fields */
.accred-field {
  margin-bottom: 1.5rem;
}
.accred-field-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.36rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 0.5rem;
}
.accred-field input,
.accred-field textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line-mid);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 0.5rem 0 0.75rem;
  outline: none;
  transition: border-color 0.25s;
  resize: none;
}
.accred-field input:focus,
.accred-field textarea:focus {
  border-color: var(--red);
}
.accred-field input::placeholder,
.accred-field textarea::placeholder {
  color: var(--stone-3);
}
.accred-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.4rem;
  transition: color var(--t), gap var(--t), border-color var(--t);
}
.accred-submit:hover {
  color: var(--warm);
  gap: 1.25rem;
  border-color: rgba(255,255,255,0.35);
}
.accred-submit svg { opacity: 0.35; transition: opacity var(--t), transform var(--t); }
.accred-submit:hover svg { opacity: 0.65; transform: translateX(5px); }

@media (max-width: 960px) {
  .accred-metrics { grid-template-columns: repeat(2, 1fr); }
  .accred-metric:nth-child(2) { border-right: none; }
  .accred-metric:nth-child(3) { border-top: 1px solid var(--line); }
  .accred-body { grid-template-columns: 1fr; }
  .accred-kit { border-right: none; border-bottom: 1px solid var(--line); }
  .accred-header { padding: 4rem 2.5rem 0; }
  .accred-kit { padding: 3.5rem 2.5rem; }
  .accred-form { padding: 3.5rem 2.5rem; }
}
@media (max-width: 560px) {
  .accred-metrics { grid-template-columns: 1fr 1fr; }
  .accred-metric { padding: 2rem 1.5rem; }
  .accred-metric:nth-child(2) { border-right: none; }
  .accred-metric:nth-child(3),
  .accred-metric:nth-child(4) { border-top: 1px solid var(--line); }
  .accred-header { padding: 3.5rem 1.75rem 0; }
  .accred-kit { padding: 3rem 1.75rem; }
  .accred-form { padding: 3rem 1.75rem; }
  .accred-req-types { flex-wrap: wrap; }
  .req-type-btn { flex: 1 1 45%; }
}

/* ============================================================
   RACE DAY REPORT - editorial article template
   ============================================================ */

/* Split-screen hero */
.rdr-hero {
  display: grid;
  grid-template-columns: 58fr 42fr;
  height: 100svh;
  border-bottom: 1px solid var(--line);
}
.rdr-hero-image {
  position: relative;
  overflow: hidden;
}
.rdr-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86);
  transition: filter 1.2s;
}
.rdr-hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
}

/* Type panel */
.rdr-hero-text {
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 4vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.rdr-hero-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
}
.rdr-report-type {
  font-family: var(--mono);
  font-size: 0.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.rdr-headline {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 0.5rem;
  /* bleeds 40px left over the image boundary */
  margin-left: -3rem;
  padding-left: 3rem;
  position: relative;
}
.rdr-headline em {
  font-style: normal;
  font-weight: 700;
  color: var(--warm);
}
.rdr-dateline {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--stone);
  margin: 1.5rem 0 2.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.rdr-dateline-sep {
  width: 1px;
  height: 0.8em;
  background: var(--stone-3);
}

/* Weather instrument strip */
.rdr-weather {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  gap: 0;
}
.rdr-weather-field { padding-right: 1.5rem; }
.rdr-weather-field + .rdr-weather-field {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}
.rdr-weather-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.36rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 0.4rem;
}
.rdr-weather-value {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* Live Grid */
.rdr-live-grid {
  background: var(--black);
}
.rdr-beat {
  display: grid;
  gap: 2px;
  border-bottom: 2px solid var(--deep);
}
.rdr-beat--a { grid-template-columns: 5fr 3fr 4fr; }
.rdr-beat--b { grid-template-columns: 4fr 5fr 3fr; }
.rdr-beat--full { grid-template-columns: 1fr; }

.rdr-text-block {
  padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rdr-beat-label {
  font-family: var(--mono);
  font-size: 0.38rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rdr-beat-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.rdr-paragraph {
  font-family: var(--body);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--stone);
  letter-spacing: 0.02em;
}
.rdr-pullquote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1.15;
  margin-top: 1.5rem;
}
.rdr-pullquote em {
  font-style: normal;
  color: var(--warm);
}

.rdr-photo {
  position: relative;
  overflow: hidden;
  background: var(--card);
}
.rdr-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.rdr-photo:hover img { transform: scale(1.04); }
.rdr-photo--portrait { aspect-ratio: auto; }
.rdr-photo--square   { aspect-ratio: 1; }
.rdr-photo--wide     { aspect-ratio: 16/7; }

/* Full-bleed panoramic beat */
.rdr-beat--full .rdr-photo {
  min-height: 55vh;
}
.rdr-beat--full .rdr-pullquote-overlay {
  position: absolute;
  bottom: 3rem;
  left: 3.5rem;
  right: 3.5rem;
  z-index: 5;
  pointer-events: none;
}
.rdr-beat--full .rdr-pullquote-overlay .rdr-pullquote {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-top: 0;
}
.rdr-full-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.58) 0%, transparent 50%);
  pointer-events: none;
  z-index: 4;
}

/* Media Assets Drawer */
.rdr-assets {
  background: var(--deep);
  border-top: 1px solid var(--line);
}
.rdr-assets-header {
  padding: clamp(3rem, 5vw, 5rem) 3.5rem 2rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.rdr-assets-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
}
.rdr-assets-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--warm);
}
.rdr-assets-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

/* Embed blocks */
.rdr-embeds {
  padding: clamp(2.5rem, 5vw, 4rem) 3.5rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.rdr-embed-label {
  font-family: var(--mono);
  font-size: 0.38rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 1.5rem;
}
.rdr-embed-block {
  background: var(--card);
  border: 1px solid var(--line-mid);
  overflow: hidden;
}
.rdr-embed-block-header {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rdr-embed-block-name {
  font-family: var(--mono);
  font-size: 0.38rem;
  letter-spacing: 0.14em;
  color: var(--stone-2);
}
.rdr-copy-btn {
  font-family: var(--mono);
  font-size: 0.34rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: 1px solid var(--line-mid);
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.rdr-copy-btn:hover { color: var(--white); border-color: var(--line-mid); }
.rdr-copy-btn.copied { color: var(--red); border-color: var(--red); }
.rdr-embed-code {
  padding: 0.85rem 1rem;
  font-family: var(--mono);
  font-size: 0.42rem;
  color: var(--stone);
  line-height: 1.8;
  letter-spacing: 0.02em;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: var(--stone-3) transparent;
}

/* RAW request form */
.rdr-raw {
  padding: clamp(2.5rem, 5vw, 4rem) 3.5rem;
}
.rdr-raw-title {
  font-family: var(--body);
  font-size: 0.5rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 2rem;
}
.rdr-raw-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.rdr-raw-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.rdr-raw-field label {
  font-family: var(--mono);
  font-size: 0.36rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-2);
}
.rdr-raw-field input {
  background: none;
  border: none;
  border-bottom: 1px solid var(--line-mid);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 300;
  padding: 0.4rem 0 0.6rem;
  outline: none;
  transition: border-color 0.25s;
}
.rdr-raw-field input:focus { border-color: var(--red); }
.rdr-raw-field input::placeholder { color: var(--stone-3); }

/* Asset checkboxes */
.rdr-asset-checks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.rdr-asset-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.rdr-asset-check input[type="checkbox"] {
  width: 14px; height: 14px;
  border: 1px solid var(--line-mid);
  appearance: none;
  background: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.rdr-asset-check input[type="checkbox"]:checked {
  border-color: var(--red);
  background: rgba(229,9,20,0.12);
}
.rdr-asset-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--red);
}
.rdr-asset-check span {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--stone);
}
.rdr-raw-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--body);
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.4rem;
  cursor: pointer;
  transition: color var(--t), gap var(--t), border-color var(--t);
}
.rdr-raw-submit:hover { color: var(--warm); gap: 1.25rem; border-color: rgba(255,255,255,0.35); }
.rdr-raw-submit svg { opacity: 0.35; transition: opacity var(--t), transform var(--t); }
.rdr-raw-submit:hover svg { opacity: 0.65; transform: translateX(5px); }

@media (max-width: 960px) {
  .rdr-hero { grid-template-columns: 1fr; height: auto; }
  .rdr-hero-image { min-height: 55vw; }
  .rdr-hero-text { padding: 3rem 2.5rem; }
  .rdr-headline { margin-left: 0; padding-left: 0; font-size: clamp(2.5rem, 8vw, 4rem); }
  .rdr-beat--a,
  .rdr-beat--b { grid-template-columns: 1fr; }
  .rdr-photo--portrait { min-height: 55vw; }
  .rdr-assets-body { grid-template-columns: 1fr; }
  .rdr-embeds { border-right: none; border-bottom: 1px solid var(--line); }
  .rdr-embeds,
  .rdr-raw   { padding: 3rem 2.5rem; }
}
@media (max-width: 560px) {
  .rdr-weather { grid-template-columns: 1fr 1fr; }
  .rdr-weather-field:last-child { grid-column: 1; border-left: none; padding-left: 0; margin-top: 1rem; }
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.brand-stmt {
  background: var(--deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(5rem, 9vw, 8rem) clamp(2.5rem, 6vw, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-stmt-inner {
  max-width: 900px;
  width: 100%;
}

.brand-stmt-inner .eyebrow { margin-bottom: 2.25rem; }

.brand-stmt-text {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
}

.brand-stmt-sub {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--stone);
  max-width: 640px;
  margin-top: 1.5rem;
}

.brand-stmt-rule {
  width: 44px;
  height: 2px;
  background: var(--warm);
  margin-top: 2.75rem;
}

.brand-stmt-availability {
  font-family: var(--mono);
  font-size: 0.44rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-top: 1.5rem;
}

/* ============================================================
   ARCHIVE
   ============================================================ */
.archive {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 0;
}

.archive-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(2rem, 4vw, 3.5rem) 2.5rem;
}

.archive-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--body);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--t), gap var(--t);
}
.archive-view-all svg { opacity: 0.35; transition: opacity var(--t), transform var(--t); }
.archive-view-all:hover { color: var(--warm); gap: 1.25rem; }
.archive-view-all:hover svg { opacity: 0.7; transform: translateX(5px); }

.archive-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  height: 74vh;
  min-height: 480px;
  max-height: 860px;
}

.archive-item {
  position: relative;
  overflow: hidden;
  background: var(--card);
  cursor: pointer;
}
.archive-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform 1.1s var(--ease), filter 0.5s;
}
.archive-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* explicit grid placement */
.archive-a { grid-column: 1; grid-row: 1 / 3; }
.archive-b { grid-column: 2; grid-row: 1; }
.archive-c { grid-column: 2; grid-row: 2; }
.archive-d { grid-column: 3; grid-row: 1 / 3; }

.archive-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.75rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.38s var(--ease), transform 0.38s var(--ease);
  z-index: 3;
}
.archive-item:hover .archive-meta {
  opacity: 1;
  transform: translateY(0);
}

.archive-make {
  font-family: var(--display);
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.archive-region {
  font-family: var(--body);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 768px) {
  .archive-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    max-height: none;
  }
  .archive-a { grid-column: 1 / 3; grid-row: 1; height: 58vw; }
  .archive-b { grid-column: 1; grid-row: 2; height: 52vw; }
  .archive-c { grid-column: 2; grid-row: 2; height: 52vw; }
  .archive-d { grid-column: 1 / 3; grid-row: 3; height: 58vw; }
  .archive-meta { opacity: 1; transform: none; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(5rem, 9vw, 8rem) clamp(2.5rem, 6vw, 5.5rem);
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  max-width: 1140px;
  margin: 0 auto;
}

.svc-divider {
  width: 1px;
  background: var(--line-mid);
  margin: 0 clamp(2.5rem, 4.5vw, 4.5rem);
  align-self: stretch;
}

.svc-num {
  display: block;
  font-family: var(--mono);
  font-size: 0.5rem;
  color: var(--warm);
  letter-spacing: 0.24em;
  margin-bottom: 2rem;
}

.svc-title {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.svc-desc {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.95;
  letter-spacing: 0.025em;
  max-width: 290px;
}

.svc-cta {
  max-width: 1140px;
  margin: clamp(2.5rem, 4vw, 4rem) auto 0;
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 3.5vw, 3rem);
}
.svc-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: gap var(--t), color var(--t);
}
.svc-cta-link svg { opacity: 0.35; flex-shrink: 0; stroke: currentColor; transition: opacity var(--t), transform var(--t); }
.svc-cta-link:hover { gap: 1.6rem; color: var(--warm); }
.svc-cta-link:hover svg { opacity: 0.7; }
.svc-cta-link:hover svg { opacity: 0.9; transform: translateX(5px); }

@media (max-width: 900px) {
  .services-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .svc-divider { display: none; }
  .svc-col {
    border-top: 1px solid var(--line);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .svc-col:first-child { border-top: none; padding-top: 0; }
  .svc-desc { max-width: none; }
}

/* ============================================================
   MOBILE NAV - hamburger + full-screen drawer
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 600;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--stone);
  transition: transform 0.35s var(--ease), opacity 0.25s, background 0.25s;
  transform-origin: center;
}
.nav-hamburger:hover span { background: var(--white); }
.nav-hamburger[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
  background: var(--white);
}
.nav-hamburger[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--white);
}

@media (max-width: 480px) {
  .nav-hamburger { display: flex; }
  .nav-ig        { display: none; }
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2.5rem 4rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  pointer-events: none;
  border-left: 1px solid var(--line);
}
.nav-drawer.open {
  transform: translateX(0);
  pointer-events: all;
}
.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-drawer-link {
  font-family: var(--display);
  font-size: clamp(2.4rem, 11vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--stone-2);
  line-height: 1;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s;
}
.nav-drawer-link:first-child { border-top: 1px solid var(--line); }
.nav-drawer-link:hover { color: var(--white); }
.nav-drawer-ig {
  font-family: var(--body);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-3);
  margin-top: 2rem;
  border: none !important;
  padding-top: 0;
}
.nav-drawer-ig:hover { color: var(--stone); }

/* ============================================================
   ARCHIVE SUB-LINE
   ============================================================ */
.archive-sub {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--stone);
  padding: 0.75rem clamp(2rem, 4vw, 3.5rem) 0;
  max-width: 520px;
}

/* ============================================================
   FOOTER IG LINK
   ============================================================ */
.footer-ig {
  font-family: var(--body);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-3);
  transition: color var(--t);
}
.footer-ig:hover { color: var(--stone); }

/* ============================================================
   NFC / CONTACT LANDING PAGE
   ============================================================ */
.nfc-page {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.nfc-inner {
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nfc-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 2.5rem;
  opacity: 0.92;
}
.nfc-via {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1rem;
  display: none;
}
.nfc-via.visible { display: block; }
.nfc-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.nfc-sub {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--stone);
  margin-bottom: 2.75rem;
  max-width: 320px;
}
.nfc-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem 2.25rem;
  border-radius: 2px;
  transition: opacity var(--t), transform var(--t);
}
.nfc-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.nfc-primary svg { flex-shrink: 0; }

.nfc-secondary-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nfc-secondary {
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.3rem;
  transition: color var(--t), border-color var(--t);
}
.nfc-secondary:hover { color: var(--warm); border-color: rgba(255,255,255,0.35); }

.nfc-footer {
  margin-top: 4rem;
  font-family: var(--mono);
  font-size: 0.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-3);
}

/* ============================================================
   HIRE / CONTACT-US CARD — events & media inquiry form
   ============================================================ */
.hire {
  background: var(--deep);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) clamp(6rem, 10vw, 9rem);
}
.hire-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ── Info column ─────────────────────────────────────────── */
.hire-info { padding-top: 0.5rem; }
.hire-lede {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
  margin: 1.5rem 0 2.5rem;
  max-width: 420px;
}
.hire-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}
.hire-fact { display: flex; flex-direction: column; gap: 0.4rem; }
.hire-fact-label {
  font-family: var(--mono);
  font-size: 0.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-2);
}
.hire-fact-value {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--stone);
}
.hire-alt { display: flex; flex-direction: column; gap: 1rem; }
.hire-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--body);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--white);
  opacity: 0.85;
  width: fit-content;
  transition: opacity var(--t), color var(--t);
}
.hire-alt-link svg { opacity: 0.6; flex-shrink: 0; }
.hire-alt-link:hover { opacity: 1; color: var(--warm); }

/* ── Card column ─────────────────────────────────────────── */
.hire-card {
  background: var(--card);
  border: 1px solid var(--line-mid);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}
.hire-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--warm), transparent);
}

.hire-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hire-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.hire-field { margin-bottom: 1.35rem; }
.hire-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.38rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-2);
  margin-bottom: 0.6rem;
}
.hire-label span { text-transform: none; letter-spacing: 0.02em; opacity: 0.7; }

.hire-field input,
.hire-field select,
.hire-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line-mid);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.hire-field input::placeholder,
.hire-field textarea::placeholder { color: var(--stone-3); }
.hire-field input:hover,
.hire-field select:hover,
.hire-field textarea:hover { border-color: rgba(255,255,255,0.22); }
.hire-field input:focus,
.hire-field select:focus,
.hire-field textarea:focus {
  border-color: var(--warm);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 0 0 3px rgba(230,213,168,0.12);
}
.hire-field textarea { resize: vertical; min-height: 100px; }
.hire-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23918C87' stroke-width='1.6'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 10px;
  padding-right: 2.25rem;
}
.hire-field select option { background: var(--card); color: var(--white); }

.hire-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  padding: 1.05rem 1.5rem;
  margin-top: 0.75rem;
  cursor: pointer;
  transition: background var(--t), gap var(--t);
}
.hire-submit:hover { background: var(--warm); gap: 1.2rem; }
.hire-submit:active { transform: scale(0.98); }
.hire-submit svg { flex-shrink: 0; }

.hire-confirm {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--stone);
  margin-top: 1.25rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
}
.hire-confirm svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--warm); }
.hire-confirm.visible { opacity: 1; max-height: 100px; }

@media (max-width: 860px) {
  .hire-grid { grid-template-columns: 1fr; }
  .hire-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .hire { padding: 2.5rem 1.25rem 4rem; }
  .hire-card { padding: 1.75rem; }
}

