/*
Theme Name: Villa Lolù
Theme URI: https://villalolu.it
Author: Villa Lolù
Author URI: https://villalolu.it
Description: Tema ufficiale Villa Lolù — B&B & Home Restaurant in Toscana, Terranuova Bracciolini. Elegante, lussuoso, bilingue IT/EN.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietario
License URI: https://villalolu.it
Text Domain: villa-lolu
Tags: bed-and-breakfast, restaurant, luxury, tuscany, full-width-template, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   DESIGN TOKENS — Villa Lolù
   Palette: Verde Toscano · Oro Antico · Crema · Pietra
   ============================================================ */
:root {
  /* Colori primari */
  --vl-green-deep:    #1E3A14;
  --vl-green-dark:    #2C4E1C;
  --vl-green-mid:     #3D6B28;
  --vl-green-soft:    #5A8F3F;
  --vl-green-pale:    #E6F0DE;
  --vl-green-xpale:  #F0F6EA;

  /* Oro */
  --vl-gold:          #B8960C;
  --vl-gold-light:    #D4AF37;
  --vl-gold-pale:     #F5E6A3;
  --vl-gold-xpale:   #FBF5DC;

  /* Neutri caldi */
  --vl-cream:         #FAFAF4;
  --vl-cream-warm:    #F5F0E8;
  --vl-stone:         #8B7355;
  --vl-stone-light:   #C4A882;
  --vl-stone-pale:    #F2EDE4;
  --vl-charcoal:      #2A2A22;
  --vl-text:          #3A3A30;
  --vl-text-muted:    #6B6B58;
  --vl-text-light:    #9A9A80;

  /* Rosso Toscano accento */
  --vl-red:           #8B1A1A;
  --vl-red-soft:      #C0392B;

  /* Bianchi */
  --vl-white:         #FFFFFF;
  --vl-white-alpha80: rgba(255,255,255,0.8);
  --vl-white-alpha40: rgba(255,255,255,0.4);
  --vl-white-alpha10: rgba(255,255,255,0.1);

  /* Tipografia */
  --font-display:     'Cormorant Garamond', 'Georgia', serif;
  --font-body:        'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:      'Cormorant Garamond', serif;

  /* Spaziature */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    4rem;
  --space-xl:    6rem;
  --space-xxl:   8rem;

  /* Bordi */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  /* Ombre */
  --shadow-sm:   0 2px 8px rgba(30,58,20,0.08);
  --shadow-md:   0 8px 32px rgba(30,58,20,0.12);
  --shadow-lg:   0 20px 60px rgba(30,58,20,0.18);

  /* Transizioni */
  --transition:  all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--vl-text);
  background-color: var(--vl-cream);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--vl-green-mid);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover { color: var(--vl-gold); }

ul, ol { list-style: none; }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--vl-green-deep);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--vl-text);
  font-weight: 300;
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--vl-text-muted);
  line-height: 1.8;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vl-gold);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--large {
  padding: var(--space-xxl) 0;
}

.section--dark {
  background-color: var(--vl-green-deep);
  color: var(--vl-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--vl-white);
}

.section--dark p,
.section--dark .lead {
  color: rgba(255,255,255,0.75);
}

.section--dark .eyebrow {
  color: var(--vl-gold-light);
}

.section--cream { background-color: var(--vl-cream-warm); }
.section--stone { background-color: var(--vl-stone-pale); }
.section--green-pale { background-color: var(--vl-green-xpale); }

/* Grid */
.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Flex utils */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================================
   BOTTONI
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background-color: var(--vl-green-dark);
  color: var(--vl-white);
}
.btn--primary:hover {
  background-color: var(--vl-green-deep);
  color: var(--vl-white);
}

.btn--gold {
  background-color: var(--vl-gold);
  color: var(--vl-white);
}
.btn--gold:hover {
  background-color: var(--vl-gold-light);
  color: var(--vl-white);
}

