/* ================================================================
   SIMONE TITOTTO — Cinematic Dark Editorial
   Palette: #0a0a0a bg, #D4A853 gold, #F0EBE0 cream, #1a1a18 surface
   Fonts: Zodiak (display/editorial) + Satoshi (body/UI)
   ================================================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

:root {
  --bg:       #0a0a0a;
  --surface:  #141412;
  --border:   #222220;
  --gold:     #D4A853;
  --gold-10:  rgba(212,168,83,.10);
  --gold-20:  rgba(212,168,83,.20);
  --cream:    #F0EBE0;
  --cream-60: rgba(240,235,224,.60);
  --cream-35: rgba(240,235,224,.35);
  --muted:    #6e6c68;
  --faint:    #2c2c2a;

  --font-d: 'Zodiak', 'Georgia', serif;
  --font-b: 'Satoshi', 'Helvetica Neue', sans-serif;

  --xs:   clamp(.75rem, .7rem + .2vw, .875rem);
  --sm:   clamp(.875rem, .82rem + .25vw, 1rem);
  --base: clamp(1rem, .95rem + .22vw, 1.15rem);
  --lg:   clamp(1.15rem, 1rem + .7vw, 1.6rem);
  --xl:   clamp(1.6rem, 1.2rem + 1.3vw, 2.4rem);
  --2xl:  clamp(2.2rem, 1.2rem + 2.8vw, 4rem);
  --3xl:  clamp(3rem, 1rem + 5vw, 6.5rem);
  --hero: clamp(2.4rem, 1rem + 4.5vw, 5.5rem);

  --ease: cubic-bezier(.16,1,.3,1);
  --ease-in: cubic-bezier(.4,0,1,1);

  --s1:.25rem; --s2:.5rem; --s3:.75rem; --s4:1rem; --s5:1.25rem;
  --s6:1.5rem; --s8:2rem; --s10:2.5rem; --s12:3rem; --s16:4rem;
  --s20:5rem;  --s24:6rem; --s32:8rem;

  --content: 1160px;
  --r: .375rem;
}

body {
  font-family: var(--font-b);
  font-size: var(--base);
  color: var(--cream);
  background: var(--bg);
  line-height: 1.7;
  min-height: 100dvh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
h1,h2,h3 { text-wrap: balance; line-height: 1.1; }
p { text-wrap: pretty; max-width: 64ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
::selection { background: rgba(212,168,83,.3); }
:focus-visible { outline: 1.5px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ── Label ────────────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s6);
}

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: var(--s4) var(--s8);
  transition: background .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--content); margin: 0 auto;
  display: flex; align-items: center; gap: var(--s8);
}
.nav__logo {
  font-family: var(--font-d);
  font-size: 1.1rem;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 400;
}
.nav__links {
  display: flex; gap: var(--s6); margin-right: auto;
}
.nav__links a {
  font-size: var(--xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-60);
  transition: color .2s;
}
.nav__links a:hover { color: var(--cream); }
.nav__cta {
  font-size: var(--xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-20);
  padding: var(--s2) var(--s5);
  border-radius: 999px;
  transition: background .2s, border-color .2s;
}
.nav__cta:hover { background: var(--gold-10); border-color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(var(--s12), 8vw, var(--s24));
}

/* Full-bleed photo */
.hero__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform-origin: center;
  animation: heroScale 12s ease-out forwards;
}
@keyframes heroScale {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* Cinematic scrim: dark bottom, slight left */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,    rgba(10,10,10,.82) 0%, rgba(10,10,10,.3) 35%, transparent 62%),
    linear-gradient(to right,  rgba(10,10,10,.45) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(10,10,10,.3)  0%, transparent 28%);
}

