/* ==========================================================================
   BETIVU STUDIOS — Stylesheet
   Editoriale, asimmetrico, oversized. Easing premium uniforme.
   ========================================================================== */

/* -------------------- 1. Tokens -------------------- */

:root {
  --night:    #0A1B2E;
  --night-2:  #0B1C30;
  --night-3:  #0C1D32;
  --gold:     #D4AF37;
  --gold-soft: #E8C76A;
  --gold-dim: rgba(212, 175, 55, 0.4);
  --ivory:    #F2E9DA;
  --ivory-dim: rgba(242, 233, 218, 0.55);
  --ivory-faint: rgba(242, 233, 218, 0.10);
  --slate:    #1E2D44;

  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --f-display: 'Cinzel', 'Fraunces', Georgia, serif;
  --f-editorial: 'Fraunces', 'Cinzel', Georgia, serif;
  --f-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  --pad-x: clamp(20px, 5vw, 88px);
  --max-w: 1500px;
}

/* -------------------- 2. Reset -------------------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }
html, body {
  background: var(--night);
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body { min-height: 100vh; overscroll-behavior-y: none; }
body.is-loading { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--gold); color: var(--night); }

/* -------------------- 3. Loader -------------------- */

.loader {
  position: fixed; inset: 0;
  background: var(--night);
  z-index: 10000;
  display: flex; flex-direction: column;
  pointer-events: none;
}
body:not(.is-loading) .loader { display: none; }

.loader-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: clamp(24px, 4vh, 48px) var(--pad-x);
}
.loader-meta-tl { grid-column: 1; grid-row: 1; }
.loader-meta-tr { grid-column: 2; grid-row: 1; justify-self: end; }
.loader-center  { grid-column: 1 / -1; grid-row: 2; align-self: center; justify-self: center; }
.loader-meta-bl { grid-column: 1; grid-row: 3; }
.loader-count   { grid-column: 2; grid-row: 3; justify-self: end; align-self: end; }

.loader-brand {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2rem, 6vw, 6rem);
  letter-spacing: 0.04em;
  color: var(--ivory);
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
}

.loader-count-num {
  font-family: var(--f-body);
  font-variant-numeric: tabular-nums;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.loader-bar {
  height: 1px;
  background: var(--ivory-faint);
  position: relative;
}
.loader-bar #loader-bar-fill {
  display: block; height: 100%; width: 0%;
  background: var(--gold);
}

/* Loader → page reveal */
body.is-loaded .loader {
  transform: translateY(-100%);
  transition: transform 1s var(--ease);
}

/* -------------------- 4. Spotlight (mouse-follow soft glow) -------------------- */

.spotlight {
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.07), transparent 60%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 600ms var(--ease);
  will-change: transform, opacity;
  mix-blend-mode: screen;
}
.spotlight { opacity: 1; }
body.is-loaded .spotlight { opacity: 1; }

/* Mouse trail — scia di puntini oro */
.mouse-trail {
  position: fixed; inset: 0;
  z-index: 9997;
  pointer-events: none;
  overflow: hidden;
}
.mouse-trail-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(3px);
  box-shadow: 0 0 16px var(--gold);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  animation: trailFade 700ms ease-out forwards;
  will-change: transform, opacity;
}
@keyframes trailFade {
  0%   { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(0.4); }
}
@media (pointer: coarse) { .mouse-trail { display: none; } }
@media (pointer: coarse) { .spotlight { display: none; } }

/* ===== FILM GRAIN ===== */
.grain {
  position: fixed;
  inset: -10%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 200px 200px;
  animation: grainShift 1.4s steps(8) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,    0); }
  10%  { transform: translate(-5%, -5%); }
  20%  { transform: translate(-10%, 5%); }
  30%  { transform: translate(5%,  -10%); }
  40%  { transform: translate(-5%, 10%); }
  50%  { transform: translate(-10%,5%); }
  60%  { transform: translate(7%,  0%); }
  70%  { transform: translate(0%,  10%); }
  80%  { transform: translate(3%,  6%); }
  90%  { transform: translate(-10%,1%); }
  100% { transform: translate(0%,  0%); }
}

