/* ==========================================================
   BASE
   ========================================================== */
:root {
  --black: #050505;
  --ink: #0c0b0a;
  --ivory: #f3eee6;
  --paper: #efe8dc;
  --stone: #8b8479;
  --mist: rgba(243, 238, 230, 0.55);
  --gold: #c8a86a;
  --gold-soft: rgba(200, 168, 106, 0.35);
  --line: rgba(243, 238, 230, 0.12);
  --line-dark: rgba(12, 11, 10, 0.08);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(20px, 5vw, 80px);

  /* intensità della sovrapposizione nera sul video iniziale (0 = nessuna, 1 = nero pieno) */
  --hero-overlay: 0.55;
}

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

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }

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

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

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

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.serif-italic { font-family: var(--serif); font-style: italic; }

/* word splitting */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.w > span { display: inline-block; will-change: transform, opacity, filter; }
.c { display: inline-block; will-change: transform, opacity, filter; }

/* ==========================================================
   GRAIN + CURSOR
   ========================================================== */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); }
  80% { transform: translate(3%, 3%); }
}

.cursor {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ivory);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: width .6s var(--ease), height .6s var(--ease), opacity .4s;
  opacity: 0;
}
.cursor.is-hover { width: 64px; height: 64px; }
@media (hover: none) { .cursor { display: none; } }

/* ==========================================================
   PRELOADER
   ========================================================== */
.preloader {
  position: fixed; inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
}
.preloader__line {
  width: min(220px, 50vw); height: 1px;
  background: var(--line);
  overflow: hidden;
}
.preloader__line span {
  display: block; width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}
.preloader__word {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--mist);
  opacity: 0;
}

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 3.5vw, 40px) var(--gutter);
}
.nav__logos { display: flex; align-items: center; gap: clamp(18px, 3vw, 44px); }
.nav__logo { display: flex; align-items: center; opacity: 0; }
.nav__logo img {
  height: clamp(42px, 5.2vw, 76px);
  width: auto;
  max-width: clamp(90px, 14vw, 200px);
  object-fit: contain;
}
/* logo 2 (Taste Academy) un po' più piccolo del logo 1 */
.nav__logos--left .nav__logo:nth-child(2) img {
  height: clamp(34px, 4.2vw, 60px);
}
/* il logo di destra (FIPGC) è verticale: più alto per restare leggibile */
.nav__logos--right .nav__logo img {
  height: clamp(78px, 9vw, 136px);
  max-width: none;
}
.nav__logos--left .nav__logo:not(.nav__logo--empty) + .nav__logo:not(.nav__logo--empty) {
  padding-left: clamp(18px, 3vw, 44px);
  border-left: 1px solid var(--line);
}
.nav__logo--empty {
  height: clamp(34px, 4.4vw, 60px);
  padding: 0 clamp(14px, 1.6vw, 22px);
  border: 1px solid var(--line);
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--mist);
  white-space: nowrap;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero__media { position: absolute; inset: 0; }
.hero__video, .hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video { opacity: 0; transition: opacity 2.4s var(--ease); transform: scale(1.08); }
.hero__video.is-ready { opacity: 1; }
.hero__canvas { transition: opacity 2s var(--ease); }
.hero.has-video .hero__canvas { opacity: 0; }

.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0,0,0,var(--hero-overlay)), rgba(0,0,0,var(--hero-overlay))),
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(5,5,5,.35) 55%, rgba(5,5,5,.9) 100%),
    linear-gradient(to bottom, rgba(5,5,5,.45) 0%, rgba(5,5,5,0) 30%, rgba(5,5,5,.2) 60%, var(--black) 100%);
}

.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding: clamp(170px, 26vh, 250px) var(--gutter) clamp(90px, 13vh, 150px);
  max-width: 1320px; margin: 0 auto;
}
.hero__eyebrow { margin-bottom: 30px; opacity: 0; }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, min(7vw, 10.5vh), 124px);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 15ch;
}
@media (min-width: 900px) { .hero__title { max-width: none; } }
.hero__text {
  margin-top: clamp(24px, 3.5vh, 44px);
  max-width: 560px;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--mist);
}
.hero__text p { opacity: 0; }
.hero__text p + p { margin-top: 18px; }
.hero__lines span { display: block; color: var(--ivory); font-family: var(--serif); font-size: 1.35em; font-style: italic; line-height: 1.35; }
.hero__whisper { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }


