/* ═══════════════════════════════════════════════════════════
   LUCIFER BOUDOIR — styles.css
   ═══════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────
   1. VARIABLES
─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:          #07060b;
  --bg-2:        #0d0b14;
  --bg-card:     #121020;
  --bg-elevated: #1a1828;

  /* Gold */
  --gold:        #c9a96e;
  --gold-light:  #e8d5a0;
  --gold-dark:   #8a6f3c;
  --gold-alpha:  rgba(201, 169, 110, 0.12);
  --gold-border: rgba(201, 169, 110, 0.18);

  /* Rose */
  --rose:        #c07888;
  --rose-dark:   #8a5060;

  /* Text */
  --text:        #ece8df;
  --text-muted:  #8c8680;
  --text-subtle: #50504a;

  /* Borders */
  --border:      rgba(255,255,255,0.06);

  /* Typography */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Montserrat', Arial, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  7rem;

  /* Misc */
  --radius:  2px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:   1200px;
}

/* ───────────────────────────────────────
   2. RESET & BASE
─────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.018) 1px, transparent 0);
  background-size: 3px 3px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}
a:hover { color: var(--gold-light); }
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

img {
  display: block;
  max-width: 100%;
  /* Security */
  -webkit-user-drag: none;
  pointer-events: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* Disable all selection globally (security) */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Re-enable only on form elements */
input, textarea, select, .faq__a p, .manifesto__content p,
.service-card__desc, .experience__body p, .testimonial p,
.contact__content p {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ───────────────────────────────────────
   3. PRINT PROTECTION
─────────────────────────────────────── */
@media print {
  * {
    display: none !important;
    visibility: hidden !important;
    color: transparent !important;
    background: transparent !important;
  }
  html::before {
    content: '© Lucifer Boudoir — Stampa non autorizzata. Tutti i diritti riservati.' !important;
    display: block !important;
    visibility: visible !important;
    color: #000 !important;
    font-size: 14pt;
    padding: 60px;
    font-family: Arial, sans-serif;
  }
}

/* ───────────────────────────────────────
   4. TYPOGRAPHY
─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

em { font-style: italic; color: var(--gold); }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--gold-light); }

.label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.label::before {
  content: '—— ';
  opacity: 0.5;
}

.section-title {
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}
.section-title em {
  display: block;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

/* ───────────────────────────────────────
   5. LAYOUT UTILITIES
─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.section {
  padding: var(--sp-xl) 0;
}
.section--dark {
  background-color: var(--bg-2);
}

/* Gold divider */
.section-header::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* ───────────────────────────────────────
   6. BUTTONS
─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--gold);
  color: #0a0808;
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0a0808;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.25);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn--outline:hover {
  background: var(--gold-alpha);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 0.75rem;
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}

.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.7rem;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
}

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

/* ───────────────────────────────────────
   7. AGE GATE
─────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background:
    radial-gradient(ellipse 80% 80% at 50% 120%, rgba(160,80,100,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #04030a 0%, #08060e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-md);
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.age-gate--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.age-gate__inner {
  max-width: 520px;
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
  border: 1px solid var(--gold-border);
  background: rgba(10,8,20,0.8);
  backdrop-filter: blur(10px);
}
.age-gate__logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
  color: var(--text);
}
.age-gate__logo span { color: var(--gold); }
.age-gate__sub {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 2.5rem;
}
.age-gate__inner h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}
.age-gate__inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* ───────────────────────────────────────
   8. COOKIE BANNER
─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 680px;
  width: calc(100% - 2rem);
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-banner p { margin: 0; flex: 1; }

/* ───────────────────────────────────────
   9. NAVIGATION
─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 1.5rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  padding: 0.9rem 0;
  background: rgba(7,6,11,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.nav__logo span { color: var(--gold); }
.nav__logo:hover { color: var(--text); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav__link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__link:hover,
.nav__link--active { color: var(--gold); }

.nav__link--cta {
  background: var(--gold-border);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  margin-left: 0.75rem;
}
.nav__link--cta:hover {
  background: var(--gold-alpha);
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ───────────────────────────────────────
   10. HERO
─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem var(--sp-md) var(--sp-xl);
  text-align: center;
  background: var(--bg);
}

/* Atmospheric background shapes */
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: floatShape 12s ease-in-out infinite alternate;
}
.hero__bg-shape--1 {
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(160,80,100,0.2) 0%, transparent 70%);
  top: -20%; left: -15%;
  animation-delay: 0s;
}
.hero__bg-shape--2 {
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(80,60,120,0.18) 0%, transparent 70%);
  bottom: -20%; right: -10%;
  animation-delay: -4s;
}
.hero__bg-shape--3 {
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, rgba(120,70,80,0.15) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -8s;
}
@keyframes floatShape {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.15) translate(3%, 5%); }
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,6,11,0.3) 0%,
    rgba(7,6,11,0.1) 40%,
    rgba(7,6,11,0.6) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: heroReveal 1s var(--ease) 0.3s forwards;
}

