:root {
  color-scheme: dark;
  --bg: #09090b;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.11);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-hi: rgba(255, 255, 255, 0.26);
  --accent: #e10600;
  --accent-hot: #ff2a1f;
  --accent-deep: #b30500;
  --accent-text: #ff5347;
  --text: #f5f5f7;
  --text-dim: #b6b6bd;
  --text-mute: #8f8f98;
  --font-display: 'Sora', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 24px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Ambient glow orbs behind everything: gives the glass something to blur */
body::before {
  content: "";
  position: fixed;
  inset: -15%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(45% 40% at 12% 8%, rgba(225, 6, 0, 0.30), transparent 70%),
    radial-gradient(40% 40% at 92% 38%, rgba(70, 90, 255, 0.18), transparent 70%),
    radial-gradient(45% 40% at 28% 96%, rgba(225, 6, 0, 0.18), transparent 70%);
  animation: orbDrift 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes orbDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(3%, -4%, 0) scale(1.08); }
}

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

a:focus-visible, button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: #fff;
  color: #000;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Glass surfaces */
.glass, .card, .review-card, .stats > div, .quick-card, .specialty-item,
.plate-frame, .map-wrap, .cta-band .container, .hero-copy {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), var(--shadow);
}
@media (prefers-reduced-transparency: reduce) {
  .glass, .card, .review-card, .stats > div, .quick-card, .specialty-item,
  .plate-frame, .map-wrap, .cta-band .container, .hero-copy {
    background: #17171b;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass, .card, .review-card, .stats > div, .quick-card, .specialty-item,
  .plate-frame, .map-wrap, .cta-band .container, .hero-copy { background: #17171b; }
}

.hl { color: var(--accent-text); }

/* Header: floating glass pill */
header { position: sticky; top: 0; z-index: 50; padding: 12px 16px 0; }

.navbar {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 14px;
  border-radius: 999px;
  background: rgba(20, 20, 24, 0.55);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: background 0.3s;
}
header.scrolled .navbar { background: rgba(14, 14, 17, 0.8); }
@media (prefers-reduced-transparency: reduce) {
  .navbar { background: #17171b; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .navbar { background: #17171b; }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text b { font-weight: 700; }
.logo-text small {
  color: var(--accent-text);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* The logo art has a light background, so it sits in a rounded tile of the same flat colour (images/logo*.png) */
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #f1f3f4;
  flex-shrink: 0;
}

.logo-full {
  display: block;
  width: 180px;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: #f1f3f4;
  box-shadow: var(--shadow);
}

nav ul { display: flex; list-style: none; gap: 4px; }
nav a {
  display: block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s, background 0.2s;
}
nav a:hover { color: var(--text); background: var(--glass); }
nav a.active {
  color: var(--text);
  background: var(--glass-strong);
  box-shadow: inset 0 0 0 1px var(--stroke);
}

.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-cta .btn { padding: 9px 18px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-hot), var(--accent-deep));
  color: #fff;
  box-shadow: 0 8px 24px rgba(225, 6, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(225, 6, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.btn-outline {
  background: var(--glass-strong);
  border-color: var(--stroke-hi);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.18); }

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(3); opacity: 0; } }

/* Hero: full-bleed video under a dark veil, glass copy panel + quick-info card */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(80vh, 760px);
  display: flex;
  align-items: center;
  padding: 72px 24px 96px;
  margin-top: -72px;
  padding-top: 144px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* fade the video out at the bottom so it melts into the page glow */
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent);
  mask-image: linear-gradient(180deg, #000 55%, transparent);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.62), rgba(9, 9, 11, 0.12)),
    linear-gradient(180deg, rgba(9, 9, 11, 0.4), transparent 30%);
}
/* hero panels get a darker glass so text stays readable over bright smoke */
.hero-copy, .quick-card { background: rgba(14, 14, 18, 0.5); }
@media (prefers-reduced-transparency: reduce) { .hero-copy, .quick-card { background: #17171b; } }
.hero .container { width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 32px;
  align-items: end;
}

.hero-copy { padding: clamp(24px, 4vw, 44px); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 18px;
}
.hero p {
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-copy .hero-actions { justify-content: flex-start; }

.badge-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.badge, .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--glass-strong);
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
  font-weight: 500;
}
.badge .stars { color: #ffb84d; letter-spacing: 1px; }
.status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-text);
  flex-shrink: 0;
}
.status-badge.status-open::before { background: #34d27b; animation: pulseDot 1.8s infinite; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 210, 123, 0.55); }
  50% { box-shadow: 0 0 0 7px rgba(52, 210, 123, 0); }
}

.quick-card { padding: 32px; }
.quick-card .status-badge { margin-bottom: 20px; }
.quick-list { list-style: none; }
.quick-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--stroke);
  font-size: 0.95rem;
}
.quick-list li:last-child { padding-bottom: 0; }
.quick-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent-text); }

@media (max-width: 900px) {
  .hero { min-height: 0; padding: 120px 20px 64px; }
  .hero-grid { grid-template-columns: 1fr; }
}