.hero__content {
  position: relative; z-index: 2;
  padding: 0 clamp(var(--s6), 8vw, var(--s20));
  max-width: 820px;
}
.hero__eyebrow {
  display: block;
  font-size: var(--xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s8);
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero__heading {
  font-family: var(--font-d);
  font-size: var(--hero);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: var(--s8);
  max-width: 16ch;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .5s forwards;
}
.hero__heading em {
  font-style: italic;
  color: var(--gold);
}
.hero__tags {
  display: flex; align-items: center; gap: var(--s3);
  font-size: var(--xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-60);
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}
.hero__tags .sep { color: var(--gold); opacity: .5; }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute; bottom: var(--s8); right: var(--s10);
  z-index: 2;
}
.hero__scroll-track {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ───────────────────────────────────────────────────── */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s6) clamp(var(--s6), 8vw, var(--s20));
  overflow-x: auto;
}
.ticker::-webkit-scrollbar { display: none; }
.ticker__inner {
  display: flex; align-items: center;
  gap: var(--s8);
  max-width: var(--content); margin: 0 auto;
  min-width: max-content;
}
.ticker__item {
  display: flex; flex-direction: column; gap: var(--s1);
  flex-shrink: 0;
}
.ticker__year {
  font-family: var(--font-d);
  font-size: var(--2xl);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.ticker__event {
  font-size: var(--xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 22ch;
}
.ticker__divider {
  width: 1px; height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── CHI SONO — split editorial ───────────────────────────────── */
.chi-sono {
  padding: clamp(var(--s16), 10vw, var(--s32)) clamp(var(--s6), 8vw, var(--s20));
}
.chi-sono__inner {
  max-width: var(--content); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: start;
}
.chi-sono__text-col { max-width: 56ch; }

.chi-sono__opener {
  font-family: var(--font-d);
  font-size: var(--xl);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: var(--s8);
  max-width: none;
}
.chi-sono__opener em { font-style: italic; color: var(--gold); }

.chi-sono__text-col p {
  color: var(--cream-60);
  font-size: var(--base);
  line-height: 1.8;
  margin-bottom: var(--s5);
}
.chi-sono__text-col p strong { color: var(--cream); font-weight: 500; }

.chi-sono__quote {
  margin-top: var(--s10);
  padding: var(--s6) var(--s8);
  border-left: 2px solid var(--gold);
  font-family: var(--font-d);
  font-style: italic;
  font-size: var(--lg);
  color: var(--gold);
  line-height: 1.55;
  max-width: none;
}

/* Photo column */
.chi-sono__photo-col { position: sticky; top: 6rem; }
.chi-sono__photo-wrap { position: relative; }
.chi-sono__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r);
  filter: saturate(.9) brightness(.92);
  transition: filter .4s;
}
.chi-sono__photo-wrap:hover .chi-sono__photo {
  filter: saturate(1) brightness(1);
}
.chi-sono__photo-label {
  display: flex;
  justify-content: space-between;
  padding: var(--s3) 0;
  font-size: var(--xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: var(--s3);
}

/* ── FULL BLEED PHOTO ─────────────────────────────────────────── */
.fullbleed-photo {
  position: relative;
  height: 65vh; min-height: 380px;
  overflow: hidden;
}
.fullbleed-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(.75) saturate(.85);
  transition: transform .6s var(--ease);
}
.fullbleed-photo:hover img { transform: scale(1.02); }
.fullbleed-photo__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--s8) clamp(var(--s6), 8vw, var(--s20));
}
.fullbleed-photo__caption {
  font-size: var(--xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-60);
  max-width: none;
}

/* ── GENESI ───────────────────────────────────────────────────── */
.genesi {
  padding: clamp(var(--s16), 10vw, var(--s32)) clamp(var(--s6), 8vw, var(--s20));
  border-top: 1px solid var(--border);
}
.genesi__inner { max-width: var(--content); margin: 0 auto; }

.genesi__heading {
  font-family: var(--font-d);
  font-size: var(--2xl);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: var(--s10);
}
.genesi__heading em { font-style: italic; color: var(--gold); }

.genesi__cols {
  display: grid;
  grid-template-columns: .45fr .55fr;
  gap: clamp(var(--s8), 6vw, var(--s16));
  align-items: start;
}
.genesi__lead {
  font-family: var(--font-d);
  font-size: var(--xl);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  max-width: 24ch;
  position: sticky; top: 7rem;
}
.genesi__body p {
  color: var(--cream-60);
  font-size: var(--base);
  line-height: 1.8;
  margin-bottom: var(--s5);
}