/* ===== GOLD FLARES ===== */
.gold-flares {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.gold-flare {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(2px);
  box-shadow: 0 0 24px var(--gold), 0 0 48px rgba(212,175,55,0.4);
  opacity: 0;
  animation: flarePulse 4s ease-in-out forwards;
}
@keyframes flarePulse {
  0%   { opacity: 0; transform: scale(0.4); }
  30%  { opacity: 0.9; transform: scale(1.4); }
  60%  { opacity: 0.7; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0.8) translateY(-30px); }
}

/* ===== VERTICAL MARQUEE (lato destro) ===== */
.v-marquee {
  position: fixed;
  top: 0; right: 14px; bottom: 0;
  width: 18px;
  z-index: 90;
  overflow: hidden;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}
.v-marquee-track {
  display: flex; flex-direction: column;
  white-space: nowrap;
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.4em; color: var(--ivory-dim);
  text-transform: uppercase;
  animation: vMarquee 80s linear infinite;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  will-change: transform;
}
.v-marquee-track span.v-dot { color: var(--gold); padding: 1.5em 0; opacity: 0.9; }
@keyframes vMarquee {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@media (max-width: 900px) { .v-marquee { display: none; } }

/* ===== SECTION INDICATOR (sticky) ===== */
.section-indicator {
  position: fixed;
  top: 50%;
  left: 22px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  z-index: 95;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--f-body);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ivory-dim);
  pointer-events: none;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 500ms var(--ease);
}
.section-indicator { opacity: 1 !important; }
.section-indicator-current { color: var(--gold); font-size: 14px; transition: color 500ms var(--ease); }
.section-indicator-sep { color: var(--ivory-dim); padding: 0 2px; }
.section-indicator-total { color: var(--ivory-dim); }
@media (max-width: 900px) { .section-indicator { display: none; } }

/* ===== LIVE TICKER (bottom) ===== */
.live-ticker {
  position: fixed;
  left: var(--pad-x);
  bottom: 18px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  background: rgba(10, 27, 46, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  border: 1px solid var(--ivory-faint);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 800ms var(--ease) 0.3s;
  max-width: calc(100vw - 2 * var(--pad-x) - 24px);
  pointer-events: none;
}
.live-ticker { opacity: 1 !important; }
.live-ticker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80, 0 0 16px rgba(74, 222, 128, 0.5);
  animation: tickerPulse 1.4s ease-in-out infinite;
}
@keyframes tickerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
.live-ticker-label { color: var(--ivory); }
.live-ticker-sep { color: var(--gold); }
.live-ticker-content {
  color: var(--ivory);
  font-family: var(--f-editorial);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 12px;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 380px;
}
@media (max-width: 760px) { .live-ticker { display: none; } }

/* ===== KINETIC HERO TITLE ===== */
.hero-line-top   { animation: heroSway 9s ease-in-out infinite; }
.hero-line-bottom{ animation: heroSway 11s ease-in-out infinite reverse; }
@keyframes heroSway {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -6px, 0); }
}

/* ===== ANIMATED BACKGROUND HUE (sottile, ovunque) ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.05), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(30, 45, 68, 0.6), transparent 55%);
  animation: bgHueShift 18s ease-in-out infinite;
  opacity: 0;
  transition: opacity 1.5s var(--ease);
}
body::before { opacity: 1 !important; }
@keyframes bgHueShift {
  0%, 100% { background-position: 0% 0%, 100% 100%; }
  50%      { background-position: 100% 50%, 0% 50%; }
}

/* -------------------- 5. Scroll progress -------------------- */

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 1px; background: var(--ivory-faint);
  z-index: 200; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: var(--gold); transition: width 80ms linear;
}

/* -------------------- 6. Cursor -------------------- */

.cursor { display: none !important; }
.cursor-ring, .cursor-dot {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  will-change: transform;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  margin: -19px 0 0 -19px;
  transition: width 380ms var(--ease),
              height 380ms var(--ease),
              margin 380ms var(--ease),
              background-color 320ms var(--ease);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--ivory);
  margin: -2.5px 0 0 -2.5px;
}
.cursor-label {
  position: absolute; top: 0; left: 0;
  font-family: var(--f-body); font-size: 10px;
  letter-spacing: 0.25em; color: var(--gold);
  white-space: nowrap;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 280ms var(--ease);
  font-weight: 500;
}
.cursor.is-hover .cursor-ring {
  width: 78px; height: 78px;
  margin: -39px 0 0 -39px;
  background: rgba(212, 175, 55, 0.14);
}
.cursor.has-label .cursor-ring {
  width: 92px; height: 92px;
  margin: -46px 0 0 -46px;
  background: rgba(212, 175, 55, 0.16);
}
.cursor.has-label .cursor-label { opacity: 1; }
@media (pointer: coarse) {
  body, * { cursor: auto !important; }
  .cursor { display: none !important; }
}

