/* ==========================================================================
   McMillan Imports — Design System
   Apple-caliber, scalable, responsive. Vanilla CSS, no build step.
   ========================================================================== */

:root {
  /* Brand (sampled from the real logo) */
  --navy: #0d1626;
  --navy-2: #111e33;
  --navy-3: #1c3050;
  --red: #d0232a;
  --red-bright: #e63b42;
  --red-dark: #9c1319;

  /* Neutrals */
  --ink: #0a0e16;
  --ink-2: #2a3040;
  --grey: #5b6472;
  --grey-2: #8b93a1;
  --line: #e7e9ee;
  --line-dark: rgba(255,255,255,0.12);
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --bg-softer: #fafbfc;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --maxw: 1240px;
  --maxw-wide: 1440px;
  --nav-h: 64px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(13,22,38,0.06);
  --shadow: 0 12px 34px rgba(13,22,38,0.10);
  --shadow-lg: 0 30px 70px rgba(13,22,38,0.20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
p { margin: 0 0 1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-lead {
  color: var(--grey);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  max-width: 620px;
}
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

section { padding: clamp(64px, 9vw, 130px) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .section-lead { color: rgba(255,255,255,0.72); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.25s var(--ease-fast), color 0.25s var(--ease-fast), border-color 0.25s var(--ease-fast);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(208,35,42,0.28); background: var(--red-bright); }
.btn:active { transform: translateY(0); transition-duration: 0.1s; }
.btn svg { width: 16px; height: 16px; }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--navy); border-color: var(--line); }
.btn-ghost:hover { --btn-bg: var(--navy); --btn-fg: #fff; box-shadow: var(--shadow); border-color: var(--navy); }
.btn-on-dark { --btn-bg: rgba(255,255,255,0.10); --btn-fg: #fff; border-color: rgba(255,255,255,0.28); }
.btn-on-dark:hover { --btn-bg: #fff; --btn-fg: var(--navy); box-shadow: 0 14px 30px rgba(0,0,0,0.35); border-color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 600;
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover { gap: 11px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .wrap-wide { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; }
/* transparent over hero (dark) */
.site-header.on-dark { background: transparent; }
.site-header.on-dark .nav-link, .site-header.on-dark .nav-toggle { color: #fff; }
.site-header.on-dark .logo-dark { display: none; }
.site-header.on-dark .logo-light { display: block; }
/* scrolled / solid */
.site-header.solid {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(13,22,38,0.04);
}
.site-header.solid .nav-link, .site-header.solid .nav-toggle { color: var(--navy); }
.site-header.solid .logo-dark { display: block; }
.site-header.solid .logo-light { display: none; }

.logo { display: flex; align-items: center; }
.logo img { height: 34px; width: auto; transition: height 0.3s var(--ease); }
.logo-light { display: none; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  font-size: 0.94rem; font-weight: 500; color: var(--navy);
  position: relative; padding: 6px 0; transition: color 0.2s var(--ease-fast);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--red); transition: right 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta { padding: 9px 20px; font-size: 0.9rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--navy); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 199;
  background: var(--navy); color: #fff;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 30px) 30px 40px;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-size: 1.5rem; font-weight: 600; color: #fff;
  padding: 16px 0; border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-drawer a .chev { color: var(--red-bright); }
.mobile-drawer .drawer-cta { margin-top: 26px; }
body.nav-open { overflow: hidden; }

@media (max-width: 940px) {
  .nav-links, .nav-right .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.05ms !important; }
}

/* ==========================================================================
   HERO (landing)
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,22,38,0.55) 0%, rgba(13,22,38,0.35) 40%, rgba(13,22,38,0.85) 100%),
    linear-gradient(90deg, rgba(13,22,38,0.75) 0%, rgba(13,22,38,0.15) 60%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero h1 {
  color: #fff; font-weight: 700;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  letter-spacing: -0.03em; margin-bottom: 22px;
}
.hero h1 .accent { color: #fff; }
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255,255,255,0.86); max-width: 560px; margin-bottom: 34px;
  line-height: 1.45;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 1; color: rgba(255,255,255,0.6); font-size: 0.75rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll .mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.4); border-radius: 12px;
  position: relative;
}
.hero-scroll .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 3px; background: #fff;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,10px)} 100%{opacity:0} }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { }
.stat .num { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; color: var(--navy); line-height: 1; }
.section-dark .stat .num { color: #fff; }
.stat .lbl { color: var(--grey); font-size: 0.95rem; margin-top: 8px; }
.section-dark .stat .lbl { color: rgba(255,255,255,0.6); }
@media (max-width: 720px){ .stat-strip { grid-template-columns: repeat(2,1fr); gap: 32px 20px; } }

/* ==========================================================================
   VEHICLE CARDS
   ========================================================================== */
.veh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: 26px;
}
.veh-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.veh-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(208,35,42,0.25); }
.veh-media {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
}
.veh-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.veh-card:hover .veh-media img { transform: scale(1.06); }
.veh-flag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(13,22,38,0.72); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 5px 11px; border-radius: 100px; display: flex; align-items: center; gap: 6px;
}
.veh-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(255,255,255,0.92); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; padding: 5px 11px; border-radius: 100px;
}
.veh-badge.sold { background: var(--red); color: #fff; }
.veh-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.veh-title { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 3px; }
.veh-sub { color: var(--grey); font-size: 0.9rem; margin-bottom: 14px; }
.veh-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.veh-chip { font-size: 0.78rem; color: var(--ink-2); background: var(--bg-soft); border-radius: 8px; padding: 4px 9px; }
.veh-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); }
.veh-price-lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-2); }
.veh-price { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); }
.veh-cta { color: var(--red); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.3s var(--ease); }
.veh-card:hover .veh-cta { gap: 9px; }
.veh-ribbon {
  position: absolute; top: 15px; left: -32px; z-index: 3; transform: rotate(-40deg);
  background: var(--red); color: #fff; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 42px;
}

