/* ═══════════ DESIGN TOKENS — v3 "ALBA UMBRA" ═══════════ */
:root {
  /* Greens — profondi ma caldi, meno verdi più "terra scura" */
  --ink: #16221C;                  /* ink caldo, non più nero-verde */
  --forest: #1F3A30;
  --forest-deep: #0F2118;
  --moss: #3F5144;

  /* Warm neutrals — "alba umbra": bianchi sporchi caldi, mai freddi */
  --paper: #F2ECDF;                /* tela grezza chiara */
  --cream: #E8DFCB;
  --bone: #FAF5E9;                 /* bianco caldo quasi panna */
  --sand: #D0C4A6;
  --mist: #EAE0CB;                 /* foggy dawn */

  /* Gold — polveroso, couture, mai lucido */
  --gold: #B8996F;
  --gold-light: #D4BE93;
  --gold-ink: #7E6335;             /* AA-compliant su chiaro */
  --gold-soft: rgba(184,153,111,0.12);

  /* Stone — caldo, scuro quanto basta */
  --stone: #5A5240;
  --stone-soft: #8B8269;

  --white: #FDFBF6;

  /* Fluid modular type scale (1.250 minor third) */
  --fs-xs: clamp(11px, 0.7vw + 9px, 13px);
  --fs-sm: clamp(13px, 0.4vw + 12px, 15px);
  --fs-base: clamp(15px, 0.4vw + 14px, 17px);
  --fs-lg: clamp(17px, 0.6vw + 15px, 20px);
  --fs-xl: clamp(20px, 1vw + 17px, 26px);
  --fs-2xl: clamp(26px, 2vw + 20px, 36px);
  --fs-3xl: clamp(32px, 3.5vw + 20px, 56px);
  --fs-display: clamp(44px, 8vw + 12px, 112px);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════ RESET & BASE ═══════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  hanging-punctuation: first last;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-optical-sizing: auto;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
}
::selection { background: rgba(184,147,90,0.25); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ═══════════ TYPOGRAPHY ═══════════ */
.font-serif {
  font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif;
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 30;
}
h1, h2, h3, .section-title, .hero h1, .page-hero-title {
  text-wrap: balance;
}
p { text-wrap: pretty; }
.text-gold { color: var(--gold-ink); }
.text-stone { color: var(--stone); }

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: 8px; top: 8px;
  background: var(--ink); color: var(--gold-light);
  padding: 10px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transform: translateY(-140%);
  transition: transform 0.25s var(--ease-out-quart);
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--gold-light); outline-offset: 2px; }

/* Reduced motion (a11y) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  .hero-bg { transform: none !important; }
}

/* ═══════════ UTILITY ═══════════ */
.container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.bg-forest { background: var(--forest); }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); }

/* ═══════════ GRAIN TEXTURE ═══════════ */
.grain { position: relative; }
.grain::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══════════ NAVBAR ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.4s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 72px;
}
.nav::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(20, 56, 44, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}
.nav.scrolled::before { background: rgba(10, 34, 24, 0.97); }
.nav-logo { display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; }
.nav-logo img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(255,255,255,0.15); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text small { font-size: 8px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); opacity: 0.8; line-height: 1; margin-bottom: 2px; }
.nav-logo-text span { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: 17px; color: white; line-height: 1.1; }
.nav-links { display: none; align-items: center; gap: 32px; position: relative; z-index: 2; }
.nav-links a { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; background: var(--gold); color: var(--ink);
  border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover { background: white; }
.nav-burger { position: relative; z-index: 2; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); }
@media (min-width: 1024px) { .nav-links { display: flex; } .nav-burger { display: none; } }

/* ═══════════ MOBILE MENU ═══════════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: radial-gradient(ellipse at 30% 0%, var(--forest) 0%, var(--forest-deep) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: clamp(28px, 6vw, 42px); color: white; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; color: rgba(255,255,255,0.5); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }

/* ═══════════ HERO — v3 CINEMATIC ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;              /* small viewport on mobile, evita salti nav */
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(40px, 10vh, 120px);
  padding-top: clamp(100px, 12vh, 140px);
  overflow: hidden;
  isolation: isolate;
}
/* Stack di layer per il carousel hero */
.hero-bg-stack {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
  will-change: transform;
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(0.94) contrast(1.02) brightness(1.02);
  will-change: opacity, transform;
  animation-play-state: paused;
}
.hero-bg-layer.is-active {
  opacity: 1;
  animation-play-state: running;
}
/* 4 direzioni "drone": pan + zoom continuo 9s */
.hero-bg-layer[data-pan="lr"]   { animation: droneLR   9s linear both; }
.hero-bg-layer[data-pan="rl"]   { animation: droneRL   9s linear both; }
.hero-bg-layer[data-pan="down"] { animation: droneDown 9s linear both; }
.hero-bg-layer[data-pan="up"]   { animation: droneUp   9s linear both; }

@keyframes droneLR {
  0%   { transform: scale(1.06) translate3d(-1.5%,  0.8%, 0); }
  100% { transform: scale(1.14) translate3d( 2.5%, -0.8%, 0); }
}
@keyframes droneRL {
  0%   { transform: scale(1.06) translate3d( 1.5%,  0.8%, 0); }
  100% { transform: scale(1.14) translate3d(-2.5%, -0.8%, 0); }
}
@keyframes droneDown {
  0%   { transform: scale(1.08) translate3d(0, -1.5%, 0); }
  100% { transform: scale(1.16) translate3d(0,  1.5%, 0); }
}
@keyframes droneUp {
  0%   { transform: scale(1.08) translate3d(0,  1.5%, 0); }
  100% { transform: scale(1.16) translate3d(0, -1.5%, 0); }
}
/* Legacy single bg — lo lasciamo come fallback nascosto */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: none;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* vignetta diagonale morbida per dare profondità cinematica */
    radial-gradient(ellipse 85% 75% at 40% 35%, transparent 0%, rgba(15,33,24,0.12) 55%, rgba(15,33,24,0.45) 100%),
    /* warm wash "alba umbra" nella porzione alta-destra */
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(212,190,147,0.14), transparent 60%),
    /* leggera bruma caldo-freddo dall'alto */
    linear-gradient(175deg, rgba(30,42,36,0.18) 0%, transparent 30%, transparent 60%, rgba(15,33,24,0.55) 100%);
}

