/* ============================================================
   SON ÉMOTION — Design System
   Style : Dark OLED · Liquid Glass · Bodoni Moda + Jost
   ============================================================ */

:root {
  --bg:           #050403;
  --bg-2:         #0b0908;
  --surface:      rgba(255, 255, 255, 0.04);
  --surface-2:    rgba(255, 255, 255, 0.07);
  --surface-3:    rgba(255, 255, 255, 0.11);
  --text:         #F5EFE8;
  --muted:        #8A7A6E;
  --muted-2:      #BFB0A0;
  --gold:         #C9A84C;
  --gold-lt:      #EAC96C;
  --gold-soft:    rgba(201, 168, 76, 0.12);
  --gold-glow:    rgba(201, 168, 76, 0.22);
  --border:       rgba(255, 255, 255, 0.07);
  --border-gold:  rgba(201, 168, 76, 0.28);
  --shadow:       0 32px 80px rgba(0, 0, 0, 0.55);
  --shadow-gold:  0 8px 32px rgba(201, 168, 76, 0.18);
  --radius:       28px;
  --radius-sm:    16px;
  --radius-pill:  999px;
  --py:           6rem;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; outline: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Background ambient glow ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 45% at 50% -5%, rgba(201,168,76,.09) 0%, transparent 60%),
    radial-gradient(ellipse 55% 35% at 85% 80%, rgba(201,168,76,.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Bodoni Moda', Georgia, serif;
  line-height: 1.1;
  font-weight: 600;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; }
h3 { font-size: 1.15rem; }
em { font-style: italic; color: var(--gold-lt); }
p  { line-height: 1.75; color: var(--muted-2); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}
.section { padding: var(--py) 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-subtitle {
  max-width: 46rem;
  margin: 0 auto;
}

/* ── Eyebrow ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  margin-bottom: 1.25rem;
}

/* ── Utility ────────────────────────────────────────────────── */
.hidden { display: none; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: var(--radius-pill);
  padding: .875rem 1.75rem;
  font-size: .95rem;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-large { padding: 1.1rem 2.2rem; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, #C9A84C 0%, #EAC96C 50%, #C9A84C 100%);
  background-size: 200% 100%;
  color: #120F04;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 12px 40px rgba(201,168,76,.38);
}

.btn-glass {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  color: var(--text);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,.13); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--text);
}
.btn-outline:hover { background: var(--gold-soft); border-color: var(--gold); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted-2);
}
.btn-ghost:hover { color: var(--text); background: var(--surface-2); }

.btn-gold {
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold-lt);
}
.btn-gold:hover { background: rgba(201,168,76,.2); }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal, .reveal-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal-child { transition-delay: var(--delay, 0ms); }
.is-visible { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-child { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 2rem));
  z-index: 50;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .75rem 1rem .75rem 1.25rem;
  background: rgba(5,4,3,.85);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled .nav-container {
  background: rgba(5,4,3,.97);
  box-shadow: 0 4px 40px rgba(0,0,0,.55);
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-img { width: 36px; height: auto; display: block; }
.brand-name {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted-2);
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: var(--radius-pill);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }

.nav-actions { display: flex; gap: .6rem; align-items: center; flex-shrink: 0; }
.nav-actions .btn { padding: .6rem 1.25rem; font-size: .85rem; }

.menu-toggle {
  display: none;
  color: var(--text);
  padding: .5rem;
  border-radius: 10px;
  transition: background .2s;
}
.menu-toggle:hover { background: var(--surface-2); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .4rem;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(5,4,3,.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  margin-top: .5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
}
.mobile-menu.open { display: flex; }

.mobile-link {
  color: var(--muted-2);
  font-size: .975rem;
  font-weight: 500;
  padding: .75rem .5rem;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link:hover { color: var(--text); }
.mobile-order-nav { margin-top: .5rem; width: 100%; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(201,168,76,.11) 0%, transparent 70%);
  filter: blur(60px);
}

.waveform-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  overflow: hidden;
  opacity: .14;
}
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 100%;
  padding: 0 2rem;
  justify-content: center;
}
.waveform-bar {
  flex: 0 0 4px;
  background: linear-gradient(to top, var(--gold), transparent);
  border-radius: 4px 4px 0 0;
  will-change: transform;
  animation: wave-anim var(--dur, 1.5s) ease-in-out var(--del, 0s) infinite alternate;
}
@keyframes wave-anim {
  from { transform: scaleY(.3); }
  to   { transform: scaleY(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--muted-2);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 2rem;
  padding: .5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dot-pulse 2s ease infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}

.hero-title { margin-bottom: 1.75rem; letter-spacing: -.01em; }

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  color: var(--muted-2);
  font-weight: 500;
}
.badge svg { color: var(--gold); flex-shrink: 0; }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .5rem 3rem;
  text-align: center;
}
.stat-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-label {
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .1em;
  font-weight: 500;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   PROBLEM SECTION
   ════════════════════════════════════════════════════════════ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.split-text h2 { margin-bottom: 1.5rem; }
.body-text { font-size: 1.05rem; line-height: 1.85; }

.feature-list { display: grid; gap: 1.25rem; }
.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, background .2s;
  cursor: default;
}
.feature-item:hover {
  border-color: var(--border-gold);
  background: var(--surface-2);
}
.feature-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-item h3 {
  font-family: 'Jost', sans-serif;
  font-size: .975rem;
  margin-bottom: .4rem;
  color: var(--text);
}
.feature-item p { font-size: .875rem; margin: 0; }

