/* ============================================================
   VDK Circuit — Production site styles
   Imports design tokens from the design system, then adds
   production-ready components.
   ============================================================ */
@import url('colors_and_type.css');

html, body {
  background: var(--ink-0);
  color: var(--paper);
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

/* ---------- LAYOUT SHELL ---------- */
.shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 96px;
}
@media (max-width: 1100px) { .shell { padding: 0 32px; } }
@media (max-width: 600px)  { .shell { padding: 0 20px; } }

/* Carbon-fiber fixed backdrop */
.bg-carbon::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.018) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.018) 25%, transparent 25%);
  background-size: 4px 4px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 22px; border-radius: var(--r-2);
  border: 1px solid transparent; cursor: pointer;
  background: var(--boost); color: var(--paper);
  box-shadow: var(--glow-boost-soft);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 200ms var(--ease-grid);
  text-decoration: none;
}
.btn-primary:hover { box-shadow: var(--glow-boost); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 22px; border-radius: var(--r-2);
  border: 1px solid var(--carbon-3); cursor: pointer;
  background: transparent; color: var(--paper);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 200ms var(--ease-grid);
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--paper-2); }
.btn-ghost:active { transform: scale(0.98); }

.btn-arrow {
  width: 14px; height: 1.5px; background: currentColor; position: relative; display: inline-block;
}
.btn-arrow::after {
  content: ''; position: absolute; right: -1px; top: -3px;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
}

/* ---------- PILLS / CHIPS ---------- */
.pill {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--r-pill);
  border: 1px solid var(--carbon-3);
  background: transparent; color: var(--paper-2);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 200ms var(--ease-grid);
  white-space: nowrap;
}
.pill:hover { border-color: var(--paper-3); color: var(--paper); }
.pill.active {
  background: rgba(255,31,31,0.12); color: var(--paper);
  border-color: rgba(255,31,31,0.5);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--boost); box-shadow: 0 0 8px var(--boost-glow); }

/* ---------- EYEBROW ---------- */
.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-3);
}
.eyebrow .accent { color: var(--boost); }
.eyebrow .stripe {
  display: inline-block; width: 22px; height: 1px; background: var(--boost);
  vertical-align: middle; margin-right: 10px;
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 32px;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 56px;
  line-height: 1; letter-spacing: -0.015em; color: var(--paper); margin: 12px 0 0;
  text-transform: uppercase;
}
.section-head h2 em { font-style: normal; color: var(--boost); }
.section-head .right { color: var(--paper-2); font-size: 15px; max-width: 360px; text-align: right; }
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head h2 { font-size: 38px; }
  .section-head .right { text-align: left; }
}

/* ---------- CARD ---------- */
.card {
  background: var(--carbon-1);
  border: 1px solid var(--carbon-3);
  border-radius: var(--r-3);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 240ms var(--ease-grid);
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: var(--shadow-card), var(--glow-boost-soft);
}

/* ---------- FIELD ---------- */
.field {
  background: var(--carbon-2);
  border: 1px solid var(--carbon-3);
  border-radius: var(--r-2);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.field .lbl {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper-3);
}
.field input, .field select, .field textarea {
  background: transparent; border: 0; outline: 0; color: var(--paper);
  font-family: var(--font-body); font-size: 15px; padding: 0;
  width: 100%; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--paper-3); }
.field:focus-within { border-color: var(--boost); box-shadow: var(--glow-boost); }

/* ---------- DIVIDER ---------- */
.stripe-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--carbon-3) 8%, var(--carbon-3) 92%, transparent);
  margin: 96px 0;
}

/* ---------- REVEAL ---------- */
@keyframes reveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: reveal 500ms var(--ease-grid) both; }
.reveal-stagger > * { animation: reveal 500ms var(--ease-grid) both; }
.reveal-stagger > *:nth-child(1) { animation-delay: 60ms; }
.reveal-stagger > *:nth-child(2) { animation-delay: 120ms; }
.reveal-stagger > *:nth-child(3) { animation-delay: 180ms; }
.reveal-stagger > *:nth-child(4) { animation-delay: 240ms; }
.reveal-stagger > *:nth-child(5) { animation-delay: 300ms; }
.reveal-stagger > *:nth-child(6) { animation-delay: 360ms; }

/* ---------- GLASS ---------- */
.glass {
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(10,11,13,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.vdk-nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--carbon-3);
}
.vdk-nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.vdk-logo { display: flex; align-items: center; }
.vdk-nav-links {
  display: flex; align-items: center; gap: 4px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.vdk-nav-links a {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--paper-2);
  padding: 10px 18px; border-radius: var(--r-pill);
  transition: all 200ms var(--ease-grid);
}
.vdk-nav-links a:hover { color: var(--paper); }
.vdk-nav-links a.active { color: var(--paper); background: var(--carbon-2); }
.vdk-nav-right { display: flex; align-items: center; gap: 14px; }
.vdk-lang {
  background: transparent; border: 1px solid var(--carbon-3);
  padding: 8px 14px; border-radius: var(--r-pill);
  color: var(--paper-2); cursor: pointer;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  display: inline-flex; gap: 6px;
}
.vdk-lang .active { color: var(--paper); }
.vdk-lang .sep { color: var(--paper-3); }
.vdk-nav-signin {
  background: transparent; border: 0; color: var(--paper-2); cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 14px; transition: color 200ms var(--ease-grid);
  text-decoration: none;
}
.vdk-nav-signin:hover { color: var(--paper); }
.vdk-nav-burger {
  display: none;
  background: transparent; border: 1px solid var(--carbon-3);
  width: 40px; height: 40px; border-radius: var(--r-2);
  color: var(--paper); cursor: pointer;
  align-items: center; justify-content: center;
}
.vdk-nav-burger span {
  display: block; width: 16px; height: 1.5px; background: currentColor;
  position: relative;
}
.vdk-nav-burger span::before,
.vdk-nav-burger span::after {
  content: ''; position: absolute; left: 0; width: 16px; height: 1.5px; background: currentColor;
}
.vdk-nav-burger span::before { top: -5px; }
.vdk-nav-burger span::after  { top: 5px; }
@media (max-width: 1000px) {
  .vdk-nav-links, .vdk-nav-signin, .vdk-lang { display: none; }
  .vdk-nav-burger { display: inline-flex; }
}
@media (max-width: 600px) {
  .vdk-nav-cta { display: none; }
  .vdk-nav-right { gap: 8px; }
}
/* Mobile sheet — positioned at root level so position:fixed works correctly
   (the .vdk-nav uses backdrop-filter which creates a containing block) */
