/* ═══════════════════════════════════════════════════════════
   ATELIER DEI LUOGHI — style.css
   Struttura:
   1. Variabili e reset
   2. Base
   3. Navbar
   4. Hero carousel
   5. Sezioni comuni
   6. Chi siamo
   7. Aree / Destinazioni
   8. Gallery
   9. Blog
   10. Testimonianze
   11. FAQ
   12. Contatti
   13. Newsletter
   14. Footer
═══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────
   1. VARIABILI E RESET
───────────────────────────────────── */
:root {
  --ivory:      #F2F0E8;
  --ivory-d:    #E8E4D8;
  --indaco:     #0D2320;
  --indaco-m:   #1A3D38;
  --indaco-l:   #2A5C55;
  --oro:        #C9A84C;
  --oro-l:      #E8D090;
  --sabbia:     #0D2320;
  --testo:      #0D2320;
  --muted:      #3D7A70;
  --rust:       #A84820;

  --font-serif: 'Libre Baskerville', serif;
  --font-sans:  'Nunito Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* compensa la navbar fixed (72px + 8px margine) */
}

/* Blocca scroll quando menu mobile è aperto — senza rompere il contesto scroll iOS */
html.menu-open,
html.menu-open body {
  overflow: hidden;
  height: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--testo);
  overflow-x: hidden;
}


/* ─────────────────────────────────────
   2. BASE — tipografia e utilità
───────────────────────────────────── */
em { font-style: italic; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ─────────────────────────────────────
   3. NAVBAR
───────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  background: rgba(13, 35, 32, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.08);
}

nav.scrolled {
  background: rgba(13, 35, 32, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

nav.hidden {
  transform: translateY(-100%);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ivory);
  padding-left: 0.38em;
  white-space: nowrap;
}

.nav-brand em {
  font-style: italic;
  font-weight: 200;
  color: var(--oro);
}

.nav-tagline {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.45);
  padding-left: 0.28em;
}

/* Link */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(232, 224, 200, 0.7);
  transition: color 0.2s;
  padding-left: 0.32em;
}

.nav-links a:hover { color: var(--oro); }

.nav-cta {
  border: 0.5px solid rgba(201, 168, 76, 0.5);
  padding: 8px 20px !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--oro) !important;
  color: var(--indaco) !important;
}


/* ─────────────────────────────────────
   4. HERO CAROUSEL
───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg { transform: scale(1); }

/* Overlay scuro */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 35, 32, 0.3) 0%,
    rgba(13, 35, 32, 0.1) 40%,
    rgba(13, 35, 32, 0.6) 100%
  );
}

/* Sfondi placeholder — sostituisci con background-image: url('img/hero-1.jpg') */
.slide-bg--1 {
  background-image: url('../img/deserto_hero.jpg');
  background-position: center 40%;
}

.slide-bg--2 {
  background-image: url('../img/petra_hero.jpg');
  background-position: center 30%;
}

.slide-bg--3 {
  background-image: url('../img/sur_hero.jpg');
  background-position: center 45%;
}

/* Contenuto slide */
.slide-content {
  position: absolute;
  bottom: 14%;
  left: 10%;
  right: 10%;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 14px;
  padding-left: 0.5em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--oro);
  opacity: 0.6;
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 200;
  color: var(--ivory);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.slide-title em {
  font-style: italic;
  color: var(--oro-l);
}

.slide-sub {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 224, 200, 0.7);
  letter-spacing: 0.06em;
  max-width: 520px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--oro);
  width: 24px;
  border-radius: 2px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-hint span {
  font-size: 8.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(232, 224, 200, 0.4);
  padding-left: 0.4em;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 0.5px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}


/* ─────────────────────────────────────
   5. SEZIONI COMUNI
───────────────────────────────────── */
section { position: relative; }

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 14px;
  padding-left: 0.45em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 0.5px;
  background: var(--oro);
  opacity: 0.6;
}

.section-eyebrow--center {
  justify-content: center;
}

.section-eyebrow--center::before { display: none; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--testo);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 200;
  color: var(--indaco-l);
}