/* ── VALORI ───────────────────────────────────────────────────── */
.valori {
  padding: clamp(var(--s16), 10vw, var(--s32)) clamp(var(--s6), 8vw, var(--s20));
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.valori__inner { max-width: var(--content); margin: 0 auto; }
.valori__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: var(--s10);
}
.valore {
  padding: var(--s10) var(--s8);
  border-top: 1px solid var(--border);
  transition: background .25s;
}
.valore:nth-child(odd) { border-right: 1px solid var(--border); padding-left: 0; }
.valore:nth-child(even) { padding-right: 0; }
.valore:nth-child(3), .valore:nth-child(4) { border-top: 1px solid var(--border); }
.valore:hover { background: var(--gold-10); }

.valore__num {
  display: block;
  font-family: var(--font-d);
  font-size: var(--xs);
  color: var(--gold);
  opacity: .6;
  letter-spacing: .12em;
  margin-bottom: var(--s4);
}
.valore__title {
  font-family: var(--font-d);
  font-size: var(--lg);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: var(--s4);
  line-height: 1.3;
  max-width: 34ch;
}
.valore p {
  font-size: var(--sm);
  color: var(--muted);
  line-height: 1.7;
  max-width: 38ch;
}

/* ── BRIDGE ───────────────────────────────────────────────────── */
.bridge {
  position: relative;
  padding: clamp(var(--s20), 14vw, var(--s32)) clamp(var(--s6), 8vw, var(--s20));
  text-align: center;
  overflow: hidden;
}
.bridge__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,168,83,.08), transparent 70%);
  pointer-events: none;
}
.bridge__inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.bridge__heading {
  font-family: var(--font-d);
  font-size: var(--2xl);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: var(--s5);
}
.bridge__sub {
  color: var(--muted);
  font-size: var(--base);
  line-height: 1.7;
  margin-bottom: var(--s10);
  max-width: none;
}
.bridge__cta {
  display: inline-flex; align-items: center; gap: var(--s3);
  background: var(--gold);
  color: var(--bg);
  font-size: var(--sm);
  font-weight: 500;
  letter-spacing: .08em;
  padding: var(--s4) var(--s10);
  border-radius: 999px;
  transition: background .2s, transform .25s var(--ease);
}
.bridge__cta:hover { background: #e8c070; transform: translateY(-2px); }
.bridge__cta svg { transition: transform .2s var(--ease); }
.bridge__cta:hover svg { transform: translateX(4px); }

/* ── CONTATTI ─────────────────────────────────────────────────── */
.contatti {
  padding: clamp(var(--s16), 10vw, var(--s24)) clamp(var(--s6), 8vw, var(--s20));
  border-top: 1px solid var(--border);
}
.contatti__inner { max-width: var(--content); margin: 0 auto; }
.contatti__heading {
  font-family: var(--font-d);
  font-size: var(--2xl);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: var(--s4);
}
.contatti__sub {
  color: var(--muted);
  margin-bottom: var(--s10);
}
.contatti__actions { display: flex; gap: var(--s4); flex-wrap: wrap; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--s3);
  padding: var(--s4) var(--s8);
  border-radius: 999px;
  font-size: var(--sm);
  font-weight: 500;
  transition: background .2s, border-color .2s, transform .25s var(--ease);
}
.btn--primary { background: var(--gold); color: var(--bg); }
.btn--primary:hover { background: #e8c070; transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(240,235,224,.18); }
.btn--ghost:hover { border-color: rgba(240,235,224,.45); background: rgba(240,235,224,.05); transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  padding: var(--s8) clamp(var(--s6), 8vw, var(--s20));
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: var(--content); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s4);
}
.footer__left, .footer__right {
  display: flex; align-items: center; gap: var(--s4);
  font-size: var(--xs); color: var(--muted);
  letter-spacing: .08em;
}
.footer__sep { opacity: .35; }
.footer__right a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .28s; }
.reveal-d4 { transition-delay: .38s; }

/* ── MOBILE ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }

  .chi-sono__inner {
    grid-template-columns: 1fr;
  }
  .chi-sono__photo-col {
    position: static;
    max-width: 400px;
  }

  .genesi__cols { grid-template-columns: 1fr; }
  .genesi__lead { position: static; font-size: var(--lg); }

  .valori__grid { grid-template-columns: 1fr; }
  .valore:nth-child(odd) { border-right: none; padding-left: 0; }
  .valore { padding: var(--s8) 0; }

  .fullbleed-photo { height: 50vw; min-height: 260px; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: var(--s2); }
}

@media (max-width: 600px) {
  .nav__cta { display: none; }
  .hero__heading { font-size: clamp(2rem, 9vw, 3.2rem); max-width: 100%; }
  .ticker__inner { gap: var(--s5); }
  .contatti__actions { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ── SCINTILLA — il momento che ha cambiato tutto ─────────────── */
