/* ════════════════════════════════════════════
   CastCube — Premium Website
   Design: Apple/DJI inspired · Light · Editorial
   ════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────── */
:root {
  --white: #ffffff;
  --off-white: #F8F6F3;
  --warm-gray: #EFECE7;
  --mid-gray: #D4CFC9;
  --text-muted: #8A857E;
  --text-secondary: #4A4540;
  --text: #1A1714;
  --black: #0A0908;

  --gold: #C8A96E;
  --gold-light: #E8D5A8;
  --gold-dark: #9A7D4A;

  --accent: var(--gold);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 72px;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 60px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; font: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: transparent;
}

/* ── Custom Cursor ──────────────────────────── */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-spring), height 0.25s var(--ease-spring);
}
.cursor-circle {
  position: absolute;
  width: 40px; height: 40px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s var(--ease-out);
}
.cursor.hovering .cursor-dot { width: 12px; height: 12px; }
.cursor.hovering .cursor-circle { width: 64px; height: 64px; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }

.section-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.light { color: rgba(255,255,255,0.6); }
.section-label.light::before { background: rgba(200,169,110,0.7); }

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

.section-header { max-width: 700px; margin-bottom: clamp(3rem, 6vw, 5rem); }

/* ── Container ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  cursor: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(10,9,8,0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  transition: color 0.3s;
  flex-shrink: 0;
}
.nav.scrolled .nav-logo { color: var(--black); }
.logo-cube { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav.scrolled .nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  color: var(--white);
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.nav.scrolled .nav-cta {
  border-color: var(--text);
  color: var(--text);
}
.nav.scrolled .nav-cta:hover {
  background: var(--black);
  color: var(--white);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .nav-burger span { background: var(--black); }
.nav-burger.open span:first-child { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.open span:last-child { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-dark); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,9,8,0.72) 0%,
    rgba(10,9,8,0.45) 50%,
    rgba(10,9,8,0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}
.eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.eyebrow-text {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-title {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
}
.hero-word.accent { color: var(--gold); margin-left: 0.08em; }

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
}
.hero-scroll span {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line-wrap {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}
.scroll-line-inner {
  width: 100%; height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollLine 2s ease-in-out infinite 1s;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ON AIR badge */
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
}
.badge-on {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  padding: 3px 6px;
  border: 1px solid rgba(255,255,255,0.2);
  border-bottom: none;
}
.badge-air {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  line-height: 1;
  padding: 3px 6px;
  border: 1px solid rgba(200,169,110,0.4);
}

/* ══════════════════════════════════════════════
   STATEMENT
   ══════════════════════════════════════════════ */
.statement {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--white);
}
.statement-inner {
  max-width: 900px;
}
.statement-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2.5rem;
}
.statement-headline {
  font-size: clamp(1.875rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.statement-headline em {
  font-style: italic;
  color: var(--text-secondary);
}
.statement-body {
  padding-left: 2rem;
  border-left: 1px solid var(--mid-gray);
  max-width: 560px;
}
.statement-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════ */
.stats {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--black);
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-item {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 3rem);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 1px;
  background: var(--gold);
  transition: width 1.2s var(--ease-out);
}
.stat-item.in-view::after { width: 100%; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stat-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   INTERACTIVE EXPLORER
   ══════════════════════════════════════════════ */
.explorer {
  padding: clamp(6rem, 10vw, 9rem) 0 0;
  background: var(--off-white);
  overflow: visible;
}
.explorer-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

.explorer-stage {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.explorer-image-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
}
.explorer-img {
  width: 100%;
  height: auto;
  display: block;
  display: block;
}

/* Hotspots */
.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.hotspot.active {
  z-index: 50;
}
.hotspot.active .hotspot-btn {
  z-index: 51;
}
.hotspot.active .hotspot-card {
  z-index: 52;
}

.hotspot-btn {
  position: relative;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotspot-dot {
  width: 20px; height: 20px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 0 0 0 rgba(200,169,110,0.4);
}

.hotspot-pulse {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,0.6);
  animation: pulsate 2.5s ease-in-out infinite;
}
.hotspot-pulse::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.3);
  animation: pulsate 2.5s ease-in-out infinite 0.5s;
}

