/* Ellis Electrical Solutions — front page */
:root {
  --ink: #0a0a0a;
  --ink-2: #111111;
  --ink-3: #181613;
  --copper: #b87333;
  --copper-light: #d99966;
  --copper-deep: #7a4a1f;
  --copper-glow: rgba(184, 115, 51, 0.45);
  --cream: #f0e6d2;
  --cream-dim: #b8a98a;
  --muted: #5a5046;
  --hairline: rgba(184, 115, 51, 0.22);
  --hairline-strong: rgba(184, 115, 51, 0.5);

  --serif: "Cinzel", "Trajan Pro", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ── Reusable copper text gradient ─────────────────────────── */
.copper-text {
  background: linear-gradient(180deg,
    #f5d9b3 0%,
    #e6b683 24%,
    #b87333 52%,
    #7a4a1f 78%,
    #d99966 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(184, 115, 51, 0.12);
}

.copper-thin {
  background: linear-gradient(180deg,
    #e6b683 0%,
    #b87333 60%,
    #7a4a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Site shell ─────────────────────────────────────────────── */
.site {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 1;
}

/* ── Fixed full-page circuit backdrop ───────────────────────── */
.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--ink);
  pointer-events: none;
  overflow: hidden;
}
.site-backdrop .site-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}
.site-backdrop-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, transparent 0%, rgba(5,4,3,0.4) 70%),
    linear-gradient(180deg, rgba(5,4,3,0.2) 0%, transparent 30%, transparent 70%, rgba(5,4,3,0.5) 100%);
}

.section {
  position: relative;
  padding: 96px 64px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .section { padding: 64px 24px; }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
}

.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 22px 0 18px;
  text-wrap: balance;
}
.h-section {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 14px 0 24px;
}

.lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 56ch;
  text-wrap: pretty;
}

.rule {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--hairline-strong) 15%,
    var(--hairline-strong) 85%,
    transparent 100%);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(180deg, #d99966 0%, #b87333 55%, #8a5524 100%);
  color: #1a0e04;
  box-shadow:
    0 0 0 1px rgba(245, 217, 179, 0.3) inset,
    0 8px 24px -8px rgba(184, 115, 51, 0.55);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #f5d9b3 0%, #d99966 55%, #b87333 100%);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(245, 217, 179, 0.55) inset,
    0 12px 32px -8px rgba(184, 115, 51, 0.75);
}
.btn-ghost {
  background: transparent;
  color: var(--copper-light);
  border-color: var(--hairline-strong);
}
.btn-ghost:hover {
  border-color: var(--copper);
  background: rgba(184, 115, 51, 0.06);
  color: var(--cream);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ── Banner / Hero ──────────────────────────────────────────── */
.banner {
  position: relative;
  width: 100%;
  height: clamp(240px, 26vw, 360px);
  overflow: hidden;
  background: transparent;
  border-bottom: none;
}
.banner-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr;
  align-items: center;
  padding: 0 48px 0 32px;
  gap: 96px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .banner-inner {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
}
.banner-circuit {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
}
.banner-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,0,0,0.7) 0%, transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 100%);
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.logo-lockup svg.monogram { display: block; }
.logo-lockup .wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: 0.14em;
  line-height: 1;
  margin-top: 4px;
}
.logo-lockup .subwordmark {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(9px, 0.7vw, 11px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--cream);
  opacity: 0.92;
}

/* Real-photo logo lockup (uses logo.png). Screen blend mode hides the
   near-black photo background against the page's near-black background. */
.logo-lockup-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-lockup-img img {
  max-width: 100%;
}

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
.nav-item {
  position: relative;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 0;
  transition: color 0.2s ease;
  cursor: pointer;
}
.nav-item:hover { color: var(--copper-light); }
.nav-item.active {
  color: var(--copper-light);
}
.nav-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--copper) 20%,
    var(--copper-light) 50%,
    var(--copper) 80%,
    transparent 100%);
}

@media (max-width: 900px) {
  .nav { justify-content: flex-start; gap: 18px; }
  .nav-item { font-size: 11px; letter-spacing: 0.18em; }
}

/* ── Hero sub (below banner) ────────────────────────────────── */
.hero-sub {
  position: relative;
  padding: 80px 64px 56px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .hero-sub { padding: 56px 24px 32px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 6px;
  border-left: 1px solid var(--hairline);
  padding-left: 28px;
}
.hero-meta .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
}
.hero-meta .value {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  color: var(--cream);
}

/* ── Section: Services ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 48px;
}
.service-card {
  background: rgba(10,10,10,0.72);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.3s ease;
  min-height: 240px;
}
.service-card:hover {
  background: linear-gradient(180deg, rgba(20,16,11,0.88) 0%, rgba(10,10,10,0.8) 100%);
}
.service-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--copper);
}
.service-card .icon {
  width: 36px;
  height: 36px;
  color: var(--copper-light);
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  margin: 6px 0 4px;
  color: var(--cream);
}
.service-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0;
}
.service-card .more {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Section: Stats ─────────────────────────────────────────── */
.stats-block {
  background:
    linear-gradient(180deg, rgba(13,12,10,0.72) 0%, rgba(6,5,3,0.82) 100%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.stats-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, var(--copper-glow) 0%, transparent 60%);
  opacity: 0.18;
}
.stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-block { padding: 56px 24px; }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  border-left: 1px solid var(--hairline);
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 8px;
}

.certs-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.certs-row .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
}
.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}
.cert-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--copper-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--copper-glow);
}

