@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --violet:       #6B4BAE;
  --violet-deep:  #1A0640;
  --violet-mid:   #3D1878;
  --violet-glow:  rgba(107,75,174,0.35);
  --gold:         #C4922A;
  --gold-light:   #E0B040;
  --gold-pale:    rgba(196,146,42,0.12);
  --bg:           #FDFCFF;
  --bg-soft:      #F5F1FF;
  --text:         #160538;
  --text-muted:   #7060A0;
  --border:       rgba(107,75,174,0.12);
  --font:         'Outfit', sans-serif;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:        76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; align-items: center; justify-content: center;
}
.pre-panel {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: var(--violet-deep);
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.pre-panel--l { left: 0; }
.pre-panel--r { right: 0; }
.pre-center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.pre-logo-img {
  width: 320px; filter: brightness(0) invert(1);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s var(--ease);
}
.pre-line {
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.9s cubic-bezier(0.16,1,0.3,1) 0.25s;
  opacity: 0.7;
}
.preloader.ready .pre-logo-img { opacity: 1; transform: translateY(0); }
.preloader.ready .pre-line { width: 80px; }
.preloader.open .pre-panel--l { transform: translateX(-101%); }
.preloader.open .pre-panel--r { transform: translateX(101%); }
.preloader.gone { display: none; }

/* ── CURSOR ── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
  mix-blend-mode: exclusion;
}
.cursor.big { width: 70px; height: 70px; background: rgba(196,146,42,0.18); border: 1px solid var(--gold); }
@media (hover: none) { .cursor { display: none; } }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.35s var(--ease);
}
#nav.scrolled {
  background: rgba(253,252,255,0.92);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 clamp(1.5rem,4vw,3.5rem);
}
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
/* Nav blanc (homepage) */
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--violet); }

/* ── Dropdown ── */
.nav-has-sub { position: relative; }
.nav-has-sub > a { display: flex; align-items: center; gap: 0.3rem; cursor: default; }
.nav-has-sub > a svg { transition: transform 0.2s; }
.nav-has-sub:hover > a svg { transform: rotate(180deg); }
.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(107,75,174,0.12);
  border-radius: 14px;
  padding: 0.5rem 0;
  padding-top: 0.75rem;
  margin-top: 0;
  min-width: 210px;
  box-shadow: 0 12px 32px rgba(107,75,174,0.13);
  z-index: 200;
  list-style: none;
}
.nav-has-sub:hover .nav-sub { display: block; }
.nav-sub li a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-sub li a:hover { background: rgba(107,75,174,0.06); color: var(--violet); }
#nav.nav-dark .nav-sub { background: #1A0640; border-color: rgba(255,255,255,0.1); }
#nav.nav-dark .nav-sub li a { color: rgba(255,255,255,0.8); }
#nav.nav-dark .nav-sub li a:hover { background: rgba(255,255,255,0.06); color: #fff; }
#nav.scrolled .nav-sub,
#nav.nav-dark.scrolled .nav-sub { background: #fff; border-color: rgba(107,75,174,0.12); }
#nav.scrolled .nav-sub li a,
#nav.nav-dark.scrolled .nav-sub li a { color: var(--text); }
#nav.scrolled .nav-sub li a:hover,
#nav.nav-dark.scrolled .nav-sub li a:hover { background: rgba(107,75,174,0.06); color: var(--violet); }
#nav.scrolled .nav-links a { color: var(--text-muted); }
#nav.scrolled .nav-links a:hover { color: var(--violet); }
.nav-btn {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--violet);
  transition: all 0.22s var(--ease);
}
.nav-btn:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
#nav.scrolled .nav-btn { border-color: var(--border); color: var(--violet); }
#nav.scrolled .nav-btn:hover { background: var(--violet); color: #fff; border-color: var(--violet); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.25s; }

/* Bouton CTA dans la nav */
.nav-cta a {
  background: var(--gold);
  color: #1A0640 !important;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  transition: opacity 0.18s;
}
.nav-cta a:hover { opacity: 0.82; }
#nav.nav-dark .nav-cta a { background: var(--gold); color: #1A0640 !important; }
#nav.nav-dark.scrolled .nav-cta a { background: var(--gold); color: #1A0640 !important; }