/* Inner page hero: blurred photo under a veil, tucked behind the floating nav, glass title panel */
.page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -72px;
  padding: 150px 24px 64px;
  text-align: center;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -2;
  background: var(--hero-img) center var(--hero-y, 50%) / cover no-repeat;
  filter: blur(2px) saturate(0.95);
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
  mask-image: linear-gradient(180deg, #000 60%, transparent);
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.45), rgba(9, 9, 11, 0.15) 40%, transparent),
    radial-gradient(70% 90% at 50% 45%, rgba(9, 9, 11, 0.3), transparent);
}
.page-header-panel {
  max-width: 680px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(14, 14, 18, 0.5);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), var(--shadow);
}
@media (prefers-reduced-transparency: reduce) {
  .page-header-panel { background: #17171b; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .page-header-panel { background: #17171b; }
}
.page-header .badge-row { justify-content: center; margin-bottom: 18px; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.page-header p { color: var(--text-dim); margin: 14px auto 0; max-width: 520px; }
@media (max-width: 900px) {
  .page-header { min-height: 0; padding: 120px 20px 48px; }
}

/* Sections */
section { padding: 88px 24px; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035) 20%, rgba(255, 255, 255, 0.035) 80%, transparent);
}
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.card, .specialty-item {
  position: relative;
  isolation: isolate;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
  will-change: transform;
}
.card:hover, .specialty-item:hover {
  border-color: var(--stroke-hi);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 40px rgba(225, 6, 0, 0.12);
}
/* cursor-following spotlight (--mx/--my set from script.js) */
.card::before, .specialty-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.card:hover::before, .specialty-item:hover::before { opacity: 1; }

.card .icon, .specialty-item .icon-lg {
  width: 48px;
  height: 48px;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--accent-text);
  background: rgba(225, 6, 0, 0.13);
  border: 1px solid rgba(255, 83, 71, 0.28);
}
.card h3, .specialty-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.card p, .specialty-item p { color: var(--text-dim); font-size: 0.95rem; }

.specialty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

/* Photo + copy feature band (Services: battery) */
.feature-split { align-items: center; gap: 48px; }
.feature-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 55% 50%;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}
.feature-copy h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 14px; }
.feature-copy p { color: var(--text-dim); margin-bottom: 26px; max-width: 480px; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; text-align: center; }
.stats > div { padding: 28px 16px; }
.stats .num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stats .label {
  color: var(--text-mute);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  margin-top: 4px;
}

/* Brand marquee */
.brands { padding: 56px 0; }
.brands-label {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 36px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  --marquee-gap: 72px;
  gap: var(--marquee-gap);
  width: max-content;
  animation: marquee 40s linear infinite; /* duration is set from script.js to keep the speed constant */
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-50% - var(--marquee-gap) / 2)); } }
.brand-logo { width: 60px; height: 60px; opacity: 0.75; transition: opacity 0.25s, transform 0.25s; }
.brand-logo:hover { opacity: 1; transform: scale(1.12); }
.brand-logo-sm { width: 30px; height: 30px; }
.marquee-note { text-align: center; color: var(--text-dim); font-size: 1.15rem; margin-top: 32px; }

/* Scroll-scrubbed exploded-view video: the section is tall, the frame is pinned, scroll drives currentTime (script.js) */
.scrub { position: relative; height: 300vh; padding: 0; }
.scrub-stick {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 32px;
}
.scrub .section-title { margin-bottom: 20px; }
.scrub .section-title h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.scrub-hint { color: var(--text-dim); margin-top: 8px; font-size: 0.95rem; }
.scrub .plate-frame { width: min(100%, clamp(240px, calc((100vh - 300px) * 1.7778 + 28px), 860px)); }
.scrub-video { border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 9; background: #000; }
.scrub-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.scrub-progress { height: 3px; margin: 12px 8px 2px; border-radius: 3px; background: var(--stroke); overflow: hidden; }
.scrub-progress span { display: block; height: 100%; transform-origin: left; transform: scaleX(var(--p, 0)); background: linear-gradient(90deg, var(--accent-hot), var(--accent)); }
@media (max-width: 700px) { .scrub { height: 260vh; } .scrub-stick { padding: 92px 16px 24px; } }
@media (prefers-reduced-motion: reduce) { .scrub { height: auto; } .scrub-stick { position: static; height: auto; padding: 88px 24px; } .scrub-progress { display: none; } }

/* Framed media */
.plate-frame { max-width: 900px; margin: 0 auto; padding: 14px; }
.plate-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 8px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* Review */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.review-card { padding: 44px 28px 32px; text-align: center; position: relative; }
.review-card .source { color: var(--text-mute); font-size: 0.85rem; }
.reviews-link { text-align: center; margin-top: 28px; }
.reviews-link a { color: var(--accent-text); text-decoration: underline; font-size: 0.95rem; }
.reviews-link a:hover { color: var(--text); }
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255, 83, 71, 0.35);
}
.review-card .stars { color: #ffb84d; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card .quote { font-size: 1.1rem; margin-bottom: 18px; }
.review-card .author { font-weight: 600; }

/* Info list, hours, map */
.info-list { list-style: none; }
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--stroke); align-items: flex-start; }
.info-list li:last-child { border-bottom: none; }
.info-list .icon { width: 22px; height: 22px; color: var(--accent-text); flex-shrink: 0; margin-top: 2px; }
.info-list.glass { padding: 6px 24px; }
.card .info-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--accent-text);
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}

