/* The Golden Wheel v2 — luxury dark theme */
:root {
  --bg: #0a0a0c;
  --bg2: #111114;
  --panel: #151518;
  --gold: #c9a24b;
  --gold-bright: #e3c06a;
  --ink: #f4f1e8;
  --muted: #a09a8c;
  --line: rgba(201, 162, 75, 0.28);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.gold { color: var(--gold); }

.kicker {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.gold-rule {
  width: 72px; height: 3px; margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: skewX(-24deg);
}
.gold-rule.left { margin-left: 0; }

/* ---------- top bar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(180deg, rgba(5,5,7,0.92), rgba(5,5,7,0.55) 70%, transparent);
  transition: background 0.3s;
}
.topbar.scrolled { background: rgba(8,8,10,0.96); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark { color: var(--gold); font-size: 1.2rem; }
.brand-name {
  font-family: var(--display); font-weight: 600; letter-spacing: 0.22em;
  font-size: 0.95rem;
}
.topnav { display: flex; align-items: center; gap: 1.4rem; }
.topnav a:not(.call-pill) {
  text-decoration: none; font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.topnav a:not(.call-pill):hover { color: var(--ink); }
.call-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border: 1px solid var(--gold); color: var(--gold-bright);
  padding: 0.45rem 1rem; border-radius: 999px; text-decoration: none;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  transition: background 0.25s, color 0.25s;
}
.call-pill svg { width: 15px; height: 15px; }
.call-pill:hover { background: var(--gold); color: #0a0a0c; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("images/maybach-s680/01.jpg") center 62% / cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.06); } to { transform: scale(1.14) translateY(-1.5%); } }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,8,0.62) 0%, rgba(6,6,8,0.28) 42%, rgba(6,6,8,0.88) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(6,6,8,0.55) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 6rem 1.5rem 4rem; max-width: 1000px; }
.hero-kicker {
  font-family: var(--display); letter-spacing: 0.45em; text-transform: uppercase;
  font-size: 0.8rem; color: var(--gold-bright); margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  line-height: 0.98; letter-spacing: 0.04em; text-transform: uppercase;
  text-shadow: 0 6px 40px rgba(0,0,0,0.7);
}
.hero-rule {
  width: 120px; height: 4px; margin: 1.6rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: skewX(-24deg);
}
.hero-tag { font-size: clamp(1rem, 2.4vw, 1.25rem); color: #d8d3c4; font-weight: 500; }
.hero-ctas { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 1.5rem; text-decoration: none; z-index: 2;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.95rem 2rem;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.2s, filter 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #0c0b08; }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--ink); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ---------- marquee strip ---------- */
.strip {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #0d0d10; padding: 0.85rem 0;
}
.strip-track {
  display: inline-flex; gap: 2.2rem; white-space: nowrap;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 0.8rem; color: var(--muted);
  animation: strip 34s linear infinite;
}
.strip-track i { color: var(--gold); font-style: normal; font-size: 0.6rem; align-self: center; }
@keyframes strip { to { transform: translateX(-50%); } }

/* ---------- inventory ---------- */
.inventory { padding: 5.5rem 1.5rem 4rem; max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 2.4rem; }
.section-head h2, .visit-inner h2 {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 0.06em;
}
.toolbar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  margin-bottom: 0.6rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem;
  background: transparent; color: var(--muted); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.5rem 1rem; cursor: pointer; border-radius: 999px;
  transition: all 0.2s;
}
.chip:hover { color: var(--ink); border-color: var(--gold); }
.chip[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #0c0b08; font-weight: 600; }
.toolbar-right { display: flex; align-items: center; gap: 0.6rem; }
.sort-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); }
.sort {
  background: var(--panel); color: var(--ink); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.55rem 0.8rem; border-radius: 6px; font-family: var(--body); font-size: 0.85rem;
}
.count { color: var(--muted); font-size: 0.85rem; margin: 0.4rem 0 1.6rem; letter-spacing: 0.05em; }

.grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.card {
  background: var(--panel); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; overflow: hidden; text-decoration: none; color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-6px); border-color: var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px var(--line);
}
.card .photo { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #000; }
.card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .photo img { transform: scale(1.06); }
.card .photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,10,0.55));
}
.card-price-tag {
  position: absolute; top: 0.9rem; left: 0; z-index: 2;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #0c0b08; font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  padding: 0.35rem 1.1rem 0.35rem 0.9rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.card-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-meta { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-family: var(--display); }
.card-body h2 { font-family: var(--display); font-size: 1.45rem; font-weight: 600; letter-spacing: 0.03em; margin: 0.35rem 0 0.15rem; text-transform: uppercase; }
.card-trim { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.7rem; }
.card-blurb { font-size: 0.92rem; color: #cfc9ba; flex: 1; }
.card-cta {
  margin-top: 1.1rem; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.8rem;
  color: var(--gold-bright); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem;
}
.card-cta span:last-child { font-size: 1.2rem; transition: transform 0.2s; }
.card:hover .card-cta span:last-child { transform: translateX(6px); }
.empty { text-align: center; color: var(--muted); padding: 3rem 0; }
.linklike { background: none; border: none; color: var(--gold); cursor: pointer; text-decoration: underline; font-size: inherit; }

/* ---------- visit ---------- */
.visit {
  position: relative; padding: 6rem 1.5rem;
  background:
    linear-gradient(rgba(8,8,10,0.9), rgba(8,8,10,0.94)),
    url("images/s550/01.jpg") center / cover no-repeat fixed;
  border-top: 1px solid var(--line);
  clip-path: polygon(0 3vw, 100% 0, 100% 100%, 0 100%);
  margin-top: 2rem;
}
.visit-inner { max-width: 820px; margin: 0 auto; text-align: center; padding-top: 2rem; }
.visit-copy { color: #cfc9ba; margin: 1.2rem 0 2rem; font-size: 1.05rem; }
.visit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.2rem; }
.visit-card {
  background: rgba(20,20,24,0.85); border: 1px solid var(--line); border-radius: 4px;
  padding: 1.6rem 1.2rem; text-decoration: none; display: block;
  transition: border-color 0.25s, transform 0.25s;
}
a.visit-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.vc-label {
  display: block; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.25em; font-size: 0.72rem; color: var(--gold); margin-bottom: 0.5rem;
}
.vc-value { font-size: 1.25rem; font-weight: 600; }
.visit-ctas { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- detail view ---------- */
.detail-wrap { max-width: 1280px; margin: 0 auto; padding: 6.2rem 1.5rem 4rem; }
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.82rem;
  color: var(--gold-bright); margin-bottom: 1.6rem;
}
.back-link:hover { color: var(--gold); }
.detail-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 2.5rem; align-items: start; }

.gallery { position: sticky; top: 5.5rem; }
.stage {
  position: relative; aspect-ratio: 16/10; background: #000; border-radius: 4px;
  overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
  touch-action: pan-y;
}
.stage img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; }
.nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(8,8,10,0.65); border: 1px solid var(--line); color: var(--gold-bright);
  font-size: 1.6rem; line-height: 1; cursor: pointer; backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.nav:hover { background: var(--gold); color: #0c0b08; }
.nav.prev { left: 0.8rem; } .nav.next { right: 0.8rem; }
.counter {
  position: absolute; bottom: 0.8rem; right: 0.8rem;
  background: rgba(8,8,10,0.7); border: 1px solid var(--line);
  font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem; border-radius: 999px; color: var(--ink);
}
.expand {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  background: rgba(8,8,10,0.7); border: 1px solid var(--line); color: var(--ink);
  width: 38px; height: 38px; border-radius: 8px; cursor: pointer; font-size: 1rem;
}
.expand:hover { border-color: var(--gold); color: var(--gold-bright); }
.thumbs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.55rem; margin-top: 0.7rem;
}
.thumbs button {
  border: 2px solid transparent; border-radius: 3px; overflow: hidden; cursor: pointer;
  padding: 0; background: #000; aspect-ratio: 16/10; opacity: 0.55; transition: all 0.2s;
}
.thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.thumbs button.active { border-color: var(--gold); opacity: 1; }
.thumbs button:hover { opacity: 1; }

.detail-title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.05; letter-spacing: 0.03em;
}
.detail-trim { color: var(--muted); margin: 0.4rem 0 1.2rem; font-size: 1rem; }
.price-block { display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; }
.d-price {
  font-family: var(--display); font-weight: 700; font-size: 2.4rem; color: var(--gold-bright);
}
.d-miles { color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; }
.d-blurb { margin: 1.2rem 0 1.6rem; color: #d8d3c4; font-size: 1.02rem; }
.feat-head {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.85rem; color: var(--gold); margin-bottom: 0.7rem;
}
.feat-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-bottom: 2rem; }
.feat-list li {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px; padding: 0.65rem 0.9rem; font-size: 0.9rem;
}
.feat-list li::before { content: "◆ "; color: var(--gold); font-size: 0.7em; }
.d-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1rem; }
.d-note { color: var(--muted); font-size: 0.85rem; }