.hero__scroll {
  position: absolute; z-index: 3;
  left: 50%; bottom: 34px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--mist);
  opacity: 0;
}
.hero__scroll-line { width: 1px; height: 54px; background: var(--line); overflow: hidden; }
.hero__scroll-line i {
  display: block; width: 100%; height: 100%;
  background: var(--ivory);
  animation: scrollLine 2.6s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ==========================================================
   JOURNEY (sezione chiara, pulitissima)
   ========================================================== */
.journey {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(140px, 22vh, 260px) 0;
  position: relative;
}
.journey .eyebrow { color: #9a7a3e; margin-bottom: 40px; }
.journey__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.journey__title .w > span { opacity: 0.12; }
.journey__body {
  margin-top: clamp(80px, 14vh, 160px);
  margin-left: auto;
  max-width: 560px;
  display: grid; gap: 56px;
}
.journey__line {
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  font-size: clamp(16px, 1.3vw, 19px);
  color: #3b3833;
}
.journey__line .accent {
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 50px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 8px;
}
.journey__line .serif-italic { font-size: clamp(24px, 2.2vw, 32px); line-height: 1.25; color: var(--ink); }

/* ==========================================================
   CAST (i protagonisti)
   ========================================================== */
.cast {
  background: var(--black);
  position: relative;
}
.cast__pin {
  height: 100vh; height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 var(--gutter);
  position: relative;
  overflow: hidden;
}
.cast__eyebrow { position: absolute; top: clamp(90px, 14vh, 140px); left: 50%; transform: translateX(-50%); white-space: nowrap; }
.cast__equation {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 2.4vw, 40px);
  transition: opacity 1s var(--ease);
}
.cast__item {
  display: flex; flex-direction: column; align-items: center;
  min-width: clamp(70px, 9vw, 150px);
}
.cast__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 150px);
  line-height: 1;
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--ivory);
}
.cast__label {
  margin-top: 14px;
  font-size: clamp(9px, 0.8vw, 11px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
}
.cast__op {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 60px);
  color: var(--gold);
  padding-bottom: 28px;
}
.cast__item, .cast__op { opacity: 0; }

.cast__result {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  pointer-events: none;
}
.cast__eq {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 6vw, 100px);
  color: var(--gold);
  opacity: 0;
}
.cast__q {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(200px, 38vw, 560px);
  line-height: 0.8;
  color: var(--ivory);
  opacity: 0;
  text-shadow: 0 0 80px rgba(200,168,106,.25), 0 0 200px rgba(200,168,106,.15);
}

@media (max-width: 720px) {
  /* telefono: colonna centrata nella pagina, contenuto allineato a sinistra */
  .cast__equation {
    flex-direction: column; flex-wrap: nowrap;
    align-items: flex-start;
    gap: 6px;
    width: max-content;
    margin: 0 auto;
  }
  .cast__item {
    flex-direction: row; align-items: baseline;
    gap: 20px;
    min-width: 0;
  }
  .cast__num { font-size: 60px; min-width: 76px; text-align: left; }
  .cast__label { margin-top: 0; }
  .cast__op { padding: 0 0 0 4px; font-size: 22px; line-height: 1; }
}

/* ==========================================================
   CHAPTERS
   ========================================================== */
.chapters {
  background: var(--black);
  padding: clamp(140px, 22vh, 240px) 0 clamp(100px, 16vh, 180px);
}
.chapters__head { text-align: center; margin-bottom: clamp(90px, 14vh, 160px); }
.chapters__head .eyebrow { margin-bottom: 28px; }
.chapters__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 5vw, 78px);
  line-height: 1.05;
}
.chapters__title em { color: var(--mist); }