/* Film grain sottile sul hero (non il grain base) */
.hero::after {
  opacity: 0.04;          /* meno grain se la foto è già pulita */
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.48em; text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: clamp(28px, 4vw, 52px);
  background: none; border: none; padding: 0;
}
.hero-badge::before {
  content: ''; width: 36px; height: 1px;
  background: var(--gold-light); opacity: 0.75;
}
.hero h1 {
  font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif;
  font-size: clamp(62px, 14vw, 196px);
  font-weight: 320;
  color: white;
  line-height: 0.9;
  letter-spacing: -0.038em;
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 100%;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 0;
  text-shadow: 0 2px 60px rgba(15,33,24,0.4);
}
.hero h1 em {
  font-style: italic;
  font-weight: 320;
  color: var(--gold-light);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.hero-desc {
  font-size: clamp(17px, 1.5vw, 22px);
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: clamp(36px, 5vw, 56px);
  line-height: 1.65;
  letter-spacing: 0.003em;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: transparent; color: white;
  border: 1px solid var(--gold-light);
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateY(101%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.btn-gold:hover { color: var(--ink); border-color: var(--gold-light); letter-spacing: 0.32em; }
.btn-gold:hover::before { transform: translateY(0); }
.btn-gold i { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.88);
  background: transparent;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateY(101%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.btn-outline:hover { color: white; border-color: rgba(255,255,255,0.55); letter-spacing: 0.32em; }
.btn-outline:hover::before { transform: translateY(0); }

/* ═══════════ INTRO CARDS ═══════════ */
.intro-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: -64px; position: relative; z-index: 10;
}
.intro-card {
  background: var(--white); padding: clamp(28px, 4vw, 48px);
  transition: all 0.5s ease;
}
.intro-card:hover { background: var(--forest); color: white; }
.intro-card:hover .text-gold { color: var(--gold-light); }
.intro-card:hover .text-stone { color: rgba(255,255,255,0.6); }
.intro-card h3 { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: 22px; margin-bottom: 12px; line-height: 1.3; }
.intro-card p { font-size: 14px; line-height: 1.7; }
.intro-card-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(184,147,90,0.1); color: var(--gold); margin-bottom: 20px; transition: all 0.5s; }
.intro-card:hover .intro-card-icon { background: rgba(255,255,255,0.1); color: var(--gold-light); }

/* ═══════════ SECTION HEADERS ═══════════ */
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: clamp(28px, 4vw, 48px); line-height: 1.15; margin-bottom: 16px; }
.section-desc { font-size: 15px; line-height: 1.8; max-width: 600px; }

/* ═══════════ NATURE SECTION ═══════════ */
.nature-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
@media (min-width: 768px) { .nature-grid { grid-template-columns: 1fr 1fr; } }
.nature-card {
  position: relative; border-radius: 16px; overflow: hidden;
  height: clamp(360px, 50vw, 520px); cursor: pointer;
}
.nature-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nature-card:hover img { transform: scale(1.06); }
.nature-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,23,0.85) 0%, rgba(11,31,23,0.15) 50%, transparent 100%);
}
.nature-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(24px, 4vw, 40px); z-index: 2; }
.nature-card-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 12px;
}
.nature-card h3 { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: clamp(24px, 3vw, 36px); color: white; margin-bottom: 8px; }
.nature-card p { font-size: 14px; color: rgba(255,255,255,0.7); max-width: 420px; line-height: 1.7; font-weight: 300; }