.scintilla {
  padding: clamp(var(--s16), 10vw, var(--s32)) clamp(var(--s6), 8vw, var(--s20));
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.scintilla__inner { max-width: var(--content); margin: 0 auto; }

.scintilla__heading {
  font-family: var(--font-d);
  font-size: var(--2xl);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: var(--s5);
}
.scintilla__heading em { font-style: italic; color: var(--gold); }

.scintilla__sub {
  color: var(--cream-60);
  font-size: var(--base);
  line-height: 1.75;
  max-width: 60ch;
  margin-bottom: clamp(var(--s10), 6vw, var(--s16));
}

.scintilla__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.scintilla__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
}
.scintilla__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.82) brightness(.86);
  transition: transform .65s var(--ease), filter .4s;
}
.scintilla__photo:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(.95);
}
.scintilla__photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s5) var(--s5) var(--s4);
  background: linear-gradient(to top, rgba(10,10,10,.9) 0%, transparent 100%);
  font-size: var(--xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-60);
}

/* ── GENESI FOTO — Estrada Mário Titotto ──────────────────────── */
.genesi__foto {
  margin-top: var(--s12);
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  max-width: 420px;
}
.genesi__foto img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.85) brightness(.88);
  transition: transform .65s var(--ease);
}
.genesi__foto:hover img { transform: scale(1.02); }
.genesi__foto-caption {
  margin-top: var(--s3);
  font-size: var(--xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}

/* ── MOBILE additions ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .scintilla__photos { grid-template-columns: 1fr; }
  .scintilla__photo img { aspect-ratio: 4/3; }
  .genesi__foto { max-width: 100%; }
}

/* ── TERRA — globo interattivo ─────────────────────────────────── */
.terra {
  background: #020408;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(var(--s16), 10vw, var(--s24)) clamp(var(--s6), 8vw, var(--s20));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.terra__top {
  position: relative;
  z-index: 2;
  margin-bottom: var(--s6);
}

.terra__heading {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
}

.terra__tagline {
  font-size: var(--lg);
  color: rgba(240,235,224,0.55);
  font-style: italic;
  font-family: var(--font-d);
}

/* Globe canvas container */
.terra__stage {
  position: relative;
  width: min(580px, 92vw);
  height: min(580px, 92vw);
  z-index: 2;
  margin: var(--s4) 0;
}

#earth-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.terra__hint {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.3);
  white-space: nowrap;
  pointer-events: none;
}

/* Text below globe */
.terra__bottom {
  margin-top: var(--s12);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}

.terra__question {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
}

.terra__sub {
  font-size: var(--base);
  color: rgba(240,235,224,0.5);
  max-width: 36ch;
  line-height: 1.7;
  margin-bottom: var(--s4);
}

.terra__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: var(--sm);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s;
}

.terra__cta-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.terra__brand-name {
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(212,168,83,0.5);
  margin-top: var(--s2);
}

@media (max-width: 600px) {
  .terra__stage { width: 88vw; height: 88vw; }
  .terra__hint  { bottom: -28px; }
}

/* ── Photo Strip (3 colonne dopo il fullbleed) ──────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.photo-strip__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.photo-strip__item:hover img {
  transform: scale(1.04);
}

.photo-strip__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cream);
  opacity: 0.75;
  pointer-events: none;
}

@media (max-width: 640px) {
  .photo-strip {
    grid-template-columns: 1fr 1fr;
    max-height: none;
  }
  .photo-strip__item:last-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}

/* ── Genesi foto grid (2 colonne) ───────────────────────────────── */
.genesi__foto-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.genesi__foto-main,
.genesi__foto-side {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.genesi__foto-main img,
.genesi__foto-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 320px;
}

.genesi__foto-main:hover img,
.genesi__foto-side:hover img {
  transform: scale(1.03);
}

.genesi__foto-grid .genesi__foto-caption {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.7;
}

@media (max-width: 640px) {
  .genesi__foto-grid {
    grid-template-columns: 1fr;
  }
  .genesi__foto-main img,
  .genesi__foto-side img {
    min-height: 240px;
  }
}
