/* ============================================================
   Casa Chiaia Suor Orsola – Foglio di stile principale
   ============================================================ */

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

/* ── Variabili ─────────────────────────────────────────────── */
:root {
  --navy:        #1a1f3e;
  --navy-light:  #252b55;
  --gold:        #c4913e;
  --gold-pale:   #e8d09a;
  --gold-bg:     #faf5ea;
  --cream:       #f6f1e9;
  --cream-dark:  #ede7db;
  --terracotta:  #b85c3a;
  --text:        #1e1c1a;
  --text-muted:  #7a7268;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(26,31,62,.08);
  --shadow-md:   0 8px 32px rgba(26,31,62,.12);
  --shadow-lg:   0 20px 56px rgba(26,31,62,.18);
  --radius:      4px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --max-w:       1200px;
  --nav-h:       72px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
input, select, textarea { font-family: inherit; }

/* ── Tipografia ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); }
h4 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 500; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.1rem; line-height: 1.85; color: var(--text-muted); }

/* ── Utilità ──────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

.section-label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1.5rem; }

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem auto;
  max-width: 280px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: .4;
}
.ornament-diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Bottoni ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #b07d30; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,145,62,.35); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.65); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: .9rem; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled .brand-main { color: var(--navy); }
.site-header.scrolled .brand-sub  { color: var(--text-muted); }
.site-header.scrolled .nav-menu a { color: var(--navy); }
.site-header.scrolled .nav-cta    { border-color: var(--gold); color: var(--gold); }
.site-header.scrolled .nav-cta:hover { background: var(--gold); color: var(--white); }
.site-header.scrolled .nav-burger span { background: var(--navy); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-brand {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.brand-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}
.brand-sub {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.nav-menu a {
  padding: .5rem .8rem;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.88);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover { color: var(--gold-pale); }
.nav-cta {
  padding: .55rem 1.4rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  color: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero principale ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #10142b 0%, #1e2550 40%, #12172e 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .45;
  transition: transform 8s ease;
}
.hero:hover .hero-bg img { transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16,20,43,.8) 0%, rgba(16,20,43,.3) 60%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: var(--nav-h);
  color: var(--white);
  width: 100%;
}
.hero-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  color: var(--white);
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-pale);
}
.hero-desc {
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.75rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
}
.badge-score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold-pale);
  line-height: 1;
}
.badge-info { line-height: 1.35; }
.badge-info strong { display: block; font-size: .9rem; color: var(--white); font-weight: 500; }
.badge-info span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ── Page hero (pagine interne) ───────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,145,62,.18) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.65); max-width: 52ch; margin: 0 auto; }

.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .75rem; color: rgba(255,255,255,.4);
  justify-content: center;
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-pale); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }

/* ── Sezione intro ────────────────────────────────────────── */
.intro-section { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  position: relative;
}
.intro-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.intro-img-wrap:hover img { transform: scale(1.04); }
.photo-ph-tall {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  color: var(--text-muted);
  font-size: .85rem;
}
.ph-cam-icon {
  width: 40px; height: 40px; opacity: .35;
  color: var(--text-muted);
}

/* ── Features ─────────────────────────────────────────────── */
.features-section { background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.feat-icon {
  width: 52px; height: 52px;
  background: var(--gold-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.feat-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.feature-card p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ── Camere preview ───────────────────────────────────────── */
.rooms-section { background: var(--white); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.room-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.room-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.photo-ph-card {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  color: var(--text-muted); font-size: .82rem;
}
.photo-ph-card svg { width: 28px; height: 28px; opacity: .4; }
.room-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.room-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem; font-weight: 500;
  color: var(--navy); margin-bottom: .2rem;
}
.room-card-type {
  font-size: .75rem; color: var(--gold);
  font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.room-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
.badge {
  font-size: .75rem; padding: .3rem .75rem;
  background: var(--cream-dark); border-radius: 50px;
  color: var(--text-muted);
}
.room-card-cta { margin-top: auto; }

/* ── Galleria ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gal-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: var(--cream-dark);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-item .photo-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  color: var(--text-muted); font-size: .82rem;
}
.gal-item .photo-ph svg { width: 28px; height: 28px; opacity: .4; }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(26,31,62,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay svg { width: 34px; height: 34px; color: var(--white); }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,10,24,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lb-inner {
  position: relative;
  max-width: 90vw;
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  max-width: 88vw; max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lb-ph {
  width: 640px; max-width: 88vw; aspect-ratio: 4/3;
  background: var(--cream-dark); border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-muted);
}
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { position: fixed; top: 1.5rem; right: 1.5rem; z-index: 1; }
.lb-prev { left: -4.5rem; }
.lb-next { right: -4.5rem; }
.lb-caption {
  position: absolute; bottom: -2.5rem;
  left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,.55); font-size: .85rem;
}
.lb-counter {
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: .8rem;
}

/* ── Recensioni ───────────────────────────────────────────── */
.reviews-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
}
.review-ql {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem; line-height: .7;
  color: var(--gold); opacity: .15;
  position: absolute; top: 1rem; right: 1.25rem;
  user-select: none;
}
.review-text {
  font-size: .9rem; line-height: 1.8;
  font-style: italic; color: var(--text);
  margin-bottom: 1.5rem; flex: 1;
}
.review-footer { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem; color: var(--gold); flex-shrink: 0;
}
.review-name { font-size: .88rem; font-weight: 500; color: var(--navy); }
.review-country { font-size: .78rem; color: var(--text-muted); }
.review-score {
  margin-left: auto;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem; font-weight: 500; color: var(--gold);
}

.rating-summary {
  display: flex; align-items: center; gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--navy);
  border-radius: var(--radius-xl);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.rating-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem; font-weight: 500;
  color: var(--gold-pale); line-height: 1;
}
.rating-label { color: var(--white); font-size: 1.1rem; font-weight: 500; }
.rating-sub { font-size: .85rem; color: rgba(255,255,255,.5); }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.rating-bar-row {
  display: flex; align-items: center; gap .75rem;
  font-size: .8rem; color: rgba(255,255,255,.65);
  gap: .75rem;
}
.rating-bar-label { width: 80px; flex-shrink: 0; }
.rating-bar-track {
  flex: 1; height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px; overflow: hidden;
}
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.rating-bar-val { width: 30px; text-align: right; color: var(--gold-pale); }

/* ── Posizione / Location ──────────────────────────────────── */
.location-section { background: var(--navy); }
.location-section h2 { color: var(--white); }
.location-section .lead { color: rgba(255,255,255,.65); }
.location-section .section-label { color: var(--gold-pale); }
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-light);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.distances-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.75rem 0 .5rem;
}
.distances-col h4:first-child { margin-top: 0; }
.dist-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .875rem;
}
.dist-item:last-child { border-bottom: none; }
.dist-name { color: rgba(255,255,255,.8); }
.dist-val { color: var(--gold-pale); font-size: .8rem; }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #9b6d2a 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.88); max-width: 50ch; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Servizi/Dotazioni ────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-top: 1.5rem;
}
.amenity-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .875rem; color: var(--text-muted);
  padding: .6rem .25rem;
}
.amenity-item svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* ── Camera dettaglio ─────────────────────────────────────── */
.room-hero-section {
  background: var(--navy);
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  position: relative; overflow: hidden;
}
.room-hero-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(196,145,62,.25);
}
.room-hero-section h1 { color: var(--white); }
.room-hero-section .room-sub {
  font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-pale);
  display: block; margin-bottom: .5rem;
}
.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
.room-info-box {
  position: sticky; top: calc(var(--nav-h) + 1.5rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}
.room-info-box h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.room-specs { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.75rem; }
.room-spec-row {
  display: flex; align-items: center; gap: .75rem;
  font-size: .875rem; padding: .5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.room-spec-row:last-child { border-bottom: none; }
.room-spec-row svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.spec-label { color: var(--text-muted); flex: 1; }
.spec-val { font-weight: 500; color: var(--navy); }
.price-note { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }

/* ── Modulo prenotazione ──────────────────────────────────── */
.form-wrap { max-width: 700px; margin: 0 auto; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .5rem;
}
.form-control {
  width: 100%;
  padding: .85rem 1rem;
  font-size: .95rem; color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,145,62,.14);
  background: var(--white);
}
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--navy); text-align: left;
  cursor: pointer; gap: 1rem;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
  transition: transform var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-answer-body {
  padding-bottom: 1.75rem;
  font-size: .93rem; line-height: 1.8;
  color: var(--text-muted);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Regole ───────────────────────────────────────────────── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
  text-align: center;
}
.rule-item {
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}
.rule-item .rule-icon { color: var(--gold); margin-bottom: .75rem; }
.rule-item .rule-icon svg { width: 28px; height: 28px; }
.rule-item h4 { font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 500; color: var(--navy); margin-bottom: .4rem; letter-spacing: .05em; text-transform: uppercase; }
.rule-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ── Contatti ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem; align-items: start;
  margin-top: 3rem;
}
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2.5rem; }
.contact-icon-wrap {
  width: 46px; height: 46px;
  background: var(--cream-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-icon-wrap svg { width: 20px; height: 20px; }
.contact-item-label {
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold);
  margin-bottom: .3rem; display: block;
}
.contact-item-val { font-size: .95rem; color: var(--text); line-height: 1.5; }
.contact-item-val a:hover { color: var(--gold); }

/* ── Colazione ────────────────────────────────────────────── */
.breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
}
.breakfast-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 2.5rem;
}
.breakfast-item {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--cream-dark);
  text-align: center; transition: var(--transition);
}
.breakfast-item:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-sm); }
.breakfast-item .bi-icon { color: var(--gold); margin-bottom: .75rem; }
.breakfast-item .bi-icon svg { width: 26px; height: 26px; }
.breakfast-item h4 { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500; margin-bottom: .3rem; }
.breakfast-item p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ── Dintorni ────────────────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.highlight-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.highlight-card .hi-icon { color: var(--gold); margin-bottom: 1rem; }
.highlight-card .hi-icon svg { width: 28px; height: 28px; }
.highlight-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.highlight-card p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ── Privacy ──────────────────────────────────────────────── */
.privacy-content { max-width: 820px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.65rem; margin: 2.5rem 0 1rem; color: var(--navy); }
.privacy-content h3 { font-size: 1.2rem; margin: 2rem 0 .75rem; color: var(--navy); }
.privacy-content p { font-size: .93rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.privacy-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-content li { font-size: .93rem; color: var(--text-muted); line-height: 1.8; margin-bottom: .4rem; }
.privacy-content strong { color: var(--text); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 5rem 0 0; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; color: var(--white); margin-bottom: .25rem;
}
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; }
.footer-contact-block { font-size: .85rem; line-height: 2; color: rgba(255,255,255,.55); }
.footer-contact-block a:hover { color: var(--gold-pale); }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-nav-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav-list a {
  font-size: .85rem; color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--gold-pale); }
