/* =========================================================
   PHÉNIX COMPÉTITION — RACING EDITORIAL v2
   ========================================================= */

:root {
  --bg: #07070A;
  --bg-2: #0C0C11;
  --bg-3: #0F0F15;
  --surface: #14141C;
  --surface-2: #1B1B26;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.13);
  --line-3: rgba(255, 255, 255, 0.22);

  --ink: #F4F2EC;
  --ink-2: #B8B5AE;
  --ink-3: #6E6D66;
  --ink-4: #3F3F47;

  --orange: #FF5B14;
  --orange-bright: #FF7733;
  --orange-deep: #C73A00;
  --red: #FF0024;
  --green: #1AD66B;
  --blue: #2E5BFF;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-serif: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Sora', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 4px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

@media (max-width: 900px) {
  html, body { cursor: auto; }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; font: inherit; cursor: pointer; color: inherit; }

::selection { background: var(--orange); color: #000; }

/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */
.micro {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  color: var(--ink-2);
}

h2 .accent { color: var(--orange); }

h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 56ch;
}

p em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* =========================================================
   F1 STARTING LIGHTS LOADER
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  background: #050507;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.loader-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.loader-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 40px;
  z-index: 2;
}

.loader-top, .loader-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loader-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.loader-go {
  color: var(--ink-3);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.loader-go.is-green {
  color: var(--green);
  animation: blink 0.4s ease-in-out 3;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.loader-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.loader-board {
  padding: 32px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0A0A0E 0%, #050507 100%);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

.loader-lights {
  display: flex;
  gap: 28px;
}

.loader-light {
  width: clamp(60px, 9vw, 100px);
  height: clamp(60px, 9vw, 100px);
  border-radius: 50%;
  background: #1a0000;
  border: 4px solid #0a0a0a;
  box-shadow:
    inset 0 4px 12px rgba(0,0,0,0.8),
    inset 0 -2px 8px rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.15s ease-out, box-shadow 0.4s ease-out;
}

.loader-light span {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.15s ease-out;
}

.loader-light.is-on {
  background: #2a0000;
  box-shadow:
    inset 0 4px 12px rgba(0,0,0,0.4),
    0 0 30px rgba(255, 0, 36, 0.5),
    0 0 60px rgba(255, 0, 36, 0.2);
}

.loader-light.is-on span {
  background: radial-gradient(circle at 35% 30%, #FF4060, #FF0024 50%, #8A0014 100%);
  box-shadow: inset 0 0 12px rgba(255, 100, 100, 0.4);
}

.loader-light.is-green {
  background: #002a0a;
  box-shadow:
    inset 0 4px 12px rgba(0,0,0,0.4),
    0 0 40px rgba(26, 214, 107, 0.6),
    0 0 80px rgba(26, 214, 107, 0.3);
}

.loader-light.is-green span {
  background: radial-gradient(circle at 35% 30%, #5FFF8A, #1AD66B 50%, #0A6633 100%);
  box-shadow: inset 0 0 12px rgba(150, 255, 180, 0.4);
}

.loader-status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  min-height: 14px;
}

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s var(--ease-out), border 0.3s var(--ease-out);
}

.cursor-ring.is-link {
  width: 64px; height: 64px;
  background: rgba(255,91,20,0.15);
  border-color: var(--orange);
}

@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(7, 7, 10, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-brand-mark {
  color: var(--orange);
  font-size: 16px;
  transform: translateY(-1px);
}

.nav-brand em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0;
  margin-left: 8px;
  text-transform: lowercase;
  color: var(--ink-2);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s var(--ease-out);
}

.nav-links a i {
  font-style: normal;
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--orange);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform-origin: left; transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s;
}

.nav-cta-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.nav-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}
.nav-cta:hover .nav-cta-dot {
  background: #000;
  box-shadow: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav { padding: 16px 20px; }
  .nav.is-scrolled { padding: 12px 20px; }
}

/* =========================================================
   HERO — SPLIT EDITORIAL
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 96px 40px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 75% 25%, rgba(255, 91, 20, 0.16), transparent 55%),
    radial-gradient(ellipse 800px 600px at 15% 85%, rgba(46, 91, 255, 0.10), transparent 55%),
    var(--bg);
  z-index: -2;
}

.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(100% / 12 - 1px),
    rgba(255,255,255,0.025) calc(100% / 12 - 1px),
    rgba(255,255,255,0.025) calc(100% / 12)
  );
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  right: -3vw;
  bottom: -8vw;
  font-family: var(--font-display);
  font-size: 52vw;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 91, 20, 0.07);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero-topbar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}

.hero-topbar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.hero-topbar-item:last-child { border-right: none; }

.hero-topbar-item > span:last-child {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.hero-topbar-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green) !important;
}
.hero-topbar-live i {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

/* HERO TEXT side */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
}