/* ═══════════ BORGHI GRID ═══════════ */
.borghi-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 48px; }
@media (min-width: 768px) { .borghi-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 380px; } }
.borgo-card { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; min-height: 300px; }
.borgo-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.3); transition: all 1.2s ease;
}
.borgo-card:hover img { filter: grayscale(0); transform: scale(1.05); }
.borgo-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,23,0.75) 0%, transparent 60%);
}
.borgo-card-label { position: absolute; bottom: 0; left: 0; padding: 24px; z-index: 2; }
.borgo-card-label span { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.borgo-card-label h3 { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: 22px; color: white; }
@media (min-width: 768px) {
  .borgo-main { grid-column: span 8; }
  .borgo-side { grid-column: span 4; }
  .borgo-third { grid-column: span 4; }
}
/* Primary borgo card special */
.borgo-primary-label {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  background: rgba(253,252,250,0.95); backdrop-filter: blur(8px);
  padding: 20px 24px; border-radius: 12px; max-width: 300px;
}
.borgo-primary-label span { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.borgo-primary-label h3 { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: 24px; color: var(--ink); margin-bottom: 4px; }
.borgo-primary-label .line { width: 32px; height: 2px; background: var(--gold); transition: width 0.5s; }
.borgo-card:hover .borgo-primary-label .line { width: 64px; }

/* ═══════════ CAMMINO SECTION ═══════════ */
.cammino-section {
  background: radial-gradient(ellipse at 30% 20%, var(--forest) 0%, var(--forest-deep) 70%);
  color: white; padding: clamp(64px, 10vw, 120px) 0; position: relative; overflow: hidden;
}
.cammino-section .big-text {
  position: absolute; right: -40px; top: -20px;
  font-size: clamp(200px, 25vw, 360px); font-weight: 800; color: rgba(255,255,255,0.015);
  line-height: 1; pointer-events: none; user-select: none; font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif;
}
.cammino-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .cammino-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.cammino-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.cammino-stat-num { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.cammino-stat-label { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.cammino-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.cammino-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.cammino-img-cta {
  position: absolute; bottom: -8px; left: -8px;
  background: var(--gold); color: var(--ink); padding: 16px 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 12px; transition: all 0.3s; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.cammino-img-cta:hover { background: white; }
.cammino-desc-block { border-left: 2px solid rgba(184,147,90,0.35); padding-left: 24px; }

/* ═══════════ TESORI SECTION ═══════════ */
.tesori-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
@media (min-width: 768px) { .tesori-grid { grid-template-columns: repeat(3, 1fr); } }
.tesoro-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.5s ease;
}
.tesoro-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(11,31,23,0.1); border-color: var(--gold); }
.tesoro-card img { width: 100%; height: 220px; object-fit: cover; }
.tesoro-card-body { padding: 28px; }
.tesoro-card h3 { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: 20px; margin-bottom: 10px; line-height: 1.3; }
.tesoro-card p { font-size: 14px; line-height: 1.7; }

/* ═══════════ LIFESTYLE SECTION ═══════════ */
.lifestyle-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
@media (min-width: 768px) { .lifestyle-grid { grid-template-columns: 1fr 1fr; } }
.lifestyle-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.5s ease; display: flex; flex-direction: column;
}
.lifestyle-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(11,31,23,0.1); border-color: var(--gold); }
.lifestyle-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.7s; }
.lifestyle-card:hover img { transform: scale(1.04); }
.lifestyle-card-body { padding: 28px; text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; }
.lifestyle-card h3 { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: 20px; margin-bottom: 8px; }
.lifestyle-card p { font-size: 14px; line-height: 1.7; max-width: 380px; }
.lifestyle-card .card-link {
  margin-top: auto; padding-top: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--gold); padding: 8px 20px; border-radius: 100px;
  transition: all 0.3s;
}
.lifestyle-card .card-link:hover { background: var(--gold); color: var(--ink); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: radial-gradient(ellipse at 30% 0%, var(--forest) 0%, var(--forest-deep) 80%);
  color: rgba(255,255,255,0.5); padding: 80px 0 32px; position: relative;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(184,147,90,0.6); margin-bottom: 20px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04); text-align: center; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.2); }

/* ═══════════ MODAL ═══════════ */
.modal {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11,31,23,0.85); backdrop-filter: blur(4px); }
.modal-content {
  position: relative; background: var(--paper); border-radius: 16px; overflow: hidden;
  max-width: 960px; width: 100%; max-height: 90vh; display: flex; flex-direction: column;
}
@media (min-width: 768px) { .modal-content { flex-direction: row; } }
.modal-img { width: 100%; height: 200px; object-fit: cover; flex-shrink: 0; }
@media (min-width: 768px) { .modal-img { width: 45%; height: auto; min-height: 400px; } }
.modal-body { padding: clamp(24px, 4vw, 40px); overflow-y: auto; flex: 1; }
.modal-close {
  position: absolute; top: 0; right: 0; z-index: 10;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink); border-radius: 0 16px 0 16px; transition: background 0.3s;
}
.modal-close:hover { background: white; }
.modal-category { display: inline-block; padding: 4px 12px; border-radius: 100px; background: var(--ink); color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.modal h2 { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: clamp(24px, 3vw, 36px); margin-bottom: 20px; line-height: 1.2; }
.modal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); margin-bottom: 20px; }
.modal-meta dt { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); margin-bottom: 2px; }
.modal-meta dd { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: 15px; }
.modal-desc { font-size: 15px; line-height: 1.8; color: var(--stone); }

/* ═══════════ SCROLLBAR ═══════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Hide scrollbar for horizontal scroll */
.hide-scroll::-webkit-scrollbar { display: none; }
.hide-scroll { -ms-overflow-style: none; scrollbar-width: none; }

/* ═══════════ LOADING STATE ═══════════ */
body { opacity: 0; animation: bodyFadeIn 0.6s ease 0.1s forwards; }
@keyframes bodyFadeIn { to { opacity: 1; } }

/* ═══════════ IMAGE LOADING ═══════════ */
img { transition: opacity 0.5s ease; }
img[src="img/placeholder.svg"] { opacity: 0.5; }

/* ═══════════ SMOOTH SCROLL TARGET OFFSET ═══════════ */
[id] { scroll-margin-top: 88px; }