/* ==========================================================================
   INVENTORY BROWSER
   ========================================================================== */
.browser { display: grid; grid-template-columns: 264px 1fr; gap: 34px; align-items: start; }
.filters {
  position: sticky; top: calc(var(--nav-h) + 20px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff;
}
.filters h4 { font-size: 1rem; margin-bottom: 4px; }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--line); }
.filter-group:last-of-type { border-bottom: 0; }
.filter-group > .fg-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); margin-bottom: 10px; display: block; }
.filter-check { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: 0.92rem; cursor: pointer; color: var(--ink-2); }
.filter-check input { accent-color: var(--red); width: 16px; height: 16px; }
.range-row { display: flex; gap: 10px; }
.range-row input { width: 100%; padding: 9px 11px; border: 1px solid var(--line); border-radius: 9px; font-size: 0.9rem; font-family: inherit; }
.filters-reset { margin-top: 16px; width: 100%; text-align: center; font-size: 0.88rem; color: var(--red); background: none; border: 0; cursor: pointer; font-weight: 600; padding: 8px; }

.browser-main { min-width: 0; }
.browser-toolbar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.search-box { position: relative; flex: 1; min-width: 220px; }
.search-box input {
  width: 100%; padding: 13px 16px 13px 44px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.98rem; font-family: inherit; background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.search-box input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(208,35,42,0.12); }
.search-box svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--grey-2); }
.sort-select {
  padding: 12px 40px 12px 16px; border: 1px solid var(--line); border-radius: 100px; font-size: 0.94rem;
  font-family: inherit; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.filters-toggle { display: none; }
.results-meta { color: var(--grey); font-size: 0.92rem; margin-bottom: 18px; }
.results-meta strong { color: var(--navy); }

.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 44px; flex-wrap: wrap; }
.pagination button {
  min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; font-size: 0.94rem; font-weight: 600; color: var(--ink-2); cursor: pointer;
  transition: all 0.2s var(--ease-fast);
}
.pagination button:hover:not(:disabled) { border-color: var(--navy); color: var(--navy); }
.pagination button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination button:disabled { opacity: 0.4; cursor: default; }

.empty-state { text-align: center; padding: 80px 20px; color: var(--grey); }
.empty-state svg { width: 54px; height: 54px; color: var(--grey-2); margin: 0 auto 18px; }