.vdk-nav-sheet {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 100;
  background: rgba(0,0,0,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 24px 24px 32px;
  flex-direction: column;
  overflow-y: auto;
  animation: vdk-sheet-in 240ms var(--ease-grid) both;
}
@keyframes vdk-sheet-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vdk-nav-sheet.open { display: flex; }
.vdk-nav-sheet-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0 24px; margin-bottom: 12px;
  border-bottom: 1px solid var(--carbon-3);
}
.vdk-nav-sheet-title {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper-3);
}
.vdk-nav-sheet-close {
  background: transparent; border: 1px solid var(--carbon-3);
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--paper); font-size: 24px; line-height: 1;
  cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms var(--ease-grid);
}
.vdk-nav-sheet-close:hover { border-color: var(--boost); color: var(--boost); }
.vdk-nav-sheet a {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  letter-spacing: -0.005em;
  text-transform: uppercase; color: var(--paper);
  padding: 18px 4px; border-bottom: 1px solid var(--carbon-3);
  text-decoration: none;
  display: flex; align-items: center; justify-content: space-between;
}
.vdk-nav-sheet a.active { color: var(--boost); }
.vdk-nav-sheet a.active::after {
  content: '·'; color: var(--boost); margin-left: 8px;
}
.vdk-nav-sheet-cta {
  margin-top: 28px;
  padding: 18px 22px !important;
  background: var(--boost); color: var(--paper) !important;
  border: 1px solid var(--boost) !important;
  border-radius: var(--r-2);
  font-size: 14px !important;
  text-transform: uppercase !important;
  text-align: center;
  justify-content: center !important;
  gap: 10px;
  box-shadow: var(--glow-boost-soft);
}

/* ============================================================
   HERO
   ============================================================ */
.vdk-hero { position: relative; min-height: 780px; overflow: hidden; background: #000; }
.vdk-hero-bg { position: absolute; inset: 0; }
.vdk-hero-bg .photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1715071204026-2c4f4f10a19a?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
  filter: brightness(0.5) saturate(0.85) contrast(1.05);
}
.vdk-hero-bg .veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.95) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
}
.vdk-hero-sweep {
  position: absolute; left: -20%; top: 0; bottom: 0; width: 20%;
  background: linear-gradient(90deg, transparent, rgba(255,31,31,0.35), transparent);
  animation: grid-sweep 6s var(--ease-grid) infinite;
  pointer-events: none; z-index: 2;
}
.vdk-hero-content {
  position: relative; z-index: 3;
  padding: 140px 96px 100px;
  max-width: 1240px;
}
.vdk-hero-eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper-2);
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 16px 8px 8px; border-radius: var(--r-pill);
  border: 1px solid var(--carbon-3);
  background: rgba(10,11,13,0.5);
  backdrop-filter: blur(12px);
}
.vdk-hero-eyebrow .stripe { display: inline-block; width: 28px; height: 2px; background: var(--boost); box-shadow: 0 0 8px var(--boost-glow); }
.vdk-hero-eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px rgba(31,179,107,0.7); animation: pulse-boost 1.6s infinite; }
.vdk-hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(56px, 9vw, 128px); line-height: 0.9; letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 28px 0 24px; color: var(--paper);
  display: flex; flex-direction: column;
}
.vdk-hero-title em { font-style: normal; color: var(--boost); position: relative; }
.vdk-hero-title em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 4px; background: var(--boost); box-shadow: 0 0 18px var(--boost-glow);
}
.vdk-hero-title .line2 { padding-left: 80px; }
.vdk-hero-sub {
  font-size: 18px; line-height: 1.55; color: var(--paper-2);
  max-width: 540px; margin: 0 0 36px;
}
.vdk-hero-search {
  display: flex; align-items: center;
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 22px;
  max-width: 880px;
  box-shadow: var(--shadow-card);
}
.vdk-hero-search .seg {
  display: flex; flex-direction: column; padding: 6px 16px; flex: 1; min-width: 0;
}
.vdk-hero-search .seg .lbl {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-3);
}
.vdk-hero-search input, .vdk-hero-search select {
  background: transparent; border: 0; outline: 0; color: var(--paper);
  font-family: var(--font-body); font-size: 15px; padding: 4px 0; width: 100%;
}
.vdk-hero-search input::placeholder { color: var(--paper-3); }
.vdk-hero-search select option { background: var(--carbon-2); color: var(--paper); }
.vdk-hero-search .vline { width: 1px; height: 36px; background: var(--carbon-3); }
.vdk-hero-search-btn {
  background: var(--boost); color: var(--paper); border: 0; cursor: pointer;
  padding: 14px 24px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow: var(--glow-boost-soft);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.vdk-hero-search-btn:hover { box-shadow: var(--glow-boost); }
.vdk-hero-cta { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.vdk-hero-cta .vdk-hero-meta { display: flex; flex-direction: column; margin-left: 32px; gap: 4px; }
.vdk-hero-cta .tele-l { color: var(--boost); }
.vdk-hero-telemetry {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  z-index: 3;
  padding: 18px 22px; min-width: 240px;
  border-radius: var(--r-3);
}
.vdk-hero-telemetry .row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed var(--carbon-3); gap: 24px; }
.vdk-hero-telemetry .row:last-child { border: 0; }
.vdk-hero-telemetry .eyebrow { font-size: 9px; letter-spacing: 0.18em; }
.vdk-hero-telemetry .val { font-family: var(--font-mono); font-size: 14px; color: var(--paper); }
@media (max-width: 1200px) { .vdk-hero-telemetry { display: none; } }
@media (max-width: 1100px) {
  .vdk-hero-content { padding: 100px 32px 80px; }
  .vdk-hero-title .line2 { padding-left: 40px; }
}
@media (max-width: 760px) {
  .vdk-hero { min-height: 640px; }
  .vdk-hero-content { padding: 80px 20px 60px; }
  .vdk-hero-title .line2 { padding-left: 24px; }
  .vdk-hero-search { flex-direction: column; align-items: stretch; border-radius: var(--r-3); padding: 12px; }
  .vdk-hero-search .vline { display: none; }
  .vdk-hero-search-btn { width: 100%; justify-content: center; margin-top: 8px; }
}

/* ============================================================
   FEATURED / CIRCUIT CARDS
   ============================================================ */
.section { padding: 120px 0; position: relative; z-index: 1; }
.section.tight { padding: 80px 0; }

.vdk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) { .vdk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .vdk-grid { grid-template-columns: 1fr; } }