/* ═══════════ RESPONSIVE — v3 MOBILE-FIRST ═══════════ */
@media (max-width: 900px) {
  .hero { min-height: 100svh; padding-top: clamp(88px, 14vh, 120px); padding-bottom: clamp(40px, 8vh, 72px); }
  .hero h1 { font-size: clamp(56px, 16vw, 110px); line-height: 0.88; }
  .hero-desc { font-size: 17px; max-width: 92%; }
  .hero-badge { font-size: 10px; letter-spacing: 0.4em; }

  .intro-cards { grid-template-columns: 1fr; margin-top: -32px; gap: 1px; }
  .intro-card { padding: 32px 24px; }
  .intro-card h3 { font-size: 24px; }

  .section-title { font-size: clamp(32px, 8vw, 56px); }
  .section-desc { font-size: 16px; line-height: 1.8; }

  .nature-card { height: clamp(340px, 60vh, 440px); border-radius: 8px; }
  .nature-card h3 { font-size: 28px; }

  .cammino-stats { grid-template-columns: 1fr; gap: 18px; padding-top: 24px; }
  .cammino-stats > div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 14px; }
  .cammino-stats > div:last-child { border-bottom: none; padding-bottom: 0; }
  .cammino-stat-num { font-size: 32px; }
  .cammino-stat-label { margin-top: 0; }

  .tesori-grid { gap: 16px; }
  .footer-grid { gap: 40px; }
  .modal-content { flex-direction: column; max-height: 95vh; }
  .modal-img { height: 220px; width: 100%; min-height: 220px; }

  .borgo-primary-label { padding: 18px; max-width: 82%; }
  .borgo-primary-label h3 { font-size: 22px; }

  .cammino-grid { gap: 40px; }
  .cammino-section .big-text { font-size: clamp(140px, 30vw, 220px); opacity: 0.025; }

  .foresta-flagship { padding: clamp(80px, 14vw, 140px) 0; min-height: auto; }
  .foresta-flagship-title { font-size: clamp(40px, 10vw, 68px); }
  .foresta-flagship-lede { font-size: 16px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(52px, 17vw, 92px); letter-spacing: -0.032em; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions a { width: 100%; justify-content: center; padding: 17px 24px; }
  .btn-gold, .btn-outline { font-size: 10px; letter-spacing: 0.24em; }

  .borghi-grid { gap: 8px; }
  .borgo-card { min-height: 260px; border-radius: 6px; }
  .cammino-desc-block { padding-left: 18px; }
  .lifestyle-grid { gap: 16px; }
  .modal-body { padding: 24px; }
  .modal h2 { font-size: 24px; }

  .section-label { font-size: 10px; letter-spacing: 0.28em; }
  .section-label::before { width: 20px; }
}

/* ═══════════ HOVER ENHANCEMENTS (desktop only) ═══════════ */
@media (hover: hover) {
  .nature-card { transition: box-shadow 0.5s ease; }
  .nature-card:hover { box-shadow: 0 24px 64px rgba(11,31,23,0.25); }
  .tesoro-card img { transition: transform 0.7s ease; }
  .tesoro-card:hover img { transform: scale(1.04); }
  .intro-card { transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
  .borgo-card { transition: box-shadow 0.5s ease; }
  .borgo-card:hover { box-shadow: 0 16px 48px rgba(11,31,23,0.2); }
}

/* ═══════════ FOCUS STYLES (accessibility) ═══════════ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ═══════════ PRINT STYLES ═══════════ */
@media print {
  .nav, .mobile-menu, .modal, .footer { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-bg, .hero-overlay, .grain::after { display: none; }
}

/* ═══════════════ v5 ADDITIONS ═══════════════ */

/* ═══════ DROPDOWN NAV ═══════ */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; cursor: pointer; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px; min-width: 200px;
  background: rgba(253,252,250,0.97); backdrop-filter: blur(16px);
  border-radius: 12px; padding: 8px 0; margin-top: 12px;
  box-shadow: 0 12px 40px rgba(11,31,23,0.15); border: 1px solid var(--sand);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 13px; font-weight: 500;
  letter-spacing: 0; text-transform: none; color: var(--ink); transition: all 0.2s;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--gold); }
.nav-dropdown-divider { height: 1px; background: var(--sand); margin: 6px 16px; }

/* ═══════ BREADCRUMB ═══════ */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; font-weight: 500; color: var(--stone); padding: 8px 0;
}
.breadcrumb a { color: var(--stone); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--ink); }
.breadcrumb svg { opacity: 0.4; flex-shrink: 0; }

/* ═══════ PAGE HERO (internal pages) — v3 ═══════ */
.page-hero {
  position: relative;
  min-height: clamp(380px, 52vh, 520px);
  display: flex; align-items: flex-end;
  padding: clamp(96px, 14vh, 128px) 0 clamp(40px, 6vh, 64px);
  overflow: hidden; isolation: isolate;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center 35%;
  transform: scale(1.04);
  transition: transform 14s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.92) contrast(1.02);
}
.page-hero.loaded .page-hero-bg,
.page-hero:hover .page-hero-bg { transform: scale(1.0); }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* scurimento diagonale morbido */
    linear-gradient(175deg, rgba(15,33,24,0.35) 0%, rgba(15,33,24,0.18) 30%, rgba(15,33,24,0.45) 70%, rgba(15,33,24,0.9) 100%),
    /* warm wash "alba umbra" in alto-destra */
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(212,190,147,0.12), transparent 65%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 980px;
  width: 100%;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: transparent; backdrop-filter: none;
  border: none; padding: 0;
  font-size: 11px; font-weight: 500; letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin-bottom: clamp(20px, 3vw, 28px);
}
.page-hero-badge::before {
  content: ''; width: 32px; height: 1px;
  background: var(--gold-light, #D4BE93); opacity: 0.75;
}
.page-hero-title {
  font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif;
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 340;
  color: white;
  line-height: 0.98;
  letter-spacing: -0.028em;
  max-width: 14ch;
  text-wrap: balance;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  text-shadow: 0 2px 40px rgba(15,33,24,0.35);
}
.page-hero-title em {
  font-style: italic; font-weight: 340;
  color: var(--gold-light, #D4BE93);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.page-hero-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,0.78);
  font-weight: 300; max-width: 560px;
  margin-top: 16px; line-height: 1.65;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: clamp(280px, 44vh, 360px);
    padding: clamp(88px, 12vh, 110px) 0 clamp(28px, 4vh, 40px);
  }
  .page-hero-title { font-size: clamp(36px, 10vw, 60px); max-width: 100%; }
  .page-hero-desc { font-size: 15px; max-width: 92%; }
  .page-hero-badge {
    font-size: 9px; letter-spacing: 0.36em;
    margin-bottom: 18px;
  }
  .page-hero-badge::before { width: 22px; }
  .page-hero-overlay {
    background:
      linear-gradient(180deg, rgba(15,33,24,0.32) 0%, rgba(15,33,24,0.28) 40%, rgba(15,33,24,0.7) 85%, rgba(15,33,24,0.92) 100%);
  }
}

/* ═══════ CONTENT LAYOUT (2-col with sidebar) ═══════ */
.content-layout {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) {
  .content-layout { grid-template-columns: 1fr 320px; }
}
.content-main h2 { margin-bottom: 16px; }
.content-main p { font-size: 15px; line-height: 1.8; color: var(--stone); margin-bottom: 16px; }
.content-main p strong { color: var(--ink); }
.content-intro {
  font-size: clamp(17px, 2vw, 20px); line-height: 1.7; color: var(--ink);
  font-weight: 400; border-left: 3px solid var(--gold); padding-left: 20px;
  margin-bottom: 32px;
}

/* ═══════ SIDEBAR ═══════ */
.content-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  padding: 24px; border-radius: 12px; background: var(--cream);
  border: 1px solid rgba(0,0,0,0.04);
}
.sidebar-card h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.sidebar-card p { font-size: 14px; line-height: 1.6; color: var(--stone); margin-bottom: 8px; }
.sidebar-link {
  display: inline-block; font-size: 13px; font-weight: 600; color: var(--gold);
  margin-top: 8px; transition: color 0.2s;
}
.sidebar-link:hover { color: var(--ink); }