/* ════════════════════════════════════════════════════════════
   OFFERS
   ════════════════════════════════════════════════════════════ */
.section-offers { background: rgba(255,255,255,.01); }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: default;
}
.offer-card:hover {
  border-color: rgba(255,255,255,.14);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.offer-featured {
  background: linear-gradient(160deg, rgba(201,168,76,.1) 0%, rgba(255,255,255,.04) 100%);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.offer-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(201,168,76,.22);
}
.offer-enterprise {
  background: linear-gradient(160deg, rgba(255,255,255,.06) 0%, var(--surface) 100%);
}

.offer-badge {
  position: absolute;
  top: -.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #120F04;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.offer-top { margin-bottom: 1.5rem; }
.offer-tier {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: .7rem;
}
.offer-price { display: flex; align-items: baseline; gap: .35rem; flex-wrap: wrap; }
.price-amount {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.price-unit { font-size: .78rem; color: var(--muted); font-weight: 500; }

.offer-features {
  flex: 1;
  display: grid;
  gap: .75rem;
  margin-bottom: 2rem;
}
.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  color: var(--muted-2);
  line-height: 1.5;
}
.chk {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.offer-btn { width: 100%; margin-top: auto; }

/* ════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════ */
.section-process {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold), transparent);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem;
  color: var(--gold-lt);
  font-weight: 600;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--bg), 0 0 20px rgba(201,168,76,.1);
}
.step-body h3 {
  font-family: 'Jost', sans-serif;
  font-size: .975rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.step-body p { font-size: .84rem; color: var(--muted); }

.process-cta { text-align: center; margin-top: 4rem; }

/* ════════════════════════════════════════════════════════════
   OCCASIONS
   ════════════════════════════════════════════════════════════ */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.occasion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 2rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: default;
  transition: border-color .2s, background .2s, transform .2s;
  min-height: 116px;
}
.occasion-card:hover {
  border-color: var(--border-gold);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.occ-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  color: var(--gold);
}
.occasion-card span {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}

/* ════════════════════════════════════════════════════════════
   STYLES MUSICAUX
   ════════════════════════════════════════════════════════════ */
.section-styles { background: rgba(255,255,255,.01); }

.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.style-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  cursor: default;
  transition: border-color .2s, background .2s, transform .2s;
  overflow: hidden;
}
.style-card:hover {
  border-color: var(--border-gold);
  background: var(--gold-soft);
  transform: translateY(-3px);
}
.style-card:hover .style-bars span { animation-play-state: running; }

.style-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin-bottom: .25rem;
}
.style-bars span {
  flex: 1;
  background: linear-gradient(to top, var(--gold), var(--gold-lt));
  border-radius: 3px;
  opacity: .7;
  will-change: transform;
  animation: style-bar .8s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.style-bars span:nth-child(1) { height: 38%; animation-delay: 0s; }
.style-bars span:nth-child(2) { height: 78%; animation-delay: .1s; }
.style-bars span:nth-child(3) { height: 55%; animation-delay: .2s; }
.style-bars span:nth-child(4) { height: 92%; animation-delay: .15s; }
.style-bars span:nth-child(5) { height: 45%; animation-delay: .05s; }

@keyframes style-bar {
  from { transform: scaleY(.35); }
  to   { transform: scaleY(1); }
}

.style-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.style-mood {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .04em;
}

/* ════════════════════════════════════════════════════════════
   DEMOS
   ════════════════════════════════════════════════════════════ */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color .2s, transform .2s;
  cursor: default;
}
.demo-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }

.demo-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 48px;
}
.demo-waveform span {
  flex: 1;
  background: rgba(201,168,76,.22);
  border-radius: 3px;
  transition: background .3s;
}
.demo-waveform span:nth-child(odd)  { height: 38%; }
.demo-waveform span:nth-child(even) { height: 62%; }
.demo-waveform span:nth-child(3n)   { height: 82%; }
.demo-waveform span:nth-child(4n)   { height: 48%; }
.demo-waveform span:nth-child(7)    { height: 100%; }
.demo-waveform span:nth-child(12)   { height: 70%; }

.demo-card.is-playing .demo-waveform span {
  background: rgba(201,168,76,.7);
  will-change: transform;
  animation: demo-bar .45s ease-in-out var(--i, 0ms) infinite alternate;
}
@keyframes demo-bar {
  from { transform: scaleY(.4); }
  to   { transform: scaleY(1); }
}