table.hours { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; font-size: 0.95rem; }
table.hours td { padding: 13px 22px; border-bottom: 1px solid var(--stroke); }
table.hours tr:last-child td { border-bottom: none; }
table.hours td:last-child { text-align: right; color: var(--text-dim); }
table.hours tr.today td { background: rgba(225, 6, 0, 0.18); color: var(--text); font-weight: 600; }

.map-wrap { overflow: hidden; height: 100%; min-height: 360px; }
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.75) contrast(0.95);
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* Founder photos + lightbox */
.founder-photo { width: 100%; height: auto; border-radius: 20px; border: 1px solid var(--stroke); }
.founder-intro { align-items: center; }
.founder-photo-main { aspect-ratio: 4 / 5; object-fit: cover; height: 100%; }
.founder-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 6px; }
.founder-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.founder-gallery .founder-photo { aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 800px) { .founder-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .founder-photo-main { aspect-ratio: 4 / 3; } }

.lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.lightbox-trigger .founder-photo { transition: transform 0.4s ease; }
.lightbox-trigger:hover .founder-photo { transform: scale(1.05); }
.lightbox-trigger::after {
  content: "+";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 20, 24, 0.6);
  border: 1px solid var(--stroke-hi);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.lightbox-trigger:hover::after, .lightbox-trigger:focus-visible::after { opacity: 1; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.lightbox.open { display: flex; }
.lightbox-image { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 20px; border: 1px solid var(--stroke-hi); box-shadow: var(--shadow); }
.lightbox-caption { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; color: var(--text-dim); font-size: 0.9rem; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--glass-strong);
  border: 1px solid var(--stroke-hi);
  color: var(--text);
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-close { top: 20px; right: 24px; width: 44px; height: 44px; font-size: 1.6rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 600px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* CTA band: one big glass panel with a red glow */
.cta-band { text-align: center; padding: 40px 24px 96px; }
.cta-band .container { max-width: 920px; padding: 64px 32px; position: relative; overflow: hidden; isolation: isolate; }
.cta-band .container::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto;
  height: 120%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(225, 6, 0, 0.38), transparent);
  pointer-events: none;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 12px; }
.cta-band p { margin-bottom: 28px; color: var(--text-dim); }
.cta-band .hero-actions { justify-content: center; }

/* Footer */
footer { border-top: 1px solid var(--stroke); background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45)); padding: 64px 24px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px 32px; margin-bottom: 32px; }
.footer-grid h4 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; color: var(--accent-text); }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; color: var(--text-dim); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { text-align: center; color: var(--text-mute); font-size: 0.8rem; padding: 24px 0 28px; border-top: 1px solid var(--stroke); }

/* Floating WhatsApp button (sits above the bottom action bar on phones) */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #25d366;
  background: rgba(20, 20, 24, 0.7);
  border: 1px solid rgba(37, 211, 102, 0.45);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 34px rgba(37, 211, 102, 0.45); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
@media (prefers-reduced-transparency: reduce) {
  .wa-float { background: #17171b; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
@media (max-width: 700px) {
  .wa-float { right: 16px; bottom: calc(max(12px, env(safe-area-inset-bottom)) + 84px); width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* Mobile floating glass action bar */
.mobile-bar { display: none; }
@media (max-width: 700px) {
  .mobile-bar {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 60;
    gap: 6px;
    padding: 6px;
    border-radius: 24px;
    background: rgba(20, 20, 24, 0.7);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(20px) saturate(170%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 40px rgba(0, 0, 0, 0.6);
  }
  @media (prefers-reduced-transparency: reduce) {
    .mobile-bar { background: #17171b; backdrop-filter: none; -webkit-backdrop-filter: none; }
  }
  .mobile-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 9px 0;
    border-radius: 18px;
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 600;
  }
  .mobile-bar a.primary { background: linear-gradient(135deg, var(--accent-hot), var(--accent-deep)); color: #fff; }
  .mobile-bar svg { width: 20px; height: 20px; }
  body { padding-bottom: 96px; }
}

/* Scroll reveal: animation (not transition) so card hover/tilt transforms stay free after reveal */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: none; animation: rise 0.7s ease var(--d, 0s) backwards; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before, .status-badge.status-open::before { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .reveal.in { animation: none; }
  .marquee-track { width: auto; flex-wrap: wrap; justify-content: center; animation: none; }
  .marquee-track [aria-hidden="true"] { display: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 10px;
    border-radius: 24px;
    background: rgba(16, 16, 20, 0.96);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    box-shadow: var(--shadow);
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 2px; }
  nav a { padding: 14px 18px; }
}