/* -------------------- 7. Top bar -------------------- */

.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad-x);
  z-index: 100;
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }

.topbar-brand {
  display: inline-flex; align-items: baseline; gap: 12px;
  will-change: transform;
}
.topbar-mark {
  font-family: var(--f-display);
  font-size: 18px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.2em;
}
.topbar-name {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.25em; color: var(--ivory-dim);
  text-transform: uppercase;
}

.topbar-lang {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.3em;
}

/* Live clock — sempre in movimento, "vivo" */
.topbar-clock {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ivory-dim);
  pointer-events: none;
  z-index: 100;
}
.topbar-clock .clock-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  animation: clockPulse 1.6s ease-in-out infinite;
}
.topbar-clock .clock-time { color: var(--ivory); letter-spacing: 0.15em; }
.topbar-clock .clock-tz { color: var(--gold); opacity: 0.7; font-size: 9px; }
@keyframes clockPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.7); }
}
@media (max-width: 760px) { .topbar-clock { display: none; } }
.lang-btn {
  color: var(--ivory-dim);
  padding: 4px 2px;
  transition: color 250ms var(--ease), transform 250ms var(--ease);
  letter-spacing: 0.3em; font-weight: 400;
}
.lang-btn:hover { color: var(--ivory); transform: scale(1.05); }
.lang-btn.is-active { color: var(--gold); }
.lang-sep { color: var(--ivory-dim); }

@media (max-width: 640px) {
  .topbar { padding: 16px var(--pad-x); }
  .topbar-name { display: none; }
}

/* -------------------- 8. Type styles -------------------- */

.meta-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.3em; color: var(--ivory-dim);
  text-transform: uppercase;
}
.meta-line .dot {
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
  display: inline-block;
}

.section-label {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ivory);
  margin: 0;
}

.section-intro {
  font-family: var(--f-body); font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 300; line-height: 1.7;
  color: var(--ivory);
  opacity: 0.78;
  max-width: 620px;
}

/* Section giant numeral (decorative, ghosted on background) */
.section-numeral {
  position: absolute;
  top: clamp(40px, 8vh, 100px);
  right: var(--pad-x);
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.10);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 760px) {
  .section-numeral { font-size: clamp(6rem, 30vw, 12rem); top: 24px; }
}

/* Reveals — CSS standalone fallback con transition (funziona anche senza GSAP) */
[data-reveal-lines] .reveal-line,
[data-reveal-words] .reveal-word-wrap {
  display: inline-block; overflow: hidden;
  padding: 0.06em 0;
  vertical-align: bottom;
}
[data-reveal-lines] .reveal-line { display: block; }
[data-reveal-lines] .reveal-line-inner,
[data-reveal-words] .reveal-word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
[data-reveal-lines].is-revealed .reveal-line-inner,
[data-reveal-words].is-revealed .reveal-word-inner {
  transform: translateY(0);
}
/* Stagger CSS sulle parole / linee */
[data-reveal-lines].is-revealed .reveal-line-inner { transition-delay: 0s; }
[data-reveal-lines].is-revealed .reveal-line:nth-child(2) .reveal-line-inner { transition-delay: 0.08s; }
[data-reveal-lines].is-revealed .reveal-line:nth-child(3) .reveal-line-inner { transition-delay: 0.16s; }
[data-reveal-lines].is-revealed .reveal-line:nth-child(4) .reveal-line-inner { transition-delay: 0.24s; }

