/* ==========================================================================
   BUONGIORNO MONDO — Design System & Stylesheet
   Style: Minimal Luxury, Relaxed Italian Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette — Warm Linen & Deep Obsidian Luxury */
  --bg-canvas: #EAF5FD;
  --bg-card: #FFFFFF;
  --bg-card-alt: #DCEEFB;
  --bg-dark: #0D1B2A;
  --bg-dark-surface: #142436;
  
  --text-main: #1A242D;
  --text-muted: #5A6978;
  --text-light: #F4F1EA;
  
  --accent-gold: #C5A059;
  --accent-gold-dark: #9E7B36;
  --accent-gold-light: #F7F0E3;
  
  --accent-navy: #1B3B50;
  --accent-teal: #3E8E9E;

  --border-color: rgba(26, 36, 45, 0.08);
  --border-color-dark: rgba(244, 241, 234, 0.12);

  /* Typography System */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 12px rgba(13, 27, 42, 0.03);
  --shadow-md: 0 12px 32px -8px rgba(13, 27, 42, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(13, 27, 42, 0.1);
  --shadow-glow: 0 0 40px rgba(197, 160, 89, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(234, 245, 253, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}

.wordmark .brand-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.wordmark-badge {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  background: var(--accent-gold-light);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
}

/* Header Buttons */
.btn-nav-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-nav-action:hover {
  background: var(--accent-gold-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 12px;
  transition: var(--transition-fast);
}

.btn-ghost:hover {
  color: var(--accent-gold-dark);
}

/* Primary Buttons */
.btn-primary, .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-dark);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
}

.btn-primary:hover, .btn-wa:hover {
  background: var(--accent-navy);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-oro, .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-gold);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px -5px rgba(197, 160, 89, 0.4);
}

.btn-oro:hover, .btn-gold:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(197, 160, 89, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-dark);
  background: var(--bg-card);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 90px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 820px;
}

/* Hero con foto full-bleed e overlay */
.hero-full {
  overflow: hidden;
  padding: 120px 0 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13, 27, 42, 0.35) 0%, rgba(13, 27, 42, 0) 35%),
    linear-gradient(100deg, rgba(13, 27, 42, 0.68) 0%, rgba(13, 27, 42, 0.35) 52%, rgba(13, 27, 42, 0.05) 100%);
}

.hero-full .wrap {
  position: relative;
  z-index: 1;
}

.hero.hero-full h1 {
  color: #FFFFFF;
  text-shadow: 0 2px 24px rgba(13, 27, 42, 0.35);
}

.hero.hero-full h1 em {
  color: var(--accent-gold);
}

.hero-full .eyebrow-tag {
  color: var(--accent-gold-light);
}

.hero-full .hero-lead {
  color: rgba(244, 241, 234, 0.82);
}

.hero-full .hero-lead strong {
  color: #FFFFFF;
}

.hero-full .btn-primary {
  background: #FFFFFF;
  color: var(--bg-dark);
  border-color: transparent;
}

.hero-full .btn-primary:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.hero-full .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-full .btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  background: rgba(13, 27, 42, 0.35);
}

.hero-full .hero-trust-chips {
  border-top-color: rgba(244, 241, 234, 0.18);
}

.hero-full .trust-chip {
  background: rgba(13, 27, 42, 0.45);
  backdrop-filter: blur(8px);
  border-color: rgba(244, 241, 234, 0.2);
  color: var(--text-light);
  box-shadow: none;
}

.hero-photo-caption {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(13, 27, 42, 0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-photo-caption svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .hero-photo-caption {
    display: none;
  }
}

.eyebrow-tag, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 24px;
}

.eyebrow-tag::before, .eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent-gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bg-dark);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold-dark);
}

.hero p.lead, .hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 36px;
}

.hero p.lead strong, .hero-lead strong {
  color: var(--text-main);
  font-weight: 600;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--bg-card);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.trust-chip svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

/* Sections Global */
section {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 48px;
  max-width: 660px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 12px;
  display: block;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--bg-dark);
  letter-spacing: -0.01em;
}

h2 em {
  font-style: italic;
  color: var(--accent-gold-dark);
}

.section-intro {
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Long-form legal copy needs its own rhythm because the global reset removes
   the browser's default heading and paragraph spacing. */
.testo-lungo {
  max-width: 800px;
}

.testo-lungo h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-top: 34px;
  margin-bottom: 8px;
}

.testo-lungo p {
  max-width: 68ch;
  color: var(--text-muted);
  margin-top: 12px;
}

.testo-lungo p + h3 {
  margin-top: 30px;
}

