/* ============================================================
   LE 33 TOURS — Design System Tokens & Custom Styles
   Architecture: Primitive → Semantic → Component
   ============================================================ */

/* --- LAYER 1: PRIMITIVES --- */
:root {
  /* Colors */
  --color-ink-950: #110F0D;
  --color-ink-900: #1E1B18;
  --color-ink-850: #252220;
  --color-bone-100: #D4CFC5;
  --color-bone-200: #B8B3A9;
  --color-groove-muted: #928D87;
  --color-groove-muted-elevated: #9C9790;
  --color-amber-500: #C47A2E;
  --color-amber-600: #A8652A;
  --color-amber-400: #D48E45;
  --color-gold-500: #B8993B;
  --color-gold-400: #CBAD52;
  --color-groove-800: #2A2622;
  --color-groove-700: #353028;
  --color-brick-600: #A83E2E;

  /* Spacing (4px scale) */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-6: 24px; --sp-8: 32px; --sp-12: 48px; --sp-16: 64px;
  --sp-24: 96px;

  /* Radii */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* --- LAYER 2: SEMANTIC --- */
  --bg-primary: var(--color-ink-950);
  --bg-elevated: var(--color-ink-900);
  --bg-elevated-hover: var(--color-ink-850);
  --text-primary: var(--color-bone-100);
  --text-secondary: var(--color-bone-200);
  --text-muted: var(--color-groove-muted);
  --text-muted-elevated: var(--color-groove-muted-elevated);
  --accent-primary: var(--color-amber-500);
  --accent-primary-hover: var(--color-amber-600);
  --accent-primary-light: var(--color-amber-400);
  --accent-secondary: var(--color-gold-500);
  --accent-secondary-light: var(--color-gold-400);
  --border-default: var(--color-groove-800);
  --border-focus: var(--color-gold-500);
  --surface-groove: var(--color-groove-800);
  --danger: var(--color-brick-600);

  /* --- LAYER 3: COMPONENT --- */
  --button-primary-bg: var(--accent-primary);
  --button-primary-hover: var(--accent-primary-hover);
  --button-primary-text: var(--color-ink-950);
  --card-bg: var(--bg-elevated);
  --card-border: var(--border-default);
  --input-bg: var(--bg-primary);
  --input-border: var(--border-default);
  --input-focus: var(--border-focus);
  --nav-bg: rgba(17, 15, 13, 0.92);
}

/* --- BASE --- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--surface-groove); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--sp-2);
  z-index: 9999;
  padding: 10px 20px;
  background: var(--accent-primary);
  color: var(--bg-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
}
.skip-link:focus {
  left: var(--sp-4);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent-secondary);
  outline-offset: 2px;
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 38, 34, 0.5);
  transition: transform 0.4s ease, background 0.3s ease;
}

.nav.hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-logo:hover { color: var(--accent-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--button-primary-hover);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}

.vinyl-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  position: relative;
  transition: transform 0.6s ease, border-color 0.3s ease;
}
.vinyl-icon::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.nav-toggle.active .vinyl-icon {
  transform: rotate(180deg);
  border-color: var(--accent-primary);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  padding: var(--sp-12) var(--sp-6);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border-default);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-menu a:hover {
  color: var(--accent-primary);
  padding-left: var(--sp-4);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; pointer-events: none; }
  .mobile-menu.open { pointer-events: auto; }
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--sp-24) var(--sp-6);
}

.hero-sillons {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140vmax;
  height: 140vmax;
  opacity: 0.12;
  animation: spin-sillon 33s linear infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-sillons { animation: none; }
  .scroll-indicator { animation: none; }
  .sillon-separator svg { animation: none; }
}

@keyframes spin-sillon {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 12vw, 140px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin: 0 0 var(--sp-6);
  color: var(--text-primary);
}

.hero-subtitle {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-12);
}

.hero-cta {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 16px 40px;
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.hero-cta:hover {
  background: var(--button-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 122, 46, 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float-down 2.5s ease-in-out infinite;
}

@keyframes float-down {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

.tonearm {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-muted), var(--accent-primary));
  border-radius: 1px;
  position: relative;
}
.tonearm::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
}

/* --- SILLON SEPARATORS --- */
.sillon-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: var(--sp-4) 0;
}
.sillon-separator svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- ARTISTES --- */
.section-artistes {
  background: var(--bg-elevated);
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.section-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-6) var(--sp-12);
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin: 0 0 var(--sp-3);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin: 0;
  color: var(--text-primary);
}

.artistes-track {
  display: flex;
  gap: var(--sp-6);
  padding: 0 var(--sp-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.artistes-track::-webkit-scrollbar { display: none; }
.artistes-track:active { cursor: grabbing; }

.artiste-card {
  flex: 0 0 280px;
  aspect-ratio: 1;
  scroll-snap-align: start;
  perspective: 800px;
}

.artiste-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}
.artiste-card:hover .artiste-card-inner,
.artiste-card.flipped .artiste-card-inner {
  transform: rotateY(180deg);
}

.artiste-card.no-flip:hover .artiste-card-inner,
.artiste-card.no-flip.flipped .artiste-card-inner {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .artiste-card:hover .artiste-card-inner,
  .artiste-card.flipped .artiste-card-inner {
    transform: none;
  }
}

.artiste-front, .artiste-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.artiste-front {
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
  border: 1px solid var(--border-default);
}

.artiste-front .artiste-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: grayscale(40%);
  transition: filter 0.5s ease;
}
.artiste-card:hover .artiste-avatar { filter: grayscale(0%); }