.section-title--light {
  color: var(--ivory);
}

.section-title--light em {
  color: var(--oro-l);
}

.section-title--center {
  text-align: center;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 32px;
}

.orn-line {
  height: 0.5px;
  width: 40px;
  background: var(--oro);
  opacity: 0.3;
}

.orn-diamond {
  width: 6px;
  height: 6px;
  background: var(--oro);
  opacity: 0.5;
  transform: rotate(45deg);
  flex-shrink: 0;
}


/* ─────────────────────────────────────
   6. CHI SIAMO
───────────────────────────────────── */
#chi-siamo {
  padding: 110px 0 100px;
  background: var(--ivory);
}

.chi-siamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.chi-siamo-text p {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #1A3D38;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.chi-siamo-text p em  { font-style: italic; color: var(--indaco-l); }
.chi-siamo-text p strong { font-weight: 400; color: var(--testo); }

.chi-siamo-h3 {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-top: 28px;
  margin-bottom: 12px;
}

.chi-siamo-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--testo);
  padding-left: 0.4em;
  transition: gap 0.3s;
}

.chi-siamo-cta::after {
  content: '';
  display: block;
  width: 32px;
  height: 0.5px;
  background: var(--indaco-l);
  transition: width 0.3s;
}

.chi-siamo-cta:hover { gap: 20px; }
.chi-siamo-cta:hover::after { width: 48px; }

/* Visual box */
.chi-siamo-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.visual-foto {
  position: relative;
  height: 560px;
  border-radius: 2px 2px 0 0;
  overflow: hidden;
  background: #0D2320;
}

.visual-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  display: block;
}

.visual-arch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.visual-logo {
  background: #0D2320;
  border-radius: 0 0 2px 2px;
  border-top: 0.5px solid rgba(201, 168, 76, 0.15);
  padding: 22px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.visual-logo-brand {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242, 240, 232, 0.85);
  text-align: center;
  padding-left: 0.32em;
}

.visual-logo-brand em {
  font-style: italic;
  font-weight: 200;
  color: var(--oro);
}

.visual-logo-tag {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.45);
  text-align: center;
  padding-left: 0.28em;
}


/* ─────────────────────────────────────
   6b. SERVIZI
───────────────────────────────────── */
#servizi {
  padding: 110px 0 100px;
  background: var(--indaco);
}

#servizi .section-eyebrow { color: var(--oro); }

.servizi-intro {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(242,240,232,0.70);
  max-width: 100%;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

/* ── Divisori ── */
.servizi-divisore {
  display: flex;
  align-items: center;
  margin: 48px 0;
}
.servizi-divisore-line {
  flex: 1;
  height: 0.5px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}
.servizi-divisore-centro {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
}
.servizi-divisore-diamond {
  width: 5px; height: 5px;
  background: var(--oro);
  opacity: 0.6;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.servizi-divisore-label {
  font-size: 8px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--oro);
  opacity: 0.7;
  padding-left: 0.5em;
  white-space: nowrap;
}

/* ── Logo centrale con punti ── */
.servizi-logo-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 56px;
  align-items: center;
}

.servizi-punti-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.servizi-logo-centro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 32px;
  border-left: 0.5px solid rgba(201,168,76,0.22);
  border-right: 0.5px solid rgba(201,168,76,0.22);
  position: relative;
}
.servizi-logo-centro::before,
.servizi-logo-centro::after {
  content: '';
  display: block;
  width: 40px; height: 0.5px;
  background: var(--oro); opacity: 0.25;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.servizi-logo-centro::before { top: 0; }
.servizi-logo-centro::after  { bottom: 0; }

.servizi-logo-brand {
  font-family: var(--font-serif);
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(242,240,232,0.65);
  text-align: center; padding-left: 0.32em; white-space: nowrap;
}
.servizi-logo-brand em { font-style: italic; color: var(--oro); }

.servizi-logo-tag {
  font-size: 7.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  text-align: center; padding-left: 0.28em;
}

.servizi-punto {
  display: flex; flex-direction: column; gap: 6px;
}
.servizi-punto--dx { text-align: right; }

.servizi-punto-titolo {
  font-family: var(--font-sans);
  font-size: 9px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--oro-l); opacity: 0.85; padding-left: 0.38em;
}
.servizi-punto--dx .servizi-punto-titolo { padding-left: 0; padding-right: 0.38em; }