.cc { cursor: pointer; display: block; color: inherit; }
.cc-img {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
}
.cc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease-grid);
  filter: brightness(0.85) saturate(0.95);
}
.cc:hover .cc-img img { transform: scale(1.06); }
.cc-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
}
.cc-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 2; }
.cc-type {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 10px; border-radius: var(--r-1);
  display: inline-flex; align-items: center; gap: 6px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cc-type .dot { width: 6px; height: 6px; border-radius: 50%; }
.cc-type.indoor { background: rgba(31,179,107,0.16); color: var(--success); border: 1px solid rgba(31,179,107,0.4); }
.cc-type.indoor .dot { background: var(--success); box-shadow: 0 0 8px rgba(31,179,107,0.7); }
.cc-type.outdoor { background: rgba(255,176,32,0.16); color: var(--warn); border: 1px solid rgba(255,176,32,0.4); }
.cc-type.outdoor .dot { background: var(--warn); box-shadow: 0 0 8px rgba(255,176,32,0.7); }
.cc-rating {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(10,11,13,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px; border-radius: var(--r-pill);
  font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--paper);
}
.cc-rating .star { color: var(--gold); margin-right: 4px; }
.cc-rating .rev { color: var(--paper-3); margin-left: 4px; font-size: 11px; }
.cc-body { padding: 20px 20px 18px; }
.cc-city {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-3);
  margin-bottom: 6px;
}
.cc-title {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  line-height: 1.05; color: var(--paper); margin-bottom: 14px;
  letter-spacing: -0.005em; text-transform: uppercase;
}
.cc-stats {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: var(--paper-2);
  margin-bottom: 16px;
}
.cc-stats b { color: var(--paper); font-weight: 500; }
.cc-stats .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--carbon-4); }
.cc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--carbon-3); gap: 8px;
}
.cc-foot .price .eyebrow { display: block; font-size: 9px; margin-bottom: 4px; }
.cc-foot .price .amt {
  font-family: var(--font-mono); font-weight: 500; font-size: 26px;
  color: var(--paper); letter-spacing: -0.02em;
}
.cc-foot .price .unit { font-family: var(--font-mono); font-size: 11px; color: var(--paper-3); margin-left: 4px; }
.cc-view {
  background: transparent; color: var(--paper);
  border: 1px solid var(--carbon-3); cursor: pointer;
  padding: 10px 16px; border-radius: var(--r-2);
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 200ms var(--ease-grid);
  text-decoration: none; white-space: nowrap;
}
.cc:hover .cc-view { background: var(--boost); border-color: var(--boost); box-shadow: var(--glow-boost-soft); }

/* ============================================================
   FILTER BAR (Listing)
   ============================================================ */