.hero-eyebrow i {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9.5vw, 168px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-word {
  display: inline-block;
  transform: translateY(110%);
  white-space: nowrap;
}

.hero-word--accent {
  color: var(--orange);
}

.hero-word em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  color: var(--ink-2);
}

.hero-lede {
  font-size: clamp(15px, 1.15vw, 18px);
  max-width: 52ch;
  color: var(--ink-2);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero-tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: color 0.3s, border-color 0.3s;
}
.hero-tags span:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* HERO VISUAL side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
}

.hero-frame-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 16px;
}

.hero-frame-corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--orange);
}
.hero-frame-corner--tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-frame-corner--tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.hero-frame-corner--bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.hero-frame-corner--br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hero-image {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(0.85) brightness(0.95);
  will-change: transform;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,10,0.0) 50%, rgba(7,7,10,0.5) 100%),
    radial-gradient(ellipse at center, transparent 50%, rgba(7,7,10,0.4) 100%);
  pointer-events: none;
}

.hero-spec {
  padding: 14px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed var(--line);
  margin-top: 12px;
}

.hero-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.hero-spec-row span:first-child {
  color: var(--ink-3);
  text-transform: uppercase;
}

.hero-spec-row span:last-child {
  color: var(--ink);
  font-weight: 500;
}

.hero-spec-row--accent span:last-child {
  color: var(--orange);
}

/* CIRCULAR BADGE */
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  animation: spinBadge 22s linear infinite;
}

.hero-badge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-badge-center {
  font-size: 18px;
  color: var(--orange);
  animation: spinBadge 22s linear infinite reverse;
}

@keyframes spinBadge {
  to { transform: rotate(360deg); }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  z-index: 5;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 30%;
  background: var(--orange);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(350%); }
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-frame { max-width: 480px; margin: 0 auto; }
  .hero-watermark { right: -8vw; font-size: 80vw; bottom: -15vw; }
}

@media (max-width: 700px) {
  .hero { padding: 84px 20px 60px; }
  .hero-topbar { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-topbar-item { padding: 8px 12px; border-right: none; }
  .hero-topbar-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .hero-scroll { right: 20px; }
  .hero-badge { width: 80px; height: 80px; bottom: 12px; left: 12px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s var(--ease-out);
  border: 1px solid transparent;
  will-change: transform;
}

.btn--primary {
  background: var(--orange);
  color: #000;
}

.btn--primary::before {
  content: '';
  position: absolute; inset: 0;
  background: #000;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}

.btn--primary:hover { color: var(--orange); }
.btn--primary:hover::before { transform: scaleY(1); transform-origin: top; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}

.btn--ghost::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--ink);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}

.btn--ghost:hover {
  color: #000;
  border-color: var(--ink);
}
.btn--ghost:hover::before { transform: scaleY(1); transform-origin: top; }

.btn-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--orange);
  color: #000;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.marquee-track {
  display: flex;
  gap: 50px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track i {
  font-style: normal;
  font-size: 0.5em;
  color: #000;
  opacity: 0.55;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================
   ORIGINE
   ========================================================= */
.origine {
  padding: 140px 40px;
  position: relative;
}

.origine-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.origine-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
}