.servizi-punto-testo {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: rgba(242,240,232,0.60); letter-spacing: 0.02em;
}

/* ── Card pacchetti ── */
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.servizio-card {
  background: var(--indaco-m);
  padding: 48px 40px;
  position: relative;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.servizio-card:hover { background: var(--indaco-l); }
.servizio-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 1px; height: 0;
  background: var(--oro);
  transition: height 0.45s ease;
}
.servizio-card:hover::before { height: 100%; }

.servizio-num {
  font-family: var(--font-serif);
  font-size: 11px; letter-spacing: 0.4em;
  color: var(--oro); opacity: 0.55;
  margin-bottom: 26px; padding-left: 0.4em;
}
.servizio-label {
  font-size: 8px; letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(232,208,144,0.5);
  margin-bottom: 8px; padding-left: 0.5em;
}
.servizio-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px); font-weight: 400;
  color: var(--ivory); line-height: 1.1; letter-spacing: 0.03em; margin-bottom: 8px;
}
.servizio-title em { font-style: italic; font-weight: 300; color: var(--oro-l); }
.servizio-subtitle {
  font-family: var(--font-serif);
  font-size: 13px; font-style: italic;
  color: var(--oro); letter-spacing: 0.03em; opacity: 0.85; margin-bottom: 28px;
}
.servizio-sep { width: 32px; height: 0.5px; background: var(--oro); opacity: 0.2; margin-bottom: 28px; }
.servizio-body {
  font-family: var(--font-serif);
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: rgba(242,240,232,0.65); letter-spacing: 0.02em; flex: 1;
}
.servizio-body p + p { margin-top: 18px; }

.servizio-list {
  list-style: none; margin-top: 22px;
  display: flex; flex-direction: column; gap: 18px;
}
.servizio-list li {
  font-family: var(--font-serif);
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: rgba(242,240,232,0.60); letter-spacing: 0.02em;
  padding-left: 20px; position: relative;
}
.servizio-list li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 8px; height: 0.5px; background: var(--oro);
}
.servizio-list li strong {
  display: block; font-family: var(--font-sans);
  font-weight: 400; font-size: 8.5px;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--oro); opacity: 0.8; margin-bottom: 5px;
}
.servizio-closing {
  font-family: var(--font-serif);
  font-size: 14px; font-style: italic;
  color: rgba(242,240,232,0.40);
  letter-spacing: 0.03em; margin-top: 28px; line-height: 1.7;
}

/* Card scura — Completo */
.servizio-card--dark { background: var(--indaco-l); }
.servizio-card--dark:hover { background: #2f6860; }
.servizio-card--dark .servizio-label  { color: rgba(232,208,144,0.6); }
.servizio-card--dark .servizio-title  { color: var(--ivory); }
.servizio-card--dark .servizio-title em { color: var(--oro-l); }
.servizio-card--dark .servizio-subtitle { color: var(--oro-l); opacity: 0.8; }
.servizio-card--dark .servizio-sep    { opacity: 0.28; }
.servizio-card--dark .servizio-body   { color: rgba(242,240,232,0.72); }
.servizio-card--dark::before          { background: var(--oro); }

/* CTA */
.servizi-cta-wrap { margin-top: 60px; }

.servizi-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  text-decoration: none; color: var(--ivory);
  padding-left: 0.4em; transition: gap 0.3s;
}
.servizi-cta::after {
  content: '';
  display: block; width: 32px; height: 0.5px;
  background: var(--oro-l); transition: width 0.3s;
}
.servizi-cta:hover { gap: 20px; }
.servizi-cta:hover::after { width: 48px; }