.skeleton { position: relative; overflow: hidden; background: var(--bg-soft); }
.skeleton::after { content:""; position:absolute; inset:0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent); animation: shimmer 1.4s infinite; }
@keyframes shimmer { 100% { transform: translateX(100%); } }
.skel-card { border:1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.skel-card .sk-media { aspect-ratio: 16/10; }
.skel-card .sk-line { height: 14px; border-radius: 6px; margin: 12px 20px; }
.skel-card .sk-line.short { width: 55%; }

@media (max-width: 900px) {
  .browser { grid-template-columns: 1fr; }
  .filters {
    position: fixed; inset: 0; z-index: 210; border-radius: 0; overflow-y: auto;
    transform: translateX(-100%); transition: transform 0.4s var(--ease); top: 0;
    padding: calc(var(--nav-h) + 20px) 22px 30px;
  }
  .filters.open { transform: translateX(0); }
  .filters-toggle { display: inline-flex; }
}

/* ==========================================================================
   FEATURE / PROCESS / MISC BLOCKS
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-ic {
  width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: rgba(208,35,42,0.10); color: var(--red); margin-bottom: 18px;
}
.feature-ic svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { color: var(--grey); font-size: 0.96rem; margin: 0; }

.process-steps { display: grid; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 34px 0;
  border-top: 1px solid var(--line); align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-size: 2.6rem; font-weight: 700; color: var(--red); letter-spacing: -0.03em; line-height: 1; }
.process-step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.process-step p { color: var(--grey); margin: 0; max-width: 620px; }
@media (max-width: 620px){ .process-step { grid-template-columns: 1fr; gap: 10px; } .process-num { font-size: 2rem; } }

/* Split feature (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }

/* Markets */
.markets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.market-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.market-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.market-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.8s var(--ease); }
.market-card:hover img { transform: scale(1.07); }
.market-card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(13,22,38,0.05) 30%, rgba(13,22,38,0.88) 100%); }
.market-card.soon::after { background: linear-gradient(180deg, rgba(13,22,38,0.35) 0%, rgba(13,22,38,0.86) 100%); }
.market-inner { padding: 26px; width: 100%; }
.market-flag { font-size: 1.9rem; margin-bottom: 8px; display: block; }
.market-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 4px; }
.market-card p { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin: 0; }
.market-status {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.market-status.live { background: #16a34a; color: #fff; }
.market-status.soon { background: rgba(255,255,255,0.9); color: var(--navy); }

/* Coming soon hero */
.soon-hero { text-align: center; padding: clamp(80px,14vw,180px) 0; position: relative; overflow: hidden; color: #fff; }
.soon-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(13,22,38,0.75), rgba(13,22,38,0.92)); z-index:0; }
.soon-hero img.bg { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; z-index:-1; }
.soon-hero .wrap { position: relative; z-index: 1; }
.soon-flag { font-size: 4rem; margin-bottom: 18px; }
.soon-badge { display:inline-block; background: rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.28); color:#fff; padding: 7px 18px; border-radius:100px; font-size:0.82rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:26px; }
.soon-hero h1 { color:#fff; }
.soon-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 30px; font-size: 1.12rem; }
.notify-form { display:flex; gap:10px; max-width:440px; margin:0 auto; flex-wrap: wrap; }
.notify-form input { flex:1; min-width: 200px; padding: 14px 20px; border-radius:100px; border:1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color:#fff; font-size:1rem; font-family:inherit; }
.notify-form input::placeholder { color: rgba(255,255,255,0.6); }
.notify-form input:focus { outline:none; border-color:#fff; }

/* ==========================================================================
   LISTING DETAIL
   ========================================================================== */
.listing-wrap { padding-top: calc(var(--nav-h) + 30px); }
.breadcrumb { font-size: 0.88rem; color: var(--grey); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--red); }
.listing-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy-3), var(--navy)); box-shadow: var(--shadow-lg); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs img { aspect-ratio: 16/10; object-fit: cover; border-radius: 10px; cursor: pointer; opacity: 0.6; transition: opacity 0.3s; border: 2px solid transparent; }
.gallery-thumbs img.active, .gallery-thumbs img:hover { opacity: 1; border-color: var(--red); }
.buy-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; position: sticky; top: calc(var(--nav-h) + 20px); box-shadow: var(--shadow); }
.buy-card .price-lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); }
.buy-card .price { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; color: var(--navy); line-height: 1.1; margin: 2px 0 6px; }
.buy-card .price-note { font-size: 0.86rem; color: var(--grey); margin-bottom: 22px; }
.buy-card .inc-list { list-style: none; padding: 0; margin: 0 0 22px; }
.buy-card .inc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-2); padding: 7px 0; }
.buy-card .inc-list svg { width: 18px; height: 18px; color: #16a34a; flex-shrink: 0; margin-top: 2px; }
.trust-row { display: flex; gap: 16px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--grey); }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-item { background: #fff; padding: 18px 20px; }
.spec-item .k { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey-2); margin-bottom: 4px; }
.spec-item .v { font-weight: 600; color: var(--navy); }
@media (max-width: 860px){ .listing-top { grid-template-columns: 1fr; } .buy-card { position: static; } }

/* ==========================================================================
   FORMS
   ========================================================================== */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px;
  font-size: 1rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(208,35,42,0.10); }
.field textarea { min-height: 130px; resize: vertical; }
.form-success { display: none; background: #ecfdf3; border: 1px solid #abefc6; color: #067647; padding: 15px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 0.95rem; }
.form-success.show { display: block; }
.form-note { font-size: 0.82rem; color: var(--grey-2); margin-top: 12px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 70px 0 34px; font-size: 0.94rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand img { height: 46px; margin-bottom: 16px; }
.footer-brand p { max-width: 280px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col h5 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; font-weight: 700; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.66); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.45); max-width: 760px; line-height: 1.6; }
@media (max-width: 820px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 480px){ .footer-top { grid-template-columns: 1fr; } }

/* Utility */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,4vw,50px); }
@media (max-width:760px){ .grid-2{ grid-template-columns:1fr; } }
.pill-list { display:flex; flex-wrap:wrap; gap:10px; list-style:none; padding:0; margin:0; }
.pill-list li { background:var(--bg-soft); border:1px solid var(--line); border-radius:100px; padding:8px 16px; font-size:0.9rem; font-weight:500; }
.divider-hr { height:1px; background:var(--line); border:0; margin: 0; }
.value-card { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.value-card .vnum { color: var(--red); font-weight: 700; font-size: 0.9rem; letter-spacing:0.08em; margin-bottom: 10px; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.value-card p { color: var(--grey); margin: 0; font-size: 0.96rem; }