.vdk-filters {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 18px; border: 1px solid var(--carbon-3); border-radius: var(--r-3);
  background: var(--carbon-1);
  margin-bottom: 48px;
}
.vdk-filters .grp { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vdk-filters .grp .lbl {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-3);
  margin-right: 4px;
}
.vdk-filters .spacer { flex: 1; }
.vdk-filters .sort {
  background: var(--carbon-2); border: 1px solid var(--carbon-3);
  border-radius: var(--r-2); padding: 10px 14px; color: var(--paper);
  font-family: var(--font-body); font-size: 14px;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.vdk-map-wrap {
  position: relative;
  background: var(--carbon-1);
  border: 1px solid var(--carbon-3);
  border-radius: var(--r-4);
  overflow: hidden;
  padding: 40px;
}
.vdk-map-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: stretch; }
.vdk-map-svg { position: relative; aspect-ratio: 4/3; border-radius: var(--r-3); overflow: hidden; background: #06070A; }
.vdk-map-svg svg { width: 100%; height: 100%; display: block; }
.vdk-map-pin {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--boost); transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(255,31,31,0.2), 0 0 14px var(--boost-glow);
  animation: pulse-boost 2s infinite;
  cursor: pointer;
}
.vdk-map-pin::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%;
  background: var(--paper);
}
.vdk-map-side h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 42px;
  text-transform: uppercase; letter-spacing: -0.015em; margin: 0 0 16px;
  color: var(--paper);
}
.vdk-map-side h3 em { font-style: normal; color: var(--boost); }
.vdk-map-side p { color: var(--paper-2); margin-bottom: 24px; }
.vdk-map-list { display: flex; flex-direction: column; gap: 8px; }
.vdk-map-list .item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border: 1px solid var(--carbon-3); border-radius: var(--r-2);
  background: var(--carbon-2);
  transition: all 200ms var(--ease-grid);
  cursor: pointer;
}
.vdk-map-list .item:hover { border-color: rgba(255,31,31,0.5); }
.vdk-map-list .item .name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.vdk-map-list .item .dist { font-family: var(--font-mono); font-size: 12px; color: var(--paper-3); }
@media (max-width: 1000px) { .vdk-map-inner { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.vdk-foot { background: #050507; padding: 80px 0 0; border-top: 1px solid var(--carbon-3); position: relative; overflow: hidden; margin-top: 80px; }
.vdk-foot-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--carbon-3); border-radius: var(--r-3);
  padding: 0; margin-bottom: 80px;
  background: var(--carbon-1);
  overflow: hidden;
}
.vdk-foot-strip-item { padding: 24px 28px; border-right: 1px solid var(--carbon-3); }
.vdk-foot-strip-item:last-child { border-right: 0; }
.vdk-foot-strip-item .eyebrow { display: block; margin-bottom: 8px; font-size: 10px; }
.vdk-foot-strip-item .tele-l { color: var(--paper); font-size: 32px; }
.vdk-foot-main { display: grid; grid-template-columns: 1.2fr 2fr; gap: 80px; margin-bottom: 64px; }
.vdk-foot-brand p { color: var(--paper-2); max-width: 320px; margin: 18px 0 24px; line-height: 1.55; }
.vdk-foot-socials { display: flex; gap: 10px; }
.vdk-foot-socials a {
  width: 38px; height: 38px; border: 1px solid var(--carbon-3); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper-2); transition: all 200ms var(--ease-grid);
  text-decoration: none;
}
.vdk-foot-socials a:hover { border-color: var(--boost); color: var(--boost); box-shadow: var(--glow-boost-soft); }
.vdk-foot-socials a span { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; }
.vdk-foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.vdk-foot-cols .eyebrow { display: block; margin-bottom: 16px; }
.vdk-foot-cols a { display: block; color: var(--paper-2); font-size: 14px; padding: 4px 0; cursor: pointer; text-decoration: none; }
.vdk-foot-cols a:hover { color: var(--paper); }
.vdk-foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--carbon-3); gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; color: var(--paper-3); letter-spacing: 0.06em;
}
.vdk-foot-legal { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.vdk-foot-legal a:hover { color: var(--paper); }
.vdk-foot-legal .lang { padding-left: 24px; border-left: 1px solid var(--carbon-3); color: var(--paper-2); }
.vdk-foot-monster {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(80px, 18vw, 280px); line-height: 0.85;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(58,62,69,0.5), rgba(0,0,0,0));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-top: 40px; margin-bottom: -40px;
  pointer-events: none;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .vdk-foot-main, .vdk-foot-cols, .vdk-foot-strip { grid-template-columns: 1fr 1fr; }
  .vdk-foot-strip-item { border-right: 0; border-bottom: 1px solid var(--carbon-3); }
}
@media (max-width: 600px) {
  .vdk-foot-cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.vdk-detail-hero {
  position: relative; min-height: 540px; overflow: hidden;
  border-bottom: 1px solid var(--carbon-3);
}
.vdk-detail-hero .photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.55) saturate(0.85);
}
.vdk-detail-hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.95) 100%);
}
.vdk-detail-hero .content {
  position: relative; z-index: 2; padding: 120px 0 60px;
}
.vdk-breadcrumb {
  font-family: var(--font-mono); font-size: 12px; color: var(--paper-3);
  margin-bottom: 24px;
}
.vdk-breadcrumb a { color: var(--paper-2); }
.vdk-breadcrumb a:hover { color: var(--paper); }
.vdk-breadcrumb .sep { margin: 0 10px; color: var(--carbon-4); }
.vdk-detail-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.9; letter-spacing: -0.02em;
  text-transform: uppercase; margin: 0 0 20px; color: var(--paper);
}
.vdk-detail-title em { font-style: normal; color: var(--boost); }
.vdk-detail-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--paper-2); font-size: 15px;
}
.vdk-detail-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--carbon-4); }

.vdk-detail-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px;
  padding: 80px 0;
}
@media (max-width: 1000px) { .vdk-detail-grid { grid-template-columns: 1fr; gap: 40px; } }

.vdk-detail-body h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 32px;
  text-transform: uppercase; letter-spacing: -0.005em;
  margin: 48px 0 20px;
}
.vdk-detail-body h3:first-child { margin-top: 0; }
.vdk-detail-body p { color: var(--paper-2); margin: 0 0 16px; line-height: 1.7; }

.vdk-specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--carbon-3); border: 1px solid var(--carbon-3);
  border-radius: var(--r-3); overflow: hidden;
  margin-bottom: 32px;
}
.vdk-specs .cell { background: var(--carbon-1); padding: 22px 24px; }
.vdk-specs .cell .eyebrow { display: block; margin-bottom: 8px; }
.vdk-specs .cell .val { font-family: var(--font-mono); font-size: 24px; color: var(--paper); }
@media (max-width: 760px) { .vdk-specs { grid-template-columns: repeat(2, 1fr); } }

.vdk-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 40px;
}
.vdk-gallery .ph {
  aspect-ratio: 4/3; border-radius: var(--r-3); overflow: hidden;
  border: 1px solid var(--carbon-3);
  background-size: cover; background-position: center;
  filter: brightness(0.95);
  transition: transform 400ms var(--ease-grid), filter 400ms var(--ease-grid);
  cursor: pointer;
}
.vdk-gallery .ph:hover { transform: translateY(-3px); filter: brightness(1.05); }
@media (max-width: 760px) { .vdk-gallery { grid-template-columns: 1fr 1fr; } }

.vdk-feature-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 24px 0 40px;
}
.vdk-feature-row .item {
  border: 1px solid var(--carbon-3); border-radius: var(--r-2);
  padding: 18px; background: var(--carbon-2);
  display: flex; flex-direction: column; gap: 6px;
}
.vdk-feature-row .item .eyebrow { font-size: 10px; }
.vdk-feature-row .item .val { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; }
@media (max-width: 760px) { .vdk-feature-row { grid-template-columns: 1fr 1fr; } }

.vdk-booking-card {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: var(--carbon-1);
  border: 1px solid var(--carbon-3); border-radius: var(--r-4);
  padding: 28px; box-shadow: var(--shadow-elevated);
}
.vdk-booking-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.vdk-booking-card .price-row .amt { font-family: var(--font-mono); font-size: 44px; color: var(--paper); letter-spacing: -0.02em; }
.vdk-booking-card .price-row .unit { font-family: var(--font-mono); font-size: 14px; color: var(--paper-3); }
.vdk-booking-card .rating { color: var(--paper-2); margin-bottom: 24px; }
.vdk-booking-card .rating .star { color: var(--gold); margin-right: 4px; }
.vdk-booking-card .booking-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.vdk-booking-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vdk-booking-card .total {
  padding-top: 18px; border-top: 1px solid var(--carbon-3);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
}
.vdk-booking-card .total .lbl { color: var(--paper-2); font-size: 13px; }
.vdk-booking-card .total .val { font-size: 24px; color: var(--paper); }
.vdk-booking-card .book-btn {
  width: 100%; justify-content: center; margin-top: 18px;
  padding: 18px 22px; font-size: 14px;
}
.vdk-booking-card .reassure {
  margin-top: 14px; text-align: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--paper-3);
}