/* ── Section: Gallery ───────────────────────────────────────── */
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 220px;
  gap: 12px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #0d0c0a;
  border: 1px solid var(--hairline);
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-row: 1 / span 2;
}
@media (max-width: 900px) {
  .gallery-item:nth-child(1) { grid-row: auto; grid-column: span 2; }
}
.gallery-placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(184, 115, 51, 0.04) 0px,
      rgba(184, 115, 51, 0.04) 2px,
      transparent 2px,
      transparent 12px),
    linear-gradient(135deg, #181410 0%, #0a0807 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder .ph-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 8px 14px;
  border: 1px solid var(--hairline-strong);
  background: rgba(0,0,0,0.5);
}
.gallery-item .meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}
.gallery-item .meta h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  color: var(--cream);
}
.gallery-item .meta .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-light);
}
.gallery-item:hover .gallery-placeholder {
  background:
    repeating-linear-gradient(135deg,
      rgba(184, 115, 51, 0.08) 0px,
      rgba(184, 115, 51, 0.08) 2px,
      transparent 2px,
      transparent 12px),
    linear-gradient(135deg, #211810 0%, #0a0807 100%);
}

/* ── Contact CTA strip ──────────────────────────────────────── */
.contact-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 72px 64px;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(184, 115, 51, 0.08) 0%, transparent 60%),
    rgba(10,10,10,0.55);
  position: relative;
}
.contact-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .contact-strip { padding: 56px 24px; }
  .contact-strip-inner { grid-template-columns: 1fr; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: rgba(5,4,3,0.78);
  border-top: 1px solid var(--hairline);
  padding: 72px 64px 32px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .footer { padding: 56px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer li {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--cream-dim);
}
.footer li a:hover { color: var(--copper-light); }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--cream-dim);
  max-width: 36ch;
  margin: 0;
}
.footer-bottom {
  max-width: 1440px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Hero variation: editorial ──────────────────────────────── */
.hero-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
  align-items: center;
  padding: 0 64px;
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 900px) {
  .hero-editorial { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
}
.hero-editorial .mark-large {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.hero-editorial .copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero-editorial .copy .big-line {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 0;
}

/* ── Hero variation: centered ───────────────────────────────── */
.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 32px;
  gap: 18px;
}
.hero-centered .tagline-big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: 0.04em;
  margin-top: 18px;
  color: var(--cream);
  max-width: 22ch;
  line-height: 1.18;
  text-wrap: balance;
}
.hero-centered .nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 12px 28px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  margin-top: 32px;
}
.hero-centered .nav-pill .nav-item { font-size: 11.5px; }

/* ── WhatsApp button ────────────────────────────────────────── */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px 10px 15px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--copper-light);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.wa-btn svg { transition: color 0.25s ease; }
.wa-btn:hover {
  background: linear-gradient(180deg, #d99966 0%, #b87333 55%, #8a5524 100%);
  border-color: transparent;
  color: #1a0e04;
  box-shadow:
    0 0 0 1px rgba(245, 217, 179, 0.3) inset,
    0 8px 22px -8px rgba(184, 115, 51, 0.6);
  transform: translateY(-1px);
}
/* Pinned top-right corner of the banner (classic + centered heroes) */
.wa-btn.wa-corner {
  position: absolute;
  top: 28px;
  right: 48px;
  z-index: 5;
}
@media (max-width: 900px) {
  .wa-btn { font-size: 10.5px; padding: 8px 14px 8px 12px; letter-spacing: 0.12em; }
  .wa-btn.wa-corner { top: 18px; right: 20px; }
}

/* ── Accessibility / motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ── Showroom backdrop ──────────────────────────────────────── */
.showroom-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 55%, #1f1c17 0%, #0a0907 50%, #050402 100%);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.showroom-backdrop:active { cursor: grabbing; }

.showroom-key-light {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 80%;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%,
      rgba(255, 245, 225, 0.18) 0%,
      rgba(255, 235, 205, 0.06) 35%,
      transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}
.showroom-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0%, transparent 45%, rgba(0,0,0,0.55) 95%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.6) 100%);
}
.showroom-floor {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(184, 115, 51, 0.04) 60%, rgba(0,0,0,0.6) 100%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(184, 115, 51, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.van-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.1s linear;
}
.van-frame {
  width: min(82vw, 1500px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transition: transform 0.18s ease-out;
}
.van-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.7));
}
.van-reflection {
  position: absolute;
  top: 92%;
  left: 0;
  width: 100%;
  height: auto;
  transform: scaleY(-1);
  opacity: 0.18;
  filter: blur(2px);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 55%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 55%);
  pointer-events: none;
}

/* Showroom chrome — eyebrow, drag hint, scroll cue */
.showroom-top {
  position: absolute;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.showroom-hint {
  position: absolute;
  bottom: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.showroom-hint-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 12px var(--copper-glow);
  animation: showroom-pulse 2s ease-in-out infinite;
}
@keyframes showroom-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
.showroom-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.showroom-scroll-cue .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--copper), transparent);
  animation: scroll-cue 2.4s ease-in-out infinite;
}
@keyframes scroll-cue {
  0%   { transform: scaleY(0.2); transform-origin: top; opacity: 0.4; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0.2); transform-origin: bottom; opacity: 0.4; }
}

/* Page-mode adjustments when showroom is active */
.site.has-showroom { position: relative; z-index: 1; }
.site.has-showroom .showroom-spacer {
  height: 100vh;
  width: 100%;
  pointer-events: none; /* scroll bleeds through to van for drag */
  /* but we DO need to block pointer events on the spacer itself so the user can
     drag the van behind it; default pointer-events:none enables that. */
}
.site.has-showroom .banner {
  background: linear-gradient(180deg, transparent 0%, var(--ink) 30%, var(--ink) 100%);
}

@media (max-width: 900px) {
  .showroom-top { top: 64px; }
  .showroom-hint { bottom: 64px; font-size: 10px; padding: 8px 14px; }
}

