/* Tiburtina 86 Luxury Suites — Main Stylesheet (Bozza Design System) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
  --dark: #121212;
  --light: #fdfbf7;
  --accent: #e5dace;
  --gold: #b38e44;
  --gold-light: #c8a462;
  --gold-dark: #9a7936;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--light); line-height: 1.7; }

/* Typography */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
p { max-width: 70ch; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* Layout */
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; background: var(--white); }
.section--light { background: var(--white); }
.section--cream { background: linear-gradient(135deg, #f9f6f0, #f0ece4); }
.section--cream2 { background: linear-gradient(135deg, #f9f6f0, #f0ece4); }
.section--dark { background: linear-gradient(135deg, #121212 0%, #2a2a2a 100%); color: white; }
.section--gold { background: var(--gold); }

/* Eyebrow */
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* Gold rule */
.gold-rule { width: 50px; height: 1px; background: var(--gold); display: block; margin: 20px 0; }

/* Section header (centered) */
.section-header { text-align: center; margin-bottom: 16px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin: 0; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  border: none;
  border-radius: 50px;
}
.btn-gold { background: var(--gold); color: var(--dark); border-radius: 50px; }
.btn-gold:hover { filter: brightness(1.1); }
.btn-outline-w { background: transparent; color: white; border: 2px solid white; border-radius: 50px; }
.btn-outline-w:hover { background: white; color: var(--dark); }
.btn-outline-d { background: transparent; color: var(--dark); border: 2px solid var(--dark); border-radius: 50px; }
.btn-outline-d:hover { background: var(--dark); color: white; }

/* ====== HEADER / NAV ====== */
#main-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background .4s, box-shadow .4s; }
#main-nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); padding: 0 40px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; letter-spacing: .06em; color: var(--white); }
.logo strong { color: var(--gold); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
#lang-toggle-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 12px;
  cursor: pointer;
  transition: all .2s;
  border-radius: 50px;
}
#lang-toggle-btn:hover { border-color: var(--gold); color: var(--gold); }
.btn-prenota {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: background .2s;
  display: inline-block;
  border-radius: 50px;
}
.btn-prenota:hover { background: var(--gold-dark); }
#menu-toggle { display: none; background: transparent; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; line-height: 1; }

/* Scrolled nav */
#main-header.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
#main-header.scrolled .logo { color: var(--dark); }
#main-header.scrolled .nav-links a { color: var(--dark); }
#main-header.scrolled .nav-links a:hover { color: var(--gold); }
#main-header.scrolled #lang-toggle-btn { border-color: rgba(0,0,0,.3); color: var(--dark); }
#main-header.scrolled #lang-toggle-btn:hover { border-color: var(--gold); color: var(--gold); }
#main-header.scrolled #menu-toggle { color: var(--dark); }
#main-header.scrolled .btn-prenota { background: var(--gold); color: var(--dark); }

/* Mobile nav */
#mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: white;
  padding: 24px 32px 28px;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
#mobile-nav.open { display: flex; }
#mobile-nav a { color: var(--text); font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
#mobile-nav .btn-prenota { align-self: flex-start; margin-top: 8px; }

/* ====== HERO (Homepage) ====== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.70) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  width: 100%;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 { color: white; margin-bottom: 20px; }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-scroll span { display: block; width: 1px; height: 40px; background: rgba(255,255,255,.3); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .2; } 50% { opacity: .8; } }

/* ====== PAGE HERO (sub-pages) ====== */
.page-hero {
  position: relative;
  height: 42vh;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(to bottom, rgba(0,0,0,.70) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.75) 100%);
}
.page-hero-content { position: relative; z-index: 1; color: white; padding: 0 32px; }
.page-hero-content .eyebrow { color: var(--gold-light); }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

/* ====== BOOKING BAR ====== */
.booking-bar {
  background: white;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  z-index: 20;
  margin-top: -36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.booking-bar-field {
  flex: 1;
  min-width: 160px;
  padding: 20px 24px;
  border-right: 1px solid #f0f0f0;
}
.booking-bar-field:last-of-type { border-right: none; }
.booking-bar-field label {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.booking-bar-field input,
.booking-bar-field select {
  width: 100%;
  font-size: .88rem;
  font-weight: 700;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
}
.booking-bar-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition: background .2s;
  min-width: 140px;
}
.booking-bar-btn:hover { background: var(--gold-dark); }

/* ====== ABOUT / STATS ====== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-grid-main { grid-column: 1 / -1; border-radius: 16px; overflow: hidden; height: 260px; }
.photo-grid-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid-sub { border-radius: 12px; overflow: hidden; height: 170px; }
.photo-grid-sub img { width: 100%; height: 100%; object-fit: cover; }

.stats-row { display: flex; gap: 48px; margin: 32px 0; }
.stat-item .stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Legacy stats bar */
.stats-bar { background: var(--white); border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 400; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; display: block; }

/* ====== ROOM CARDS (bozza camera-card) ====== */
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }

.camera-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transition: transform .3s;
  display: flex;
  flex-direction: column;
}
.camera-card:hover { transform: translateY(-8px); }
.camera-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e5dace;
  display: flex;
  align-items: center;
  justify-content: center;
}
.camera-card-img img { width: 100%; height: 100%; object-fit: cover; }
.camera-card-price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.95);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.camera-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.camera-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.camera-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.camera-card-body p { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; flex: 1; }
.camera-card-icons {
  display: flex;
  gap: 12px;
  color: var(--gold);
  font-size: .95rem;
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

/* Legacy room-card (kept for backward compat on sub-pages) */
.room-card { background: var(--white); overflow: hidden; transition: transform .3s, box-shadow .3s; border-radius: 20px; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,.12); }
.room-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--accent); display: flex; align-items: center; justify-content: center; border-radius: 20px 20px 0 0; }
.room-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-placeholder-text { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); text-align: center; padding: 20px; }
.room-card-body { padding: 28px; }
.room-card-meta { display: flex; gap: 14px; font-size: .73rem; color: var(--text-muted); letter-spacing: .04em; margin-bottom: 10px; }
.room-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.room-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }
.room-card-link { font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.room-card-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ====== SERVICE CARDS (bozza servizio-card) ====== */
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.servizio-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  text-align: center;
  transition: transform .3s;
}
.servizio-card:hover { transform: translateY(-6px); }
.servizio-card i {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.servizio-card p {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  margin: 0;
}

/* Legacy amenities (kept for servizi page) */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 56px; }
.amenity-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; background: var(--white); padding: 32px 24px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: transform .3s; }
.amenity-item:hover { transform: translateY(-6px); }
.amenity-icon { width: 56px; height: 56px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .9rem; font-weight: 700; letter-spacing: .05em; flex-shrink: 0; border-radius: 12px; }
.amenity-item h4 { font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 600; }
.amenity-item p { font-size: .85rem; color: var(--text-muted); }