/* ============================================================
   EVENTS
   ============================================================ */
.vdk-event {
  display: grid; grid-template-columns: 220px 1fr auto;
  gap: 32px; align-items: center;
  padding: 24px; border: 1px solid var(--carbon-3); border-radius: var(--r-3);
  background: var(--carbon-1);
  margin-bottom: 16px; transition: all 240ms var(--ease-grid);
}
.vdk-event:hover { border-color: rgba(255,31,31,0.5); box-shadow: var(--glow-boost-soft); }
.vdk-event .date {
  display: flex; flex-direction: column; align-items: flex-start;
  font-family: var(--font-display); color: var(--paper);
  border-right: 1px solid var(--carbon-3); padding-right: 32px;
}
.vdk-event .date .d { font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -0.02em; }
.vdk-event .date .m { font-weight: 700; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-2); margin-top: 4px; }
.vdk-event .title { font-family: var(--font-display); font-weight: 800; font-size: 24px; text-transform: uppercase; letter-spacing: -0.005em; margin-bottom: 6px; }
.vdk-event .city { font-family: var(--font-mono); font-size: 12px; color: var(--paper-3); }
.vdk-event .desc { color: var(--paper-2); margin-top: 8px; font-size: 14px; max-width: 460px; }
@media (max-width: 800px) {
  .vdk-event { grid-template-columns: 1fr; gap: 16px; }
  .vdk-event .date { flex-direction: row; gap: 12px; align-items: baseline; border-right: 0; padding-right: 0; padding-bottom: 12px; border-bottom: 1px solid var(--carbon-3); }
}

/* ============================================================
   PADDOCK / ABOUT
   ============================================================ */
.vdk-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 1000px) { .vdk-values { grid-template-columns: 1fr; } }
.vdk-value-card {
  padding: 32px; border: 1px solid var(--carbon-3); border-radius: var(--r-3);
  background: var(--carbon-1);
}
.vdk-value-card .num {
  font-family: var(--font-mono); color: var(--boost); font-size: 13px; margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.vdk-value-card h4 {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  text-transform: uppercase; letter-spacing: -0.005em; margin: 0 0 12px;
}
.vdk-value-card p { color: var(--paper-2); line-height: 1.6; }

.vdk-about-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 80px 0;
}
@media (max-width: 900px) { .vdk-about-hero { grid-template-columns: 1fr; } }
.vdk-about-hero .photo {
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  border-radius: var(--r-4); border: 1px solid var(--carbon-3);
  filter: brightness(0.9) saturate(0.95);
}
.vdk-about-hero h1 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 0 0 24px;
}
.vdk-about-hero h1 em { font-style: normal; color: var(--boost); }
.vdk-about-hero p { color: var(--paper-2); line-height: 1.7; margin-bottom: 16px; font-size: 17px; }

.vdk-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 900px) { .vdk-team { grid-template-columns: 1fr 1fr; } }
.vdk-team-card { text-align: left; }
.vdk-team-card .photo {
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  border-radius: var(--r-3); border: 1px solid var(--carbon-3);
  filter: brightness(0.95) saturate(0.95);
  margin-bottom: 16px;
}
.vdk-team-card .name { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; }
.vdk-team-card .role { font-family: var(--font-mono); font-size: 12px; color: var(--paper-3); letter-spacing: 0.1em; }

/* ============================================================
   CONTACT
   ============================================================ */
.vdk-contact {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; padding: 80px 0;
}
@media (max-width: 900px) { .vdk-contact { grid-template-columns: 1fr; } }
.vdk-contact .info h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 56px;
  line-height: 1; letter-spacing: -0.015em; text-transform: uppercase; margin: 16px 0 24px;
}
.vdk-contact .info h2 em { font-style: normal; color: var(--boost); }
.vdk-contact .info p { color: var(--paper-2); margin-bottom: 32px; line-height: 1.7; }
.vdk-contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.vdk-contact-list .item {
  padding: 18px 22px; border: 1px solid var(--carbon-3); border-radius: var(--r-3);
  background: var(--carbon-1);
}
.vdk-contact-list .item .eyebrow { display: block; margin-bottom: 6px; }
.vdk-contact-list .item .val { font-family: var(--font-mono); font-size: 15px; color: var(--paper); }
.vdk-contact .form-card {
  padding: 36px; border: 1px solid var(--carbon-3); border-radius: var(--r-4);
  background: var(--carbon-1); box-shadow: var(--shadow-elevated);
}
.vdk-contact .form-card form { display: flex; flex-direction: column; gap: 16px; }
.vdk-contact .form-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .vdk-contact .form-card .row2 { grid-template-columns: 1fr; } }

/* ============================================================
   GENERIC PAGE HEADER (for inner pages)
   ============================================================ */