@keyframes pulsate {
  0% { transform: scale(0.8); opacity: 0.8; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}

.hotspot.active .hotspot-dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,110,0.2);
}
.hotspot.active .hotspot-pulse { animation-play-state: paused; opacity: 0; }

/* Hotspot Cards */
.hotspot-card {
  position: absolute;
  width: 280px;
  background: var(--white);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(10,9,8,0.15), 0 2px 8px rgba(10,9,8,0.06);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95) translateY(8px);
  transition: all 0.35s var(--ease-out);
  z-index: 20;
}
.hotspot-card[data-pos="bottom"] { top: calc(100% + 12px); left: 50%; transform: translateX(-50%) scale(0.95) translateY(8px); }
.hotspot-card[data-pos="right"] { left: calc(100% + 12px); top: 50%; transform: translateY(-50%) scale(0.95) translateX(-8px); }
.hotspot-card[data-pos="left"] { right: calc(100% + 12px); top: 50%; transform: translateY(-50%) scale(0.95) translateX(8px); }

.hotspot.active .hotspot-card {
  opacity: 1;
  pointer-events: all;
}
.hotspot.active .hotspot-card[data-pos="bottom"] { transform: translateX(-50%) scale(1) translateY(0); }
.hotspot.active .hotspot-card[data-pos="right"] { transform: translateY(-50%) scale(1) translateX(0); }
.hotspot.active .hotspot-card[data-pos="left"] { transform: translateY(-50%) scale(1) translateX(0); }

.hc-number {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.hc-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
  color: var(--text);
}
.hc-text {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 0.875rem;
}
.hc-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: rgba(200,169,110,0.1);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════ */
.features {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--warm-gray);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: var(--gold); }
.feature-card:hover .feature-icon { color: var(--gold); }

.feature-icon {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.875rem;
  color: var(--text);
}
.feature-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.feature-line {
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.6s var(--ease-out);
}
.feature-card:hover .feature-line { width: 100%; }

/* ══════════════════════════════════════════════
   MODELS
   ══════════════════════════════════════════════ */
.models {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: var(--off-white);
}

.models-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  width: fit-content;
  overflow: hidden;
}
.toggle-btn {
  padding: 12px 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}
.toggle-btn.active {
  background: var(--black);
  color: var(--white);
}

.model-panel { display: none; }
.model-panel.active { display: block; }

.model-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.model-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.model-img {
  width: 100%;
  height: clamp(300px, 45vh, 560px);
  object-fit: cover;
  display: block;
}
.model-visual--plan {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius-md);
}
.model-img--plan {
  object-fit: contain;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: transparent;
}
.model-dims {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(10,9,8,0.75);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dim {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}
.dim-width, .dim-height { color: var(--gold); }
.dim-label { color: rgba(255,255,255,0.4); font-size: 0.625rem; margin-top: 2px; }

.model-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200,169,110,0.12);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.model-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.model-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.model-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--warm-gray);
}
.spec-group h4 {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.spec-group ul { display: flex; flex-direction: column; gap: 6px; }
.spec-group li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.spec-group li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 4px; height: 1px;
  background: var(--gold);
}

.model-dims-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════ */
.gallery {
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(3rem, 5vw, 4rem);
  background: var(--white);
  overflow: hidden;
}
.gallery-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gallery-track-wrap {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}
.gallery-track-wrap:active { cursor: grabbing; }

.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 var(--gutter);
  width: max-content;
  transition: transform 0.6s var(--ease-out);
  user-select: none;
}

.gallery-item {
  position: relative;
  width: clamp(280px, 30vw, 480px);
  height: clamp(220px, 30vh, 380px);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}