.btn--outline {
  background-color: transparent;
  color: var(--vl-green-dark);
  border: 1.5px solid var(--vl-green-dark);
}
.btn--outline:hover {
  background-color: var(--vl-green-dark);
  color: var(--vl-white);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--vl-white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background-color: var(--vl-white);
  color: var(--vl-green-deep);
}

.btn--whatsapp {
  background-color: #25D366;
  color: var(--vl-white);
  border-radius: 50px;
  gap: 0.75rem;
}
.btn--whatsapp:hover {
  background-color: #1dab53;
  color: var(--vl-white);
}

/* ============================================================
   NAVIGAZIONE
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

#site-header.is-transparent {
  background: transparent;
}

#site-header.is-scrolled {
  background: rgba(30, 58, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.site-logo__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--vl-white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.site-logo__tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vl-gold-light);
  margin-top: 3px;
}

/* Menu principale */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vl-white-alpha80);
  padding: 0.5rem 1rem;
  position: relative;
  text-decoration: none;
  transition: var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--vl-gold-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover,
.main-nav a.current-menu-item {
  color: var(--vl-white);
}

.main-nav a:hover::after,
.main-nav a.current-menu-item::after {
  transform: scaleX(1);
}

/* CTA header */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #25D366;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.header-whatsapp:hover { color: #1dab53; }

.header-whatsapp svg {
  width: 18px;
  height: 18px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--vl-white);
  transition: var(--transition-fast);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 32, 8, 0.85) 0%,
    rgba(14, 32, 8, 0.4) 50%,
    rgba(14, 32, 8, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem var(--space-xl);
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vl-gold-light);
  display: block;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--vl-white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--vl-gold-pale);
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 0.2; }
}

/* Barra prenotazione rapida */
.booking-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--vl-gold);
}

.booking-bar__inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.booking-bar__field {
  flex: 1;
  padding: 1.25rem 1.75rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.booking-bar__field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vl-text-muted);
}

.booking-bar__field input,
.booking-bar__field select {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--vl-text);
  background: transparent;
  width: 100%;
  cursor: pointer;
}

.booking-bar__field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.4;
  cursor: pointer;
}

.booking-bar__submit {
  padding: 0 2.5rem;
  background: var(--vl-green-dark);
  color: var(--vl-white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  height: 100%;
  min-height: 80px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.booking-bar__submit:hover {
  background: var(--vl-green-deep);
}

/* ============================================================
   SEZIONE INTRO / CHI SIAMO
   ============================================================ */
.about-section {
  padding: var(--space-xxl) 0;
  background: var(--vl-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-images__main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-images__accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--vl-cream);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--vl-green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--vl-white);
  box-shadow: var(--shadow-md);
}

.about-badge__num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--vl-gold-light);
}

.about-badge__text {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  color: rgba(255,255,255,0.8);
  padding: 0 0.5rem;
}

.about-content {
  padding-left: var(--space-md);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--vl-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--vl-green-dark);
}

.about-feature__text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vl-green-deep);
  margin-bottom: 0.2rem;
}

.about-feature__text span {
  font-size: 0.875rem;
  color: var(--vl-text-muted);
}

/* ============================================================
   CAMERE — CARD
   ============================================================ */
.rooms-section {
  background: var(--vl-stone-pale);
  padding: var(--space-xxl) 0;
}

.section-header {
  margin-bottom: var(--space-lg);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(0,0,0,0.08);
}