.chapter {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 400px);
  gap: clamp(40px, 8vw, 140px);
  align-items: center;
  padding: clamp(70px, 10vh, 120px) 0;
  position: relative;
}
.chapter::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--line);
  transform: scaleX(var(--line-scale, 0));
  transform-origin: left;
}
.chapter:nth-child(even) { grid-template-columns: minmax(260px, 400px) 1fr; }
.chapter:nth-child(even) .chapter__text { order: 2; }

.chapter__index {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 30px;
}
.chapter__index .eyebrow { color: var(--gold); }
.chapter__index .rule { width: 48px; height: 1px; background: var(--gold-soft); }
.chapter__date { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }

.chapter__numeral {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(90px, 14vw, 220px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243,238,230,.22);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.chapter__lines {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.12;
}
.chapter__lines span { display: block; }
.chapter__desc {
  margin-top: 28px;
  max-width: 440px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--mist);
}

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #0e0d0c;
  cursor: pointer;
  isolation: isolate;
  clip-path: inset(8% 8% 8% 8% round 4px);
}
.reel video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.reel__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200,168,106,.14), transparent 60%),
    radial-gradient(ellipse at 70% 90%, rgba(243,238,230,.06), transparent 60%),
    #0e0d0c;
  color: var(--stone);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.reel__placeholder svg { opacity: .6; }
.reel.has-video .reel__placeholder { display: none; }
.reel__ui {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity: 0; transition: opacity .6s var(--ease);
}
.reel.has-video:hover .reel__ui, .reel.is-unmuted .reel__ui { opacity: 1; }
.reel__progress { position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

/* Capitolo bloccato */
.chapter.is-locked .chapter__numeral { -webkit-text-stroke-color: rgba(243,238,230,.1); }
.chapter.is-locked .chapter__lines { color: var(--stone); font-style: italic; }
.reel--locked { cursor: default; }
.reel--locked .reel__placeholder { gap: 22px; }
.lock {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  position: relative;
}
.lock::after {
  content: ""; position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse 3.2s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.9); opacity: 0; }
}
.reel--locked .soon { font-family: var(--serif); font-style: italic; font-size: 22px; letter-spacing: 0.04em; text-transform: none; color: var(--ivory); }
.reel--locked .blur-frag {
  position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 40% 30%, rgba(200,168,106,.18), transparent 40%),
    radial-gradient(circle at 60% 75%, rgba(243,238,230,.08), transparent 45%);
  filter: blur(30px);
  animation: drift 14s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes drift { to { transform: translate(8%, -6%) rotate(8deg); } }

@media (max-width: 820px) {
  .chapter, .chapter:nth-child(even) { grid-template-columns: 1fr; gap: 44px; }
  .chapter:nth-child(even) .chapter__text { order: 0; }
  .reel { max-width: 360px; margin: 0 auto; }
}

/* ==========================================================
   SPONSORS
   ========================================================== */