.gallery-item--tall { height: clamp(280px, 40vh, 480px); }
.gallery-item--wide { width: clamp(360px, 40vw, 600px); }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(10,9,8,0.75), transparent);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  transform: translateY(4px);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-prev, .gallery-next {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mid-gray);
  border-radius: 50%;
  color: var(--text);
  transition: all 0.25s;
  flex-shrink: 0;
}
.gallery-prev:hover, .gallery-next:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.gallery-progress {
  flex: 1;
  height: 1px;
  background: var(--warm-gray);
  position: relative;
  overflow: hidden;
}
.gallery-progress-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--gold);
  width: 20%;
  transition: width 0.4s var(--ease-out);
}

/* ══════════════════════════════════════════════
   SERVICE
   ══════════════════════════════════════════════ */
.service {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--off-white);
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
}
.service-content {
  max-width: 760px;
}
.service-intro {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 540px;
}

.service-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}
.service-step {
  display: flex;
  gap: 1.5rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════
   USE CASES
   ══════════════════════════════════════════════ */
.usecases {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: var(--white);
}
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.usecase-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--warm-gray);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.usecase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.usecase-card:hover { border-color: rgba(200,169,110,0.3); }
.usecase-card:hover::before { transform: scaleX(1); }

.uc-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}
.usecase-card:hover .uc-number { color: var(--gold-light); }

.usecase-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.usecase-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--text); }
.contact-link svg { color: var(--gold); flex-shrink: 0; }

/* ── Kalkulator-Vorschau im Kontaktformular ── */
.contact-calc-preview {
  background: rgba(200,169,110,0.07);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.ccp-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.ccp-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  white-space: pre-wrap;
}

/* ── Kontaktformular ─────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.form-required {
  color: var(--gold);
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border: 1.5px solid var(--warm-gray);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
  background: var(--white);
}
.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-color: #c0392b;
}

.form-status {
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.5;
}
.form-status.is-success {
  background: rgba(74,169,110,0.1);
  border: 1px solid rgba(74,169,110,0.3);
  color: #276843;
}
.form-status.is-error {
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.25);
  color: #c0392b;
}

.form-submit {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.form-submit-spinner {
  display: none;
  animation: spinnerRotate 0.9s linear infinite;
}
.form-submit.is-loading .form-submit-label { opacity: 0.6; }
.form-submit.is-loading .form-submit-spinner { display: block; }

@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}

.form-legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: -0.25rem;
}
.form-legal-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(154,125,74,0.4);
  cursor: pointer;
  transition: color 0.2s;
}
.form-legal-link:hover { color: var(--gold-dark); text-decoration-color: var(--gold-dark); }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-content: center; }
}

/* Form — Fillout entfernt */
.fillout-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.footer-brand a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-brand a:hover { color: var(--gold); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════ */
.reveal-text .word {
  display: inline-block;
  overflow: hidden;
}
.reveal-text .char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease-out);
}
.reveal-text.revealed .char { transform: translateY(0); }

/* Fade in */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════
   NAV — AudioLink highlight link
   ══════════════════════════════════════════════ */
.nav-link-highlight {
  color: var(--gold) !important;
  position: relative;
}
.nav-link-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link-highlight:hover::after { transform: scaleX(1); }

/* ══════════════════════════════════════════════
   AUDIOLINK PLATFORM SECTION
   ══════════════════════════════════════════════ */
.audiolink {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid background */
.audiolink-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,169,110,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Radial fade to darken edges of grid */
.audiolink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 20%, var(--black) 100%);
  pointer-events: none;
  z-index: 1;
}

.audiolink .container {
  position: relative;
  z-index: 2;
}

/* Header */
.audiolink-header {
  max-width: 700px;
  margin-bottom: clamp(48px, 8vw, 80px);
}

.audiolink-header .section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.audiolink-header .section-title em {
  color: var(--gold);
  font-style: italic;
}

.audiolink-intro {
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin-bottom: 2rem;
}