.vdk-page-head {
  position: relative;
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--carbon-3);
  overflow: hidden;
}
.vdk-page-head::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 0%, rgba(255,31,31,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(255,31,31,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.vdk-page-head .content { position: relative; z-index: 1; }
.vdk-page-head h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.9; letter-spacing: -0.02em;
  text-transform: uppercase; margin: 16px 0 16px;
}
.vdk-page-head h1 em { font-style: normal; color: var(--boost); }
.vdk-page-head p { color: var(--paper-2); max-width: 620px; font-size: 17px; line-height: 1.55; }

/* ============================================================
   LEGAL / LONG-FORM PAGES
   ============================================================ */
.vdk-legal {
  display: grid; grid-template-columns: 280px 1fr; gap: 64px;
  padding: 64px 0 96px;
}
@media (max-width: 1000px) { .vdk-legal { grid-template-columns: 1fr; gap: 32px; } }

.vdk-legal-toc {
  position: sticky; top: calc(var(--nav-h) + 24px);
  align-self: start;
  padding: 24px; border: 1px solid var(--carbon-3); border-radius: var(--r-3);
  background: var(--carbon-1);
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
}
.vdk-legal-toc .eyebrow { display: block; margin-bottom: 16px; }
.vdk-legal-toc a {
  display: block; padding: 8px 0;
  font-family: var(--font-body); font-size: 13px; color: var(--paper-2);
  border-bottom: 1px solid var(--carbon-3);
  transition: color 200ms var(--ease-grid);
}
.vdk-legal-toc a:last-child { border-bottom: 0; }
.vdk-legal-toc a:hover { color: var(--paper); }
.vdk-legal-toc a.current { color: var(--boost); }

.vdk-legal-body { max-width: 760px; }
.vdk-legal-body h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.005em;
  text-transform: uppercase; margin: 56px 0 16px;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.vdk-legal-body h2:first-child { margin-top: 0; }
.vdk-legal-body h2 em { font-style: normal; color: var(--boost); }
.vdk-legal-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase;
  margin: 32px 0 12px; color: var(--paper);
}
.vdk-legal-body p { color: var(--paper-2); line-height: 1.7; margin: 0 0 14px; }
.vdk-legal-body p strong { color: var(--paper); font-weight: 600; }
.vdk-legal-body ul, .vdk-legal-body ol {
  color: var(--paper-2); line-height: 1.7; padding-left: 24px;
  margin: 0 0 16px;
}
.vdk-legal-body li { margin-bottom: 8px; }
.vdk-legal-body a { color: var(--boost); border-bottom: 1px solid rgba(255,31,31,0.3); }
.vdk-legal-body a:hover { border-bottom-color: var(--boost); }
.vdk-legal-body table {
  width: 100%; border-collapse: collapse; margin: 16px 0 28px;
  font-size: 14px;
}
.vdk-legal-body table th, .vdk-legal-body table td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--carbon-3);
}
.vdk-legal-body table th {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper-3);
}
.vdk-legal-body table td { color: var(--paper-2); }
.vdk-legal-body table tr:hover td { color: var(--paper); }
.vdk-legal-meta {
  margin-bottom: 32px; padding: 16px 20px;
  border-left: 2px solid var(--boost); background: var(--carbon-1);
  font-family: var(--font-mono); font-size: 13px; color: var(--paper-2);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.vdk-cookies {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 720px; margin: 0 auto;
  background: rgba(10,11,13,0.92); backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--carbon-3); border-radius: var(--r-3);
  padding: 20px 24px; box-shadow: var(--shadow-elevated);
  z-index: 60;
  display: none;
  animation: reveal 400ms var(--ease-grid) both;
}
.vdk-cookies.show { display: flex; align-items: center; gap: 24px; }
.vdk-cookies .text { flex: 1; }
.vdk-cookies .text .eyebrow { display: block; margin-bottom: 6px; }
.vdk-cookies .text p { color: var(--paper-2); font-size: 14px; line-height: 1.5; margin: 0; }
.vdk-cookies .text a { color: var(--boost); border-bottom: 1px solid rgba(255,31,31,0.3); }
.vdk-cookies .actions { display: flex; gap: 8px; flex-shrink: 0; }
.vdk-cookies button {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 16px; border-radius: var(--r-2); cursor: pointer;
  transition: all 200ms var(--ease-grid);
}
.vdk-cookies .accept { background: var(--boost); color: var(--paper); border: 1px solid var(--boost); box-shadow: var(--glow-boost-soft); }
.vdk-cookies .accept:hover { box-shadow: var(--glow-boost); }
.vdk-cookies .decline { background: transparent; color: var(--paper-2); border: 1px solid var(--carbon-3); }
.vdk-cookies .decline:hover { color: var(--paper); border-color: var(--paper-3); }
@media (max-width: 720px) {
  .vdk-cookies.show { flex-direction: column; align-items: stretch; gap: 14px; }
  .vdk-cookies .actions { width: 100%; }
  .vdk-cookies .actions button { flex: 1; }
}

/* ============================================================
   AUTH PAGES (LOGIN, SIGNUP)
   ============================================================ */
.vdk-auth {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 900px) { .vdk-auth { grid-template-columns: 1fr; } }
.vdk-auth-side {
  position: relative;
  background-size: cover; background-position: center;
  min-height: 360px;
}
.vdk-auth-side::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
}
.vdk-auth-side .quote {
  position: absolute; left: 48px; bottom: 48px; right: 48px; z-index: 2;
  color: var(--paper);
}
.vdk-auth-side .quote .eyebrow { margin-bottom: 12px; display: block; }
.vdk-auth-side .quote p {
  font-family: var(--font-display); font-weight: 800;
  font-size: 32px; line-height: 1.05; letter-spacing: -0.01em;
  text-transform: uppercase; margin: 0 0 16px;
}
.vdk-auth-side .quote .signature {
  font-family: var(--font-mono); font-size: 12px; color: var(--paper-2);
  letter-spacing: 0.08em;
}
.vdk-auth-card {
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
  max-width: 520px; width: 100%; margin: 0 auto;
}
.vdk-auth-card h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 48px; line-height: 1; letter-spacing: -0.015em; text-transform: uppercase;
  margin: 16px 0 12px;
}
.vdk-auth-card h1 em { font-style: normal; color: var(--boost); }
.vdk-auth-card .sub { color: var(--paper-2); margin-bottom: 32px; }
.vdk-auth-card form { display: flex; flex-direction: column; gap: 14px; }
.vdk-auth-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vdk-auth-card .links {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--paper-3);
}
.vdk-auth-card .links a { color: var(--paper-2); }
.vdk-auth-card .links a:hover { color: var(--paper); }
.vdk-auth-card .alt {
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--carbon-3);
  text-align: center; color: var(--paper-2); font-size: 14px;
}
.vdk-auth-card .alt a { color: var(--boost); }
@media (max-width: 640px) {
  .vdk-auth-card { padding: 60px 24px; }
  .vdk-auth-card .row2 { grid-template-columns: 1fr; }
}