[data-reveal-words] .reveal-word-wrap { margin-right: 0.22em; }
[data-reveal-words] .reveal-line-break { display: block; height: 0; }
/* Stagger CSS sulle parole (fino a 16) */
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(1)  .reveal-word-inner { transition-delay: 0.00s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(2)  .reveal-word-inner { transition-delay: 0.05s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(3)  .reveal-word-inner { transition-delay: 0.10s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(4)  .reveal-word-inner { transition-delay: 0.15s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(5)  .reveal-word-inner { transition-delay: 0.20s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(6)  .reveal-word-inner { transition-delay: 0.25s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(7)  .reveal-word-inner { transition-delay: 0.30s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(8)  .reveal-word-inner { transition-delay: 0.35s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(9)  .reveal-word-inner { transition-delay: 0.40s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(10) .reveal-word-inner { transition-delay: 0.45s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(11) .reveal-word-inner { transition-delay: 0.50s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(12) .reveal-word-inner { transition-delay: 0.55s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(13) .reveal-word-inner { transition-delay: 0.60s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(14) .reveal-word-inner { transition-delay: 0.65s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(15) .reveal-word-inner { transition-delay: 0.70s; }
[data-reveal-words].is-revealed .reveal-word-wrap:nth-child(16) .reveal-word-inner { transition-delay: 0.75s; }

[data-reveal-paragraph] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
[data-reveal-paragraph].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- 9. Hero -------------------- */

.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  padding: 0 var(--pad-x);
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(60px, 8vh, 100px);
  background: var(--night);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}
@media (pointer: coarse) { .hero-canvas { display: none; } }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  height: 100%;
  min-height: calc(100vh - 280px);
  min-height: calc(100svh - 280px);
  z-index: 2;
}

.hero-meta-left  { grid-column: 1; grid-row: 1; align-self: start; }
.hero-meta-right { grid-column: 2; grid-row: 1; align-self: start; justify-self: end; max-width: 360px; text-align: right; }
.hero-title      { grid-column: 1 / -1; grid-row: 2; align-self: center; }
.hero-bottom-left  { grid-column: 1; grid-row: 3; align-self: end; }
.hero-bottom-right { grid-column: 2; grid-row: 3; align-self: end; justify-self: end; }

.hero-tagline {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ivory);
  opacity: 0.85;
  animation: taglineBreath 5s ease-in-out infinite;
}
@keyframes taglineBreath {
  0%, 100% { opacity: 0.85; transform: translateY(0); }
  50%      { opacity: 1;    transform: translateY(-2px); }
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.005em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-line {
  display: block; overflow: hidden;
  padding: 0.04em 0;
  line-height: 0.92;
  position: relative;
}
.hero-line-inner {
  display: inline-block;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 500;
  font-size: clamp(4rem, 15vw, 15rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--ivory);
  will-change: transform;
  text-transform: uppercase;
}
.hero-line-bottom .hero-line-inner {
  font-weight: 400;
}

.hero-line-top { align-self: flex-start; }
.hero-line-bottom {
  align-self: flex-end;
  text-align: right;
  margin-top: -0.08em;
  position: relative;
}
.hero-line-bottom .hero-line-inner { color: var(--gold); }

.hero-amp {
  position: absolute;
  left: -0.6em; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 0.18em;
  color: var(--ivory-dim);
  letter-spacing: 0;
  will-change: transform;
}

.scroll-cue {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase;
  padding: 12px 4px;
  will-change: transform;
}
.scroll-cue-arrow {
  font-size: 14px; display: inline-block;
  animation: cuePulse 1.8s var(--ease) infinite;
}
.scroll-cue-lottie {
  display: none;
  width: 22px; height: 22px;
}
.scroll-cue.has-lottie .scroll-cue-arrow { display: none; }
.scroll-cue.has-lottie .scroll-cue-lottie { display: inline-block; }
@keyframes cuePulse {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(4px); opacity: 1; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto auto;
    gap: 18px;
    min-height: calc(100vh - 200px);
  }
  .hero-meta-left   { grid-column: 1; grid-row: 1; }
  .hero-meta-right  { grid-column: 1; grid-row: 2; justify-self: start; text-align: left; max-width: 100%; }
  .hero-title       { grid-row: 3; }
  .hero-bottom-left { grid-row: 4; }
  .hero-bottom-right{ grid-column: 1; grid-row: 5; justify-self: start; }
  .hero-line-bottom { text-align: left; align-self: flex-start; margin-top: -0.04em; }
  .hero-amp { display: none; }
}

/* -------------------- 10. Section base -------------------- */

.section {
  position: relative;
  padding: clamp(110px, 16vh, 200px) var(--pad-x);
  border-top: 1px solid var(--ivory-faint);
  overflow: hidden;
}

.section-head {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto clamp(72px, 9vh, 120px);
  display: flex; flex-direction: column;
  gap: 28px;
}

.section > *:not(.section-numeral) { position: relative; z-index: 2; }

/* -------------------- 11. Manifesto -------------------- */

.manifesto {
  background: var(--night);
  position: relative;
  padding-top: clamp(40px, 6vh, 72px);
}
.manifesto .section-head { margin-bottom: 10px; gap: 0; }

/* Manifesto shader — disattivato */
.manifesto-shader { display: none !important; }
.manifesto > *:not(.section-numeral):not(.manifesto-shader) { position: relative; z-index: 2; }

.manifesto-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 56px);
}
.manifesto { padding-bottom: clamp(80px, 11vh, 140px); }

.manifesto-lead {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.8vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin: 0;
  max-width: 18ch;
}

.manifesto-body {
  display: flex;
  justify-content: flex-end;
}
.manifesto-body p {
  font-family: var(--f-editorial);
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.55;
  color: var(--ivory);
  opacity: 0.9;
  max-width: 680px;
  letter-spacing: 0.005em;
}

.section .manifesto-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin: 0;
  justify-self: end;
  max-width: 560px;
}
.manifesto-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(70%) brightness(0.7) contrast(1.05);
  mix-blend-mode: luminosity;
  opacity: 0.85;
  transition: transform 1.5s var(--ease);
  will-change: transform;
}
.manifesto-image:hover img { transform: scale(1.03); }
.manifesto-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 27, 46, 0.3) 0%, rgba(10, 27, 46, 0.75) 100%);
  pointer-events: none;
}
.manifesto-image-caption {
  position: absolute; left: 18px; bottom: 18px;
  z-index: 2;
  color: var(--ivory);
}
.manifesto-image-caption .dot { background: var(--gold); }
.manifesto-image-caption .meta-line { font-size: 10px; letter-spacing: 0.28em; color: var(--ivory); opacity: 0.9; }

@media (max-width: 900px) {
  .manifesto-lead { max-width: none; }
  .manifesto-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section .manifesto-image { max-width: 100%; justify-self: stretch; }
}

/* -------------------- 12. Method -------------------- */

.method { background: var(--night-2); }

.method-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ivory-faint);
}

.method-step {
  display: flex; flex-direction: column;
  gap: 32px;
  padding: clamp(40px, 5vw, 64px);
  border-right: 1px solid var(--ivory-faint);
  border-bottom: 1px solid var(--ivory-faint);
  position: relative;
  transition: background-color 500ms var(--ease);
  min-height: 380px;
  overflow: hidden;
}
.method-step:last-child { border-right: 0; }
.method-step::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 700ms var(--ease);
}
.method-step:hover { background: rgba(212, 175, 55, 0.025); }
.method-step:hover::after { transform: scaleX(1); }
.method-step:hover .method-num { color: var(--gold-soft); transform: translateX(6px) translateY(-2px); }
.method-step:hover .method-arrow { transform: translateX(8px); color: var(--gold-soft); }

.method-num {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 500ms var(--ease), transform 500ms var(--ease);
}

.method-step-title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: 0.005em;
  color: var(--ivory);
  line-height: 1.15;
  margin-top: auto;
}

