/* =========================================================
   Era d'Aria Lab — Editorial B&W
   ========================================================= */

:root {
  --bg: #ffffff;
  --fg: #0b0b0b;
  --muted: #767676;
  --line: rgba(11, 11, 11, 0.14);
  --line-strong: rgba(11, 11, 11, 0.28);
  --inv-bg: #000000;
  --inv-fg: #ffffff;
  --inv-muted: rgba(255, 255, 255, 0.6);
  --inv-line: rgba(255, 255, 255, 0.18);

  /* Un unico font per tutto il sito, come il logo Era d'Aria Lab */
  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Poppins", "Helvetica Neue", Arial, sans-serif;
  /* Font dedicato al brand Trentino In Jar.
     Il font reale è "Perfectly Vintage" (commerciale, non su Google Fonts):
     quando il file verrà caricato in assets/fonts/ e attivato con la
     @font-face qui sotto, si applicherà in automatico. Fino ad allora
     viene usato "Bitter" come fallback vintage simile. */
  --font-tij: "Perfectly Vintage", "Bitter", Georgia, "Times New Roman", serif;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 76px;
  --section-pad: clamp(4.5rem, 11vw, 9rem);
  --gap-ref: clamp(1.75rem, 4vw, 3rem);
}

/* ---------- Font in locale (self-hosted, niente richieste a Google) ---------- */
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter";
  src: url("../assets/fonts/bitter-400.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bitter";
  src: url("../assets/fonts/bitter-italic-400.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Font del brand Trentino In Jar — attivare quando il file sarà caricato.
   Formati supportati: woff2 (consigliato), woff, ttf, otf.
   Basta togliere il commento e mettere il file in assets/fonts/.
@font-face {
  font-family: "Perfectly Vintage";
  src: url("../assets/fonts/PerfectlyVintage.woff2") format("woff2"),
       url("../assets/fonts/PerfectlyVintage.woff") format("woff");
  font-weight: 400 800;
  font-display: swap;
}
*/

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}
html.has-smooth { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
/* height: auto impedisce che gli attributi width/height dell'HTML
   (presenti per riservare lo spazio ed evitare sfarfallii) deformino
   l'immagine quando la larghezza viene vincolata dal layout. */
img { max-width: 100%; height: auto; display: block; }
em { font-style: italic; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--fg);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--fg);
  z-index: 900;
  will-change: transform;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-logo { height: 34px; width: auto; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  padding: 0.25rem 0;
}
.nav a span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  vertical-align: super;
  color: var(--muted);
  margin-right: 0.15rem;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav-contact {
  border: 1px solid var(--fg);
  padding: 0.45rem 0.9rem !important;
  border-radius: 100px;
}
.nav-contact::after { display: none; }
.nav-contact:hover { background: var(--fg); color: var(--bg); }
.nav-contact:hover span { color: rgba(255,255,255,0.6); }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-btn span {
  display: block;
  width: 26px; height: 2px;
  background: var(--fg);
  margin-left: auto;
  transition: transform 0.35s var(--ease), width 0.35s var(--ease), opacity 0.2s;
}
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); width: 26px; }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); width: 26px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--fg); color: var(--bg); }
.btn-solid:hover { background: #2a2a2a; }
.btn-line { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn-line:hover { border-color: var(--fg); background: var(--fg); color: var(--bg); }
.btn-solid-inv { background: var(--inv-fg); color: var(--inv-bg); }
.btn-solid-inv:hover { background: rgba(255,255,255,0.85); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow .tick {
  width: 8px; height: 8px;
  background: var(--fg);
  border-radius: 50%;
  display: inline-block;
}
.eyebrow-sep { opacity: 0.4; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
}
.hero-inner {
  padding-top: clamp(2rem, 8vh, 6rem);
  padding-bottom: clamp(2rem, 8vh, 6rem);
}
.hero-title {
  margin: 1.5rem 0 0;
  font-weight: 800;
  font-size: clamp(3.2rem, 13vw, 11rem);
  letter-spacing: -0.045em;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-in {
  display: block;
  transform: translateY(110%);
}
.hero-title em { font-style: italic; font-weight: 800; }
.is-loaded .hero-title .line-in {
  animation: lineUp 1.1s var(--ease) forwards;
}
.is-loaded .hero-title .line:nth-child(1) .line-in { animation-delay: 0.15s; }
.is-loaded .hero-title .line:nth-child(2) .line-in { animation-delay: 0.28s; }
.is-loaded .hero-title .line:nth-child(3) .line-in { animation-delay: 0.41s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-foot {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: end;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-lead {
  font-size: 1.05rem;
  color: #2c2c2c;
  max-width: 34rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-self: end; }

.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue-line {
  width: 46px; height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fg);
  transform: translateX(-100%);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--fg);
  border-bottom: 1px solid var(--fg);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.marquee-track .dot { opacity: 0.35; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Section base ---------- */
.section {
  padding: var(--section-pad) 0;
  /* Allinea l'arrivo da un link ancora (#nav, pulsanti hero) in modo che
     resti sopra la testata fissa lo stesso spazio vuoto che c'è già
     sotto la linea del section-head (--gap-ref), invece di finire
     incollata sotto l'header. */
  scroll-margin-top: calc(var(--header-h) + var(--gap-ref) - var(--section-pad));
}
.section-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: var(--gap-ref);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.section-index {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-title {
  font-size: clamp(2rem, 5.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
}

/* ---------- 01 Manifesto ---------- */
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.manifesto-text .word {
  display: inline-block;
  opacity: 0.12;
  transition: opacity 0.5s var(--ease);
}
.manifesto-text.lit .word { opacity: 1; }

/* ---------- Shared numbered list ----------
   Un unico sistema di lista (numero + titolo + testo), usato in
   Filosofia, Prodotti ed Eventi, con la stessa griglia, gli stessi
   spazi e lo stesso stile di divisore. Le sezioni che lo usano possono
   solo intensificare la scala tipografica (es. Prodotti), mai cambiare
   il formato del numero o il tipo di divisore. */
.num-list {
  list-style: none;
  margin: clamp(2.5rem, 6vw, 5rem) 0 0;
  padding: 0;
}
.num-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: baseline;
  padding: clamp(1.5rem, 3.5vw, 2.2rem) 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.num-list-item:last-child { border-bottom: 1px solid var(--line); }
.num-list-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  padding-top: 0.35em;
  align-self: start;
}
.num-list-title {
  grid-column: 2;
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  line-height: 1.1;
}
.num-list-desc {
  grid-column: 2;
  color: #333;
  max-width: 42ch;
  margin: 0;
  font-size: 1rem;
}

/* ---------- 02 Products (scala tipografica maggiore: sono il "menu") ---------- */
.product-list .num-list-title {
  font-size: clamp(2rem, 6vw, 4.4rem);
  margin: 0;
  transition: transform 0.4s var(--ease);
}
.product-list .num-list-desc { margin-top: 0.8rem; }
@media (hover: hover) {
  .product-list .num-list-item:hover { padding-left: 1.25rem; }
  .product-list .num-list-item:hover .num-list-title { transform: translateX(0.25rem); }
}

/* ---------- 03 Eventi & Catering ---------- */
.catering-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.catering-lead {
  color: #333;
  font-size: 1.1rem;
  max-width: 40ch;
  margin: 1.5rem 0 2.25rem;
}

.ticket {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 22rem;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 2.25rem 1.75rem 1.75rem;
  transform: rotate(1.4deg);
  transition: transform 0.5s var(--ease);
}
.ticket:hover { transform: rotate(0deg); }
.ticket::before {
  content: "Su misura";
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  background: var(--bg);
  padding: 0 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticket-list { margin: 0; }
.ticket-list .num-list-item {
  padding: 0.9rem 0;
  border-top-color: var(--line-strong);
}
.ticket-list .num-list-item:last-child { border-bottom: none; }
.ticket-list .num-list-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

/* ---------- 04 B2B (inverted) ---------- */
.b2b {
  background: var(--inv-bg);
  color: var(--inv-fg);
}
.b2b .section-head { border-bottom-color: var(--inv-line); }
.b2b .section-label { color: var(--inv-muted); }
.b2b-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.b2b-lead {
  color: var(--inv-muted);
  font-size: 1.1rem;
  max-width: 40ch;
  margin: 1.5rem 0 2.25rem;
}
.feature-list { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.feature-list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--inv-line);
  font-size: 1rem;
}
.feature-list li:last-child { border-bottom: 1px solid var(--inv-line); }
.feature-list li span { color: var(--inv-muted); }
.steps { display: flex; flex-direction: column; gap: 0.9rem; }
.step {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  color: var(--inv-muted);
  font-size: 0.98rem;
}
.step-n {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--inv-fg);
  border: 1px solid var(--inv-line);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
}

/* ---------- 04 B2C ---------- */
.b2c-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.b2c-lead {
  color: #333;
  font-size: 1.1rem;
  max-width: 40ch;
  margin: 1.5rem 0 2.25rem;
}
.b2c-logo {
  display: block;
  justify-self: center;
  max-width: 22rem;
}
.b2c-logo img {
  width: 100%;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}
.b2c-logo:hover img,
.b2c-logo.in-view img {
  filter: grayscale(0);
  transform: scale(1.02) rotate(-1deg);
}

/* La sezione Trentino In Jar usa il font del proprio brand */
.b2c .section-index,
.b2c .section-label,
.b2c .section-title,
.b2c .b2c-lead {
  font-family: var(--font-tij);
}
.b2c .section-title { letter-spacing: -0.01em; font-weight: 800; }
.b2c .section-label { text-transform: none; letter-spacing: 0.02em; }
.b2c .b2c-lead { font-size: 1.15rem; }

/* ---------- 05 Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.contact-info { display: flex; flex-direction: column; }
.info-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 1px solid var(--line); }
.info-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-value { font-size: 1.15rem; font-weight: 500; }
a.info-value { transition: opacity 0.25s; }
a.info-value:hover { opacity: 0.55; }

.contact-form { display: flex; flex-direction: column; gap: 1.6rem; }
.field { position: relative; }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--fg);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.5rem 0;
  resize: vertical;
}
.field textarea { min-height: 3rem; }
.field label {
  position: absolute;
  left: 0; top: 0.5rem;
  color: var(--muted);
  font-size: 1.02rem;
  pointer-events: none;
  transition: transform 0.3s var(--ease), font-size 0.3s var(--ease), color 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--fg); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.35rem);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}
.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }
.form-note { font-size: 0.82rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--inv-bg);
  color: var(--inv-fg);
  padding: clamp(3.5rem, 8vw, 6rem) 0 2.5rem;
}
.footer-logo img {
  height: clamp(90px, 18vw, 190px);
  width: auto;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.footer-social-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--inv-muted);
}
.footer-social-links { display: flex; gap: 0.9rem; }
.footer-social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--inv-line);
  border-radius: 50%;
  color: var(--inv-fg);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-social-links a:hover {
  background: var(--inv-fg);
  color: var(--inv-bg);
  border-color: var(--inv-fg);
  transform: translateY(-2px);
}
.footer-social-links svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--inv-line);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--inv-muted);
}
.footer-legal, .footer-meta { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-meta { text-align: right; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* stagger children that share a parent */
[data-reveal].is-visible { transition-delay: var(--d, 0s); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .b2b-grid, .b2c-grid, .contact-grid, .hero-foot, .catering-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions { justify-self: start; }
  .b2c-logo { max-width: 18rem; margin-top: 1rem; }
  .ticket { max-width: 100%; margin-top: 0.5rem; transform: none; }
  .ticket:hover { transform: none; }
}

@media (max-width: 720px) {
  .menu-btn { display: flex; }
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.5s var(--ease);
    box-shadow: 0 30px 40px -30px rgba(0,0,0,0.3);
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 1rem 0; font-size: 1.35rem; border-bottom: 1px solid var(--line); }
  .nav a span { font-size: 0.7rem; }
  .nav-contact {
    border: none;
    border-radius: 0;
    padding: 1rem 0 !important;
  }
  .nav-contact:hover { background: transparent; color: var(--fg); }
  .site-header.scrolled { background: rgba(255,255,255,0.92); }
  .footer-bottom { flex-direction: column; }
  .footer-meta { text-align: left; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line-in { transform: none; }
  .manifesto-text .word { opacity: 1; }
  .marquee-track { animation: none; }
}