.hero__title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s var(--ease) 0.6s forwards;
}
.hero__title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s var(--ease) 0.9s forwards;
}

.hero__br { display: none; }

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s var(--ease) 1.2s forwards;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  z-index: 2;
  animation: heroReveal 1s var(--ease) 1.6s forwards;
  opacity: 0;
}
.hero__scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ───────────────────────────────────────
   11. TICKER
─────────────────────────────────────── */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--gold);
  padding: 0.7rem 0;
  line-height: 1;
}
.ticker__track {
  display: inline-flex;
  gap: 2rem;
  animation: ticker 28s linear infinite;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a0808;
  will-change: transform;
}
.ticker__sep { opacity: 0.5; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───────────────────────────────────────
   12. MANIFESTO
─────────────────────────────────────── */
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.manifesto__img-wrap {
  position: relative;
  padding-bottom: 4rem;
}
.manifesto__img {
  border-radius: var(--radius);
  pointer-events: none;
  position: relative;
  overflow: hidden;
}
/* Immagine che riempie il box manifesto */
.manifesto__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.manifesto__img--back {
  width: 75%;
  aspect-ratio: 3/4;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(180,100,110,0.25) 0%, rgba(80,40,60,0.2) 50%, transparent 80%),
    linear-gradient(135deg, #1a0f18 0%, #2a1525 40%, #120a18 70%, #0a0810 100%);
  margin-left: auto;
}
.manifesto__img--front {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%;
  aspect-ratio: 3/4;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.15) 0%, rgba(120,80,100,0.2) 50%, transparent 80%),
    linear-gradient(145deg, #1f1520 0%, #2d2030 40%, #181020 70%, #0d0810 100%);
  border: 1px solid var(--gold-border);
}
.manifesto__badge {
  position: absolute;
  bottom: 3.5rem; right: 0;
  background: var(--gold);
  color: #0a0808;
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  padding: 1rem 1.2rem;
  line-height: 1.4;
  min-width: 110px;
}
.manifesto__content { padding-left: 1rem; }
.manifesto__content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.manifesto__quote {
  border-left: 2px solid var(--gold);
  padding: 0.8rem 1.2rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: var(--gold-alpha);
}