/* ═══════ POI ITEMS ═══════ */
.poi-item {
  padding: 20px 0; border-bottom: 1px solid var(--sand);
}
.poi-item:last-child { border-bottom: none; }
.poi-item h3 {
  font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: 18px; margin-bottom: 8px; color: var(--ink);
}
.poi-item p { font-size: 14px; line-height: 1.7; color: var(--stone); margin: 0; }

/* ═══════ RELATED GRID ═══════ */
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px;
}
.related-card {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 280px; display: block;
}
.related-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.related-card:hover img { transform: scale(1.05); }
.related-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,23,0.8) 0%, transparent 60%);
}
.related-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2;
}
.related-card h3 { font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif; font-size: 20px; color: white; margin-bottom: 4px; }
.related-card p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ═══════ STATS ROW ═══════ */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 24px 0; border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand);
}
.stat-item { text-align: center; }
.stat-num {
  display: block; font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label {
  display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--stone); margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   v6 — EDITORIAL UPGRADE
   Fraunces variable serif, Foresta flagship, dark btns, a11y
   ═══════════════════════════════════════════════════════════ */

/* Refined section label (AA contrast on cream) */
.section-label { color: var(--gold-ink); }

/* Hero H1 — use Fraunces opsz at display size */
.hero h1 {
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.028em;
}
.hero h1 em {
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--gold-light);
}

/* Section title: variable opsz */
.section-title { font-variation-settings: 'opsz' 96, 'SOFT' 30; }

/* Fix section-label sul forest bg (era gold, deve restare chiaro) */
.bg-forest .section-label,
.cammino-section .section-label,
[style*="background:var(--forest-deep)"] .section-label { color: var(--gold-light); }

/* ═══════ FORESTA FOSSILE FLAGSHIP ═══════ */
.foresta-flagship {
  position: relative;
  min-height: clamp(620px, 92vh, 860px);
  display: flex; align-items: center;
  padding: clamp(96px, 14vw, 160px) 0;
  overflow: hidden;
  color: white;
  isolation: isolate;
}
.foresta-flagship-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 16s ease-out;
  z-index: -2;
}
.foresta-flagship.in-view .foresta-flagship-bg { transform: scale(1); }
.foresta-flagship-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, var(--forest-deep) 0%, rgba(10,34,24,0.92) 35%, rgba(10,34,24,0.55) 70%, rgba(10,34,24,0.3) 100%),
    linear-gradient(to top, rgba(10,34,24,0.6) 0%, transparent 40%);
  z-index: -1;
}
.foresta-flagship-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: end; }
@media (min-width: 1024px) {
  .foresta-flagship-inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 96px; }
}
.foresta-flagship-text { max-width: 640px; }
.foresta-flagship-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  border-radius: 100px; margin-bottom: 28px;
  box-shadow: 0 4px 32px rgba(184,147,90,0.35);
}
.foresta-flagship-kicker::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ink);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.foresta-flagship-title {
  font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif;
  font-size: clamp(44px, 7.2vw, 96px);
  font-weight: 380;
  line-height: 0.98;
  letter-spacing: -0.028em;
  text-wrap: balance;
  margin-bottom: 28px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  color: white;
}
.foresta-flagship-title em {
  font-style: italic; font-weight: 360;
  color: var(--gold-light);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.foresta-flagship-lede {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.72; font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px; max-width: 580px;
}
.foresta-flagship-lede strong { color: var(--gold-light); font-weight: 500; }
.foresta-flagship-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: clamp(24px, 4vw, 64px);
  padding: 32px 0;
  border-top: 1px solid rgba(184,147,90,0.28);
  border-bottom: 1px solid rgba(184,147,90,0.28);
  margin-bottom: 40px; max-width: 640px;
}
.foresta-flagship-stats .n {
  display: block;
  font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400; font-style: italic;
  color: var(--gold-light);
  line-height: 1; letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-variant-numeric: tabular-nums;
}
.foresta-flagship-stats .l {
  display: block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.52);
  margin-top: 12px;
}
.foresta-flagship-actions { display: flex; flex-wrap: wrap; gap: 12px; }
/* Side picture plate (only lg+) */
.foresta-flagship-plate {
  display: none;
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.foresta-flagship-plate img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.8s var(--ease-out-quart);
}
.foresta-flagship:hover .foresta-flagship-plate img { transform: scale(1.05); }
.foresta-flagship-plate::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,34,24,0.3), transparent 40%);
  pointer-events: none;
}
.foresta-flagship-plate-caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.foresta-flagship-plate-caption::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold-light); margin-bottom: 10px;
}
@media (min-width: 1024px) { .foresta-flagship-plate { display: block; } }