.room-card {
  background: var(--vl-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.room-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card__image img {
  transform: scale(1.05);
}

.room-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--vl-green-dark);
  color: var(--vl-white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.room-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card__type {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vl-gold);
  margin-bottom: 0.5rem;
}

.room-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--vl-green-deep);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.room-card__desc {
  font-size: 0.875rem;
  color: var(--vl-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.room-card__amenity {
  font-size: 0.7rem;
  color: var(--vl-text-muted);
  background: var(--vl-green-xpale);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.room-card__guests {
  font-size: 0.8rem;
  color: var(--vl-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.room-card__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vl-green-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.room-card__link:hover {
  color: var(--vl-gold);
  gap: 0.7rem;
}

/* ============================================================
   HOME RESTAURANT
   ============================================================ */
.restaurant-section {
  padding: var(--space-xxl) 0;
  background: var(--vl-green-deep);
  position: relative;
  overflow: hidden;
}

.restaurant-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.restaurant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.restaurant-content {}

.restaurant-content .eyebrow { color: var(--vl-gold-light); }
.restaurant-content h2 { color: var(--vl-white); }
.restaurant-content p { color: rgba(255,255,255,0.75); }

.restaurant-experiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.experience-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem;
  transition: var(--transition-fast);
}

.experience-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--vl-gold);
}

.experience-item__icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  display: block;
}

.experience-item__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vl-white);
  margin-bottom: 0.3rem;
}

.experience-item__desc {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}

.restaurant-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  aspect-ratio: 1;
}

.restaurant-gallery__item {
  overflow: hidden;
  position: relative;
}

.restaurant-gallery__item:first-child {
  grid-row: span 2;
}

.restaurant-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.restaurant-gallery__item:hover img {
  transform: scale(1.06);
}

/* ============================================================
   SERVIZI / AMENITÀ
   ============================================================ */
.services-section {
  padding: var(--space-xl) 0;
  background: var(--vl-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.06);
}

.service-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-fast);
}

.service-item:hover {
  background: var(--vl-green-xpale);
}

.service-item:nth-child(4n) { border-right: none; }

.service-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--vl-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--vl-green-dark);
  stroke-width: 1.5;
  fill: none;
}

.service-item__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vl-green-deep);
  margin-bottom: 0.3rem;
}

.service-item p {
  font-size: 0.775rem;
  color: var(--vl-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   RECENSIONI
   ============================================================ */
.reviews-section {
  background: var(--vl-green-xpale);
  padding: var(--space-xxl) 0;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: 2rem;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--vl-green-deep);
  color: var(--vl-white);
  padding: 1.5rem 2rem;
  flex-shrink: 0;
}

.review-score__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--vl-gold-light);
  line-height: 1;
}

.review-score__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--vl-white);
  padding: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--vl-green-pale);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.review-card__text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--vl-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vl-green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vl-white);
  flex-shrink: 0;
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vl-green-deep);
}

.review-card__origin {
  font-size: 0.775rem;
  color: var(--vl-text-muted);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 0.25rem;
}

.review-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--vl-gold);
}

/* ============================================================
   GALLERIA
   ============================================================ */
.gallery-section {
  padding: var(--space-xl) 0 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 3px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:nth-child(3) { grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,20,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(30,58,20,0.4);
}

/* ============================================================
   LOCATION / MAPPA
   ============================================================ */
.location-section {
  padding: var(--space-xl) 0;
  background: var(--vl-stone-pale);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  min-height: 400px;
}

.location-content {
  background: var(--vl-green-deep);
  color: var(--vl-white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-content h2 { color: var(--vl-white); margin-bottom: 1rem; }
.location-content p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

.location-distances {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-distance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
}

.location-distance__place { color: rgba(255,255,255,0.8); }
.location-distance__km { color: var(--vl-gold-light); font-weight: 500; }

.location-map {
  background: var(--vl-stone-pale);
  position: relative;
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}

/* ============================================================
   FORM CONTATTO
   ============================================================ */
.contact-section {
  padding: var(--space-xxl) 0;
  background: var(--vl-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {}

.contact-info h2 { margin-bottom: 1rem; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-method__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vl-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--vl-green-dark);
  fill: none;
  stroke-width: 1.5;
}

.contact-method__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vl-text-muted);
  margin-bottom: 0.2rem;
}

.contact-method__value {
  font-size: 1rem;
  color: var(--vl-text);
  font-weight: 400;
}

/* Form */
.contact-form {
  background: var(--vl-white);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vl-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--vl-text);
  background: transparent;
  transition: var(--transition-fast);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--vl-green-mid);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--vl-green-deep);
  color: var(--vl-white);
}