.manifesto__inclusive {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(140, 80, 160, 0.08);
  border-left: 2px solid rgba(180, 120, 200, 0.4);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.manifesto__inclusive strong { color: #c8a0e0; }

/* ───────────────────────────────────────
   12b. ABOUT — CHI SONO
───────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.about__visual {
  position: sticky;
  top: 6rem;
}
.about__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background:
    radial-gradient(ellipse at 40% 30%, rgba(201,169,110,0.14) 0%, rgba(120,80,100,0.18) 45%, transparent 75%),
    radial-gradient(ellipse at 70% 80%, rgba(160,80,110,0.12) 0%, transparent 50%),
    linear-gradient(155deg, #1a100e 0%, #2a1820 40%, #160e18 70%, #0a0810 100%);
}
/* Immagine ritratto */
.about__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about__signature {
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.05em;
}
.about__content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.about__quote {
  border-left: 2px solid var(--gold);
  padding: 0.8rem 1.2rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: var(--gold-alpha);
  quotes: none;
}
.about__values {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}
.about__value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about__value-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.about__value strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.about__value p {
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin: 0;
}

/* ───────────────────────────────────────
   13. SERVICES
─────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg-card);
  padding: var(--sp-lg) var(--sp-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.service-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.service-card:hover::before { transform: scaleX(1); }

.service-card--alt::before {
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.service-card--alt:hover { border-color: rgba(192,120,136,0.25); }

.service-card__num {
  font-size: 5rem;
  font-family: var(--serif);
  font-weight: 400;
  color: rgb(201, 169, 110);
  line-height: 1;
  margin-bottom: -1rem;
  pointer-events: none;
}
.service-card__icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-card--alt .service-card__icon { color: var(--rose); }

.service-card__title {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}
.service-card__title em {
  display: block;
  font-size: 1.9rem;
}

.service-card__desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-card__list {
  list-style: none;
  margin-bottom: 2rem;
}
.service-card__list li {
  padding: 0.45rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-card__list li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.service-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.25s var(--ease);
}
.service-card__link:hover { gap: 0.9rem; color: var(--gold-light); }

.services__note {
  background: var(--bg-elevated);
  border: 1px solid var(--gold-border);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ───────────────────────────────────────
   14. EXPERIENCE
─────────────────────────────────────── */
.experience__steps {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.experience__steps::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), var(--gold-border), transparent);
}

.experience__step {
  display: flex;
  gap: 2.5rem;
  padding: 0 0 3.5rem 5rem;
  position: relative;
}
.experience__step:last-child { padding-bottom: 0; }

.experience__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  flex-shrink: 0;
}

.experience__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--gold-light);
}
.experience__body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* ───────────────────────────────────────
   15. GALLERY — CAROSELLO
─────────────────────────────────────── */

/* Wrapper carosello */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 0 2rem;
  user-select: none;
  -webkit-user-select: none;
}

.carousel__track-wrap {
  overflow: hidden;
  width: 100%;
}

.carousel__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Ogni slide — 3 visibili su desktop, 2 su tablet, 1 su mobile */
.carousel__slide {
  flex: 0 0 33.3333%;
  min-width: 0;
  padding: 0 2px;
  box-sizing: border-box;
}

/* Box foto */
.gallery__item {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  background: #130c13;
}

/* Immagine che riempie il box */
.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay CSS permanente — protezione senza JS */
.gallery__item::after,
.manifesto__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 9;
  cursor: default;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

/* Overlay copyright al hover */
.gallery__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0.75rem 1rem;
  background: linear-gradient(to bottom, transparent 60%, rgba(7,6,11,0.65) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay p {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* Frecce */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(7, 6, 11, 0.65);
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--gold);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.carousel__btn:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
}
.carousel__btn svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }

/* Pallini */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 1.25rem 0 0;
}
.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.carousel__dot--active,
.carousel__dot:hover {
  background: var(--gold);
  transform: scale(1.3);
}