.method-step-body {
  font-family: var(--f-body); font-size: 15px;
  line-height: 1.7; color: var(--ivory);
  opacity: 0.72;
  max-width: 360px;
}

.method-arrow {
  align-self: flex-end;
  font-family: var(--f-body); font-size: 16px;
  color: var(--gold-dim);
  margin-top: 8px;
  transition: transform 400ms var(--ease), color 400ms var(--ease);
}

@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-step { border-right: 0; min-height: auto; padding: 36px 0; }
}

/* -------------------- 13. Offer -------------------- */

.offer { background: var(--night); }

.offer-list { max-width: var(--max-w); margin: 0 auto; }

.offer-item {
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(36px, 4vw, 60px) clamp(0px, 2vw, 24px);
  border-top: 1px solid var(--ivory-faint);
  align-items: start;
  transition: padding 500ms var(--ease), background-color 500ms var(--ease);
  position: relative;
}
.offer-item:last-child { border-bottom: 1px solid var(--ivory-faint); }
.offer-item::after {
  content: '';
  position: absolute; left: 0; bottom: 0; width: 0%;
  height: 1px; background: var(--gold);
  transition: width 700ms var(--ease);
}
.offer-item:hover {
  background: rgba(212, 175, 55, 0.025);
  padding-left: clamp(20px, 3vw, 48px);
}
.offer-item:hover::after { width: 100%; }
.offer-item:hover .offer-roman { color: var(--gold-soft); transform: translateY(-4px) scale(1.04); }
.offer-item:hover .offer-arrow { transform: translateX(8px); color: var(--gold-soft); }