/* Responsive servizi */
@media (max-width: 900px) {
  .servizi-grid { grid-template-columns: 1fr; gap: 2px; }
}



/* ─────────────────────────────────────
   6c. GALLERY CTA (link a gallery.html)
───────────────────────────────────── */
.gallery-cta-wrap {
  background: var(--ivory-d);
  border-top: 0.5px solid rgba(13,35,32,0.06);
  padding: 20px 0;
}
.gallery-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: center;
}
.gallery-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--oro);
  color: var(--indaco);
  text-decoration: none;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.gallery-cta-link:hover { background: var(--oro-l); }
.gallery-cta-link svg { flex-shrink: 0; }


/* ─────────────────────────────────────
   7. AREE / DESTINAZIONI
───────────────────────────────────── */
#aree {
  padding: 100px 0;
  background: var(--ivory-d);
  overflow: hidden;
}

#aree .section-eyebrow { color: var(--oro); }

#aree .section-title { color: var(--testo); }
#aree .section-title em { color: var(--indaco-l); }

#aree .section-inner,
#aree .aree-wrap { position: relative; z-index: 1; }

.aree-intro {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--indaco-m);
  letter-spacing: 0.04em;
  max-width: 560px;
  line-height: 1.7;
}

/* Immagine topo — via ::before, nero sparisce con multiply */
#aree::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/topo-bg.png');
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

/* Griglia cartografica SVG sovrapposta */
.aree-deco-griglia {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
  z-index: 1;
}

.aree-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.aree-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

/* Layout a piena larghezza con un solo itinerario */
.aree-grid--solo {
  grid-template-columns: 1fr;
}

.area-card--solo {
  height: 480px;
}

.area-card--solo .area-content {
  max-width: 560px;
}

.area-card--solo .area-title {
  font-size: clamp(28px, 3vw, 42px);
}

.area-card--solo .area-desc {
  max-height: 100px;
  opacity: 1;
}

.area-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.area-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.area-card:hover .area-bg { transform: scale(1.06); }

/* Sfondi placeholder — sostituisci con url('../img/area-1.jpg') */
.area-bg--1 {
  background-image:
    radial-gradient(ellipse at 40% 50%, rgba(61, 122, 112, 0.7) 0%, transparent 60%),
    linear-gradient(160deg, #1A3D38 0%, #0D2320 100%);
}

.area-bg--2 {
  background-image:
    radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.5) 0%, transparent 55%),
    linear-gradient(140deg, #2A5C55 0%, #0D2320 100%);
}

.area-bg--3 {
  background-image:
    radial-gradient(ellipse at 50% 60%, rgba(61, 122, 112, 0.6) 0%, transparent 55%),
    linear-gradient(150deg, #1A3D38 0%, #0D2320 100%);
}

.area-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 35, 32, 0.9) 0%, rgba(13, 35, 32, 0.1) 60%);
  transition: background 0.4s;
}

.area-card:hover .area-overlay {
  background: linear-gradient(to top, rgba(13, 35, 32, 0.95) 0%, rgba(13, 35, 32, 0.3) 60%);
}

.area-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 2;
}

.area-tag {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 8px;
  padding-left: 0.4em;
}

.area-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 10px;
}

.area-title em { font-style: italic; font-weight: 200; color: var(--oro-l); }

.area-desc {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(232, 224, 200, 0.55);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s;
  opacity: 0;
}

.area-card:hover .area-desc { max-height: 80px; opacity: 1; }

.area-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--oro);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  padding-left: 0.38em;
}

.area-arrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 0.5px;
  background: var(--oro);
}

.area-card:hover .area-arrow { opacity: 1; transform: translateY(0); }


/* ─────────────────────────────────────
   BLOCCO ITINERARI
───────────────────────────────────── */
.blocco-itinerari {
  background: var(--indaco);
  padding: 60px 0;
}

.blocco-itinerari-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

.blocco-itinerari-bar {
  flex-shrink: 0;
  width: 1.5px;
  background: var(--oro);
  opacity: 0.5;
  align-self: stretch;
  min-height: 80px;
}