.sponsors {
  background: #ffffff;
  color: var(--ink);
  padding: clamp(140px, 22vh, 240px) 0;
  text-align: center;
}
.sponsors .eyebrow { color: #9a7a3e; margin-bottom: 30px; }
.sponsors__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.sponsors__text {
  max-width: 600px; margin: 40px auto 0;
  color: #4a463f;
  font-size: clamp(15px, 1.2vw, 18px);
}
.sponsors__text p + p { margin-top: 16px; }
.sponsors__grid {
  margin-top: clamp(80px, 12vh, 140px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1px 0 0 1px;
}
.sponsor {
  --cols: 8;
  width: calc(100% / var(--cols));
  margin: -1px 0 0 -1px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 0;
  background: #ffffff;
  opacity: 0;
  position: relative;
  overflow: hidden;
}
.sponsor img {
  position: relative;
  display: block;
  width: 74%; height: 64%;
  object-fit: contain;
  mix-blend-mode: multiply; /* i loghi con fondo bianco si fondono con la pagina */
  transition: transform 1.2s var(--ease), opacity .8s var(--ease);
}
.sponsor:hover img { transform: scale(1.06); }
.sponsor span {
  position: relative;
  opacity: .6;
  transition: opacity .8s var(--ease);
}
.sponsor span {
  font-family: var(--serif);
  font-size: clamp(11px, 1vw, 15px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.sponsor:hover span { opacity: 1; }
@media (max-width: 1100px) { .sponsor { --cols: 6; } }
@media (max-width: 820px) { .sponsor { --cols: 4; } }
@media (max-width: 560px) { .sponsor { --cols: 3; } }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--black);
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute;
  left: 50%; top: 50%;
  width: 70vmax; height: 70vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,168,106,.10), transparent 60%);
  pointer-events: none;
}
.footer__inner {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
  position: relative;
}
.footer__phrase {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(42px, 7.5vw, 124px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.footer__continue {
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
}
.dots i { font-style: normal; animation: dot 1.8s infinite; opacity: 0; }
.dots i:nth-child(2) { animation-delay: .3s; }
.dots i:nth-child(3) { animation-delay: .6s; }
@keyframes dot { 0%, 20% { opacity: 0; } 40%, 80% { opacity: 1; } 100% { opacity: 0; } }
.footer__base {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px 32px;
  padding: 28px var(--gutter);
  border-top: 1px solid var(--line);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--stone);
  position: relative;
}
.footer__legal { letter-spacing: 0.18em; line-height: 1.8; }
@media (max-width: 720px) {
  .footer__base { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media (max-width: 720px), (max-height: 760px) {
  .hero__scroll { display: none; }
}

/* avanzamento capitoli */
.chapters__progress {
  margin-top: 48px;
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--stone);
}
.chapters__count { font-family: var(--serif); font-size: 18px; letter-spacing: 0.12em; color: var(--mist); }
.chapters__count b { font-weight: 400; color: var(--gold); }
.chapters__bar { width: clamp(80px, 12vw, 160px); height: 1px; background: var(--line); overflow: hidden; }
.chapters__bar i { display: block; height: 100%; background: var(--gold); transform: scaleX(var(--p, 0)); transform-origin: left; transition: transform 2.4s var(--ease) .6s; }
@media (max-width: 560px) { .chapters__caption { display: none; } }

/* ==========================================================
   LE MAISON (sfondo panna)
   ========================================================== */
.maison {
  background: #f4eee3;
  color: var(--ink);
  padding: clamp(130px, 20vh, 220px) 0;
  text-align: center;
}
.maison .eyebrow { color: #9a7a3e; margin-bottom: 30px; }
.maison__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(38px, 5.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.maison__title em { color: #6f675c; }
.maison__grid {
  margin-top: clamp(80px, 13vh, 150px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 110px);
}
.maison__item {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(28px, 4vh, 44px);
}
.maison__index {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: #9a7a3e;
}
.maison__logo {
  height: clamp(150px, 20vw, 260px);
  display: flex; align-items: center; justify-content: center;
}
.maison__logo img {
  display: block;
  width: auto; height: auto;
  max-width: 100%;
  transition: transform 1.4s var(--ease);
}
/* bilanciamento ottico: Kostumn è orizzontale, Satilia verticale */
.maison__logo--wide img { width: clamp(220px, 30vw, 420px); }
.maison__logo--tall img { height: clamp(150px, 20vw, 260px); }
.maison__item:hover .maison__logo img { transform: scale(1.04); }
.maison__divider {
  width: 1px;
  height: clamp(160px, 22vw, 280px);
  background: linear-gradient(to bottom, transparent, rgba(154,122,62,.55), transparent);
  transform-origin: center;
}

@media (max-width: 720px) {
  .maison__grid { grid-template-columns: 1fr; gap: 56px; }
  .maison__divider { width: 80px; height: 1px; margin: 0 auto; background: linear-gradient(to right, transparent, rgba(154,122,62,.55), transparent); }
  .maison__logo { height: auto; }
  .maison__logo--wide img { width: min(300px, 78vw); }
  .maison__logo--tall img { height: 180px; }
}

/* telefono/tablet: niente hover, quindi l'indicazione "Tocca per l'audio" resta visibile */
@media (hover: none) {
  .reel.has-video .reel__ui { opacity: 1; }
}