.footer-main {
  padding: var(--space-xl) 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--vl-white);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vl-gold-light);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--vl-gold);
  color: var(--vl-gold);
  background: rgba(212,175,55,0.1);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--vl-gold-light);
}

.footer-newsletter h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer-newsletter form {
  display: flex;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--vl-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }

.footer-newsletter button {
  background: var(--vl-gold);
  color: var(--vl-white);
  border: none;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.footer-newsletter button:hover { background: var(--vl-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition-fast);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--vl-white);
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  animation: floatIn 0.5s ease 2s both;
}

.whatsapp-float:hover {
  background: #1dab53;
  color: var(--vl-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

/* Pulse dot */
.whatsapp-float::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: var(--space-md); }
  .about-images__accent { right: -1rem; }
  .restaurant-experiences { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-xxl: 5rem;
  }

  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .header-inner { padding: 1rem 1.25rem; }

  .hero__content { padding: 0 1.25rem var(--space-lg); }

  .booking-bar__inner { flex-direction: column; }
  .booking-bar__field { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); width: 100%; }
  .booking-bar__submit { width: 100%; justify-content: center; min-height: 56px; }

  .about-grid,
  .restaurant-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-images { margin-bottom: 2rem; }
  .about-images__accent { display: none; }
  .about-badge { left: 1rem; }
  .about-content { padding-left: 0; }

  .rooms-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }

  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }

  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.875rem; border-radius: 50%; }

  .restaurant-gallery { aspect-ratio: auto; grid-template-columns: 1fr 1fr; }
  .restaurant-gallery__item:first-child { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
  .booking-bar { display: none; }
}

/* ============================================================
   UTILITIES & ANIMATIONS
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--vl-gold);
  margin: 1.5rem 0;
}

.divider-gold--center { margin: 1.5rem auto; }

/* Colori di testo utility */
.text-gold { color: var(--vl-gold); }
.text-green { color: var(--vl-green-dark); }
.text-muted { color: var(--vl-text-muted); }
.text-white { color: var(--vl-white); }

/* ============================================================
   PAGINE INTERNE — HEADER PAGINA
   ============================================================ */
.page-hero {
  height: 50vh;
  min-height: 360px;
  background: var(--vl-green-deep);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem 3rem;
}

.page-hero__content .eyebrow { color: var(--vl-gold-light); }

.page-hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--vl-white);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--vl-text-muted);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.breadcrumb a {
  color: var(--vl-text-muted);
}

.breadcrumb a:hover { color: var(--vl-green-dark); }
.breadcrumb span { margin: 0 0.4rem; }

/* ============================================================
   SINGOLA CAMERA
   ============================================================ */
.room-single {
  padding: var(--space-xl) 0;
}

.room-single__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  margin-bottom: var(--space-lg);
  height: 500px;
}

.room-single__gallery-main {
  overflow: hidden;
}

.room-single__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-single__gallery-side {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.room-single__gallery-side img {
  flex: 1;
  object-fit: cover;
  width: 100%;
}

.room-single__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.room-single__booking-widget {
  background: var(--vl-white);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.room-single__booking-widget h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #site-header, .whatsapp-float, .booking-bar { display: none; }
  .section { padding: 2rem 0; }
}

/* ============================================================
   v1.1 — GALLERIA CAMERA (singola camera)
   ============================================================ */
.room-gallery__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  height: 480px;
  margin-bottom: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.room-gallery__main {
  position: relative;
  overflow: hidden;
  display: block;
}

.room-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.room-gallery__main:hover img { transform: scale(1.03); }

.room-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,20,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
  opacity: 0;
}
.room-gallery__main:hover .room-gallery__overlay { background:rgba(30,58,20,0.35); opacity:1; }

.room-gallery__side {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 4px;
}