.offer-roman {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--gold);
  line-height: 0.95;
  transition: color 500ms var(--ease), transform 500ms var(--ease);
  transform-origin: left center;
}

.offer-name {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  color: var(--ivory); letter-spacing: 0.005em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.offer-body {
  font-family: var(--f-body); font-size: 15px;
  line-height: 1.7; color: var(--ivory); opacity: 0.72;
  max-width: 480px;
}

.offer-price {
  font-family: var(--f-editorial); font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--gold);
  text-align: right;
  letter-spacing: 0.01em;
  align-self: start;
  padding-top: 0.5em;
  white-space: nowrap;
}

.offer-arrow {
  display: inline-block;
  margin-left: 12px;
  color: var(--gold-dim);
  transition: transform 400ms var(--ease), color 400ms var(--ease);
}

.offer-note {
  max-width: var(--max-w);
  margin: 32px auto 0;
  font-family: var(--f-body); font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  text-align: right;
  font-style: italic;
}

@media (max-width: 900px) {
  .offer-item {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: 14px 20px;
    padding: 28px 0;
  }
  .offer-item:hover { padding-left: 12px; }
  .offer-roman { grid-row: 1 / span 2; font-size: 3rem; }
  .offer-content { grid-column: 2; grid-row: 1; }
  .offer-price { grid-column: 2; grid-row: 2; text-align: left; padding-top: 0; }
  .offer-note { text-align: left; }
}

/* -------------------- 14. Sectors -------------------- */

.sectors { background: var(--night-3); }

.sectors-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 1100px) {
  .sectors-grid { grid-template-columns: 1.4fr 1fr; }
}

.sectors-list {
  list-style: none;
  border-top: 1px solid var(--ivory-faint);
}

.sectors-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: none;
}
@media (min-width: 1100px) {
  .sectors-image { display: block; align-self: stretch; }
}
.sectors-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(0.65) contrast(1.05);
  mix-blend-mode: luminosity;
  opacity: 0.72;
  transition: transform 8s var(--ease);
  will-change: transform;
}
.sectors-image:hover img { transform: scale(1.04); }
.sectors-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 29, 50, 0.4) 0%, rgba(12, 29, 50, 0.9) 100%);
  pointer-events: none;
}
.sectors-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: clamp(28px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--ivory-faint);
  transition: background-color 500ms var(--ease), padding-left 500ms var(--ease);
  position: relative;
}
.sectors-item::after {
  content: '';
  position: absolute; left: 0; bottom: 0; width: 0%;
  height: 1px; background: var(--gold);
  transition: width 600ms var(--ease);
}
.sectors-item:hover {
  background: rgba(212, 175, 55, 0.03);
  padding-left: 20px;
}
.sectors-item:hover::after { width: 100%; }
.sectors-item:hover .sectors-arrow { transform: translateX(10px); color: var(--gold-soft); }
.sectors-item:hover .sectors-name { color: var(--gold-soft); }

.sectors-num {
  font-family: var(--f-body);
  font-variant-numeric: tabular-nums;
  font-size: 12px; letter-spacing: 0.25em;
  color: var(--gold); font-weight: 400;
}
.sectors-name {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 3rem);
  color: var(--ivory); letter-spacing: 0.005em;
  line-height: 1.2;
  transition: color 500ms var(--ease);
}
.sectors-arrow {
  font-family: var(--f-body); font-size: 20px;
  color: var(--gold);
  transition: transform 400ms var(--ease), color 400ms var(--ease);
}

@media (max-width: 640px) {
  .sectors-item { grid-template-columns: 32px 1fr auto; gap: 14px; }
}

/* -------------------- 15. Currently / in studio -------------------- */