@media (max-width: 768px) {
  .foresta-flagship-stats { grid-template-columns: 1fr; gap: 14px; padding: 20px 0; }
  .foresta-flagship-stats > div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .foresta-flagship-stats .l { margin-top: 0; }
}

/* Dark-variant buttons — stessa grammatica premium del btn-gold */
.btn-gold-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; background: transparent; color: var(--ink);
  border: 1px solid var(--gold); border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  transition: all 0.6s var(--ease-out-quart);
  position: relative; overflow: hidden; color: white;
}
.btn-gold-dark::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateY(101%);
  transition: transform 0.6s var(--ease-out-quart); z-index: -1;
}
.btn-gold-dark:hover { color: var(--ink); letter-spacing: 0.32em; }
.btn-gold-dark:hover::before { transform: translateY(0); }
.btn-gold-dark i { position: relative; z-index: 1; }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82); background: transparent;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  transition: all 0.6s var(--ease-out-quart);
  position: relative; overflow: hidden;
}
.btn-outline-dark::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.06); transform: translateY(101%);
  transition: transform 0.6s var(--ease-out-quart); z-index: -1;
}
.btn-outline-dark:hover { color: white; border-color: rgba(255,255,255,0.5); letter-spacing: 0.32em; }
.btn-outline-dark:hover::before { transform: translateY(0); }

/* Accessible click-through divs */
[role="button"]:focus-visible,
.nature-card:focus-visible,
.borgo-card:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}
.nature-card, .borgo-card { cursor: pointer; }

/* ═══════════════════════════════════════════════════════════
   v2.1 — PREMIUM MOTION & DETAILS
   ═══════════════════════════════════════════════════════════ */

/* Split-text reveal per titoli hero — parola per parola */
.split-word {
  display: inline-block; overflow: hidden; vertical-align: top;
  padding-bottom: 0.06em;        /* clip descenders */
}
.split-word > span {
  display: inline-block;
  transform: translateY(110%) rotate(4deg);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.split-ready .split-word > span { transform: translateY(0) rotate(0); }
.split-word:nth-child(2) > span { transition-delay: 0.08s; }
.split-word:nth-child(3) > span { transition-delay: 0.16s; }
.split-word:nth-child(4) > span { transition-delay: 0.24s; }
.split-word:nth-child(5) > span { transition-delay: 0.32s; }

/* Grain più fine + lievissima animazione per non farla sembrare statica */
.grain::after {
  opacity: 0.035;
  background-size: 180px 180px;
  animation: grainShift 8s steps(10) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2%, 1%); }
  40%  { transform: translate(1%, -2%); }
  60%  { transform: translate(-1%, 2%); }
  80%  { transform: translate(2%, 1%); }
  100% { transform: translate(0, 0); }
}

/* Scroll cue sotto l'hero */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.55); z-index: 3;
  font-size: 9px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase;
  opacity: 0; animation: cueFade 0.8s 1.6s forwards var(--ease-out-quart);
}
.scroll-cue::after {
  content: ''; width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: cueLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueFade { to { opacity: 1; } }
@keyframes cueLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Magnetic button — JS aggiunge translate inline, CSS solo transition */
.magnetic {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), letter-spacing 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Section label raffinato su sfondo scuro */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.6;
}

/* Intro-card hover più morbido */
.intro-card { transition: background 0.8s var(--ease-out-quart), color 0.8s var(--ease-out-quart); }

/* Titoli nature/borgo più eleganti */
.nature-card h3, .borgo-card-label h3, .borgo-primary-label h3, .intro-card h3 {
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
}

/* Foresta flagship — micro-raffinamenti v2 */
.foresta-flagship-title em {
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.foresta-flagship-overlay {
  background:
    linear-gradient(105deg, var(--forest-deep) 0%, rgba(8,23,16,0.9) 40%, rgba(8,23,16,0.45) 75%, rgba(8,23,16,0.2) 100%),
    radial-gradient(ellipse at 80% 30%, rgba(196,168,122,0.08), transparent 55%);
}
.foresta-flagship-kicker {
  background: transparent; color: var(--gold-light);
  box-shadow: none; padding: 0;
  border: none;
  font-weight: 500; letter-spacing: 0.42em;
}
.foresta-flagship-kicker::before {
  background: var(--gold-light);
  width: 8px; height: 8px;
}
.foresta-flagship-kicker::after {
  content: ''; width: 28px; height: 1px; background: var(--gold-light); opacity: 0.6; margin-left: 6px;
}

/* Numeri Foresta più couture */
.foresta-flagship-stats .n { font-weight: 340; }

/* Hover elegante sulle border del foresta-stats */
.foresta-flagship-stats { border-color: rgba(196,168,122,0.22); }

/* Label verticale laterale opzionale (hero) */
.hero-side-label {
  position: absolute; right: clamp(20px, 4vw, 40px); top: 50%;
  transform: translateY(-50%) rotate(90deg); transform-origin: right center;
  color: rgba(255,255,255,0.45);
  font-size: 10px; font-weight: 500; letter-spacing: 0.42em; text-transform: uppercase;
  z-index: 3; display: none;
}
@media (min-width: 1200px) { .hero-side-label { display: block; } }

/* ═══════════════════════════════════════════════════════════
   v3 — "ALBA UMBRA": MANIFESTO, FORESTA ASIMMETRICA, FLOW
   ═══════════════════════════════════════════════════════════ */

/* Gradient "sunrise" tra hero e prima sezione chiara */
.hero + section,
.hero ~ .container:first-of-type {
  position: relative;
}
.section-fade-top {
  position: relative;
}
.section-fade-top::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, var(--forest-deep), transparent);
  pointer-events: none; z-index: 1;
}