/* Nota CTA galleria */
.gallery__cta-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
  margin: 0;
}
/* ───────────────────────────────────────
   16. PRINTS & BOOKS
─────────────────────────────────────── */
.prints__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.prints__content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.prints__options {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.prints__opt {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.prints__opt-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.prints__opt strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.prints__opt p {
  font-size: 0.82rem;
  color: var(--text-subtle);
  margin: 0;
}

.prints__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prints__stack {
  position: relative;
  width: 300px;
  height: 400px;
}
.prints__page {
  position: absolute;
  border-radius: 1px;
  pointer-events: none;
}
.prints__page--back {
  width: 85%; height: 80%;
  top: 10%; left: 5%;
  background:
    linear-gradient(135deg, #1a1008 0%, #281808 50%, #180e08 100%);
  border: 1px solid rgba(201,169,110,0.1);
  transform: rotate(-4deg);
}
.prints__page--mid {
  width: 88%; height: 82%;
  top: 8%; left: 2%;
  background:
    linear-gradient(145deg, #1e1a14 0%, #2c2018 50%, #1a1410 100%);
  border: 1px solid rgba(201,169,110,0.12);
  transform: rotate(-1.5deg);
}
.prints__page--front {
  width: 90%; height: 85%;
  top: 5%; left: 0;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(201,169,110,0.12) 0%, transparent 60%),
    linear-gradient(150deg, #221a10 0%, #301e10 50%, #1e1408 100%);
  border: 1px solid var(--gold-border);
}

/* ───────────────────────────────────────
   17. TESTIMONIALS
─────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: var(--sp-md);
  position: relative;
  font-style: normal;
  transition: border-color 0.3s var(--ease);
}
.testimonial:hover { border-color: var(--gold-border); }

.testimonial--featured {
  background: var(--bg-elevated);
  border-color: var(--gold-border);
  transform: translateY(-8px);
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 1rem;
  font-style: normal;
  pointer-events: none;
}

.testimonial p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  font-family: var(--serif);
  margin-bottom: 1.5rem;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-alpha);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial__footer cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial__footer span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-subtle);
  letter-spacing: 0.08em;
}

/* ───────────────────────────────────────
   18. FAQ
─────────────────────────────────────── */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.faq__q:hover { color: var(--gold); }

.faq__icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  font-style: normal;
  pointer-events: none;
}
.faq__item--open .faq__icon { transform: rotate(45deg); }

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq__a[hidden] { display: block; max-height: 0; }
.faq__a.open { max-height: 500px; }
.faq__a p {
  padding: 0 0 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ───────────────────────────────────────
   19. CONTACT
─────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact__content em { color: var(--gold-light); }

.contact__info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact__info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.contact__info-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elevated);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c9a96e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-group--check { margin-top: 0.3rem; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.check-label input[type="checkbox"] {
  display: none;
}
.check-box {
  width: 18px; height: 18px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s;
  margin-top: 1px;
}
.check-label input[type="checkbox"]:checked + .check-box {
  background: var(--gold);
  border-color: var(--gold);
}
.check-label input[type="checkbox"]:checked + .check-box::after {
  content: '✓';
  font-size: 0.7rem;
  color: #0a0808;
  font-weight: 700;
}

.form-success {
  background: var(--gold-alpha);
  border: 1px solid var(--gold-border);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--serif);
}
.form-success p { margin: 0 0 0.6rem; }
.form-success p:last-child { margin-bottom: 0; }
.form-success__icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem !important;
}
.form-success__title {
  font-size: 1.2rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 0.75rem !important;
}
.form-success__note {
  font-size: 0.8rem !important;
  color: var(--text-subtle) !important;
  font-family: var(--sans);
  font-style: normal;
  margin-top: 1rem !important;
}

/* ───────────────────────────────────────
   20. FOOTER
─────────────────────────────────────── */
.footer {
  background: #030208;
  border-top: 1px solid var(--border);
  padding: var(--sp-xl) 0 var(--sp-md);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--sp-lg);
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--text);
}
.footer__logo span { color: var(--gold); }
.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.footer__protect {
  font-size: 0.72rem;
  color: var(--text-subtle);
  margin-top: 1rem;
}
.footer__heading {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer__nav ul,
.footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav li a,
.footer__legal li a {
  font-size: 0.85rem;
  color: var(--text-subtle);
  transition: color 0.25s var(--ease);
}
.footer__nav li a:hover,
.footer__legal li a:hover { color: var(--gold); }

/* Social links */
.footer__social-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.footer__social-link:hover { color: var(--gold); }
.footer__social-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  transition: color 0.25s var(--ease);
}

/* ── Bottone WhatsApp flottante ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  border-radius: 3rem;
  padding: 0.75rem 1.15rem 0.75rem 0.9rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  max-width: 9rem; /* evita che occupi troppo spazio */
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg {
  width: 1.3rem;
  height: 1.3rem;
  flex-shrink: 0;
}
.whatsapp-float__label {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .whatsapp-float {
    padding: 0.8rem;
    border-radius: 50%;
  }
  .whatsapp-float__label { display: none; }
}
.footer__vat {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
  flex-wrap: wrap;
}