/* Nav sombre (galerie, contact — hero violet) */
#nav.nav-dark .nav-links a { color: rgba(255,255,255,0.7); }
#nav.nav-dark .nav-links a:hover { color: #fff; }
#nav.nav-dark .nav-btn { border-color: rgba(255,255,255,0.35); color: #fff; }
#nav.nav-dark .nav-btn:hover { background: #fff; color: var(--violet-deep); border-color: #fff; }
#nav.nav-dark .nav-logo-img { filter: brightness(0) invert(1); }
#nav.nav-dark .nav-burger span { background: #fff; }
#nav.nav-dark.scrolled .nav-links a { color: var(--text-muted); }
#nav.nav-dark.scrolled .nav-links a:hover { color: var(--violet); }
#nav.nav-dark.scrolled .nav-btn { border-color: var(--border); color: var(--violet); }
#nav.nav-dark.scrolled .nav-logo-img { filter: none; }
#nav.nav-dark.scrolled .nav-burger span { background: var(--text); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--violet-deep);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-size: 2rem; font-weight: 800; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
/* .hero-bg remplacé par .hero-photo-reveal + .hero-dark-bg */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, var(--violet-deep) 0%, var(--violet-deep) 25%, rgba(26,6,64,0.88) 50%, rgba(26,6,64,0.2) 75%, transparent 100%),
    linear-gradient(to top, var(--violet-deep) 0%, transparent 40%);
}
/* Fond sombre permanent sous la photo */
.hero-dark-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 30% 60%, #2a0c5e 0%, var(--violet-deep) 60%, #060112 100%);
}

/* Photo révélée par clip-path cursor */
.hero-photo-reveal {
  position: absolute; inset: 0; z-index: 1;
  clip-path: circle(0px at 50% 50%);
  -webkit-clip-path: circle(0px at 50% 50%);
  will-change: clip-path;
}
.hero-photo-reveal img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 68% center;
  will-change: transform;
}
/* Mobile : photo toujours visible */
@media (hover: none) {
  .hero-dark-bg { opacity: 0; }
  .hero-photo-reveal {
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
}

/* Grain cinéma */
.hero-grain {
  position: absolute; inset: -80%;
  width: 260%; height: 260%;
  z-index: 5; pointer-events: none;
  background-size: 220px 220px;
  opacity: 1;
  animation: grain 0.55s steps(1) infinite;
}
@keyframes grain {
  0%   { transform: translate(0%,   0%); }
  20%  { transform: translate(-4%,  -8%); }
  40%  { transform: translate(-12%,  4%); }
  60%  { transform: translate(6%,  -20%); }
  80%  { transform: translate(-4%,  8%); }
  100% { transform: translate(2%,  -6%); }
}

.hero-light {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(1.5rem,5vw,5rem) clamp(4rem,8vh,7rem);
  max-width: 1100px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.hero-title { margin-bottom: 2rem; }
.line-wrap { overflow: hidden; display: block; }
.line-inner { display: block; will-change: transform; }
.hero-serif {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.hero-bold {
  font-size: clamp(3.75rem, 12vw, 11rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.86;
  letter-spacing: -0.045em;
}
.hero-gold-word {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gold-shine 4s linear infinite;
}
@keyframes gold-shine {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}
.hero-sub {
  overflow: hidden;
  margin-bottom: 2.75rem;
}
.hero-sub p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 46ch;
}
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: 3.5rem;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%,100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ── HERO BLANC — VINYLE ── */
.hero-white {
  background: var(--bg);
  justify-content: center;
  align-items: flex-start;
}
.hero-dj-img {
  position: absolute;
  top: var(--nav-h);
  right: 0;
  width: clamp(280px, 32vw, 500px);
  height: auto;
  z-index: 1;
  mask-image: linear-gradient(to left, black 30%, transparent 90%),
              linear-gradient(to top, transparent 0%, black 30%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to left, black 30%, transparent 90%),
                      linear-gradient(to top, transparent 0%, black 30%);
  -webkit-mask-composite: destination-in;
}
.hero-white .hero-content {
  padding-top: clamp(6.5rem, 13vh, 10rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
  width: 100%;
  max-width: none;
  z-index: 2;
  position: relative;
}
.hero-logo-big {
  margin-bottom: 2rem;
}
.hero-logo-big img {
  width: clamp(200px, 28vw, 360px);
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease);
}
.hero-logo-big img.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-white .hero-serif { color: var(--text-muted); }
.hero-white .hero-bold  { color: var(--text); }
.hero-white .hero-sub p { color: var(--text-muted); }
.hero-white .hero-scroll-line {
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.15));
}
.hero-white .hero-eyebrow-line { background: var(--gold); }

/* ── Hiérarchie hero : ligne 1 grande, ligne 2 label ── */
#heroL1 {
  font-size: clamp(3.75rem, 12vw, 11rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  padding-bottom: 0.12em;
}
#heroL2 {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.hero-white #heroL2 { color: var(--text-muted); }

/* EQ pleine hauteur — fond blanc, barres violettes visibles */
.hero-viz {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 58%;
  z-index: 1;
  pointer-events: none;
  display: block;
}
@media (max-width: 900px) { .hero-viz { opacity: 0.12; width: 100%; }  }

.hero-eq { display: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: 999px;
  font-size: 0.9375rem; font-weight: 700;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
  position: relative;
  will-change: transform;
}
.btn:active { transform: scale(0.96) !important; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--violet-deep);
  box-shadow: 0 4px 24px rgba(196,146,42,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(196,146,42,0.6);
}
.btn-white-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-violet {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 4px 20px var(--violet-glow);
}
.btn-violet:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--violet-glow);
  background: #7B5AC0;
}
.btn-ghost {
  background: transparent; color: var(--text-muted);
  padding: 0.75rem 0;
}
.btn-ghost:hover { color: var(--violet); }
.btn-ghost .arr { transition: transform 0.2s; display: inline-block; }
.btn-ghost:hover .arr { transform: translateX(5px); }