.audiolink-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.al-trust-dot {
  color: var(--gold);
  opacity: 0.6;
}

/* Group labels (Jetzt verfügbar / In Kürze) */
.al-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.al-group-label--soon {
  margin-top: clamp(48px, 7vw, 72px);
  color: rgba(255,255,255,0.3);
}

/* Status dot (pulse for live) */
.al-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.al-status-dot--live {
  background: #4ade80;
  position: relative;
}
/* Composited pulse ring — uses transform+opacity, no layout recalc */
.al-status-dot--live::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(74,222,128,0.55);
  animation: alPulse 2s ease-out infinite;
}

.al-status-dot--soon {
  background: rgba(255,255,255,0.2);
}

@keyframes alPulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(2.5); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

/* Feature cards grid */
.audiolink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.audiolink-grid--soon {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.04);
}

/* Individual feature card */
.al-card {
  background: var(--black);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.al-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease-out);
}

.al-card:hover { background: rgba(200,169,110,0.04); }
.al-card:hover::before { transform: scaleY(1); }

.al-card--soon {
  background: rgba(255,255,255,0.01);
  opacity: 0.65;
}

.al-card--soon:hover { opacity: 0.9; }

/* Card icon */
.al-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-md);
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.al-card:hover .al-card-icon {
  background: rgba(200,169,110,0.15);
  border-color: rgba(200,169,110,0.35);
}

/* Card text */
.al-card-title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.3;
}

.al-card-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  flex-grow: 1;
}

/* Bottom CTA row */
.audiolink-cta-row {
  margin-top: clamp(48px, 7vw, 72px);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.audiolink-cta-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

/* Gold outline button variant */
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s, color 0.3s;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .model-specs { grid-template-columns: 1fr; gap: 1rem; }
  .audiolink-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .model-layout { grid-template-columns: 1fr; }
  .model-visual { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
  .service-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr; }
  .audiolink-grid { grid-template-columns: 1fr; }
  .audiolink-cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: fit-content; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Hide inline hotspot cards on mobile — bottom sheet takes over */
  .hotspot-card { display: none !important; }
}

/* ══════════════════════════════════════════════
   HOTSPOT MOBILE BOTTOM SHEET
   ══════════════════════════════════════════════ */
.hs-sheet {
  display: none; /* only shown on mobile via JS */
}

@media (max-width: 640px) {
  .hs-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 8000;
    pointer-events: none;
  }
  .hs-sheet.is-open {
    pointer-events: all;
  }

  .hs-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 8, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .hs-sheet.is-open .hs-sheet-backdrop {
    opacity: 1;
  }

  .hs-sheet-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 1.75rem 1.5rem 2.5rem;
    box-shadow: 0 -8px 40px rgba(10,9,8,0.15);
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hs-sheet.is-open .hs-sheet-panel {
    transform: translateY(0);
  }

  /* Drag handle */
  .hs-sheet-panel::before {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: var(--warm-gray);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
  }

  .hs-sheet-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--text);
  }

  /* Reuse hotspot card styles inside sheet */
  .hs-sheet-body .hc-number {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .hs-sheet-body .hc-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.75rem;
  }
  .hs-sheet-body .hc-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
  }
  .hs-sheet-body .hc-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    background: rgba(200,169,110,0.1);
    border: 1px solid rgba(200,169,110,0.25);
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
  }
}

/* ══════════════════════════════════════════════
   MARQUEE TICKER
   ══════════════════════════════════════════════ */