.origine-text h2 { margin-bottom: 12px; }

.origine-events {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}

.origine-events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  transition: all 0.3s;
}

.chip i {
  font-style: normal;
  font-size: 9px;
  color: var(--orange);
  letter-spacing: 0;
}

.chip:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}
.chip:hover i { color: #000; }

.origine-signature {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}

.origine-signature div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.origine-signature strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.origine-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.origine-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.origine-image-wrap img {
  position: absolute; inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.1) brightness(0.92);
  will-change: transform;
}

.origine-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.origine-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}

.origine-image-tag span:last-child {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* IMG corner tags */
.img-tag {
  position: absolute;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
}
.img-tag--tl { top: 12px; left: 12px; }
.img-tag--tr { top: 12px; right: 12px; }
.img-tag--bl { bottom: 12px; left: 12px; }
.img-tag--br { bottom: 12px; right: 12px; }

.origine-stat {
  background: var(--orange);
  color: #000;
  padding: 22px 18px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  box-shadow: 0 20px 60px -15px rgba(255,91,20,0.55);
  position: relative;
  overflow: hidden;
}

.origine-stat::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,0.18) 4px, rgba(0,0,0,0.18) 8px);
}

.origine-stat .micro {
  color: rgba(0,0,0,0.65);
}

.origine-stat-num {
  font-family: var(--font-display);
  font-size: clamp(50px, 5vw, 78px);
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.origine-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  max-width: 100px;
  line-height: 1.3;
}

.origine-secondary {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.origine-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.9);
}

@media (max-width: 900px) {
  .origine { padding: 80px 20px; }
  .origine-grid { grid-template-columns: 1fr; gap: 50px; }
  .origine-signature { grid-template-columns: 1fr 1fr; gap: 24px; }
  .origine-text { padding-top: 0; }
}

/* =========================================================
   PIT BOARD / TELEMETRY
   ========================================================= */
.pitboard {
  padding: 120px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.pitboard::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}

.pitboard > * { position: relative; z-index: 1; }

.pitboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 64px;
}

.pitboard-live {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
}

.pitboard-live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}

.pitboard-live-time {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.pitboard-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.pitboard-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out);
}

.pitboard-card:hover { border-color: var(--line-3); }

.pitboard-card--feature {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-color: var(--line-2);
}

.pitboard-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.pitboard-card-value {
  font-family: var(--font-display);
  font-size: clamp(60px, 6.5vw, 100px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  display: flex;
  align-items: flex-start;
  color: var(--ink);
}

.pitboard-card-value i, .pitboard-card-value em {
  font-style: normal;
  font-size: 0.36em;
  color: var(--orange);
  margin-left: 4px;
  margin-top: 0.18em;
  font-family: var(--font-display);
}

.pitboard-card-desc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: auto;
}

.pitboard-bar {
  height: 2px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.pitboard-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  transform-origin: left;
  transform: scaleX(0);
}