.room-gallery__side-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.room-gallery__side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.room-gallery__side-item:hover img { transform: scale(1.06); }

.room-gallery__more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,32,8,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ── Specifiche camera ──────────────────────────────────────── */
.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0;
}

.room-spec {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(0,0,0,0.06);
  background: var(--vl-cream);
  text-align: center;
  gap: 0.3rem;
}

.room-spec:last-child { border-right: none; }

.room-spec__icon {
  font-size: 1.4rem;
  line-height: 1;
}

.room-spec__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--vl-green-deep);
  line-height: 1.3;
}

/* ── Punti di forza ─────────────────────────────────────────── */
.room-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  color: var(--vl-text);
}

.room-highlight-item svg { stroke: var(--vl-green-mid); flex-shrink: 0; }

/* ── Servizi tassonomia ─────────────────────────────────────── */
.room-services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  list-style: none;
}

.room-services__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--vl-text);
  padding: 0.3rem 0;
}

.room-services__check svg { stroke: var(--vl-green-mid); flex-shrink: 0; }

/* ── Info orari ─────────────────────────────────────────────── */
.room-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.room-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.25rem;
  background: var(--vl-cream);
}

.room-info-item__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vl-text-muted);
}

.room-info-item__value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vl-green-deep);
}

/* ── Widget prenotazione ────────────────────────────────────── */
.room-single__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.room-single__booking-widget {
  background: var(--vl-white);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
  border-top: 4px solid var(--vl-gold);
}

.room-single__booking-widget h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: var(--vl-green-deep);
}

.room-widget__price {
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--vl-gold);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.room-widget__price strong { font-weight: 400; }
.room-widget__price span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--vl-text-muted);
  font-weight: 300;
}

.room-widget__price-note {
  font-size: 0.8rem;
  color: var(--vl-text-muted);
  margin-bottom: 1.25rem;
}

.room-widget__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--vl-text-muted);
}

.room-widget__checklist li::before { content: ''; }

.room-widget__type {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.8rem;
  color: var(--vl-text-muted);
  flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .room-single__layout { grid-template-columns: 1fr; }
  .room-single__booking-widget { position: static; }
  .room-gallery__layout { height: 360px; }
  .room-gallery__side { grid-template-rows: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .room-gallery__layout { grid-template-columns: 1fr; height: 280px; }
  .room-gallery__side { display: none; }
  .room-specs { flex-direction: column; }
  .room-spec { flex-direction: row; justify-content: flex-start; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .room-services__list { grid-template-columns: 1fr; }
  .room-info-grid { grid-template-columns: 1fr; }
  .room-cta-mobile { flex-direction: column; }
}

/* ============================================================
   v1.1 — ROOM CARD EXTRAS
   ============================================================ */
.room-card__photo-count {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(4px);
}

.room-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.room-card__highlight-item {
  font-size: 0.72rem;
  color: var(--vl-green-dark);
  background: var(--vl-green-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 400;
}

.room-card__service-icons {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.room-card__service-icon {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--vl-stone-pale);
  border-radius: 50%;
  cursor: default;
  transition: transform 0.15s;
}

.room-card__service-icon:hover {
  transform: scale(1.2);
}

.room-card__service-more {
  font-size: 0.7rem;
  color: var(--vl-text-muted);
  font-weight: 500;
}

.room-card__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--vl-text-muted);
  flex-wrap: wrap;
}

.room-card__price strong {
  color: var(--vl-green-dark);
  font-weight: 600;
}

/* ============================================================
   v1.2 — HOMEPAGE GUTENBERG: override blocchi nativi
   ============================================================ */

/* Rimuovi padding default WordPress dai gruppi homepage */
.vl-homepage-content .wp-block-group {
    box-sizing: border-box;
}

/* Cover block come hero */
.vl-homepage-content .wp-block-cover.vl-hero-cover {
    min-height: 100vh;
    padding-bottom: clamp(4rem, 8vw, 6rem);
    padding-left: clamp(1.5rem, 5vw, 2.5rem);
    padding-right: 2.5rem;
    align-items: flex-end;
}

.vl-homepage-content .wp-block-cover.vl-hero-cover .wp-block-cover__inner-container {
    max-width: 900px;
    width: 100%;
}

/* Hero eyebrow */
.vl-homepage-content .vl-hero-eyebrow {
    font-family: var(--font-body) !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: var(--vl-gold-light) !important;
    display: block;
    margin-bottom: 1.25rem !important;
}

/* Hero title */
.vl-homepage-content .vl-hero-title {
    font-family: var(--font-display) !important;
    font-size: clamp(3rem, 8vw, 7rem) !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
}

/* Hero subtitle */
.vl-homepage-content .vl-hero-subtitle {
    font-size: 1.1rem !important;
    font-weight: 300 !important;
    color: rgba(255,255,255,0.82) !important;
    max-width: 520px;
    line-height: 1.7 !important;
    margin-bottom: 2.5rem !important;
}

/* Hero buttons */
.vl-homepage-content .vl-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* About: features in editor */
.vl-homepage-content .about-feature {
    padding: 0.75rem 1rem;
    background: var(--vl-green-pale);
    border-radius: 6px;
    font-size: 0.9rem;
    border-left: 3px solid var(--vl-green-dark);
    margin-bottom: 0.5rem;
}

/* Restaurant experiences */
.vl-homepage-content .restaurant-experiences {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 2rem 0;
}

.vl-homepage-content .experience-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem;
    transition: var(--transition-fast);
}