.marquee-wrap {
  background: var(--off-white);
  border-top: 1px solid var(--warm-gray);
  border-bottom: 1px solid var(--warm-gray);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-dot {
  color: var(--gold) !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

/* ══════════════════════════════════════════════
   GRAIN TEXTURE OVERLAY
   ══════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ══════════════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* Selection */
::selection { background: rgba(200,169,110,0.25); color: var(--text); }

/* ══════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.95);
  cursor: zoom-out;
}
.lightbox-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease-out);
}
.lightbox.is-open .lightbox-img {
  transform: scale(1);
}
.lightbox-caption {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.15);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* Gallery items show cursor hint */
.gallery-item { cursor: zoom-in; }

/* ══════════════════════════════════════════════
   CURSOR — hide on touch / mobile
   ══════════════════════════════════════════════ */
@media (hover: none), (max-width: 768px) {
  .cursor { display: none !important; }
}

/* ══════════════════════════════════════════════
   EMAIL REVEAL
   ══════════════════════════════════════════════ */
.email-reveal {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.email-reveal-text {
  text-decoration: underline;
  text-decoration-color: rgba(200,169,110,0.4);
  text-underline-offset: 3px;
}
.footer-email-reveal {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-email-reveal:hover { color: var(--white); }

/* ══════════════════════════════════════════════
   FOOTER LEGAL LINKS
   ══════════════════════════════════════════════ */
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.legal-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.2s;
  font-family: inherit;
  letter-spacing: 0.03em;
}
.legal-link:hover { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════════
   LEGAL MODAL
   ══════════════════════════════════════════════ */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.legal-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0.7);
  cursor: pointer;
}
.legal-modal-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(560px, 100vw);
  background: var(--white);
  overflow-y: auto;
  padding: 3rem 2.5rem 4rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.legal-modal.is-open .legal-modal-panel {
  transform: translateX(0);
}
.legal-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--text);
  border: 1px solid var(--warm-gray);
  margin-bottom: 1rem;
  z-index: 2;
  transition: background 0.2s;
}
.legal-modal-close:hover { background: var(--warm-gray); }
.legal-modal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  clear: both;
}
.legal-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin: 2rem 0 0.5rem;
}
.legal-modal-body p, .legal-modal-body li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.legal-modal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-modal-body a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.legal-modal-body .legal-placeholder {
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  color: var(--gold-dark);
}

/* ══════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9200;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem var(--gutter);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  min-width: 200px;
}
.cookie-policy-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: var(--gold-light);
  text-decoration: underline;
  cursor: pointer;
}
.btn-cookie-accept {
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-cookie-accept:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════
   ON-SCROLL TEXT HIGHLIGHT
   ═══════════════════════════════════════════════════════ */
.txt-hl {
  background-color: transparent;
  background-image: linear-gradient(
    to right,
    rgba(200, 169, 110, 0.38) 0%,
    rgba(200, 169, 110, 0.38) 100%
  );
  background-size: 0% 88%;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 3px;
  padding: 0 3px;
  /* remove default mark styles */
  color: inherit;
  transition: background-size 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.txt-hl.is-active {
  background-size: 100% 88%;
}

/* On dark sections (AudioLink) use a brighter version */
.txt-hl--dark {
  background-image: linear-gradient(
    to right,
    rgba(200, 169, 110, 0.55) 0%,
    rgba(200, 169, 110, 0.55) 100%
  );
}

/* ══════════════════════════════════════════════
   PRICE CALCULATOR
   ══════════════════════════════════════════════ */
.calculator {
  background: var(--off-white);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.calc-intro {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.calc-intro strong { color: var(--text); font-weight: 500; }

/* ── Layout ─────────────────────────────────── */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

/* ── Config column ──────────────────────────── */
.calc-config {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Step card ──────────────────────────────── */
.calc-step {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.875rem);
  transition: box-shadow 0.3s var(--ease-out);
}
.calc-step:hover {
  box-shadow: 0 4px 24px rgba(26,23,20,0.06);
}

.calc-step-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.375rem;
}
.calc-step-num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  min-width: 1.5rem;
}
.calc-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

/* ── Model toggle ───────────────────────────── */
.calc-model-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.calc-model-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1.25rem 1.375rem;
  background: var(--off-white);
  border: 1.5px solid var(--warm-gray);
  border-radius: var(--radius-md);
  cursor: none;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  text-align: left;
  width: 100%;
}
.calc-model-btn:hover {
  border-color: var(--gold);
}
.calc-model-btn.is-active {
  background: rgba(200,169,110,0.07);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.model-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}