.currently { background: var(--night); }

.currently-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  perspective: 1200px;
}

.currently-card {
  position: relative;
  background: linear-gradient(155deg, var(--slate) 0%, #16243A 100%);
  border: 0.5px solid rgba(212, 175, 55, 0.35);
  padding: clamp(32px, 4vw, 60px);
  min-height: clamp(260px, 30vw, 380px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px;
  transition: border-color 500ms var(--ease),
              transform 500ms var(--ease-out),
              box-shadow 500ms var(--ease);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.currently-card-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.28;
  filter: grayscale(70%) brightness(0.6) contrast(1.1);
  mix-blend-mode: luminosity;
  transition: opacity 700ms var(--ease), transform 900ms var(--ease);
  pointer-events: none;
}
.currently-card:hover .currently-card-bg {
  opacity: 0.42;
  transform: scale(1.04);
}
.currently-card > *:not(.currently-card-bg) { position: relative; z-index: 2; }
.currently-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at var(--mx, 30%) var(--my, 0%),
    rgba(212, 175, 55, 0.18), transparent 65%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms var(--ease);
  transform: translateZ(0);
}
.currently-card::after {
  content: '';
  position: absolute; left: -1px; top: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, transparent 30%, rgba(212, 175, 55, 0.5) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 600ms var(--ease);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.currently-card:hover {
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.currently-card:hover::before { opacity: 1; }
.currently-card:hover::after  { opacity: 0.6; }

.currently-card-top {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.25em; color: var(--ivory-dim);
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.currently-state { color: var(--gold); }

.currently-card-client {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  color: var(--ivory); letter-spacing: 0.005em;
  line-height: 1.1;
  position: relative; z-index: 1;
  margin-bottom: 8px;
}

.currently-card-type {
  font-family: var(--f-editorial); font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--ivory); opacity: 0.65;
  position: relative; z-index: 1;
}

.marquee {
  max-width: 100vw;
  margin: clamp(80px, 10vh, 140px) calc(-1 * var(--pad-x)) 0;
  padding: 28px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: inline-flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--ivory); opacity: 0.4;
  letter-spacing: 0.04em;
  will-change: transform;
  animation-play-state: running;
}
.marquee:hover .marquee-track { animation-play-state: paused; opacity: 0.6; }
.marquee-track span.marquee-dot { color: var(--gold); font-size: 0.5em; align-self: center; opacity: 0.9; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 760px) {
  .currently-grid { grid-template-columns: 1fr; perspective: none; }
  .currently-card { transform: none !important; }
}

/* -------------------- 16. Studio / team -------------------- */

.studio { background: var(--night-2); }

.team-list {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--ivory-faint);
}

.team-row {
  display: grid;
  grid-template-columns: 220px 1fr 1.2fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
  padding: clamp(40px, 5vw, 68px) 0;
  border-bottom: 1px solid var(--ivory-faint);
  transition: background-color 500ms var(--ease);
}
.team-row:hover { background: rgba(212, 175, 55, 0.02); }
.team-row:hover .team-portrait-initial { transform: scale(1.04); color: var(--gold-soft); }

.team-portrait {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--slate) 0%, #16243A 100%);
  border: 0.5px solid rgba(212, 175, 55, 0.4);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.12), transparent 60%);
  pointer-events: none;
}
.team-portrait-initial {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(64px, 9vw, 120px);
  color: var(--gold);
  opacity: 0.9;
  letter-spacing: 0;
  line-height: 1;
  position: relative; z-index: 1;
  transition: transform 600ms var(--ease), color 600ms var(--ease), opacity 400ms var(--ease);
}

/* Foto del team: copre l'iniziale quando carica (z-index più alto).
   Se manca, .is-missing → display:none → torna visibile l'iniziale. */
.team-portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 3;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 1.2s var(--ease), filter 500ms var(--ease);
  background: var(--slate);
}
.team-portrait-img.is-missing { display: none; }
.team-row:hover .team-portrait-img { transform: scale(1.03); filter: grayscale(0%) contrast(1.1); }

.team-meta {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 10px;
}
.team-name {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--ivory);
  letter-spacing: 0.005em;
  line-height: 1.1;
}
.team-role {
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase;
  margin-top: 8px;
}