/* ───────────────────────────────────────
   21. ANIMATIONS (Intersection Observer)
─────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate="fadeInUp"]    { transform: translateY(35px); }
[data-animate="fadeInLeft"]  { transform: translateX(-40px); }
[data-animate="fadeInRight"] { transform: translateX(40px); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ───────────────────────────────────────
   26. GALLERY CTA BUTTON
─────────────────────────────────────── */
.gallery__cta {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: var(--sp-md) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

/* ───────────────────────────────────────
   27. NEWSLETTER
─────────────────────────────────────── */
.newsletter {
  background: var(--bg-elevated);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}
.newsletter__inner {
  max-width: 660px;
  margin: 0 auto;
}
.newsletter__sub {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.newsletter__form {
  width: 100%;
}
.newsletter__fields {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.newsletter__fields input {
  flex: 1;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s var(--ease);
  border-radius: 0;
}
.newsletter__fields input:focus {
  border-color: var(--gold);
}
.newsletter__fields input::placeholder {
  color: var(--text-subtle);
}
.newsletter__check {
  justify-content: center;
  margin-top: 0;
}
.newsletter__success {
  text-align: center;
  padding: var(--sp-md) 0;
}
@media (max-width: 600px) {
  .newsletter__fields {
    flex-direction: column;
  }
  .newsletter__fields .btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  :root {
    --sp-xl: 5rem;
    --sp-lg: 3rem;
  }

  .manifesto__grid { gap: 3.5rem; }
  .about__grid     { gap: 3.5rem; }
  .prints__grid    { gap: 3.5rem; }
  .contact__grid   { gap: 3.5rem; }
  .footer__grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand   { grid-column: 1 / -1; }

  .services__grid       { gap: 1px; }
  .testimonials__grid   { gap: 1px; }
}

/* ───────────────────────────────────────
   23. RESPONSIVE — MOBILE (≤768px)
─────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --sp-xl: 4rem;
    --sp-lg: 2.5rem;
    --sp-md: 1.25rem;
  }

  /* Nav mobile */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,6,11,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 8999;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link {
    font-size: 1rem;
    padding: 0.9rem 2rem;
    letter-spacing: 0.2em;
  }
  .nav__link--cta { margin: 1rem 0 0; }

  /* Hero */
  .hero__actions { flex-direction: column; }
  .hero__br { display: block; }

  /* Manifesto */
  .manifesto__grid { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto__visual { order: -1; }
  .manifesto__img--back { width: 80%; }
  .manifesto__content { padding-left: 0; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { position: static; order: -1; }
  .about__portrait { max-width: 280px; margin: 0 auto; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Experience */
  .experience__steps::before { display: none; }
  .experience__step { flex-direction: column; padding: 0 0 2.5rem; gap: 1rem; }
  .experience__num  { position: static; }

  /* Gallery — carosello */
  .carousel__slide { flex: 0 0 50%; }
  .gallery__item   { height: 320px; }

  /* Prints */
  .prints__grid { grid-template-columns: 1fr; gap: 3rem; }
  .prints__visual { order: -1; }
  .prints__stack  { width: 220px; height: 290px; margin: 0 auto; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial--featured { transform: none; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Age gate */
  .age-gate__inner { padding: var(--sp-md); }
  .age-gate__buttons { gap: 0.75rem; }
}

/* ───────────────────────────────────────
   24. RESPONSIVE — SMALL MOBILE (≤480px)
─────────────────────────────────────── */
@media (max-width: 480px) {
  .hero { padding-top: 7rem; }

  /* Carosello: 1 slide per volta su mobile piccolo */
  .carousel__slide { flex: 0 0 100%; }
  .gallery__item   { height: 280px; }

  .cookie-banner { flex-direction: column; text-align: center; }
}

/* ───────────────────────────────────────
   25. ACCESSIBILITY — REDUCED MOTION
─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}
