/* ============================================
   TRIPLE BLACK CAR — refined black-on-black
   ============================================ */

:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --bg-3: #111111;
  --bg-card: #0d0d0d;
  --line: #1a1a1a;
  --line-2: #222;
  --text: #f0eee8;
  --text-dim: #aaa9a3;
  --text-faint: #6e6d68;
  --accent: #b89968;
  --accent-dim: #8a7350;
  --white: #f8f6f1;

  --font-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  --gutter: clamp(1.5rem, 4vw, 4rem);
  --section-pad: clamp(5rem, 10vw, 9rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }

.italic {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: var(--line);
  padding: 1rem var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: opacity 0.3s ease;
}

.brand:hover { opacity: 0.85; }

.brand-monogram {
  height: 36px;
  width: auto;
  color: var(--accent);
  display: block;
  transition: color 0.3s ease;
}

.brand:hover .brand-monogram {
  color: var(--white);
}

.brand-name {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}

.brand-wordmark {
  width: 100%;
  max-width: 420px;
  height: auto;
  color: var(--accent);
  display: block;
  margin: 0 auto;
}

.brand-logo-full {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .brand-wordmark { max-width: 300px; }
  .brand-logo-full { max-width: 240px; }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.7rem 1.4rem;
  border-radius: 1px;
  transition: background 0.3s ease;
  font-weight: 600;
}

.nav-cta:hover { background: var(--white); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .brand-name { display: none; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  padding: 9rem var(--gutter) 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.72) contrast(1.05) saturate(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.72) 35%,
      rgba(5, 5, 5, 0.45) 65%,
      rgba(5, 5, 5, 0.55) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.4) 0%,
      rgba(5, 5, 5, 0) 30%,
      rgba(5, 5, 5, 0) 70%,
      rgba(5, 5, 5, 0.6) 100%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 3.5rem;
}

.hero-meta-line {
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  position: relative;
  padding-left: 1.5rem;
}

.hero-meta-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.8rem;
  height: 1px;
  background: var(--accent);
}

.hero-meta-line:last-child {
  color: var(--text-dim);
}
.hero-meta-line:last-child::before { background: var(--text-dim); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroLine 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.45s; color: var(--accent); }

@keyframes heroLine {
  to { opacity: 1; transform: translateY(0); }
}

.hero-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

.btn-primary,
.btn-ghost {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border-radius: 1px;
  font-weight: 600;
  transition: all 0.35s ease;
  border: 1px solid;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
}

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

.hero-aside {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 1px solid var(--line);
  padding-left: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.aside-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 200px;
}

.aside-row .k {
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.aside-row .v {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }
  .hero-aside {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 2rem;
    margin-top: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .aside-row { min-width: 0; flex: 1 1 200px; }
  .hero-photo img { object-position: center 30%; }
}

/* ============================================
   LEDGER STRIP
   ============================================ */

.ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.ledger-cell {
  padding: 2.2rem var(--gutter);
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  border-right: 1px solid var(--line);
  transition: background 0.4s ease;
}

.ledger-cell:last-child { border-right: none; }
.ledger-cell:hover { background: var(--bg-3); }

.ledger-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
}

.ledger-label {
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .ledger { grid-template-columns: repeat(2, 1fr); }
  .ledger-cell:nth-child(2) { border-right: none; }
  .ledger-cell:nth-child(1), .ledger-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .ledger-cell { padding: 1.5rem var(--gutter); }
}

/* ============================================
   SECTIONS — generic
   ============================================ */

.section {
  padding: var(--section-pad) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.section-head { margin-bottom: 5rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.eyebrow.light { color: var(--white); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 900px;
}

/* ============================================
   DISCIPLINES (services)
   ============================================ */

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.discipline {
  background: var(--bg);
  padding: 3rem clamp(2rem, 4vw, 3.5rem);
  transition: background 0.4s ease;
  position: relative;
}

.discipline:hover { background: var(--bg-card); }

.d-num {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 2rem;
  font-weight: 700;
}

.d-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.d-copy {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  font-size: 1rem;
  font-weight: 400;
  max-width: 480px;
}

.d-meta {
  list-style: none;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.d-meta li {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 400;
  padding: 0.45rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  letter-spacing: 0.01em;
}

.d-meta li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .discipline-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FLEET — vehicle silhouettes
   ============================================ */

.fleet-section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.vehicle {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease;
}

.vehicle:hover { background: var(--bg-card); }

.vehicle-art {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(184, 153, 104, 0.04), transparent 70%);
  overflow: hidden;
}

.vehicle:hover .vehicle-art {
  color: var(--white);
}

.vehicle-art svg {
  width: 75%;
  height: auto;
  max-width: 320px;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vehicle:hover .vehicle-art svg {
  transform: translateX(8px);
}

/* For real photos in vehicle cards */
.vehicle-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.02);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Placeholder for vehicles awaiting a real photo */
.vehicle-art.pending {
  flex-direction: column;
  gap: 0.6rem;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 10px, transparent 10px 20px),
    radial-gradient(ellipse at center, rgba(184, 153, 104, 0.05), transparent 70%);
}

.pending-mark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.55;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.18em;
}