.blocco-itinerari-content {
  flex: 1;
}

.blocco-itinerari-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 16px;
}

.blocco-itinerari-testo {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(242,240,232,0.72);
  letter-spacing: 0.02em;
}

.blocco-itinerari-testo em {
  font-style: italic;
  color: var(--oro-l);
}

.blocco-itinerari-firma {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.blocco-itinerari-firma svg {
  opacity: 0.45;
  flex-shrink: 0;
}

.blocco-itinerari-firma span {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242,240,232,0.35);
}


/* ─────────────────────────────────────
   8. GALLERY
───────────────────────────────────── */
#gallery {
  padding: 100px 0 50px;
  background: var(--ivory-d);
}

.gallery-wrap {
  max-width: 1400px;
  margin: 52px auto 0;
  padding: 0 60px;
}

/* Griglia magazine: 3 colonne, 2 righe — primo item occupa 2 righe */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 6px;
}

.gallery-item--featured {
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}

.gallery-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-bg { transform: scale(1.04); }

.gallery-bg--1 { background-image: url('../img/gallery-1.jpg'); }
.gallery-bg--2 { background-image: url('../img/gallery-2.jpg'); }
.gallery-bg--3 { background-image: url('../img/gallery-3.jpg'); }
.gallery-bg--4 { background-image: url('../img/gallery-4.jpg'); }
.gallery-bg--5 { background-image: url('../img/gallery-5.jpg'); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 32, 0);
  transition: background 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(13, 35, 32, 0.42);
}

.gallery-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption-num {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(201, 168, 76, 0.6);
  padding-bottom: 1px;
}

.gallery-plus {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oro-l);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0.5px solid rgba(201, 168, 76, 0);
  transition: border-color 0.4s;
  pointer-events: none;
  border-radius: 2px;
}

.gallery-item:hover::after {
  border-color: rgba(201, 168, 76, 0.35);
}


/* ─────────────────────────────────────
   9. BLOG
───────────────────────────────────── */
#blog {
  padding: 100px 0;
  background: var(--ivory);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.blog-link-all {
  font-size: 9.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--indaco-l);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 0.38em;
  transition: gap 0.3s;
}

.blog-link-all::after {
  content: '';
  display: block;
  width: 28px;
  height: 0.5px;
  background: var(--indaco-l);
  transition: width 0.3s;
}

.blog-link-all:hover { gap: 18px; }
.blog-link-all:hover::after { width: 44px; }

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

/* Layout editoriale quando c'è un solo articolo */
.blog-grid--solo {
  grid-template-columns: 1fr;
}

.blog-card--solo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card--solo .blog-img {
  height: 480px;
  width: 100%;
}

.blog-card--solo .blog-card-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.blog-card--solo .blog-title {
  font-size: clamp(22px, 2.5vw, 32px);
}

.blog-card--solo .blog-excerpt {
  font-size: 16px;
  line-height: 1.8;
  max-width: 680px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}

.blog-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 2px;
}

.blog-card:nth-child(1) .blog-img { height: 300px; }

.blog-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-bg { transform: scale(1.05); }

/* Sfondi placeholder — sostituisci con url('../img/blog-N.jpg') */
.blog-img-bg--1 {
  background-image:
    radial-gradient(ellipse at 40% 50%, rgba(61, 122, 112, 0.7) 0%, transparent 60%),
    linear-gradient(145deg, #1A3D38 0%, #0D2320 100%);
}

.blog-img-bg--2 {
  background-image:
    radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.4) 0%, transparent 55%),
    linear-gradient(160deg, #2A5C55 0%, #0D2320 100%);
}

.blog-img-bg--3 {
  background-image:
    radial-gradient(ellipse at 50% 60%, rgba(61, 122, 112, 0.6) 0%, transparent 55%),
    linear-gradient(130deg, #1A3D38 0%, #0D2320 100%);
}

.blog-cat {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 8.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--oro);
  background: rgba(13, 35, 32, 0.75);
  padding: 5px 10px 4px 13px;
  backdrop-filter: blur(4px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 0.3em;
}

.blog-meta-dot {
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--oro);
  opacity: 0.5;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--testo);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.blog-title em { font-style: italic; font-weight: 200; color: var(--indaco-l); }