.model-tags {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.model-price {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-top: 0.5rem;
}

/* ── Day slider ─────────────────────────────── */
.calc-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.calc-slider-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.calc-slider-unit {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Custom range slider */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: none;
  background: linear-gradient(
    to right,
    var(--gold) 0%,
    var(--gold) var(--fill-pct, 0%),
    var(--mid-gray) var(--fill-pct, 0%),
    var(--mid-gray) 100%
  );
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  cursor: none;
  box-shadow: 0 2px 10px rgba(200,169,110,0.35);
  transition: transform 0.15s var(--ease-spring), box-shadow 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover,
.calc-slider:active::-webkit-slider-thumb {
  transform: scale(1.2);
  box-shadow: 0 4px 18px rgba(200,169,110,0.45);
}
.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  cursor: none;
  box-shadow: 0 2px 10px rgba(200,169,110,0.35);
}
.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
}
.calc-slider-ticks span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1;
}

/* ── Option checkboxes ──────────────────────── */
.calc-options {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.calc-option-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: var(--off-white);
  border: 1.5px solid var(--warm-gray);
  border-radius: var(--radius-md);
  cursor: none;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
  user-select: none;
}
.calc-option-item:hover { border-color: var(--gold); }
.calc-option-item.is-checked {
  background: rgba(200,169,110,0.05);
  border-color: var(--gold);
}

.calc-option-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.calc-checkbox-custom {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.is-checked .calc-checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}
.calc-checkbox-custom svg {
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s var(--ease-spring), transform 0.2s var(--ease-spring);
}
.is-checked .calc-checkbox-custom svg {
  opacity: 1;
  transform: scale(1);
}

.calc-option-info {
  flex: 1;
  min-width: 0;
}
.calc-option-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.calc-option-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.45;
}
.calc-option-price {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-dark);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.calc-option-price.is-enquiry {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
}

/* Episode counter */
.calc-episode-counter {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--warm-gray);
}
.is-checked .calc-episode-counter { display: flex; }
.calc-ep-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.calc-ep-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(200,169,110,0.06);
}
.calc-ep-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  min-width: 1.25rem;
  text-align: center;
}
.calc-ep-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── Summary sidebar ────────────────────────── */
.calc-summary {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.calc-summary-inner {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 2px 24px rgba(26,23,20,0.05);
}
.calc-summary-header {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--warm-gray);
}
.calc-summary-label {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 400;
  color: var(--text);
}
.calc-summary-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Breakdown lines */
.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 50px;
}
.calc-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  animation: calcLineFadeIn 0.25s var(--ease-out) both;
}
@keyframes calcLineFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.calc-line-label { flex: 1; line-height: 1.45; }
.calc-line-price {
  white-space: nowrap;
  font-weight: 500;
  color: var(--text);
  flex-shrink: 0;
}
.calc-line-price.is-enquiry {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
}

.calc-divider {
  height: 1px;
  background: var(--warm-gray);
}

/* Total */
.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.calc-total-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.calc-total-price {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  transition: color 0.2s;
}

/* Disclaimer box */
.calc-disclaimer {
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}
.calc-disclaimer svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.1rem;
}
.calc-disclaimer p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.calc-disclaimer strong { color: var(--text); }

/* CTA */
.calc-cta {
  width: 100%;
  justify-content: center;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .calc-layout {
    grid-template-columns: 1fr 340px;
  }
}

@media (max-width: 860px) {
  .calc-layout {
    grid-template-columns: 1fr;
  }
  .calc-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 560px) {
  .calc-model-toggle {
    grid-template-columns: 1fr;
  }
  .calc-option-item {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .calc-option-price {
    flex-basis: 100%;
    text-align: left;
    padding-left: calc(22px + 1rem);
  }
}