.pending-label {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.vehicle-body {
  padding: 2rem clamp(1.8rem, 3vw, 2.5rem) 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.v-num {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.v-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.005em;
}

.v-desc {
  color: var(--text);
  font-weight: 400;
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.v-specs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-2);
}

.spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.spec-k {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.spec-v {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  text-align: right;
}

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

/* ============================================
   STANDARD — the "why us" section
   ============================================ */

.standard {
  background: linear-gradient(to bottom, var(--bg-2), var(--bg));
  padding: var(--section-pad) var(--gutter);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standard::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at center top, rgba(184, 153, 104, 0.03), transparent 70%);
  pointer-events: none;
}

.standard-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.standard-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 5rem;
  max-width: 900px;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}

.standard-item {
  border-top: 1px solid var(--line-2);
  padding-top: 1.5rem;
  position: relative;
}

.si-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.standard-item h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
  letter-spacing: -0.005em;
}

.standard-item p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 900px) {
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .standard-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   QUIET STATEMENT
   ============================================ */

.quiet {
  padding: var(--section-pad) var(--gutter);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quiet-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.quiet-signoff {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   CONTACT / RESERVE
   ============================================ */

.contact {
  background: var(--bg-2);
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--line);
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.contact-lede {
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 400;
  max-width: 580px;
  margin-bottom: 4rem;
  line-height: 1.7;
}

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

.contact-card {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: background 0.4s ease;
  min-height: 200px;
}

.contact-card:not(.static):hover {
  background: var(--bg-card);
}

.contact-card .cc-label {
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.contact-card .cc-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.contact-card .cc-sub {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.contact-card .cc-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.contact-card:not(.static):hover .cc-arrow {
  transform: translateX(6px);
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg);
  padding: 4rem var(--gutter) 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0 var(--gutter);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.footer-meta span:nth-child(even) { color: var(--text-faint); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */

.section, .standard, .contact, .quiet, .ledger {
  opacity: 1;
  transform: none;
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-on .section,
.js-on .standard,
.js-on .contact,
.js-on .quiet,
.js-on .ledger {
  opacity: 0;
  transform: translateY(40px);
}

.js-on .section.in,
.js-on .standard.in,
.js-on .contact.in,
.js-on .quiet.in,
.js-on .ledger.in {
  opacity: 1;
  transform: translateY(0);
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ============================================
   MARQUEE WALL
   ============================================ */
.marquee-wall {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(184,153,104,0.05), transparent 75%),
    var(--bg-2);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(0.2rem, 1vw, 0.7rem);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: marquee-left var(--dur, 32s) linear infinite;
}

.marquee.reverse .marquee-track {
  animation-name: marquee-right;
}

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

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding-right: 0.3em;
}

/* Per-row treatments for depth */
.row-services .marquee-track span { color: var(--text); }

.row-airports .marquee-track span {
  -webkit-text-stroke: 1px var(--accent);
  text-stroke: 1px var(--accent);
  color: transparent;
  font-style: italic;
}

.row-values .marquee-track span {
  color: var(--text-faint);
  font-size: clamp(1.3rem, 3.5vw, 2.6rem);
  letter-spacing: 0.06em;
}

.row-region .marquee-track span {
  -webkit-text-stroke: 1px var(--text-faint);
  text-stroke: 1px var(--text-faint);
  color: transparent;
}

.row-brand .marquee-track span {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: translateX(0); }
}

/* ============================================
   WORLD CUP
   ============================================ */
.worldcup { background: var(--bg-2); }

.wc-lede {
  max-width: 760px;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-dim);
}

.wc-schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.wc-city { background: var(--bg); padding: clamp(1.6rem, 2.5vw, 2.2rem); }

.wc-city-head { margin-bottom: 1.3rem; }
.wc-city-head h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.wc-city-head span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.wc-matches { list-style: none; }
.wc-matches li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--text-dim);
}
.wc-matches li:first-child { border-top: none; }
.wc-date {
  flex: 0 0 3.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.wc-matches .wc-headline { color: var(--accent); font-weight: 600; }
.wc-matches .wc-headline .wc-date { color: var(--accent); }

.wc-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.wc-tier {
  background: var(--bg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  transition: background 0.3s ease;
}
.wc-tier:hover { background: var(--bg-card); }
.wc-tier.featured { background: var(--bg-3); }
.wc-tier.featured:hover { background: var(--bg-card); }

.wc-tier-num {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.9rem;
}
.wc-tier h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.wc-price {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.wc-price span {
  font-size: 0.8rem;
  color: var(--text-faint);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.wc-tier-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.wc-note {
  margin: 1.6rem 0 clamp(1.8rem, 3vw, 2.6rem);
  font-size: 0.82rem;
  color: var(--text-faint);
  font-style: italic;
}

.wc-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 880px) {
  .wc-schedule { grid-template-columns: 1fr; }
  .wc-tiers { grid-template-columns: 1fr; }
}