/* ─── MANIFESTO (editorial essay section) ─── */
.manifesto {
  position: relative;
  padding: clamp(100px, 16vw, 200px) 0;
  background: var(--paper);
  overflow: hidden;
}
.manifesto-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr;
  gap: clamp(48px, 8vw, 96px);
  position: relative;
}
@media (min-width: 900px) {
  .manifesto-inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
    align-items: start;
  }
}
.manifesto-kicker-vertical {
  display: none;
}
@media (min-width: 1100px) {
  .manifesto-kicker-vertical {
    display: block;
    position: absolute; top: 0; left: -12px;
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: 11px; font-weight: 500; letter-spacing: 0.5em;
    text-transform: uppercase; color: var(--gold-ink);
  }
}
.manifesto-body {
  font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 340;
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
  max-width: 24ch;
}
.manifesto-body em {
  font-style: italic; color: var(--gold-ink);
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'WONK' 1;
}
.manifesto-body p + p { margin-top: 0.8em; }

.manifesto-aside {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.85; color: var(--stone);
  max-width: 52ch;
  font-weight: 300;
}
.manifesto-aside p + p { margin-top: 1.4em; }
.manifesto-aside strong { color: var(--ink); font-weight: 500; }

.manifesto-sig {
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--sand);
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--stone-soft);
}
.manifesto-sig::before {
  content: ''; width: 32px; height: 1px; background: var(--gold-ink); opacity: 0.6;
}

/* Il numero decorativo sullo sfondo del manifesto (tipo "N°1" della rivista) */
.manifesto::before {
  content: ''; position: absolute;
  right: -5vw; top: 12%;
  width: min(45vw, 520px);
  aspect-ratio: 1;
  background: radial-gradient(circle at center, var(--mist) 0%, transparent 62%);
  pointer-events: none;
  opacity: 0.7;
}