/* Magnetic wrapper */
.magnetic { display: inline-block; }

/* ── MARQUEE ── */
.marquee-section {
  overflow: hidden;
  background: var(--violet-deep);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex; align-items: center;
  padding: 0 2.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  gap: 2.5rem;
}
.marquee-sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
}

/* ── INTRO STATEMENT ── */
.intro {
  padding: clamp(5rem,10vw,9rem) 0;
  background: var(--bg);
}
.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem,4vw,3.5rem);
}
.intro-label {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.intro-label-line { width: 32px; height: 1px; background: var(--gold); }
.intro-label span {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.intro-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
}
.intro-text em {
  font-style: italic;
  color: var(--violet);
}
.intro-cta { margin-top: 3rem; }

/* ── SERVICES EDITORIAL ── */
.services { background: var(--bg-soft); }
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}
.svc-row--reverse { direction: rtl; }
.svc-row--reverse > * { direction: ltr; }
.svc-photo { overflow: hidden; position: relative; }
.svc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc-row:hover .svc-photo img { transform: scale(1.04); }
.svc-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem,6vw,6rem);
  background: var(--bg);
}
.svc-body--dark {
  background: var(--violet-deep);
}
.svc-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.svc-tag::before {
  content: ''; display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.svc-body h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text);
}
.svc-body--dark h3 { color: #fff; }
.svc-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2rem;
}
.svc-body--dark p { color: rgba(255,255,255,0.55); }

/* Services petites */
.svc-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.svc-mini {
  padding: 2.5rem 2.5rem 2.75rem;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.svc-mini:last-child { border-right: none; }
.svc-mini:hover { background: var(--bg-soft); }
.svc-mini-img {
  height: 200px; overflow: hidden;
  border-radius: 10px; margin-bottom: 1.5rem;
}
.svc-mini-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.svc-mini:hover .svc-mini-img img { transform: scale(1.06); }
.svc-mini h4 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.svc-mini p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── DISCO BALL ── */
.disco-section {
  height: 320vh;
  position: relative;
  background: var(--bg);
}
.disco-sticky {
  position: sticky; top: 0;
  height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: #06020f;
  overflow: hidden;
}
.disco-photo-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  clip-path: circle(0% at 50% 46%);
  -webkit-clip-path: circle(0% at 50% 46%);
}
#discoPhotoImg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.12);
  filter: brightness(0.3);
  will-change: transform, filter;
}
.disco-hint {
  position: absolute; bottom: 2.5rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  transition: opacity 0.5s;
}
.disco-label {
  position: absolute; bottom: 6rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.disco-num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900; letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.disco-text {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.25rem;
}
.disco-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  pointer-events: none;
  will-change: transform, opacity;
  opacity: 0;
  filter: drop-shadow(0 12px 28px rgba(107,75,174,0.22));
}
#discoMic    { width: 72px; }
#discoPhones { width: 152px; }
.disco-icon svg { display: block; width: 100%; height: auto; }