.team-bio {
  padding-top: 10px;
  font-family: var(--f-body); font-size: 15px;
  line-height: 1.75; color: var(--ivory); opacity: 0.74;
  max-width: 540px;
}

@media (max-width: 900px) {
  .team-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 0;
  }
  .team-portrait { max-width: 160px; }
}

/* -------------------- 16b. Editorial divider (full-bleed) -------------------- */

.editorial-divider {
  position: relative;
  width: 100%;
  height: clamp(360px, 56vh, 620px);
  overflow: hidden;
  margin: 0;
  border-top: 1px solid var(--ivory-faint);
  border-bottom: 1px solid var(--ivory-faint);
}
.editorial-divider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(75%) brightness(0.55) contrast(1.1);
  mix-blend-mode: luminosity;
  will-change: transform;
  transition: transform 30s linear;
}
.editorial-divider::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 27, 46, 0.55) 0%, rgba(10, 27, 46, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 27, 46, 0.6) 100%);
  pointer-events: none;
}
.editorial-divider-caption {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(24px, 4vh, 56px);
  right: var(--pad-x);
  display: flex; flex-direction: column; gap: 16px;
  z-index: 1;
  pointer-events: none;
}
.editorial-divider-line {
  font-family: var(--f-editorial);
  font-style: italic; font-weight: 300;
  font-size: clamp(1.4rem, 3.2vw, 3rem);
  color: var(--ivory);
  letter-spacing: 0.005em;
  line-height: 1.2;
  max-width: 900px;
  opacity: 0.95;
}

/* -------------------- 17. Contact -------------------- */

.contact {
  background: var(--night);
  padding-bottom: 0;
}
.contact .section-head { margin-bottom: 40px; }

.contact-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 9vw, 9.5rem);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--ivory);
  margin: 0 0 32px;
  max-width: var(--max-w);
}

.contact-sub {
  font-family: var(--f-editorial); font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 21px);
  color: var(--ivory); opacity: 0.78;
  margin-bottom: clamp(56px, 8vh, 88px);
  max-width: 580px;
}

.cta-button {
  position: relative;
  display: inline-flex; align-items: center; gap: 28px;
  padding: clamp(28px, 3.5vw, 40px) clamp(40px, 5vw, 64px);
  border: 1px solid var(--gold);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: clamp(56px, 8vh, 80px);
  overflow: hidden;
  transition: color 400ms var(--ease), transform 300ms var(--ease);
  will-change: transform;
  z-index: 1;
}
.cta-button-fill {
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 600ms var(--ease);
  z-index: -1;
}
.cta-button-text { position: relative; z-index: 1; transition: color 400ms var(--ease); }
.cta-button-arrow {
  font-size: 0.7em;
  position: relative; z-index: 1;
  transition: transform 500ms var(--ease), color 400ms var(--ease);
  color: var(--gold);
}
.cta-button:hover .cta-button-fill { transform: scaleX(1); }
.cta-button:hover .cta-button-text { color: var(--night); }
.cta-button:hover .cta-button-arrow { color: var(--night); transform: translateX(12px); }

.contact-email-line {
  margin-bottom: clamp(72px, 10vh, 120px);
}
.contact-email-mini {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  transition: color 300ms var(--ease), border-color 300ms var(--ease);
}
.contact-email-mini:hover { color: var(--gold); border-color: var(--gold); }

.footer {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--ivory-faint);
  padding: 32px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  font-family: var(--f-body); font-size: 11px;
  letter-spacing: 0.25em; color: var(--ivory-dim);
  text-transform: uppercase;
}
.footer-brand {
  font-family: var(--f-display); font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ivory);
  font-size: 12px;
}
.footer-tagline {
  font-family: var(--f-editorial); font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.005em;
  font-size: 13px;
  color: var(--ivory-dim);
}

@media (max-width: 640px) {
  .footer-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cta-button { width: 100%; justify-content: space-between; }
}

/* -------------------- 18. Reduced motion -------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; transform: translateX(-10%); }
  .scroll-cue-arrow { animation: none; }
  [data-reveal-lines] .reveal-line-inner,
  [data-reveal-words] .reveal-word-inner { transform: translateY(0) !important; }
  [data-reveal-paragraph] { opacity: 1 !important; transform: none !important; }
  .spotlight { display: none; }
}