/* ─── FORESTA FLAGSHIP — LAYOUT ASIMMETRICO "MAGAZINE" ─── */
/* Override dei vecchi stili per portarli al v3 editoriale */
.foresta-flagship {
  background: var(--ink);
  min-height: auto;
  padding: 0;
  display: block;
  color: white;
}
.foresta-flagship-bg,
.foresta-flagship-overlay {
  display: none;
}
.foresta-flagship-inner {
  display: block;
  max-width: none;
  padding: 0;
}
.foresta-editorial {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  min-height: 100vh;
}
@media (min-width: 900px) {
  .foresta-editorial {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}
.foresta-editorial-image {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
}
.foresta-editorial-image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.88) contrast(1.05);
}
.foresta-editorial:hover .foresta-editorial-image img { transform: scale(1.02); }
.foresta-editorial-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(22,34,28,0.35) 100%);
  pointer-events: none;
}
.foresta-editorial-caption {
  position: absolute; left: clamp(20px, 3vw, 40px); bottom: clamp(20px, 3vw, 36px);
  z-index: 2; color: rgba(255,255,255,0.82);
  font-size: 11px; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.foresta-editorial-caption::before {
  content: ''; width: 32px; height: 1px; background: var(--gold-light); opacity: 0.75;
}
.foresta-editorial-text {
  position: relative;
  padding: clamp(56px, 10vw, 120px) clamp(24px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--ink);
}
.foresta-editorial-text-inner { max-width: 580px; }

.foresta-editorial-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.foresta-editorial-kicker::before {
  content: ''; width: 36px; height: 1px; background: var(--gold-light); opacity: 0.75;
}
.foresta-editorial-title {
  font-family: 'Fraunces', 'Libre Baskerville', Georgia, serif;
  font-size: clamp(40px, 5.6vw, 82px);
  font-weight: 320;
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin-bottom: clamp(28px, 4vw, 40px);
  color: white;
  text-wrap: balance;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.foresta-editorial-title em {
  font-style: italic;
  color: var(--gold-light);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.foresta-editorial-lede {
  font-family: 'Fraunces', serif;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 340;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin-bottom: clamp(36px, 5vw, 56px);
  max-width: 520px;
  font-variation-settings: 'opsz' 72, 'SOFT' 30;
  letter-spacing: -0.005em;
}
.foresta-editorial-lede strong {
  color: var(--gold-light); font-weight: 400;
}

/* Numeri in verticale, tipo "capitoli di libro" */
.foresta-editorial-nums {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(212,190,147,0.2);
  border-bottom: 1px solid rgba(212,190,147,0.2);
  margin-bottom: clamp(36px, 5vw, 52px);
}
.foresta-editorial-num {
  display: grid; grid-template-columns: auto 1fr;
  gap: 20px; align-items: baseline;
}
.foresta-editorial-num .n {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 3.4vw, 52px);
  font-weight: 320;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1; letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-variant-numeric: tabular-nums;
  min-width: 90px;
}
.foresta-editorial-num .lbl {
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
  font-weight: 300; max-width: 22ch;
}
.foresta-editorial-num .lbl strong {
  display: block;
  font-size: 10px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 4px;
}

.foresta-editorial-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* Smaller overrides */
@media (max-width: 900px) {
  .foresta-editorial-image { min-height: 58vh; }
  .foresta-editorial-nums { padding: 24px 0; gap: 18px; }
  .foresta-editorial-num { gap: 16px; }
  .foresta-editorial-num .n { min-width: 68px; }
}

/* ─── SECTION RHYTHM: padding più coraggioso ─── */
section.bg-paper,
section.bg-cream,
section[class*="bg-"] {
  scroll-margin-top: 88px;
}

/* Hero film grain più cinematico */
.hero::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  animation: grainShift 6s steps(8) infinite;
}

/* Sticky CTA mobile "Il Cammino" */
.sticky-cta-mobile {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 50;
  padding: 15px 20px;
  background: var(--ink); color: var(--bone);
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,33,24,0.35);
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta-mobile.is-visible { transform: translateY(0); }
.sticky-cta-mobile:not(.is-visible) { transform: translateY(calc(100% + 32px)); }
@media (max-width: 768px) { .sticky-cta-mobile { display: block; } }

/* ═══════════════════════════════════════════════════════════
   v3.1 — FIX MOBILE HERO + FLOW
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hero: meno overlay, immagine più leggibile, nessun clipping */
  .hero {
    min-height: 100svh;
    overflow: hidden;               /* evita overflow dallo stack */
  }
  .hero-bg-layer {
    background-position: center center;   /* su mobile meglio centrato */
    transform: scale(1.04);
    transition:
      opacity 2s cubic-bezier(0.4, 0, 0.2, 1),
      transform 10s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero-bg-layer.is-active { transform: scale(1.0); }
  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(15,33,24,0.12) 0%, transparent 28%, transparent 55%, rgba(15,33,24,0.5) 85%, rgba(15,33,24,0.82) 100%);
  }
  .hero::after { opacity: 0.03; animation: none; }   /* grain statico mobile, no CPU */

  /* Hero content: più respiro verticale, nessun taglio */
  .hero-content {
    padding-bottom: 80px;            /* spazio per sticky CTA + scroll cue */
  }
  .hero h1 {
    font-size: clamp(52px, 14vw, 96px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
  .hero-desc {
    font-size: 16px; line-height: 1.6;
    max-width: 94%; margin-bottom: 28px;
  }
  .hero-desc br { display: none; }   /* mobile: niente interruzioni forzate */
  .hero-badge {
    margin-bottom: 24px;
    font-size: 9px; letter-spacing: 0.36em;
    gap: 10px;
  }
  .hero-badge::before { width: 22px; }
  .hero-actions { gap: 10px; }

  /* Scroll cue: più in alto per non toccare sticky CTA */
  .scroll-cue {
    display: none;                   /* su mobile sticky CTA basta */
  }

  /* Sticky CTA: solo dopo hero. Non coprire CTA del hero */
  .sticky-cta-mobile {
    bottom: 14px; left: 14px; right: 14px;
    padding: 14px 18px;
    font-size: 10px; letter-spacing: 0.22em;
  }

  /* Foresta flagship mobile: immagine prima, testo dopo, leggibile */
  .foresta-editorial-image { min-height: 52vh; }
  .foresta-editorial-text { padding: 48px 24px 56px; }
  .foresta-editorial-lede { font-size: 15px; }
  .foresta-editorial-num .n { font-size: 30px; min-width: 58px; }

  /* Manifesto mobile: tipografia più contenuta */
  .manifesto-body { font-size: clamp(20px, 5.5vw, 28px); }
  .manifesto-aside { font-size: 15px; }

  /* Nav mobile: burger più visibile */
  .nav-burger { color: white; }
}

/* Disabilita animazione slow-zoom su motion-reduce */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-layer, .hero-bg-layer.is-active { transform: none !important; }
  .hero-bg-stack { transform: none !important; }
}

/* Flow: intro-cards più "respirato" */
.intro-cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
@media (min-width: 900px) {
  .intro-cards { grid-template-columns: repeat(3, 1fr); }
}
.intro-card {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 44px);
}
.intro-card h3 {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 360;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 72, 'SOFT' 50;
}
.intro-card p { font-size: 15px; line-height: 1.75; }

/* Nature cards: più magazine, meno card */
.nature-card { border-radius: 2px; }
@media (min-width: 900px) {
  .nature-grid { gap: 24px; }
  .nature-card { height: 560px; }
}

/* Borghi grid: più organico */
@media (min-width: 900px) {
  .borghi-grid { gap: 10px; }
}
.borgo-card { border-radius: 2px; }

/* Section title più respirata */
.section-title {
  font-weight: 340;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
}

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER — minimal, GDPR-compliant
   ═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 999;
  background: var(--ink); color: var(--bone);
  border: 1px solid var(--moss);
  padding: 20px 24px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
  box-shadow: 0 16px 48px rgba(15,33,24,0.4);
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s;
  font-family: 'Inter', sans-serif;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
    bottom: 24px; left: 24px; right: 24px;
    padding: 24px 28px;
    gap: 24px;
  }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner-text {
  font-size: 13px; line-height: 1.65;
  color: rgba(250,245,233,0.85);
}
.cookie-banner-text strong { color: var(--gold-light); font-weight: 500; }
.cookie-banner-text a {
  color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.3s;
}
.cookie-banner-text a:hover { color: var(--bone); }
.cookie-banner-actions {
  display: flex; gap: 10px; flex-shrink: 0;
}
.cookie-banner-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; background: var(--gold-light); color: var(--ink);
  border: 1px solid var(--gold-light); border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner-btn:hover { background: var(--bone); border-color: var(--bone); }
.cookie-banner-btn--secondary {
  background: transparent; color: rgba(250,245,233,0.75);
  border-color: rgba(250,245,233,0.25);
}
.cookie-banner-btn--secondary:hover {
  background: transparent; color: var(--bone); border-color: rgba(250,245,233,0.5);
}
@media (max-width: 480px) {
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-btn { flex: 1; }
}