.demo-meta { flex: 1; }
.demo-genre {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: .45rem;
}
.demo-meta h3 { font-size: 1.1rem; }

.demo-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.demo-play-btn:hover { background: rgba(201,168,76,.22); transform: scale(1.08); }

.demo-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .83rem;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.section-testi { background: rgba(255,255,255,.01); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .2s, transform .2s;
  cursor: default;
}
.testi-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }

.stars { display: flex; gap: 3px; }

blockquote {
  font-size: .975rem;
  line-height: 1.8;
  color: var(--muted-2);
  font-style: italic;
  flex: 1;
  border: none;
  padding: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}
.author-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: .875rem;
  color: var(--text);
  font-family: 'Jost', sans-serif;
}
.testi-author span { font-size: .76rem; color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.section-faq { }
.faq-wrap { max-width: 800px; }
.faq-header { text-align: left; }
.faq-list { display: grid; gap: .7rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover    { border-color: rgba(255,255,255,.12); }
.faq-item.faq-open { border-color: var(--border-gold); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  text-align: left;
  color: var(--text);
  font-size: .975rem;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.faq-chev {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform .3s ease;
}
.faq-item.faq-open .faq-chev { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.faq-open .faq-body { max-height: 220px; }
.faq-body p {
  padding: 0 1.6rem 1.3rem;
  font-size: .925rem;
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   PARTNERS MARQUEE
   ════════════════════════════════════════════════════════════ */
.partners-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.01);
}
.partners-label {
  text-align: center;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.marquee-viewport {
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 20s linear infinite;
  padding: .4rem 0;
}
.marquee-track span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted-2);
  white-space: nowrap;
  letter-spacing: .05em;
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-viewport:hover .marquee-track { animation-play-state: paused; }

/* ════════════════════════════════════════════════════════════
   LOCATION
   ════════════════════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 4.5rem;
  align-items: center;
}
.location-text h2 { margin-bottom: 1.25rem; }
.location-text p  { margin-bottom: 2rem; }

.contact-rows { display: grid; gap: .75rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .925rem;
  color: var(--muted-2);
}
.contact-row svg { color: var(--gold); flex-shrink: 0; }
.contact-row a { color: var(--muted-2); transition: color .2s; }
.contact-row a:hover { color: var(--gold-lt); }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.location-map {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(.75) contrast(1.05);
}

/* ════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════ */
.section-final { }
.final-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: 36px;
  padding: 5.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.final-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.final-box h2 { margin-bottom: 1rem; }
.final-box > p { max-width: 50ch; margin: 0 auto 2.5rem; }

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.final-reassure {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
}
.final-reassure svg { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   MOBILE ACTION BAR
   ════════════════════════════════════════════════════════════ */
.mobile-action-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .85rem 1.25rem calc(.85rem + env(safe-area-inset-bottom));
  background: rgba(5,4,3,.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 40;
}
.mobile-action-bar .btn { width: 100%; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2.5rem;
}
.footer-inner {
  display: grid;
  gap: 1.75rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
}
.footer-logo { width: 30px; opacity: .65; }
.footer-name {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--gold);
  margin: 0;
}
.footer-tagline { font-size: .78rem; color: var(--muted); margin: .15rem 0 0; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 2rem;
}
.footer-nav a {
  font-size: .85rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--text); }

.footer-legal,
.footer-copy {
  font-size: .76rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 70;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: rgba(8,7,5,.98);
  border: 1px solid var(--border-gold);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem;
  width: min(520px, 100%);
  text-align: center;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--surface-3); color: var(--text); }

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.modal-card h2 { font-size: 1.75rem; margin-bottom: .75rem; }
.modal-card p  { max-width: 40ch; margin: 0 auto; }
.modal-actions { margin-top: 2rem; }
.modal-actions .btn { min-width: 200px; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 1080px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  :root { --py: 5rem; }
  .offers-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-timeline::before { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: 1.25rem; align-items: flex-start; }
  .step-num { margin-bottom: 0; }
  .styles-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --py: 4rem; }

  .nav-links, .nav-actions .nav-reserve { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 7rem 0 4rem; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }

  .stats-grid { gap: 1rem; }
  .stat-item  { padding: .5rem 1.5rem; }
  .stat-divider { display: none; }

  .split-grid { grid-template-columns: 1fr; gap: 3rem; }

  .offers-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .process-timeline { grid-template-columns: 1fr; gap: 1.5rem; }

  .occasions-grid { grid-template-columns: repeat(2, 1fr); }

  .styles-grid  { grid-template-columns: repeat(2, 1fr); }
  .demo-grid    { grid-template-columns: 1fr; }
  .testi-grid   { grid-template-columns: 1fr; }

  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .final-box { padding: 3.5rem 1.75rem; border-radius: 28px; }

  .section-header { margin-bottom: 2.75rem; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { width: calc(100% - 2rem); }
  .hero-cta, .final-actions { flex-direction: column; }
  .hero-cta .btn, .final-actions .btn { width: 100%; justify-content: center; }
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 5rem; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
}