.blog-excerpt {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: #3D7A70;
  line-height: 1.7;
}

.blog-read {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--testo);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding-left: 0.35em;
  transition: gap 0.3s;
}

.blog-read::after {
  content: '';
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--testo);
  transition: width 0.3s;
}

.blog-card:hover .blog-read { gap: 16px; }
.blog-card:hover .blog-read::after { width: 36px; }

/* ── Navigazione carosello blog ── */
.blog-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
}

.blog-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--testo);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.blog-nav-btn:hover:not(:disabled) {
  border-color: var(--oro);
  color: var(--oro);
  background: rgba(201, 168, 76, 0.05);
}

.blog-nav-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.blog-nav-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.blog-nav-dot.active {
  background: var(--oro);
  border-color: var(--oro);
  transform: scale(1.25);
}

.blog-nav-dot:hover:not(.active) {
  border-color: var(--oro);
  background: rgba(201, 168, 76, 0.25);
}


/* ─────────────────────────────────────
   10. TESTIMONIANZE
───────────────────────────────────── */

/* ── Elemento decorativo temporaneo (testimonianze nascoste) ── */
#testimonianze {
  background: var(--sabbia);
  overflow: hidden;
}

.testi-deco {
  position: relative;
  overflow: hidden;
  padding: 52px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.testi-deco-griglia {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.testi-deco-quote {
  position: absolute;
  left: 32px;
  top: 8px;
  font-family: var(--font-serif);
  font-size: 220px;
  font-weight: 400;
  line-height: 1;
  color: rgba(201, 168, 76, 0.042);
  pointer-events: none;
  user-select: none;
}

.testi-deco-orn {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.testi-orn-line  { width: 90px; height: 0.5px; background: var(--oro); opacity: 0.28; }
.testi-orn-dia   { width: 5px; height: 5px; border: 0.8px solid var(--oro); transform: rotate(45deg); opacity: 0.55; }
.testi-orn-dia-s { width: 3px; height: 3px; background: var(--oro); transform: rotate(45deg); opacity: 0.35; }

.testi-deco-centro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  width: 100%;
}

.testi-deco-frase {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: rgba(232, 208, 144, 0.58);
  letter-spacing: 0.03em;
  line-height: 1.78;
}

.testi-deco-frase em {
  font-style: normal;
  color: var(--oro);
}

.testi-deco-firma {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-deco-firma-txt {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.35);
  padding-left: 0.45em;
}



/* ── Stili card testimonianze (ripristinare quando si aggiungono le vere testimonianze) ──
#testimonianze { padding: 100px 0; }
#testimonianze .section-eyebrow { color: var(--oro); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testi-card { border: none; padding: 32px 28px; position: relative; transition: border-color 0.3s; }
.testi-card:hover { border-color: rgba(201, 168, 76, 0.35); }
.testi-card::before { content: '\201C'; position: absolute; top: 18px; left: 24px; font-family: var(--font-serif); font-size: 60px; font-weight: 200; color: var(--oro); opacity: 0.25; line-height: 1; }
.testi-text { font-family: var(--font-serif); font-size: 15px; font-style: italic; font-weight: 300; color: rgba(232, 224, 200, 0.75); line-height: 1.75; margin-bottom: 24px; padding-top: 24px; }
.testi-author { display: flex; flex-direction: column; gap: 3px; padding-top: 18px; border-top: 0.5px solid rgba(201, 168, 76, 0.12); }
.testi-name { font-family: var(--font-serif); font-size: 13px; font-weight: 300; color: var(--oro-l); letter-spacing: 0.06em; }
.testi-dest { font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(201, 168, 76, 0.45); padding-left: 0.32em; }
── */


/* ─────────────────────────────────────
   11. FAQ
───────────────────────────────────── */
#faq {
  padding: 100px 0;
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  margin-top: 52px;
}

.faq-item {
  border-bottom: 0.5px solid rgba(42, 92, 85, 0.15);
  padding: 22px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--testo);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.faq-icon {
  width: 20px; height: 20px;
  border: 0.5px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.faq-icon span {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 200;
  color: var(--oro);
  line-height: 1;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { background: var(--oro); }
.faq-item.open .faq-icon span { transform: rotate(45deg); color: var(--indaco); }

.faq-answer {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: #3D7A70;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
}

.faq-item.open .faq-answer { max-height: 600px; padding-top: 14px; }


/* ─────────────────────────────────────
   12. CONTATTI
───────────────────────────────────── */
#contatti {
  padding: 100px 0;
  background: var(--indaco);
}

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
}

.contatti-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--oro);
  opacity: 0.7;
  padding-left: 0.38em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 224, 200, 0.2);
  font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
}