.testo-lungo p a {
  color: var(--accent-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav-label-short {
  display: none;
}

/* Bivio Rapido — Top Bar Choices */
.bivio-rapido {
  padding: 0 0 60px;
}

.bivio-scelte {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bivio-scelta {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.bivio-scelta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.bivio-scelta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 160, 89, 0.3);
}

.bivio-scelta:hover::after {
  transform: scaleX(1);
}

.bivio-scelta b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 6px;
}

.bivio-scelta span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.bivio-scelta.evidenza {
  background: var(--accent-gold-light);
  border-color: rgba(197, 160, 89, 0.3);
}

.bivio-scelta.evidenza b {
  color: var(--accent-gold-dark);
}

/* Fascia loghi tour operator */
.loghi-to {
  padding: 40px 0 48px;
}
.loghi-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}
.loghi-fascia {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.loghi-track {
  flex: none;
  display: flex;
  align-items: center;
  gap: 76px;
  padding-right: 76px;
  animation: loghi-scroll 32s linear infinite;
}
.loghi-fascia:hover .loghi-track {
  animation-play-state: paused;
}
.loghi-track img {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.loghi-track img.tondo {
  height: 58px;
  max-width: 58px;
}
.loghi-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes loghi-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loghi-fascia { mask-image: none; -webkit-mask-image: none; }
  .loghi-track {
    animation: none; flex: 1 1 auto; flex-wrap: wrap;
    justify-content: center; gap: 40px 48px; padding-right: 0;
  }
  .loghi-track[aria-hidden="true"] { display: none; }
}

/* Hotel Showcase Section ("Hotel con cui lavoriamo") */
.hotels-section {
  background: var(--bg-card-alt);
  border-block: 1px solid var(--border-color);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.hotel-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hotel-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-dark);
  overflow: hidden;
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.05);
}

.hotel-card-image-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #142436 0%, #0D1B2A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  padding: 24px;
  text-align: center;
  position: relative;
}

.hotel-card-image-frame .frame-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  opacity: 0.85;
}

.hotel-card-image-frame .frame-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: #FFFFFF;
}

.hotel-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.hotel-card-verified {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--accent-gold);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hotel-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-location {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 6px;
}

.hotel-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bg-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hotel-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.hotel-tag {
  font-size: 0.75rem;
  color: var(--text-main);
  background: var(--bg-canvas);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.hotel-video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

.hotel-video-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hotel-video-link:hover {
  color: var(--accent-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Feature Grid — Perché noi */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 160, 89, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Three Pathways (Bivio Carte Extended) */
.bivio-carte {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.bivio-carta {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.bivio-carta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 16px;
}

.bivio-carta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.bivio-carta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.bivio-carta .btn-primary,
.bivio-carta .btn-gold,
.bivio-carta .btn-outline,
.bivio-carta .btn-wa,
.bivio-carta .btn-oro {
  margin-top: auto;
  align-self: stretch;
}

.bivio-carta.evidenza {
  background: #FFFFFF;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

.bivio-carta .prezzo-tag, .bivio-carta .prezzo {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent-gold-light);
  color: var(--accent-gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

/* Legal Section (Dati Societari) */
.legale, .legale-section {
  background: var(--bg-card);
  border-block: 1px solid var(--border-color);
  padding: 80px 0;
}

.dati, .dati-box {
  margin-top: 36px;
  background: var(--bg-canvas);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dati dl, .dati-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.dati dt, .dati dd, .dati-grid dt, .dati-grid dd {
  padding: 16px 28px;
  border-top: 1px solid var(--border-color);
}

.dati dt:first-of-type, .dati dt:first-of-type + dd,
.dati-grid dt:first-of-type, .dati-grid dt:first-of-type + dd {
  border-top: none;
}

.dati dt, .dati-grid dt {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dati dd, .dati-grid dd {
  font-size: 0.95rem;
  color: var(--text-main);
}

.dati dd a, .dati-grid dd a {
  color: var(--accent-navy);
  text-decoration: none;
  font-weight: 600;
}

.dati dd a:hover, .dati-grid dd a:hover {
  color: var(--accent-gold-dark);
  text-decoration: underline;
}

/* Footer */
footer {
  padding: 48px 0 60px;
  background: var(--bg-canvas);
  border-top: 1px solid var(--border-color);
}

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

footer p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

footer a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

footer a:hover {
  color: var(--accent-gold-dark);
}

/* Intersection Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hotel-grid,
  .features-grid,
  .bivio-carte {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  header .header-inner { padding: 14px 20px; }
  .bivio-scelte,
  .hotel-grid,
  .features-grid,
  .bivio-carte {
    grid-template-columns: 1fr;
  }
  .dati dl, .dati-grid {
    grid-template-columns: 1fr;
  }
  .dati dd, .dati-grid dd {
    padding-top: 4px;
    border-top: none;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  header .header-inner {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 16px;
  }

  header .wordmark {
    min-width: 0;
    white-space: nowrap;
    font-size: 1.1rem;
    gap: 0;
  }

  header .wordmark .brand-icon,
  header .wordmark-badge {
    display: none;
  }

  header .btn-nav-action,
  header .btn-ghost {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 9px 11px;
  }

  header .nav-label-full {
    display: none;
  }

  header .nav-label-short {
    display: inline;
  }
}