.vl-homepage-content .experience-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--vl-gold);
}

.vl-homepage-content .experience-item .experience-item__icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.vl-homepage-content .experience-item .experience-item__name {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.vl-homepage-content .experience-item .experience-item__desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Gallery homepage blocco Gutenberg */
.vl-homepage-content .gallery-homepage {
    column-gap: 4px !important;
    row-gap: 4px !important;
}

.vl-homepage-content .gallery-homepage .wp-block-image {
    margin: 0;
}

.vl-homepage-content .gallery-homepage img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vl-homepage-content .gallery-homepage .wp-block-image:hover img {
    transform: scale(1.06);
}

/* Larghezze layout colonne pattern */
.vl-homepage-content .about-grid .wp-block-column {
    min-width: 0;
}

/* Location */
.vl-homepage-content .location-grid {
    min-height: 420px;
}

.vl-homepage-content .location-grid .wp-block-column {
    min-height: 420px;
}

/* Gutenberg: rimuovi margini extra tra sezioni */
.vl-homepage-content > .wp-block-group {
    margin-top: 0;
    margin-bottom: 0;
}

/* Bottoni Gutenberg nel tema */
.vl-homepage-content .wp-block-buttons {
    gap: 1rem;
}

.vl-homepage-content .btn--gold .wp-block-button__link,
.vl-homepage-content .wp-block-button.btn--gold .wp-block-button__link {
    background-color: var(--vl-gold) !important;
    color: #fff !important;
    border-radius: 0 !important;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vl-homepage-content .btn--outline .wp-block-button__link,
.vl-homepage-content .wp-block-button.btn--outline .wp-block-button__link {
    background: transparent !important;
    color: var(--vl-green-dark) !important;
    border: 1.5px solid var(--vl-green-dark) !important;
    border-radius: 0 !important;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vl-homepage-content .btn--outline-white .wp-block-button__link,
.vl-homepage-content .wp-block-button.btn--outline-white .wp-block-button__link {
    background: transparent !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.6) !important;
    border-radius: 0 !important;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Responsive Gutenberg homepage */
@media (max-width: 768px) {
    .vl-homepage-content .vl-hero-cover {
        min-height: 80vh;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .vl-homepage-content .restaurant-experiences {
        grid-template-columns: 1fr;
    }

    .vl-homepage-content .gallery-homepage img {
        height: 160px;
    }
}