.sticky-cta { display: none; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(4,4,6,0.96);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 94vw; max-height: 88vh; object-fit: contain; border: 1px solid var(--line); }
.lb-close {
  position: absolute; top: 1rem; right: 1.2rem; background: none; border: none;
  color: var(--ink); font-size: 1.8rem; cursor: pointer;
}
.lb-close:hover { color: var(--gold); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(20,20,24,0.7); border: 1px solid var(--line); color: var(--gold-bright);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; cursor: pointer;
}
.lb-nav:hover { background: var(--gold); color: #0c0b08; }
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }
.lb-counter {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--display); letter-spacing: 0.15em; color: var(--muted); font-size: 0.85rem;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line); background: #08080a;
  text-align: center; padding: 3rem 1.5rem 2.5rem;
}
.footer-brand {
  font-family: var(--display); font-weight: 600; letter-spacing: 0.3em; font-size: 1rem;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-line { color: var(--muted); font-size: 0.92rem; }
.footer-line a { color: var(--gold-bright); text-decoration: none; }
.footer-line a:hover { text-decoration: underline; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg, .strip-track, .hero-scroll { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .detail-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .sticky-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: rgba(8,8,10,0.96); border-top: 1px solid var(--line);
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    gap: 0.7rem;
  }
  .sticky-cta a {
    flex: 1; text-align: center; text-decoration: none;
    font-family: var(--display); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem;
    padding: 0.85rem; background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #0c0b08; font-weight: 600;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  }
  .sticky-cta a.ghost { background: transparent; color: var(--ink); border: 1px solid rgba(255,255,255,0.25); }
  #view-detail .detail-wrap { padding-bottom: 6.5rem; }
}
@media (max-width: 640px) {
  .topnav a:not(.call-pill) { display: none; }
  .visit-cards { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .feat-list { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .visit { background-attachment: scroll; }
}

/* ============ FLAGSHIP ELEVATION ============ */

/* film grain */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* preloader */
.preloader {
  position: fixed; inset: 0; z-index: 200; background: #08080a;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
  animation: preFailsafe 0.6s ease 2.6s forwards;
}
.preloader.done { opacity: 0; visibility: hidden; }
@keyframes preFailsafe { to { opacity: 0; visibility: hidden; } }
.pre-inner { text-align: center; }
.pre-mark { display: block; color: var(--gold); font-size: 2rem; margin-bottom: 0.6rem; animation: prePulse 1.2s ease-in-out infinite; }
@keyframes prePulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.pre-name { display: block; font-family: var(--display); letter-spacing: 0.35em; font-size: 0.85rem; color: var(--ink); }
.pre-bar { display: block; width: 180px; height: 2px; background: rgba(255,255,255,0.1); margin: 1.2rem auto 0; overflow: hidden; }
.pre-bar span { display: block; height: 100%; width: 40%; background: var(--gold); animation: preSlide 1.1s ease-in-out infinite; }
@keyframes preSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(450%); } }

/* logo slots */
.brand-logo { height: 40px; width: auto; max-width: 120px; object-fit: contain; }
.brand-logo + .brand-mark { display: none; }
.footer-logo { height: 64px; width: auto; max-width: 200px; object-fit: contain; margin: 0 auto 1rem; }

/* hero watermark + stats */
.hero-watermark {
  position: absolute; bottom: -2vw; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 24vw; line-height: 1; letter-spacing: 0.02em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(201,162,75,0.16);
  z-index: 1; pointer-events: none; user-select: none;
}
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; margin-top: 3rem;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.14);
}
.hstat { display: flex; flex-direction: column; align-items: center; }
.hstat-num { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--gold-bright); }
.hstat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted); margin-top: 0.25rem; }

/* button sheen */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 45%; left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.55s ease;
}
.btn:hover::after { left: 130%; }

/* spotlight */
.spotlight { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.spot-bg {
  position: absolute; inset: -6% 0;
  background: url("images/maybach-s680/03.jpg") center 60% / cover no-repeat;
}
.spot-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,6,8,0.94) 20%, rgba(6,6,8,0.55) 55%, rgba(6,6,8,0.15) 100%);
}
.spot-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 7rem 1.5rem; }
.spot-copy { max-width: 560px; }
.spot-copy h2 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: 0.03em;
}
.spot-blurb { margin: 1.3rem 0 1.8rem; color: #d8d3c4; font-size: 1.05rem; }
.spot-specs { display: flex; gap: 2.4rem; margin-bottom: 2.2rem; }
.spot-specs > div { display: flex; flex-direction: column; }
.ss-num { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--ink); }
.ss-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); margin-top: 0.2rem; }

/* featured card — editorial lead */
.card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.25fr 1fr; }
.card.featured .photo { aspect-ratio: auto; min-height: 340px; }
.card.featured .card-body { justify-content: center; padding: 2.4rem; }
.card.featured .card-body h2 { font-size: 2.1rem; }
.card-index {
  position: absolute; bottom: 0.7rem; right: 0.9rem; z-index: 2;
  font-family: var(--display); font-size: 0.75rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.75);
}

/* gallery crossfade */
.stage-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.45s ease; user-select: none; -webkit-user-drag: none;
}
.stage-img.on { opacity: 1; }
@media (hover: hover) {
  .stage:hover .stage-img.on { transform: scale(1.025); }
  .stage .stage-img { transition: opacity 0.45s ease, transform 0.8s ease; }
}

/* staggered card entrance */
.grid .card.reveal:nth-child(2) { transition-delay: 0.06s; }
.grid .card.reveal:nth-child(3) { transition-delay: 0.12s; }

@media (max-width: 960px) {
  .card.featured { grid-template-columns: 1fr; }
  .card.featured .photo { min-height: 0; aspect-ratio: 16/10; }
  .hero-stats { gap: 1.6rem; }
  .spot-shade { background: linear-gradient(180deg, rgba(6,6,8,0.55), rgba(6,6,8,0.93) 75%); }
  .spot-inner { padding: 5rem 1.5rem; display: flex; align-items: flex-end; min-height: 92vw; }
}
@media (max-width: 640px) {
  .hero-watermark { font-size: 34vw; }
  .spot-specs { gap: 1.4rem; flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
  .btn::after { display: none; }
}