.footer-bottom {
  max-width: var(--max-w); margin: 3rem auto 0;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-pale); }

/* ── Cookie banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: var(--navy);
  border-top: 1px solid rgba(196,145,62,.25);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(26,31,62,.22);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  flex: 1;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin: 0;
  min-width: 200px;
  line-height: 1.6;
}
.cookie-banner p a { color: var(--gold-pale); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-accept {
  padding: .6rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.cookie-accept:hover { background: #b07d30; }
.cookie-decline {
  padding: .6rem 1.25rem;
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.cookie-decline:hover { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.4); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-banner-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* ── WhatsApp floating ────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 998;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; color: var(--white); }
.wa-float::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,.3);
  animation: wa-ring 2.5s infinite;
}
@keyframes wa-ring {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.18); opacity: 0; }
}

/* ── Animazioni ───────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .room-detail-grid { grid-template-columns: 1fr 300px; }
}
@media (max-width: 900px) {
  .intro-grid, .breakfast-grid { grid-template-columns: 1fr; }
  .intro-img-wrap { aspect-ratio: 3/2; }
  .rooms-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .room-info-box { position: static; }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-menu, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: .2rem; box-shadow: var(--shadow-md);
    border-top: 1px solid var(--cream-dark);
  }
  .nav-menu.open a { color: var(--navy); padding: .75rem 1rem; border-radius: var(--radius); }
  .nav-menu.open a:hover { background: var(--cream-dark); }
  .nav-cta.show {
    display: block; margin: .25rem 0 .5rem;
    padding: .75rem 1rem; text-align: center;
    border-radius: var(--radius);
    background: var(--gold); color: var(--white);
    border: none;
  }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .breakfast-items { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .25rem; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .rating-summary { flex-direction: column; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
}