.form-group textarea { height: 100px; resize: none; }

.form-group select option { background: var(--indaco); color: var(--ivory); }

.form-feedback {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  padding: 0 4px;
  min-height: 20px;
  transition: color 0.3s;
}

.form-feedback.success { color: #7EC8A0; }
.form-feedback.error   { color: #E07070; }

.form-submit {
  align-self: flex-start;
  background: transparent;
  border: 0.5px solid rgba(201, 168, 76, 0.5);
  color: var(--oro);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  padding: 14px 36px 12px 40px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 6px;
}

.form-submit:hover { background: var(--oro); color: var(--indaco); }

.contatti-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.info-intro {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 224, 200, 0.6);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.info-items { display: flex; flex-direction: column; gap: 20px; }
.info-item  { display: flex; flex-direction: column; gap: 4px; }

.info-label {
  font-size: 8.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--oro);
  opacity: 0.65;
  padding-left: 0.38em;
}

.info-value {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  color: rgba(232, 224, 200, 0.75);
  letter-spacing: 0.04em;
}
.info-value a {
  color: var(--oro);
  text-decoration: none;
  transition: color 0.2s ease;
}
.info-value a:hover {
  color: var(--oro-l);
}

.field-required {
  color: var(--oro);
  margin-left: 2px;
}
.field-optional {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(232, 224, 200, 0.45);
  letter-spacing: 0.06em;
  margin-left: 4px;
  text-transform: lowercase;
}


/* ─────────────────────────────────────
   13. NEWSLETTER
───────────────────────────────────── */
#newsletter {
  padding: 80px 0;
  background: var(--ivory-d);
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-sub {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: #3D7A70;
  line-height: 1.7;
  margin: 16px 0 32px;
  letter-spacing: 0.03em;
}

.newsletter-form {
  display: flex;
  border: 0.5px solid rgba(42, 92, 85, 0.3);
  width: 100%;
}

.newsletter-feedback {
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  min-height: 1.2em;
}
.newsletter-feedback.success { color: #2A5C55; }
.newsletter-feedback.error   { color: #e07070; }

/* ── Instagram CTA ── */
.ig-sep {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 32px 0 24px;
}
.ig-sep-line {
  flex: 1;
  height: 0.5px;
  background: rgba(13,35,32,0.12);
}
.ig-sep-txt {
  font-size: 8.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(13,35,32,0.35);
  padding-left: 0.35em;
  white-space: nowrap;
}

.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--indaco);
  color: var(--ivory);
  text-decoration: none;
  padding: 13px 32px;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.ig-btn:hover { background: var(--indaco-l); }
.ig-btn svg { flex-shrink: 0; }

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--testo);
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(13, 35, 32, 0.3); }

.newsletter-form button {
  background: var(--indaco);
  border: none;
  padding: 14px 20px 12px 20px;
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--oro);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--indaco-l); }


/* ─────────────────────────────────────
   14. FOOTER
───────────────────────────────────── */
footer {
  background: var(--indaco);
  border-top: 0.5px solid rgba(201, 168, 76, 0.1);
  padding: 60px 0 32px;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto 48px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(232, 224, 200, 0.7);
  padding-left: 0.38em;
}