.artiste-front .artiste-info {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(17, 15, 13, 0.95) 0%, transparent 100%);
  margin: calc(var(--sp-6) * -1);
  padding: var(--sp-12) var(--sp-6) var(--sp-6);
}

.artiste-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 var(--sp-2);
  color: var(--text-primary);
}

.artiste-style {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--accent-primary);
  letter-spacing: 0.05em;
}

.artiste-back {
  transform: rotateY(180deg);
  background: var(--bg-primary);
  border: 1px solid var(--border-default);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
}
.artiste-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- PORTFOLIO --- */
.section-portfolio {
  background: var(--bg-primary);
  padding: var(--sp-24) 0;
}

.portfolio-filters {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-6) var(--sp-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  padding: 8px 16px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: rgba(196, 122, 46, 0.08);
}

.portfolio-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  columns: 3;
  column-gap: var(--sp-4);
}

@media (max-width: 1024px) { .portfolio-grid { columns: 2; } }
@media (max-width: 640px) { .portfolio-grid { columns: 1; } }

.portfolio-item {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.portfolio-item:hover img {
  filter: grayscale(0%);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 15, 13, 0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay .po-artist {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}
.portfolio-overlay .po-style {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--accent-primary);
  margin-top: var(--sp-1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17, 15, 13, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--border-default);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}
.lightbox-close:hover { border-color: var(--accent-primary); }

.lightbox-info {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.lightbox-info .li-artist {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}
.lightbox-info .li-style {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

/* --- LE STUDIO --- */
.section-studio {
  background: var(--bg-elevated);
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.studio-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-12);
  align-items: center;
}

@media (max-width: 768px) {
  .studio-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

.studio-text .studio-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin: 0 0 var(--sp-3);
}

.studio-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 var(--sp-6);
}

.studio-text p {
  color: var(--text-secondary);
  margin: 0 0 var(--sp-6);
  max-width: 480px;
}

.studio-quote {
  border-left: 2px solid var(--accent-secondary);
  padding-left: var(--sp-6);
  margin: var(--sp-8) 0;
  font-style: italic;
  color: var(--text-muted);
}
.studio-quote cite {
  display: block;
  margin-top: var(--sp-2);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-style: normal;
  color: var(--accent-secondary);
}

.studio-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.badge {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  padding: 6px 14px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  white-space: nowrap;
}

.studio-image {
  position: relative;
}

.studio-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

@media (min-width: 769px) {
  .studio-image {
    margin-right: -48px;
  }
  .studio-image img {
    height: 600px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
  }
}

/* --- MERCH --- */
.section-merch {
  background: var(--bg-primary);
  padding: var(--sp-16) 0;
  overflow: hidden;
}

.merch-track {
  display: flex;
  gap: var(--sp-6);
  padding: 0 var(--sp-6);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.merch-track::-webkit-scrollbar { display: none; }

.merch-item {
  flex: 0 0 240px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.merch-item:nth-child(even) { transform: rotate(1.5deg); }
.merch-item:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.merch-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface-groove);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--text-muted);
}
.merch-img > span {
  opacity: 0.3;
}

.merch-info {
  padding: var(--sp-4);
}
.merch-info h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 var(--sp-1);
}
.merch-info .merch-price {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--accent-secondary);
}

/* --- BOOKING --- */
.section-booking {
  background: var(--bg-elevated);
  padding: var(--sp-24) var(--sp-6);
}

.booking-inner {
  max-width: 720px;
  margin: 0 auto;
}

.booking-steps {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}

.step-indicator {
  flex: 1;
  height: 3px;
  background: var(--border-default);
  border-radius: 2px;
  transition: background 0.4s ease;
}
.step-indicator.active {
  background: var(--accent-primary);
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group {
  margin-bottom: var(--sp-6);
}

.form-group label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(184, 153, 59, 0.15);
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%237D7771'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.btn-prev {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.btn-prev:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.btn-next, .btn-submit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 32px;
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-left: auto;
}
.btn-next:hover, .btn-submit:hover {
  background: var(--button-primary-hover);
  transform: translateY(-1px);
}

.booking-alt {
  text-align: center;
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-default);
}
.booking-alt p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 var(--sp-3);
}
.booking-alt a {
  color: var(--accent-primary);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  transition: color 0.3s ease;
}
.booking-alt a:hover { color: var(--accent-primary-light); }

.booking-hours {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--sp-4);
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-primary);
  padding: var(--sp-16) var(--sp-6) var(--sp-8);
  border-top: 1px solid var(--border-default);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-8);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 var(--sp-4);
}
.footer-col p, .footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--accent-primary); }

.footer-socials {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}
.footer-socials a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-default);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-socials a:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.footer-map {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  overflow: hidden;
  background: var(--surface-groove);
  margin-top: var(--sp-4);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(0.9) brightness(0.7);
}

.footer-bottom {
  max-width: 1400px;
  margin: var(--sp-12) auto 0;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-default);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.footer-sillon-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: var(--sp-8);
  opacity: 0.15;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- RATING STARS --- */
.stars {
  color: var(--accent-secondary);
  font-size: 14px;
  letter-spacing: 2px;
}

/* --- RIPPLE (signature micro-interaction) --- */
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-secondary);
  pointer-events: none;
  animation: ripple-expand 0.8s ease-out forwards;
}

@keyframes ripple-expand {
  0% { width: 0; height: 0; opacity: 0.6; }
  100% { width: 120px; height: 120px; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ripple-circle { display: none; }
}