/* ============================================================
   RESERVATION / CHECKOUT
   ============================================================ */
.vdk-reservation {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  padding: 64px 0;
}
@media (max-width: 1000px) { .vdk-reservation { grid-template-columns: 1fr; } }
.vdk-step {
  padding: 32px; border: 1px solid var(--carbon-3); border-radius: var(--r-3);
  background: var(--carbon-1); margin-bottom: 20px;
}
.vdk-step h3 {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  text-transform: uppercase; letter-spacing: -0.005em;
  margin: 0 0 24px;
}
.vdk-step h3 .num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--boost); color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px;
  box-shadow: var(--glow-boost-soft);
}
.vdk-summary {
  position: sticky; top: calc(var(--nav-h) + 24px);
  align-self: start;
  padding: 28px; border: 1px solid var(--carbon-3); border-radius: var(--r-4);
  background: var(--carbon-1); box-shadow: var(--shadow-elevated);
}
.vdk-summary .photo {
  aspect-ratio: 16/9; border-radius: var(--r-2); overflow: hidden;
  background-size: cover; background-position: center;
  margin-bottom: 20px;
}
.vdk-summary .lines { margin: 20px 0; }
.vdk-summary .lines .line {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px dashed var(--carbon-3);
  font-size: 14px;
}
.vdk-summary .lines .line:last-child { border-bottom: 0; }
.vdk-summary .lines .lbl { color: var(--paper-2); }
.vdk-summary .lines .val { font-family: var(--font-mono); color: var(--paper); }
.vdk-summary .total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px; border-top: 1px solid var(--carbon-3);
}
.vdk-summary .total .lbl { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.vdk-summary .total .val { font-family: var(--font-mono); font-size: 32px; color: var(--paper); letter-spacing: -0.02em; }

/* ============================================================
   CONFIRMATION
   ============================================================ */
.vdk-confirm {
  text-align: center; max-width: 640px; margin: 0 auto;
  padding: 100px 0;
}
.vdk-confirm .check {
  width: 80px; height: 80px; margin: 0 auto 32px;
  border: 2px solid var(--success); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--success); font-size: 36px;
  box-shadow: 0 0 24px rgba(31,179,107,0.4);
}
.vdk-confirm h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em;
  text-transform: uppercase; margin: 0 0 16px;
}
.vdk-confirm h1 em { font-style: normal; color: var(--boost); }
.vdk-confirm .ref {
  font-family: var(--font-mono); color: var(--paper-3); font-size: 14px;
  margin-bottom: 32px;
}
.vdk-confirm .recap {
  text-align: left; padding: 28px; border: 1px solid var(--carbon-3); border-radius: var(--r-3);
  background: var(--carbon-1); margin: 40px 0;
}

/* ============================================================
   404
   ============================================================ */
.vdk-404 {
  min-height: calc(100vh - var(--nav-h));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 20px; gap: 24px;
  position: relative; overflow: hidden;
}
.vdk-404::before {
  content: '404'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(180px, 32vw, 480px); line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(58,62,69,0.3), rgba(0,0,0,0));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none; z-index: 0;
}
.vdk-404 > * { position: relative; z-index: 1; }
.vdk-404 h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em;
  text-transform: uppercase; margin: 0;
}
.vdk-404 h1 em { font-style: normal; color: var(--boost); }
.vdk-404 p { color: var(--paper-2); max-width: 460px; }
.vdk-404 .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   NEWSLETTER (footer)
   ============================================================ */
.vdk-newsletter {
  display: flex; gap: 8px; max-width: 420px; margin-top: 16px;
}
.vdk-newsletter input {
  flex: 1; padding: 12px 16px;
  background: var(--carbon-2); border: 1px solid var(--carbon-3); border-radius: var(--r-2);
  color: var(--paper); font-family: var(--font-body); font-size: 14px;
  outline: 0;
}
.vdk-newsletter input:focus { border-color: var(--boost); box-shadow: var(--glow-boost); }
.vdk-newsletter button {
  background: var(--boost); color: var(--paper); border: 0;
  padding: 12px 18px; border-radius: var(--r-2); cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: var(--glow-boost-soft);
  transition: all 200ms var(--ease-grid);
}
.vdk-newsletter button:hover { box-shadow: var(--glow-boost); }
.vdk-newsletter-ok { color: var(--success); font-family: var(--font-mono); font-size: 12px; margin-top: 8px; display: none; }
.vdk-newsletter-ok.show { display: block; }

/* ---------- HELPERS ---------- */
.text-mono { font-family: var(--font-mono); }
.text-display { font-family: var(--font-display); }
.text-boost { color: var(--boost); }
.text-paper-2 { color: var(--paper-2); }
.text-paper-3 { color: var(--paper-3); }
.mt-8 { margin-top: 64px; }
.mt-6 { margin-top: 32px; }

/* ============================================================
   MOBILE OVERRIDES (≤ 600 px)
   Fixes layout issues identified in mobile audit.
   ============================================================ */