/* ====== GOLD CTA BANNER ====== */
.cta-banner { background: var(--gold); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: white; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; font-family: 'Playfair Display', serif; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.btn-white {
  background: white;
  color: var(--gold);
  border-radius: 50px;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: inline-block;
  transition: background .2s;
}
.btn-white:hover { background: #f5f5f5; }

/* ====== REVIEW CARDS (bozza) ====== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 56px; }

.review-card {
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 40px;
}
.review-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: .75rem;
  margin-bottom: 20px;
}
.review-text {
  font-style: italic;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: .92rem;
}
.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: #6b7280;
  flex-shrink: 0;
}
.review-author { font-weight: 700; font-size: .9rem; }
.review-meta { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* Legacy review meta (recensioni page) */
.review-score { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 400; margin-bottom: 12px; line-height: 1; }
.review-date { margin-top: 4px; font-size: .78rem; color: var(--text-muted); }
.review-room { margin-top: 2px; font-style: italic; font-size: .78rem; color: var(--text-muted); }

/* ====== CONTACT SECTION (dark) ====== */
.contact-info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: .9rem;
}
.contact-form-box {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid transparent;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  transition: border-color .2s;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.contact-form-box input:focus,
.contact-form-box textarea:focus { border-color: #e5e7eb; }
.contact-form-box textarea { height: 110px; resize: none; }

/* ====== SCORES ====== */
.scores-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.score-item { text-align: center; padding: 36px 20px; background: var(--white); border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.score-num { font-family: 'Playfair Display', serif; font-size: 3.6rem; font-weight: 400; color: var(--dark); line-height: 1; display: block; }
.score-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; display: block; }

/* ====== FAQ ====== */
.faq-item { border-bottom: 1px solid #f0f0f0; padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid #f0f0f0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; user-select: none; }
.faq-icon { width: 28px; height: 28px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1.1rem; transition: transform .3s; border-radius: 50%; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-top: 14px; font-size: .92rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ====== FORMS ====== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { padding: 13px 15px; border: 1px solid #e5e7eb; background: #f9fafb; font-family: 'Montserrat', sans-serif; font-size: .93rem; color: var(--text); outline: none; transition: border-color .2s; border-radius: 12px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ====== GALLERY ====== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(18,18,18,0); transition: background .3s; }
.gallery-item:hover::after { background: rgba(18,18,18,.18); }

/* ====== LIGHTBOX ====== */
#lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.96); z-index: 9999; align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; width: auto; height: auto; }
#lightbox-close, #lb-prev, #lb-next { position: absolute; background: none; border: none; color: var(--white); cursor: pointer; opacity: .65; transition: opacity .2s; }
#lightbox-close { top: 24px; right: 32px; font-size: 2rem; line-height: 1; }
#lb-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; padding: 12px; }
#lb-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; padding: 12px; }
#lightbox-close:hover, #lb-prev:hover, #lb-next:hover { opacity: 1; }
#lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); font-size: .78rem; letter-spacing: .1em; }

/* ====== LOCATION ====== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.dist-list { list-style: none; margin-top: 20px; }
.dist-list li { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid #f0f0f0; font-size: .88rem; }
.dist-list li:last-child { border-bottom: none; }
.dist-km { color: var(--text-muted); font-size: .82rem; }
.dist-category { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-top: 28px; margin-bottom: 4px; display: block; }

/* ====== ROOM DETAIL ====== */
.room-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.room-features-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0 32px; }
.room-features-list li { font-size: .88rem; display: flex; align-items: flex-start; gap: 10px; }
.room-features-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; margin-top: 7px; border-radius: 50%; }
.booking-card { background: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,.08); border-radius: 20px; padding: 36px; position: sticky; top: 100px; }
.booking-card h3 { margin-bottom: 6px; }
.booking-card .from-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 28px; display: block; }
.room-badge-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 28px; }
.room-badge { display: inline-block; padding: 5px 12px; border: 1px solid #e5e7eb; font-size: .73rem; font-weight: 600; letter-spacing: .06em; color: var(--text-muted); border-radius: 50px; }

/* ====== RULES ====== */
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.rule-item { display: flex; gap: 16px; padding: 20px; background: #f9f6f0; border-radius: 12px; }
.rule-icon { width: 40px; height: 40px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .8rem; font-weight: 700; flex-shrink: 0; border-radius: 8px; }
.rule-item h4 { font-family: 'Montserrat', sans-serif; font-size: .85rem; font-weight: 700; margin-bottom: 4px; }
.rule-item p { font-size: .83rem; color: var(--text-muted); margin: 0; }

/* ====== AWARD ====== */
.award-row { display: flex; align-items: center; gap: 28px; padding: 32px; background: rgba(255,255,255,.05); border-radius: 12px; }
.award-row img { width: 72px; flex-shrink: 0; }
.award-row div h4 { font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 4px; color: white; }
.award-row div p { font-size: .83rem; color: rgba(255,255,255,.6); margin: 0; }

/* ====== WHATSAPP FLOAT ====== */
#wa-float { position: fixed; bottom: 32px; right: 32px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 990; box-shadow: 0 4px 18px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
#wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,.5); }
#wa-float svg { width: 28px; height: 28px; fill: white; }

/* ====== FOOTER ====== */
#main-footer { background: #121212; color: rgba(255,255,255,.65); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { color: white; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col address { font-style: normal; font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-license { margin-top: 6px; font-size: .72rem; color: rgba(255,255,255,.25); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .scores-grid { grid-template-columns: repeat(2,1fr); }
  .rules-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #main-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-actions .btn-prenota { display: none; }
  #menu-toggle { display: block; }
  .hero-content, .page-hero-content { padding: 0 20px; }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .rooms-grid { grid-template-columns: 1fr; }
  .scores-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 28px; flex-wrap: wrap; }
  .room-features-list { grid-template-columns: 1fr; }
  .booking-bar { flex-direction: column; margin-top: -20px; border-radius: 12px; }
  .booking-bar-field { border-right: none; border-bottom: 1px solid #f0f0f0; }
  .booking-bar-btn { padding: 18px; min-width: unset; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .scores-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .servizi-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 2.4rem; }
}