.footer-brand-name em { font-style: italic; color: var(--oro); }

.footer-desc {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(232, 224, 200, 0.4);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--oro);
  opacity: 0.7;
  padding-left: 0.4em;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  color: rgba(232, 224, 200, 0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--oro-l); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  color: rgba(232,224,200,0.35);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover {
  color: var(--oro);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 60px 0;
  border-top: 0.5px solid rgba(201, 168, 76, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy,
.footer-piva {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: rgba(232, 224, 200, 0.2);
  padding-left: 0.28em;
}

/* ─────────────────────────────────────
   LIGHTBOX
───────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(13, 35, 32, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Pulsante chiudi */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--oro-l);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  padding: 16px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
.lightbox-close:hover { opacity: 1; transform: scale(1.15); }

/* Area immagine principale */
.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  min-height: 0;
  padding: 60px 80px 20px;
  box-sizing: border-box;
  z-index: 1;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: none;
  display: block;
  transition: opacity 0.25s ease;
}

.lightbox-img.is-loading { opacity: 0; }

/* Frecce prev/next */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--oro);
  font-size: 36px;
  font-weight: 200;
  padding: 12px 18px;
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s;
  font-family: var(--font-serif);
  line-height: 1;
  user-select: none;
}
.lightbox-arrow:hover { opacity: 1; }
.lightbox-arrow--prev { left: 8px; }
.lightbox-arrow--next { right: 8px; }
.lightbox-arrow:hover.lightbox-arrow--prev { transform: translateY(-50%) translateX(-3px); }
.lightbox-arrow:hover.lightbox-arrow--next { transform: translateY(-50%) translateX(3px); }

/* Contatore */
.lightbox-counter {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(232, 208, 144, 0.45);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Striscia miniature */
.lightbox-thumbs {
  display: flex;
  gap: 8px;
  padding: 0 24px 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.lightbox-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.4;
  border: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.lightbox-thumb:hover { opacity: 0.75; }
.lightbox-thumb.is-active {
  opacity: 1;
  border-color: var(--oro);
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 768px) {
  .lightbox-stage { padding: 56px 52px 16px; }
  .lightbox-arrow { font-size: 28px; padding: 8px 10px; }
  .lightbox-thumb { width: 48px; height: 36px; }
  .lightbox-close { top: 16px; right: 20px; font-size: 24px; }
}


/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--indaco);
  border-top: 1px solid rgba(201,168,76,0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 60px;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
}
.cookie-icon { flex-shrink: 0; opacity: 0.5; }
.cookie-text { flex: 1; }
.cookie-title {
  font-family: var(--font-serif); font-size: 13px; font-weight: 400;
  color: var(--ivory); letter-spacing: 0.03em; margin-bottom: 6px;
}
.cookie-title em { font-style: italic; color: var(--oro-l); }
.cookie-desc {
  font-size: 11px; font-weight: 300; line-height: 1.65;
  color: rgba(242,240,232,0.55); letter-spacing: 0.04em; max-width: 680px;
}
.cookie-desc a { color: var(--oro); text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.cookie-desc a:hover { opacity: 1; }
.cookie-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-sans); font-size: 8.5px;
  letter-spacing: 0.4em; text-transform: uppercase;
  border: none; cursor: pointer; padding: 11px 24px;
  transition: all 0.25s; white-space: nowrap;
}
.cookie-btn--accetta { background: var(--oro); color: var(--indaco); }
.cookie-btn--accetta:hover { background: var(--oro-l); }
.cookie-btn--rifiuta {
  background: transparent; color: rgba(242,240,232,0.45);
  border: 0.5px solid rgba(242,240,232,0.15);
}
.cookie-btn--rifiuta:hover { color: rgba(242,240,232,0.8); border-color: rgba(242,240,232,0.35); }
@media (max-width: 768px) {
  #cookie-banner { padding: 24px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cookie-icon { display: none; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
@media (max-width: 480px) {
  .cookie-actions { flex-direction: column; gap: 8px; }
  .cookie-btn { width: 100%; }
}