@media (max-width: 600px) {
  /* Réduire les espacements verticaux énormes des sections */
  .section { padding: 60px 0; }
  .section.tight { padding: 40px 0; }
  .stripe-divider { margin: 48px 0; }

  /* Footer : 1 colonne sur mobile au lieu de 2 (qui débordait) */
  .vdk-foot { padding: 56px 0 0; margin-top: 56px; }
  .vdk-foot-main { grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px; }
  .vdk-foot-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .vdk-foot-strip { grid-template-columns: 1fr 1fr; margin-bottom: 48px; }
  .vdk-foot-strip-item { padding: 18px 20px; }
  .vdk-foot-strip-item .tele-l { font-size: 26px; }
  .vdk-foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vdk-foot-legal { gap: 14px; }
  .vdk-foot-legal .lang { display: none; }
  .vdk-foot-monster { margin-top: 24px; margin-bottom: -20px; }

  /* Hero : réduire encore la hauteur sur petit écran */
  .vdk-hero { min-height: 580px; }
  .vdk-hero-content { padding: 60px 20px 48px; }
  .vdk-hero-title { font-size: clamp(40px, 11vw, 64px) !important; }
  .vdk-hero-title .line2 { padding-left: 16px; }
  .vdk-hero-sub { font-size: 16px; margin-bottom: 28px; }
  .vdk-hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .vdk-hero-cta .btn-primary, .vdk-hero-cta .btn-ghost { width: 100%; justify-content: center; }
  .vdk-hero-cta .vdk-hero-meta { margin-left: 0; margin-top: 8px; align-items: center; }

  /* Section heads : titre plus petit, marge réduite */
  .section-head { margin-bottom: 32px; gap: 16px; }
  .section-head h2 { font-size: 32px; }

  /* Page heads */
  .vdk-page-head { padding: 60px 0 40px; }
  .vdk-page-head h1 { font-size: clamp(36px, 10vw, 56px); }
  .vdk-page-head p { font-size: 15px; }

  /* Map section : réduire le padding intérieur */
  .vdk-map-wrap { padding: 20px; }
  .vdk-map-inner { gap: 24px; }
  .vdk-map-side h3 { font-size: 28px; }

  /* Detail page : booking card ne reste plus sticky (s'empile naturellement) */
  .vdk-detail-grid { padding: 48px 0; }
  .vdk-detail-hero { min-height: 420px; }
  .vdk-detail-hero .content { padding: 80px 0 40px; }
  .vdk-detail-title { font-size: clamp(36px, 9vw, 56px) !important; margin-bottom: 14px; }
  .vdk-detail-meta { font-size: 13px; gap: 10px; }
  .vdk-booking-card { position: static; padding: 22px; }
  .vdk-detail-body h3 { font-size: 26px; margin: 36px 0 14px; }

  /* Reservation : summary stack au lieu de sticky */
  .vdk-reservation { padding: 40px 0; gap: 24px; }
  .vdk-step { padding: 22px; }
  .vdk-step h3 { font-size: 18px; margin-bottom: 18px; }
  .vdk-summary { position: static; padding: 22px; }

  /* Confirmation : récap + suite en 1 colonne */
  .vdk-confirm { padding: 60px 0; }
  .vdk-confirm h1 { font-size: 40px !important; }
  .vdk-confirm .recap > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .vdk-confirm .recap > div[style*="grid-template-columns: 1fr 1fr"] > div {
    border-right: 0 !important;
  }

  /* Valeurs/Process cards : déjà 1 col grâce à grid existant */
  .vdk-values { gap: 16px; }
  .vdk-value-card { padding: 24px; }
  .vdk-value-card h4 { font-size: 22px; }

  /* Filters bar : empile proprement */
  .vdk-filters { padding: 14px; gap: 10px; }
  .vdk-filters .grp { width: 100%; }
  .vdk-filters #search-input { width: 100%; }
  .vdk-filters .sort { width: 100%; }

  /* Events : meilleur ordre vertical */
  .vdk-event { padding: 18px; gap: 14px; }
  .vdk-event .date .d { font-size: 44px; }
  .vdk-event .title { font-size: 20px; }

  /* Carrières (utilise .vdk-event) */

  /* About-hero : moins de gap, plus petit */
  .vdk-about-hero { padding: 48px 0; gap: 32px; }
  .vdk-about-hero h1 { font-size: clamp(36px, 9vw, 56px) !important; }
  .vdk-about-hero p { font-size: 15px; }

  /* Contact : empile + paddings réduits */
  .vdk-contact { padding: 48px 0; gap: 32px; }
  .vdk-contact .info h2 { font-size: 36px; }
  .vdk-contact .form-card { padding: 24px; }

  /* Cookies banner mobile (déjà géré à 720px mais on assouplit) */
  .vdk-cookies { left: 16px; right: 16px; bottom: 16px; padding: 16px 18px; }
  .vdk-cookies .text p { font-size: 13px; }

  /* Legal pages : table devient horizontalement scrollable au lieu de péter */
  .vdk-legal { padding: 40px 0 64px; gap: 24px; }
  .vdk-legal-toc { position: static; max-height: none; padding: 18px; }
  .vdk-legal-body h2 { font-size: 26px; margin: 40px 0 14px; }
  .vdk-legal-body table { display: block; overflow-x: auto; white-space: nowrap; }

  /* Auth pages (login/signup) */
  .vdk-auth { grid-template-columns: 1fr; }
  .vdk-auth-side { min-height: 200px; }
  .vdk-auth-card { padding: 48px 20px; }
  .vdk-auth-card h1 { font-size: 36px; }

  /* 404 page */
  .vdk-404 { padding: 60px 16px; min-height: calc(100vh - var(--nav-h) - 100px); }
  .vdk-404::before { font-size: 38vw; }

  /* Reduce all the bespoke inline padding 60px on CTA & callouts via attribute */
  section.section.shell > div[style*="padding: 80px 60px"],
  section.section.shell > div[style*="padding: 60px"] {
    padding: 40px 24px !important;
  }
  section.shell > div[style*="padding: 48px"][style*="border"][style*="border-radius"] {
    padding: 28px 22px !important;
  }
  section.shell > div[style*="padding: 32px"] {
    padding: 22px !important;
  }

  /* Inline grid 1fr 1fr in paddock/about for partner pitches */
  div[style*="grid-template-columns: repeat(4, 1fr)"][style*="gap: 32px"],
  div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 60px"],
  div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 48px"],
  div[style*="grid-template-columns: repeat(3, 1fr)"][style*="gap: 24px"],
  div[style*="grid-template-columns: repeat(3, 1fr)"][style*="gap: 32px"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* ============================================================
   TABLET FINE-TUNING (601 – 900 px)
   ============================================================ */
@media (max-width: 900px) and (min-width: 601px) {
  .section { padding: 80px 0; }
  .stripe-divider { margin: 64px 0; }
  .vdk-foot-main { grid-template-columns: 1fr; gap: 48px; }
  .vdk-booking-card { position: static; }
  .vdk-summary { position: static; }
}