/* ── GALLERY H-SCROLL ── */
.gallery-section {
  background: var(--bg-soft);
  padding: clamp(4rem,8vw,7rem) 0;
  overflow: hidden;
}
.gallery-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 clamp(1.5rem,4vw,3.5rem);
  margin-bottom: 3rem;
}
.gallery-section-head h2 {
  font-size: clamp(1.75rem,3.5vw,3rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--text);
}
.gallery-h-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.gallery-h-wrap:active { cursor: grabbing; }
.gallery-h-track {
  display: flex;
  gap: 12px;
  padding: 0 clamp(1.5rem,4vw,3.5rem);
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-h-track::-webkit-scrollbar { display: none; }
.gallery-h-item {
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.gallery-h-item img {
  height: 420px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.gallery-h-item:hover img { transform: scale(1.04); }
.gallery-h-item--tall img { height: 520px; }
.gallery-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(26,6,64,0.75);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s var(--ease);
}
.gallery-h-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* ── STATS ── */
.stats-section {
  padding: clamp(5rem,10vw,9rem) 0;
  background: var(--bg);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.stat-cell {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.stat-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.stat-cell.counted::before { transform: scaleX(1); }
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2.5rem,4vw,3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.stat-lbl { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }

/* ── QUOTE ── */
.quote-section {
  padding: clamp(5rem,10vw,9rem) 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,75,174,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 8rem; line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 1.5rem;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem,3vw,2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 2rem;
}
.quote-author strong { color: var(--text); font-family: var(--font); font-style: normal; font-size: 0.9375rem; font-weight: 600; }
.quote-author span { display: block; color: var(--text-muted); font-size: 0.875rem; margin-top: 0.25rem; }
.stars-row { display: flex; justify-content: center; gap: 3px; margin-bottom: 2rem; }
.stars-row svg { color: var(--gold); }

/* ── CTA FINALE ── */
.cta-finale {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(5rem,10vw,9rem) 2rem;
}
.cta-finale::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(107,75,174,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-finale-inner { position: relative; z-index: 1; }
.cta-serif {
  font-family: var(--serif);
  font-size: clamp(2.5rem,5.5vw,5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.cta-bold {
  font-size: clamp(2rem,5vw,4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--violet-deep);
  margin-bottom: 1.5rem;
}
.cta-sub { color: var(--text-muted); font-size: 1.0625rem; margin-bottom: 2.75rem; }

/* ── ZONES ── */
.zones-section { background: var(--bg); padding: clamp(2rem,4vw,3.5rem) 0; }
.zones-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 3rem; align-items: center;
  max-width: 1340px; margin: 0 auto;
  padding: 0 clamp(1.5rem,4vw,3.5rem);
}
.zones-inner h2 { font-size: clamp(1.3rem,2vw,1.8rem); font-weight: 800; letter-spacing:-0.025em; margin-bottom:0.75rem; }
.zones-inner p { color: var(--text-muted); line-height:1.7; margin-bottom:1.25rem; font-size:0.9rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.chip {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.chip:hover { border-color: var(--violet); color: var(--violet); background: var(--bg-soft); }
.zones-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 180px; gap: 10px;
}
.zones-photos .zp-tall { grid-row: span 2; height: 100%; }
.zones-photos img { width:100%; height:100%; object-fit:cover; border-radius:12px; }

/* ── FOOTER ── */
footer {
  background: var(--violet-deep);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1340px; margin: 0 auto;
  padding: 0 clamp(1.5rem,4vw,3.5rem);
  margin-bottom: 4rem;
}
.footer-brand p { color: rgba(255,255,255,0.38); font-size:0.875rem; line-height:1.7; margin-top:1rem; max-width:28ch; }
.footer-logo { height:144px; width:auto; object-fit:contain; filter: brightness(0) invert(1); }
.fc h5 { font-size:0.7rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-bottom:1.25rem; }
.fc ul { display:flex; flex-direction:column; gap:0.625rem; }
.fc a { font-size:0.875rem; color:rgba(255,255,255,0.4); transition:color 0.18s; }
.fc a:hover { color:rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem;
  max-width: 1340px; margin: 0 auto;
  padding-left: clamp(1.5rem,4vw,3.5rem);
  padding-right: clamp(1.5rem,4vw,3.5rem);
}
.footer-bottom p { font-size:0.8125rem; color:rgba(255,255,255,0.2); }

/* ── PAGE HERO (galerie, contact) ── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) clamp(1.5rem,4vw,3.5rem) 4.5rem;
  background: linear-gradient(155deg, var(--violet-deep) 0%, var(--violet-mid) 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,146,42,0.08), transparent 60%);
  pointer-events:none;
}
.page-hero > * { position:relative; z-index:1; }
.page-hero .t-label { color:var(--gold); font-size:0.7rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; margin-bottom:1rem; }
.page-hero h1 { font-size:clamp(2.2rem,5vw,4rem); font-weight:800; letter-spacing:-0.03em; color:#fff; margin-bottom:1rem; }
.page-hero p { color:rgba(255,255,255,0.55); max-width:50ch; font-size:1.0625rem; line-height:1.7; }

/* ── GALLERY PAGE ── */
.gallery-filters { display:flex; gap:0.5rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius:999px;
  border: 1.5px solid var(--border);
  font-size:0.8125rem; font-weight:600; color:var(--text-muted);
  transition: all 0.2s;
}
.filter-btn:hover { border-color:var(--violet); color:var(--violet); }
.filter-btn.active { background:var(--violet); border-color:var(--violet); color:#fff; }
.masonry-grid { columns:3; column-gap:10px; }
.masonry-item {
  break-inside:avoid; margin-bottom:10px;
  overflow:hidden; border-radius:12px; cursor:pointer; position:relative;
}
.masonry-item img { width:100%; display:block; transition:transform 0.5s var(--ease); }
.masonry-item:hover img { transform:scale(1.05); }
.masonry-ov {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(26,6,64,0.7) 0%, transparent 50%);
  opacity:0; transition:opacity 0.25s;
  display:flex; align-items:flex-end; padding:1rem;
}
.masonry-item:hover .masonry-ov { opacity:1; }
.masonry-ov span { font-size:0.7rem; color:rgba(255,255,255,0.8); letter-spacing:0.1em; text-transform:uppercase; }

/* ── LIGHTBOX ── */
.lightbox {
  position:fixed; inset:0; z-index:1000;
  background:rgba(10,3,30,0.96);
  display:none; align-items:center; justify-content:center; padding:2rem;
}
.lightbox.open { display:flex; }
.lightbox-img { max-width:90vw; max-height:88vh; object-fit:contain; border-radius:12px; }
.lb-btn {
  position:absolute; width:50px; height:50px;
  border-radius:50%; border:1px solid rgba(196,146,42,0.4);
  background:rgba(26,6,64,0.5); color:rgba(255,255,255,0.8);
  display:flex; align-items:center; justify-content:center;
  font-size:1.25rem; transition:all 0.2s; cursor:pointer;
}
.lb-btn:hover { border-color:var(--gold); color:var(--gold); }
#lbClose { top:1.5rem; right:1.5rem; }
#lbPrev  { left:1.5rem; top:50%; transform:translateY(-50%); }
#lbNext  { right:1.5rem; top:50%; transform:translateY(-50%); }

/* ── CONTACT PAGE ── */
.contact-wrap { display:grid; grid-template-columns:1fr 1.65fr; gap:4rem; align-items:flex-start; }
.contact-card {
  background:var(--violet-deep); border-radius:16px; padding:2.5rem;
  position:relative; overflow:hidden;
}
.contact-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, var(--gold), var(--gold-light));
}
.contact-card h3 { color:#fff; font-size:1.375rem; font-weight:700; margin-bottom:0.5rem; }
.contact-card > p { color:rgba(255,255,255,0.5); font-size:0.9375rem; margin-bottom:2rem; }
.cdet { display:flex; align-items:flex-start; gap:0.75rem; margin-bottom:1.25rem; font-size:0.9rem; color:rgba(255,255,255,0.6); }
.cdet svg { color:var(--gold); flex-shrink:0; margin-top:2px; }
.cdet a { color:rgba(255,255,255,0.6); }
.cdet a:hover { color:var(--gold); }
.c-promises { margin-top:2rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,0.07); }
.c-promises h5 { font-size:0.7rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; font-weight:700; }
.c-promise { display:flex; align-items:center; gap:0.625rem; font-size:0.875rem; color:rgba(255,255,255,0.5); margin-bottom:0.625rem; }
.c-promise svg { color:var(--gold); flex-shrink:0; }
.form-box { background:#fff; border:1px solid var(--border); border-radius:16px; padding:2.5rem; box-shadow:0 4px 40px rgba(26,6,64,0.06); }
.fg { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.fi { display:flex; flex-direction:column; gap:0.4rem; }
.fi.full { grid-column:span 2; }
.fl { font-size:0.8125rem; font-weight:600; color:var(--text-muted); }
.form-input, .form-select, .form-textarea {
  padding:0.8125rem 1rem;
  background:var(--bg-soft); border:1.5px solid var(--border);
  border-radius:8px; color:var(--text);
  font-family:var(--font); font-size:0.9375rem;
  width:100%; outline:none;
  transition:border-color 0.18s, background 0.18s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--violet); background:#fff; }
.form-input::placeholder, .form-textarea::placeholder { color:var(--text-muted); opacity:0.45; }
.form-textarea { resize:vertical; min-height:120px; }
.form-select { appearance:none; cursor:pointer; }

/* ── ANIMATIONS ── */
.reveal {
  opacity:0;
  transform:translateY(36px);
  transition:opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.1s; }
.d2 { transition-delay:0.2s; }
.d3 { transition-delay:0.3s; }
.d4 { transition-delay:0.4s; }

/* Image reveal */
.img-reveal { overflow:hidden; }
.img-reveal img {
  transform:scale(1.12);
  transition:transform 0.9s var(--ease);
}
.img-reveal.in img { transform:scale(1); }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .svc-row { grid-template-columns:1fr; min-height:auto; }
  .svc-row--reverse { direction:ltr; }
  .svc-photo { height:320px; }
  .svc-grid-small { grid-template-columns:1fr 1fr; }
  .svc-grid-small .svc-mini:nth-child(3) { grid-column:span 2; border-right:none; }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right:none; }
  .stat-cell:nth-child(3) { border-right:1px solid var(--border); }
  .zones-inner { grid-template-columns:1fr; gap:3rem; }
  .zones-photos { height:300px; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .contact-wrap { grid-template-columns:1fr; }
  /* Viz: reduce size on tablets */
  .hero-viz { width: clamp(280px, 46vw, 520px); right: -8vw; }
}
@media (max-width:768px) {
  /* Viz: fade to background texture on mobile */
  .hero-viz { width: 82vw; right: -30vw; top: 32%; opacity: 0.15; }
  :root { --nav-h:64px; }
  .nav-links, .nav-btn { display:none; }
  .nav-burger { display:flex; }
  .gallery-h-item img { height:300px; }
  .gallery-h-item--tall img { height:360px; }
  .svc-grid-small { grid-template-columns:1fr; }
  .svc-grid-small .svc-mini:nth-child(3) { grid-column:1; }
  .svc-grid-small .svc-mini { border-right:none; border-bottom:1px solid var(--border); }
  .svc-grid-small .svc-mini:last-child { border-bottom:none; }
  .stats-inner { grid-template-columns:repeat(2,1fr); border-radius:10px; }
  .stat-cell:nth-child(3) { border-right:none; }
  .masonry-grid { columns:2; }
  .footer-inner { grid-template-columns:1fr; gap:2rem; }
  .fg { grid-template-columns:1fr; }
  .fi.full { grid-column:1; }
}
@media (max-width:480px) { .masonry-grid { columns:1; } }
@media (prefers-reduced-motion:reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  .img-reveal img { transform:none; }
  * { transition-duration:0.01ms !important; animation-duration:0.01ms !important; }
}