.pitboard-strip {
  margin: 40px auto 0;
  max-width: 1400px;
  padding: 16px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.pitboard-strip > .micro {
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  color: var(--orange);
}

.pitboard-strip-data {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.pitboard-strip-data::-webkit-scrollbar { display: none; }

.pitboard-strip-data i {
  font-style: normal;
  color: var(--ink-3);
  font-size: 0.8em;
}

@media (max-width: 1100px) {
  .pitboard-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pitboard { padding: 80px 20px; }
  .pitboard-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .pitboard-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: 140px 40px;
  background: var(--bg);
}

.section-head {
  max-width: 1400px;
  margin: 0 auto 80px;
}

.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head p { margin-top: 16px; color: var(--ink-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service {
  background: var(--bg-2);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease-out);
  min-height: 420px;
}

.service::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  transform: translateY(101%);
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
}

.service:hover::before { transform: translateY(0); }
.service > * { position: relative; z-index: 1; transition: color 0.5s var(--ease-out); }

.service:hover h3,
.service:hover p,
.service:hover .service-num,
.service:hover .service-tag,
.service:hover .micro { color: #000; }

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 5px 10px;
  border: 1px solid var(--orange);
  border-radius: 100px;
}

.service h3 { color: var(--ink); }
.service p { color: var(--ink-2); font-size: 14px; }

.service-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.service-bg-num {
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 200px;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  z-index: 0;
  transition: color 0.5s var(--ease-out);
}

.service:hover .service-bg-num {
  color: rgba(0,0,0,0.12);
}

.service--accent { background: var(--surface); }

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .services { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   RACING — HORIZONTAL SCROLL
   ========================================================= */
.racing {
  position: relative;
  background: var(--bg);
}

.racing-intro {
  padding: 140px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.racing-intro h2 { margin-bottom: 24px; }

.hscroll {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hscroll-track {
  display: flex;
  gap: 28px;
  padding: 0 40px;
  height: 100%;
  align-items: center;
  will-change: transform;
}

.rcard {
  flex: 0 0 460px;
  height: 76vh;
  max-height: 720px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: border-color 0.4s, transform 0.4s;
}

.rcard:hover { border-color: var(--line-3); }

.rcard-plate {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  width: 64px;
  height: 64px;
  background: #fff;
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  color: #000;
  letter-spacing: -0.04em;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.rcard-img {
  position: relative;
  width: 100%;
  height: 56%;
  overflow: hidden;
  background: #000;
}

.rcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.12) saturate(1.05);
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}

.rcard-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.rcard:hover .rcard-img img {
  transform: scale(1.04);
}

.rcard-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
}

.rcard-body .micro { color: var(--orange); }
.rcard-body h4 { margin-top: 2px; }
.rcard-body p { font-size: 13px; line-height: 1.55; color: var(--ink-2); }

.rcard-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: auto;
}

.rcard-spec div {
  background: var(--surface);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcard-spec span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.rcard-spec strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.rcard--end {
  flex: 0 0 480px;
  background: var(--orange);
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.rcard--end .rcard-plate { display: none; }

.rcard-end-flag {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0.12;
  pointer-events: none;
}

.rcard-end-flag-row {
  flex: 1;
  background-image: repeating-linear-gradient(
    90deg,
    #000 0,
    #000 30px,
    transparent 30px,
    transparent 60px
  );
}
.rcard-end-flag-row:nth-child(even) {
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 30px,
    #000 30px,
    #000 60px
  );
}

.rcard-end-content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  color: #000;
}

.rcard-end-content .micro { color: rgba(0,0,0,0.65); }
.rcard-end-content h4 { color: #000; font-size: 44px; line-height: 0.95; }
.rcard-end-content p { color: rgba(0,0,0,0.75); max-width: 32ch; font-size: 14px; }
.rcard-end-content .btn--primary {
  background: #000;
  color: var(--orange);
  align-self: flex-start;
  margin-top: 12px;
}
.rcard-end-content .btn--primary:hover { color: #000; }
.rcard-end-content .btn--primary::before { background: var(--orange); }

.hscroll-progress {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  width: 220px;
  z-index: 5;
}

.hscroll-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.hscroll-progress-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--p, 0%);
  background: var(--orange);
  transition: width 0.3s;
}

@media (max-width: 900px) {
  .racing-intro { padding: 80px 20px 40px; }
  .hscroll { height: auto; }
  .hscroll-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 20px 40px;
    transform: none !important;
    -webkit-overflow-scrolling: touch;
  }
  .rcard { flex: 0 0 85vw; height: 78vh; scroll-snap-align: start; }
  .rcard--end { flex: 0 0 85vw; }
  .hscroll-progress { display: none; }
}

/* =========================================================
   GALLERY — CONTACT SHEET
   ========================================================= */
.gallery {
  padding: 140px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto;
}

.gitem {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: none;
}

.gitem--tall { grid-row: span 2; }
.gitem--wide { grid-column: span 2; }

.gitem-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gitem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.8s var(--ease-out);
  filter: grayscale(0.4) contrast(1.1) brightness(0.78);
}

.gitem:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.15) brightness(1);
}

.gitem::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  opacity: 0.6;
  transition: opacity 0.5s;
}

.gitem:hover::before { opacity: 1; }

.gitem figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  z-index: 2;
}

.gitem figcaption .micro { color: var(--ink-3); }
.gitem figcaption .micro:last-child { color: var(--orange); }

.gitem-title {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 2px 0;
}

/* corner brackets */
.gitem::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--orange);
  border-left: 1px solid var(--orange);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s;
}

.gitem:hover::after { opacity: 1; }

/* Mask reveal — initial state */
[data-mask] { clip-path: inset(0 0 100% 0); }

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .gallery { padding: 80px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; gap: 10px; }
  .gitem--wide { grid-column: span 2; }
  .gitem--tall { grid-row: span 1; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: 140px 0 100px;
  overflow: hidden;
  position: relative;
}

.testimonials .section-head { padding: 0 40px; }

.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 90s linear infinite;
  padding: 20px 0;
}

.reviews-track:hover { animation-play-state: paused; }

.review {
  flex: 0 0 420px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.review:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}

.review-stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 3px;
}

.review p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  max-width: none;
}

.review footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review footer strong { color: var(--ink); font-weight: 500; }
.review footer span { color: var(--ink-3); }

@media (max-width: 700px) {
  .review { flex: 0 0 320px; padding: 24px; }
  .review p { font-size: 16px; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 140px 40px;
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.contact-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(255, 91, 20, 0.12), transparent 60%),
    radial-gradient(ellipse 500px 300px at 80% 30%, rgba(46, 91, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-text { display: flex; flex-direction: column; gap: 24px; }
.contact-title { margin-bottom: 12px; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out);
}

.contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}

.contact-card:hover::before { transform: scaleY(1); transform-origin: top; }
.contact-card:hover { border-color: var(--orange); }

.contact-card strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-card-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--orange);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.contact-card:hover .contact-card-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hours-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  padding: 5px 10px;
  border: 1px solid rgba(26, 214, 107, 0.3);
  border-radius: 100px;
}

.hours-status.is-closed { color: var(--red); border-color: rgba(255,0,36,0.3); }

.hours-status i {
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
  animation: pulse 2s ease-in-out infinite;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-list li span:first-child { color: var(--ink); }
.hours-list li span:last-child { color: var(--ink-2); }
.hours-closed span:last-child { color: var(--orange); }

/* MAP */
.contact-map { position: relative; }

.contact-map-frame {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.35) brightness(0.9);
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-map-corners { position: absolute; inset: 0; }
.contact-map-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--orange);
}
.contact-map-corner--tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.contact-map-corner--tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.contact-map-corner--bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.contact-map-corner--br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.contact-map-top {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  padding: 6px 14px;
  background: rgba(7,7,10,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 100px;
}

.contact-map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.contact-map-pin-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--orange);
  z-index: 2;
}

.contact-map-pin-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  animation: ringExpand 2.5s ease-out infinite;
}
.contact-map-pin-ring--2 { animation-delay: 1.25s; }

@keyframes ringExpand {
  0% { width: 14px; height: 14px; opacity: 1; }
  100% { width: 100px; height: 100px; opacity: 0; }
}

.contact-map-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px 20px;
  background: rgba(7,7,10,0.88);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-map-label strong {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 400;
}

@media (max-width: 900px) {
  .contact { padding: 80px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 80px 40px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  position: relative;
}

.footer-massive {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 40px 0 80px;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-massive em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.2em;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: lowercase;
  margin-top: -0.4em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.footer-grid > div { display: flex; flex-direction: column; gap: 12px; }
.footer-grid p { font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.footer-grid a { color: var(--ink-2); transition: color 0.3s; }
.footer-grid a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 800px) {
  .footer { padding: 60px 20px 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* =========================================================
   REVEAL UTILITIES
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(40px); }
[data-reveal-card] { opacity: 0; transform: translateY(60px); }
