/* ============================================
   CASA E BOTTEGA — Manfredonia, Puglia
   Estetica pugliese: calce, pietra, mare
   ============================================ */

/* Google Fonts caricato via <link> nell'HTML per evitare render-blocking */

/* --- CSS Variables --- */
:root {
  --calce: #F5F0E8;
  --calce-light: #FAF8F4;
  --ocra: #C8A96E;
  --ocra-light: #D4BA85;
  --ocra-dark: #A8893E;
  --blu: #1B4F72;
  --blu-light: #2471A3;
  --blu-dark: #154360;
  --verde: #5C6B3A;
  --verde-light: #7A8C52;
  --terracotta: #C07040;
  --terracotta-light: #D08858;
  --bianco: #FFFFFF;
  --testo: #2C2C2C;
  --testo-light: #5A5A5A;
  --testo-muted: #8A8A7A;
  --ombra: rgba(0,0,0,0.08);
  --ombra-forte: rgba(0,0,0,0.15);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --spacing: 2rem;
  --radius: 4px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--testo);
  background: var(--calce-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blu); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--blu-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ocra);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.98);
  box-shadow: 0 2px 20px var(--ombra);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--blu-dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--ocra); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--testo);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--ocra);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-left: 1rem;
}

.lang-switcher button,
.lang-switcher a.lang-btn {
  background: none;
  border: 1.5px solid transparent;
  border-radius: 50%;
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--testo-muted);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.lang-switcher button:hover,
.lang-switcher button.active,
.lang-switcher a.lang-btn:hover,
.lang-switcher a.lang-btn.active {
  border-color: var(--ocra);
  color: var(--blu-dark);
  background: rgba(200,169,110,0.1);
}

/* Rimuove la sottolineatura ereditata da .nav-links a::after */
.lang-switcher a.lang-btn::after {
  display: none;
}

/* Mobile lang-dropdown trigger — hidden on desktop.
   Uses .lang-switcher .lang-dropdown-trigger (specificity 0,2,0) to beat
   .lang-switcher button (0,1,1) which otherwise overrides display:none. */
.lang-switcher .lang-dropdown-trigger {
  display: none;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1.5px solid var(--ocra);
  border-radius: 20px;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blu-dark);
  cursor: pointer;
  transition: background var(--transition);
  width: auto;
  height: auto;
}
.lang-switcher .lang-dropdown-trigger svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.lang-switcher.open .lang-dropdown-trigger svg {
  transform: rotate(180deg);
}
.lang-switcher .lang-dropdown-trigger::after { display: none; }

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--testo);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.hero-bg.active {
  opacity: 1;
  animation: heroKenBurns 10s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.09) translate(-1%, 0.8%); }
}

.hero-bg:nth-child(even).active {
  animation: heroKenBurnsAlt 10s ease-out forwards;
}

@keyframes heroKenBurnsAlt {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(1%, -0.8%); }
}

.hero-carousel-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: auto;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-dot {
  width: 3px;
  height: 20px;
  border-radius: 2px;
  background: rgba(245, 240, 232, 0.25);
  border: none;
  cursor: pointer;
  transition: background var(--transition), height var(--transition);
}

.hero-dot.active {
  background: var(--ocra);
  height: 32px;
  transform: none;
}

.hero-dot:hover:not(.active) {
  background: rgba(245, 240, 232, 0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(8, 15, 25, 0.92) 0%,
      rgba(8, 15, 25, 0.58) 38%,
      rgba(8, 15, 25, 0.18) 70%,
      rgba(8, 15, 25, 0.06) 100%
    ),
    linear-gradient(
      110deg,
      rgba(200, 169, 110, 0.05) 0%,
      transparent 55%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bianco);
  max-width: 700px;
  padding: 0 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  color: var(--bianco);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  font-weight: 300;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 2.25rem;
  animation: heroFadeUp 0.7s 0.6s ease both;
}

.hero-tagline-sep {
  width: 28px;
  height: 1px;
  background: var(--ocra);
  opacity: 0.5;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  animation: heroFadeUp 0.7s 0.8s ease both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--ocra);
  color: var(--bianco);
}
.btn-primary:hover {
  background: var(--ocra-dark);
  color: var(--bianco);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200,169,110,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--bianco);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--bianco);
  border-color: var(--bianco);
}

.btn-dark {
  background: var(--blu-dark);
  color: var(--bianco);
}
.btn-dark:hover {
  background: var(--blu);
  color: var(--bianco);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--bianco);
}
.btn-whatsapp:hover {
  background: #1fb855;
  color: var(--bianco);
  transform: translateY(-1px);
}

/* --- Hero: nuovi componenti 2026 --- */

.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute; left: 0; top: 20%; bottom: 0; z-index: 3;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--ocra) 25%, var(--ocra) 80%, transparent 100%);
  opacity: 0.22;
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 2rem;
}

.hero-text {
  max-width: 640px;
}

/* Award pill */
.hero-award-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(8, 15, 25, 0.55);
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 99px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: heroFadeUp 0.7s 0.2s ease both;
}

.award-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ocra);
  flex-shrink: 0;
  animation: awardPulse 2.5s infinite;
}

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

.award-text {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.88);
  font-weight: 400;
}

/* Titolo grande, italic, Cormorant Garamond */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  color: var(--calce);
  margin-bottom: 1.75rem;
  animation: heroFadeUp 0.9s 0.35s cubic-bezier(0.2, 0, 0, 1) both;
  letter-spacing: -0.01em;
  text-shadow: none;
}

.hero-title-line2 {
  display: block;
  padding-left: 2.5rem;
}

.hero-title-e {
  color: var(--ocra);
  font-style: normal;
}

/* Tagline sep */
.hero-tagline-sep {
  width: 28px;
  height: 1px;
  background: var(--ocra);
  opacity: 0.5;
  flex-shrink: 0;
}

/* CTA primario */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ocra);
  color: var(--blu-dark);
  padding: 0.85rem 1.9rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
}

.btn-hero-primary:hover {
  background: var(--ocra-dark);
  color: var(--bianco);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 169, 110, 0.4);
}

.hero-savings-badge {
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  padding: 0.15rem 0.4rem;
  letter-spacing: 0.05em;
  color: inherit;
}

/* CTA ghost */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.65);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
  padding-bottom: 2px;
  transition: color var(--transition), gap var(--transition);
}

.btn-hero-ghost svg { transition: transform var(--transition); }
.btn-hero-ghost:hover { color: var(--calce); gap: 0.75rem; }
.btn-hero-ghost:hover svg { transform: translateX(4px); }

/* Rating card */
.hero-rating-card {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  text-align: center;
  min-width: 130px;
  animation: heroFadeUp 0.7s 1s ease both;
}

.hero-rating-card .rating-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--ocra);
  line-height: 1;
}

.hero-rating-card .rating-denom {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.35);
}

.hero-rating-card .rating-stars {
  color: var(--ocra);
  font-size: 0.6rem;
  letter-spacing: 2px;
  margin-top: 0.4rem;
}

.hero-rating-card .rating-source {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 0.4rem;
}

.hero-rating-card .rating-reviews {
  font-size: 0.55rem;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}

.hero-rating-card .rating-superhost {
  font-size: 0.68rem;
  color: rgba(200, 169, 110, 0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  animation: heroFadeIn 0.7s 1.3s ease both;
}

.scroll-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.25), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--ocra), transparent);
  animation: scrollFlow 2.2s 1.5s ease-in-out infinite;
}

@keyframes scrollFlow {
  from { top: -100%; }
  to   { top: 100%; }
}

/* Progress bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-progress-fill {
  height: 100%;
  background: var(--ocra);
  transform-origin: left;
  animation: heroProgress 6s linear infinite;
}

@keyframes heroProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Keyframes animazioni hero */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Trust Strip — redesigned --- */
.trust-strip {
  background: var(--calce);
  color: var(--testo);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2.5rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-strip img {
  height: 32px;
  width: auto;
  border-radius: 3px;
  opacity: 0.8;
}

.trust-item-new {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--testo-light);
  letter-spacing: 0.03em;
}

.trust-item-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ocra);
  flex-shrink: 0;
}

.trust-item-new strong {
  font-weight: 600;
  color: var(--testo);
}

/* elementi vecchi nascosti — HTML sostituito */
.trust-badge,
.trust-strip .trust-text {
  display: none;
}

/* --- Sections --- */
.section {
  padding: 5rem 0;
}

.section-light { background: var(--calce-light); }
.section-warm { background: var(--calce); }
.section-dark { background: var(--blu-dark); color: var(--bianco); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { margin-bottom: 0.8rem; }

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--testo-light);
  font-size: 1.05rem;
}

.section-dark .section-header h2 { color: var(--calce); }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* Decorative Line */
.deco-line {
  width: 60px;
  height: 2px;
  background: var(--ocra);
  margin: 1rem auto;
}

/* --- Chi Siamo --- */
/* --- Chi siamo: pull quote + grid --- */
.chi-siamo-pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--blu-dark);
  line-height: 1.3;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--ocra);
  max-width: 700px;
}

.chi-siamo-pull-quote em {
  color: var(--ocra-dark);
  font-style: normal;
}

.chi-siamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chi-siamo-text p {
  margin-bottom: 1rem;
  color: var(--testo-light);
  font-size: 1.05rem;
}

.chi-siamo-text .firma {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ocra-dark);
  margin-top: 1.5rem;
}

.chi-siamo-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px var(--ombra-forte);
}

.chi-siamo-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* === Skip-to-content (accessibility) === */
.skip-to-content {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--blu-dark);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
  white-space: nowrap;
}
.skip-to-content:focus {
  top: 0;
  outline: 2px solid var(--ocra);
  outline-offset: 2px;
}

/* --- Room Preview Cards --- */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--ombra);
  background: var(--bianco);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--ombra-forte);
}

.room-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

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

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

.room-card-body {
  padding: 1.8rem;
}

.room-card-body h3 {
  margin-bottom: 0.5rem;
}

.room-card-body p {
  color: var(--testo-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
}
.room-features li {
  font-size: 0.85rem;
  color: var(--testo-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* --- Room card: visual identity per camera --- */
.room-card--dimora {
  border-top: 4px solid var(--ocra);
}
.room-card--dimora .room-card-body h3 {
  color: var(--ocra-dark);
}

.room-card--bottega {
  border-top: 4px solid var(--blu);
}
.room-card--bottega .room-card-body h3 {
  color: var(--blu-dark);
}

.room-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 15, 25, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(245, 240, 232, 0.92);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  z-index: 2;
}
.room-card--dimora .room-card-badge {
  border: 1px solid rgba(200, 169, 110, 0.55);
}
.room-card--bottega .room-card-badge {
  border: 1px solid rgba(27, 79, 114, 0.55);
}

/* Feature list — colored bullet per card type */
.room-card--dimora .room-features li::before {
  content: '—';
  color: var(--ocra);
  font-weight: 700;
  margin-right: 0.35rem;
  flex-shrink: 0;
}
.room-card--bottega .room-features li::before {
  content: '—';
  color: var(--blu);
  font-weight: 700;
  margin-right: 0.35rem;
  flex-shrink: 0;
}

/* --- Reviews Section --- */
.reviews-section {
  background: var(--calce);
}

.reviews-header-award {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-header-award img {
  height: 100px;
  margin: 0 auto 1rem;
}

.reviews-scores {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 1.5rem 0 2.5rem;
  flex-wrap: wrap;
}

.score-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blu-dark);
}

.score-badge .score-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ocra-dark);
}

/* Review Carousel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1000px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .review-card { flex: 0 0 50%; }
}

.review-card-inner {
  background: var(--bianco);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--ombra);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #F5A623;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.review-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--testo-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}

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

.review-author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-author-origin {
  font-size: 0.8rem;
  color: var(--testo-muted);
}

.review-platform {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-platform.booking {
  background: #003580;
  color: white;
}

.review-platform.airbnb {
  background: #FF5A5F;
  color: white;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--ocra);
  border-radius: 50%;
  background: var(--bianco);
  color: var(--ocra-dark);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--ocra);
  color: var(--bianco);
}

/* --- Map Section --- */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--ombra);
  display: block;
}

/* Map fallback — visibile di default, nascosto quando l'iframe carica */
.map-fallback {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 0.9rem;
  padding: 0.75rem 1rem;
  background: var(--crema, #F5F0E8);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--testo, #2C3E50);
}
.map-fallback-icon { font-size: 1.1rem; }
.map-fallback-address { flex: 1 1 auto; }
.map-fallback-link {
  color: var(--oro, #C8A96E);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.map-fallback-link:hover { opacity: 0.75; }

/* Nasconde il fallback quando la mappa è caricata correttamente */
.map-loaded .map-fallback { display: none; }

/* --- Footer --- */
.site-footer {
  background: var(--blu-dark);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--calce);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}
.footer-col a:hover { color: var(--ocra); }
.footer-phone {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--ocra);
  border-color: var(--ocra);
  color: var(--bianco);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background: var(--calce);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--testo-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* --- Room Detail Section --- */
.room-detail {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.room-detail:last-of-type { border-bottom: none; }

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.room-gallery .gallery-main {
  grid-column: 1 / -1;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
}

.room-gallery .gallery-thumb {
  height: 160px;
  overflow: hidden;
  cursor: pointer;
}

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

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

/* Mobile gallery navigation — hidden on desktop */
.gallery-nav,
.gallery-dots {
  display: none;
}

.room-info h2 {
  margin-bottom: 0.3rem;
}

.room-info .room-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--ocra);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.room-info .room-description {
  color: var(--testo-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.room-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--testo-light);
  padding: 0.4rem 0;
}

.amenity-item .amenity-icon {
  color: var(--ocra);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.room-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--blu-dark);
  margin-bottom: 1rem;
}

.room-price span {
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--testo-muted);
}

.room-microcopy {
  font-size: 0.8rem;
  color: var(--ocra-dark);
  margin-top: 0.8rem;
  font-weight: 500;
}

/* Price Comparison Table (camere.html) */
.price-comparison-table {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.3);
  font-size: 0.88rem;
}
.pct-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  background: rgba(200,169,110,0.12);
}
.pct-head-cell {
  padding: 0.6rem 0.75rem;
  text-align: center;
  line-height: 1.3;
}
.pct-head-cell:first-child { text-align: left; }
.pct-season-icon { font-size: 1rem; display: block; }
.pct-season-name {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-dark);
  margin-top: 0.15rem;
}
.pct-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-top: 1px solid rgba(200,169,110,0.2);
}
.pct-ota-row { background: rgba(0,0,0,0.02); }
.pct-ota-row .pct-row-label { font-size: 0.78rem; }
.pct-direct-row { background: rgba(90,130,60,0.07); }
.pct-row-label {
  padding: 0.8rem 0.75rem;
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  line-height: 1.25;
}
.pct-ota-row .pct-row-label { color: var(--text-medium); }
.pct-direct-row .pct-row-label { color: var(--verde); font-weight: 600; }
.pct-price-cell {
  padding: 0.8rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.pct-amount { font-size: 1rem; }
.pct-amount small { font-size: 0.65em; }
.pct-ota-row .pct-amount {
  text-decoration: line-through;
  color: var(--terracotta);
  opacity: 0.7;
}
.pct-direct-row .pct-amount {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--verde);
}
.pct-saving {
  font-size: 0.68rem;
  color: var(--verde);
  background: rgba(90,130,60,0.15);
  padding: 0.1rem 0.45rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* --- Booking Page --- */
.booking-section { padding: 3rem 0; }

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.calendar-container {
  background: var(--bianco);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--ombra);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-header h3 {
  font-size: 1.2rem;
}

.calendar-nav {
  display: flex;
  gap: 0.5rem;
}

.calendar-nav button {
  width: 36px; height: 36px;
  border: 1px solid var(--ocra);
  border-radius: 50%;
  background: none;
  color: var(--ocra-dark);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.calendar-nav button:hover {
  background: var(--ocra);
  color: var(--bianco);
}

.calendar-grid-display {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.cal-day-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--testo-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
}

.cal-day {
  padding: 0.6rem 0.3rem;
  font-size: 0.9rem;
  border-radius: 3px;
  cursor: default;
}

.cal-day.available {
  background: rgba(92,107,58,0.18);
  color: var(--verde);
  cursor: pointer;
  font-weight: 500;
  border: 1px solid rgba(92,107,58,0.25);
}
.cal-day.available:hover {
  background: rgba(92,107,58,0.35);
  border-color: var(--verde);
}

.cal-day.booked {
  background: rgba(192,112,64,0.18);
  color: var(--terracotta);
  text-decoration: line-through;
  border: 1px solid rgba(192,112,64,0.25);
}

.cal-day.today {
  border: 2px solid var(--ocra) !important;
  font-weight: 700;
}

.cal-day.empty { visibility: hidden; }

.calendar-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--testo-muted);
}

.legend-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 2px;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.legend-dot.available { background: rgba(92,107,58,0.35); border: 1px solid var(--verde); }
.legend-dot.booked { background: rgba(192,112,64,0.35); border: 1px solid var(--terracotta); }

/* --- Calendar Price Indicator --- */
.cal-price-indicator {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(200,169,110,0.08);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--testo-light);
  text-align: center;
  border: 1px solid rgba(200,169,110,0.2);
}
.cal-price-indicator .cal-price-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--verde);
}
.cal-price-indicator .cal-price-ota {
  text-decoration: line-through;
  color: var(--terracotta);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- Room Selection Cards (Prenota) --- */
.room-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.room-select-card {
  background: var(--bianco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--ombra);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.room-select-card:hover,
.room-select-card.active {
  border-color: var(--ocra);
  box-shadow: 0 8px 30px var(--ombra-forte);
  transform: translateY(-2px);
}
.room-select-card.active { border-color: var(--verde); }
.room-select-img {
  height: 180px;
  overflow: hidden;
}
.room-select-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-select-card:hover .room-select-img img { transform: scale(1.05); }
.room-select-body {
  padding: 1.2rem;
}
.room-select-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.room-select-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--ocra);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.room-select-pricing .price-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
}
.room-select-pricing .price-season {
  color: var(--testo-muted);
  font-size: 0.8rem;
  min-width: 80px;
}
.room-select-pricing .price-ota-inline {
  text-decoration: line-through;
  color: var(--terracotta);
  font-size: 0.85rem;
  opacity: 0.7;
}
.room-select-pricing .price-direct-inline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--verde);
}
.room-select-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.room-select-amenities span {
  font-size: 0.75rem;
  color: var(--testo-muted);
  background: rgba(200,169,110,0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
}

/* --- Pricing Table --- */
.pricing-table-wrapper {
  background: var(--bianco);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px var(--ombra);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pricing-table th {
  background: var(--blu-dark);
  color: var(--calce);
  padding: 0.7rem 0.8rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-table th:first-child { text-align: left; border-radius: var(--radius) 0 0 0; }
.pricing-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.pricing-table td {
  padding: 0.8rem;
  text-align: center;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.pricing-table td:first-child { text-align: left; }
.pricing-table .price-ota {
  text-decoration: line-through;
  color: var(--terracotta);
  font-size: 0.85rem;
  opacity: 0.7;
  margin-right: 0.4rem;
}
.pricing-table .price-direct {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--verde);
}
.pricing-table .price-direct small {
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--testo-muted);
  font-weight: 400;
}
.pricing-table .price-discount {
  color: var(--verde);
  font-weight: 600;
}
.pricing-table-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--testo-muted);
  text-align: center;
}
.price-ota-label { text-decoration: line-through; color: var(--terracotta); }
.price-direct-label { color: var(--verde); font-weight: 600; }

/* --- Booking Estimate --- */
.booking-estimate {
  background: rgba(92,107,58,0.08);
  border: 1px solid rgba(92,107,58,0.2);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.booking-estimate .estimate-ota {
  text-decoration: line-through;
  color: var(--terracotta);
  font-size: 0.9rem;
  opacity: 0.7;
}
.booking-estimate .estimate-direct {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--verde);
}
.booking-estimate .estimate-savings {
  font-size: 0.82rem;
  color: var(--verde);
  font-weight: 500;
  margin-top: 0.3rem;
}
.booking-estimate .estimate-detail {
  font-size: 0.8rem;
  color: var(--testo-muted);
}

/* Room Tabs */
.room-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.room-tab {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--ocra);
  border-radius: 25px;
  background: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--ocra-dark);
}

.room-tab.active,
.room-tab:hover {
  background: var(--ocra);
  color: var(--bianco);
}

/* --- Forms --- */
.form-card {
  background: var(--bianco);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--ombra);
}

.form-card h3 {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--testo);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(200,169,110,0.3);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--testo);
  background: var(--calce-light);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocra);
}

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

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

.form-note {
  background: rgba(200,169,110,0.1);
  border-left: 3px solid var(--ocra);
  padding: 1rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--testo-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* --- Blog --- */
.blog-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.blog-cat-btn {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid rgba(200,169,110,0.4);
  border-radius: 25px;
  background: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--testo-light);
}

.blog-cat-btn.active,
.blog-cat-btn:hover {
  background: var(--ocra);
  color: var(--bianco);
  border-color: var(--ocra);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bianco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--ombra);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--ombra-forte);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--testo-muted);
  margin-bottom: 0.8rem;
}

.blog-card-cat {
  color: var(--ocra-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.blog-card-body p {
  color: var(--testo-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocra-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Blog Article */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.blog-article-hero {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px var(--ombra);
}

.blog-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.blog-article h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--blu-dark);
}

.blog-article p {
  margin-bottom: 1.2rem;
  color: var(--testo-light);
  font-size: 1.05rem;
  line-height: 1.85;
}

.blog-article .article-img {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--ombra);
}

.blog-article .article-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* --- Blog Article: CTA block responsive --- */
.blog-article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(200,169,110,0.1);
  border-radius: 4px;
  text-align: center;
}
.blog-article-cta p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--blu);
  margin-bottom: 1rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.85fr;
  gap: 3rem;
  align-items: stretch;
}

/* Subgrid: info colonnina | descrizione quartiere */
.contact-info-with-desc {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 1rem;
}

.contact-info-column .contact-info-item {
  margin-bottom: 1rem;
}
.contact-info-column .contact-info-item:last-of-type {
  margin-bottom: 1.25rem;
}

.contact-platforms-label-small {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-location-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin: 0;
  padding-top: 0.2rem;
  border-left: 2px solid rgba(200,169,110,0.4);
  padding-left: 1.25rem;
}

/* Compact form card variant */
.form-card-compact {
  padding: 1.5rem;
}
.form-card-compact h3 {
  margin-bottom: 1.1rem;
  font-size: 1.1rem;
}
.form-card-compact .form-group {
  margin-bottom: 0.75rem;
}
.form-card-compact label {
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
  display: block;
  font-weight: 600;
  color: var(--text-medium);
}
.form-card-compact input,
.form-card-compact textarea {
  font-size: 0.88rem;
  padding: 0.5rem 0.65rem;
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

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

.contact-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocra);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--testo);
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--testo-light);
}

.contact-left-col {
  display: flex;
  flex-direction: column;
}

.contact-map-wrapper {
  flex: 1;
  min-height: 200px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-platforms-section {
  margin-bottom: 1.25rem;
}

.contact-platforms {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid rgba(200,169,110,0.3);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}

.platform-link:hover {
  border-color: var(--ocra);
  background: rgba(200,169,110,0.05);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .chi-siamo-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; align-items: start; }
  .contact-info-with-desc { grid-template-columns: 1fr; }
  .contact-left-col { flex-direction: column; }
  .contact-map-wrapper { min-height: 260px; flex: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .room-select-grid { grid-template-columns: 1fr; }
  .pricing-table { font-size: 0.8rem; }
  .pricing-table th, .pricing-table td { padding: 0.5rem 0.4rem; }
  /* Price comparison table on medium screens */
  .pct-head, .pct-row { font-size: 0.8rem; }
  .pct-head-cell, .pct-row-label, .pct-price-cell { padding: 0.5rem 0.6rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--calce);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(200,169,110,0.2);
    box-shadow: 0 10px 30px var(--ombra);
  }

  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }

  /* Page header */
  .page-header { padding: 6rem 0 2rem; }
  .page-header h1 { font-size: 2rem; }
  .page-header p { font-size: 0.95rem; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content .hero-tagline { font-size: 1rem; }

  /* Hero nuova — mobile */
  .hero-body { padding: 0 2rem 3rem; grid-template-columns: 1fr; }
  .hero-rating-card { display: none; }
  .hero-carousel-dots { right: 1rem; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 4.2rem); }
  /* Nasconde scroll indicator su tablet/mobile: altrimenti si sovrappone ai CTA */
  .hero-scroll-indicator { display: none; }

  /* Sections */
  .section { padding: 2.5rem 0; }

  /* Trust strip */
  .trust-strip-inner { gap: 0.75rem 1.5rem; }
  .trust-strip { font-size: 0.78rem; padding: 0.75rem 1rem; }

  /* Reviews */
  .reviews-scores { gap: 1rem; }

  /* Gallery */
  .room-gallery { grid-template-columns: 1fr 1fr; }
  .room-gallery .gallery-main { height: 220px; }
  .room-gallery .gallery-thumb { height: 105px; }

  /* Amenities */
  .room-amenities { grid-template-columns: 1fr; }

  /* Price comparison table */
  .price-comparison-table { font-size: 0.8rem; }
  .pct-head { grid-template-columns: 1fr 1fr 1fr; }
  .pct-row { grid-template-columns: 1fr 1fr 1fr; }
  .pct-head-cell, .pct-row-label, .pct-price-cell { padding: 0.45rem 0.5rem; }
  .pct-direct-row .pct-amount { font-size: 1rem; }
  .pct-saving { font-size: 0.62rem; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Blog article — mobile */
  .blog-article { padding: 1.5rem 1rem; }
  .blog-article-hero { height: 240px; margin-bottom: 1.5rem; }
  .blog-article h2 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; }
  .blog-article p { font-size: 0.97rem; line-height: 1.75; }
  .blog-article .article-img img { height: 200px; }
  .blog-article-cta { padding: 1.25rem 1rem; margin-top: 2rem; }
  .blog-article-cta p { font-size: 1.05rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { margin-bottom: 1rem; }

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

  /* Contact platforms */
  .contact-platforms { gap: 0.4rem; }
  .platform-link { padding: 0.5rem 0.85rem; font-size: 0.82rem; }

  /* CTA */
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  /* Buttons */
  .btn { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  /* Lang dropdown: hide individual buttons, show trigger */
  .lang-switcher .lang-dropdown-trigger { display: flex; }
  .lang-switcher a.lang-btn { display: none; }
  .lang-switcher.open a.lang-btn {
    display: flex;
    width: 32px; height: 32px; font-size: 0.75rem;
  }
  .lang-switcher {
    flex-wrap: wrap;
    gap: 0.4rem;
    position: relative;
  }
  .trust-strip-inner { flex-direction: column; gap: 0.5rem; }

  /* Page header */
  .page-header { padding: 5.5rem 0 1.75rem; }
  .page-header h1 { font-size: 1.75rem; }

  /* Hero */
  .hero-content h1 { font-size: 1.75rem; }
  .hero-content .hero-tagline { font-size: 0.92rem; }
  .hero-body { padding: 0 1.5rem 2.8rem; }
  .hero-title { font-size: clamp(2.4rem, 13vw, 3.6rem); }
  .hero-title-line2 { padding-left: 1rem; }
  /* Award pill nascosta su schermi piccoli: troppo affollato */
  .hero-award-pill { display: none; }
  /* Tagline: meno lettera-spacing così non va a capo */
  .hero-tagline { letter-spacing: 0.06em; font-size: 0.7rem; }
  /* CTA: gap ridotto, bottone più compatto */
  .hero-ctas { gap: 0.9rem; }
  .btn-hero-primary { padding: 0.85rem 1.6rem; font-size: 0.82rem; }
  .hero-savings-badge { font-size: 0.7rem; padding: 0.2rem 0.5rem; }
  .btn-hero-ghost { font-size: 0.78rem; }
  .trust-strip-inner { flex-wrap: wrap; gap: 0.6rem 1.25rem; }

  /* Gallery: single column on very small screens */
  .room-gallery { grid-template-columns: 1fr; position: relative; }
  .room-gallery .gallery-thumb { display: none; }

  /* Mobile gallery arrows */
  .gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-80%);
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.85);
    color: var(--blu);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    -webkit-tap-highlight-color: transparent;
  }
  .gallery-prev { left: 0.5rem; }
  .gallery-next { right: 0.5rem; }
  .gallery-nav:active { background: rgba(255,255,255,1); }

  /* Mobile gallery dots */
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0.5rem 0 0.25rem;
    grid-column: 1 / -1;
  }
  .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grigio);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s;
  }
  .gallery-dot.active {
    background: var(--ocra);
  }

  /* Price table: hide row labels on very small screens, show stacked */
  .pct-head-cell:first-child, .pct-row-label { font-size: 0.7rem; }
  .pct-amount { font-size: 0.9rem; }
  .pct-amount small { font-size: 0.62rem; }

  /* Blog article — very small screens */
  .blog-article { padding: 1rem 0.75rem; }
  .blog-article-hero { height: 180px; border-radius: 4px; }
  .blog-article h2 { font-size: 1.1rem; }
  .blog-article p { font-size: 0.93rem; }

  /* Section heading sizes */
  .section-title { font-size: 1.6rem; }

  /* Room microcopy */
  .room-microcopy { font-size: 0.75rem; }

  /* Form compact */
  .form-card { padding: 1.25rem; }
  .form-card-compact { padding: 1rem; }
}

/* ============================================
   COSA TROVERAI — Room Amenities Detail
   ============================================ */

/* ============================================
   COSA TROVERAI — Compact icon-only + tooltip
   ============================================ */

.cosa-troverai {
  margin: 2rem 0;
}

.cosa-troverai-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--testo);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--ocra-light);
  letter-spacing: 0.02em;
}

.amenity-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.amenity-detail-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 0.5rem 0.8rem;
  background: var(--calce);
  border-radius: 8px;
  border: 1px solid rgba(200,169,110,0.18);
  cursor: default;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.amenity-detail-item:hover {
  border-color: rgba(200,169,110,0.5);
  box-shadow: 0 2px 8px rgba(200,169,110,0.12);
}

.amenity-det-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--blu);
}

.amenity-det-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* Show label, hide long description */
.amenity-det-text {
  display: block;
  text-align: center;
}

.amenity-det-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--blu-dark);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.amenity-det-text span {
  display: none; /* description troppo lunga per la tile */
}

/* No tooltip needed — label always visible */
.amenity-detail-item::after {
  display: none;
}

/* Extra bed full-width item — La Dimora only */
.amenity-detail-item--extra-bed {
  grid-column: 1 / -1;
  height: auto;
  min-height: 2.8rem;
  background: rgba(90,130,60,0.1);
  border: 1.5px solid rgba(90,130,60,0.35);
  border-radius: 6px;
  padding: 0.5rem 0.8rem;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-top: 0.25rem;
  cursor: default;
}

.amenity-detail-item--extra-bed .amenity-det-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.amenity-detail-item--extra-bed .amenity-det-text span {
  display: none;
}

.amenity-detail-item--extra-bed .amenity-det-icon {
  font-size: 1.2rem;
  min-width: unset;
}

.amenity-detail-item--extra-bed strong {
  color: var(--verde);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
}

.amenity-detail-item--extra-bed::after {
  display: none; /* no tooltip needed — text is visible */
}

/* =====================================================
   HOST BOX — "Incontra i tuoi host"
   ===================================================== */
.host-box {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--bianco);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 12px;
  padding: 2rem 2.2rem;
  margin-top: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.host-box-avatars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.host-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,0.5);
  background: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--ocra);
  overflow: hidden;
}
.host-box-content { flex: 1; }
.host-box-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocra);
  margin-bottom: 0.35rem;
}
.host-box-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--blu-dark);
  margin-bottom: 0.6rem;
}
.host-profiles {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.host-profile-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blu-dark);
}
.host-profile-role {
  font-size: 0.82rem;
  color: var(--testo-mid);
}
.host-box-quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--blu-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 2px solid var(--ocra);
  padding-left: 0.9rem;
}
.host-box-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: #fff;
  padding: 0.52rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.host-box-wa:hover { background: #1ebe5a; transform: translateY(-1px); color: #fff; }
@media (max-width: 640px) {
  .host-box { flex-direction: column; gap: 1.2rem; padding: 1.4rem 1.2rem; }
  .host-box-avatars { flex-direction: row; justify-content: flex-start; }
}

/* =====================================================
   GARANZIE CASA E BOTTEGA
   ===================================================== */
.garanzie-section {
  background: var(--crema);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  padding: 2.5rem 0;
}
.garanzie-header {
  text-align: center;
  margin-bottom: 1.8rem;
}
.garanzie-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocra);
  margin-bottom: 0.4rem;
}
.garanzie-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--blu-dark);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.garanzie-subtitle {
  font-size: 0.92rem;
  color: var(--testo-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.garanzie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.garanzia-card {
  background: var(--bianco);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 10px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.2s ease;
}
.garanzia-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }
.garanzia-icon {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
  display: block;
}
.garanzia-nome {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blu-dark);
  margin-bottom: 0.45rem;
}
.garanzia-desc {
  font-size: 0.8rem;
  color: var(--testo-mid);
  line-height: 1.55;
}
.garanzie-nota {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--testo-mid);
}
.garanzie-nota a { color: var(--ocra); text-decoration: underline; }
@media (max-width: 768px) {
  .garanzie-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
}
@media (max-width: 480px) {
  .garanzie-grid { grid-template-columns: 1fr 1fr; }
  .garanzie-title { font-size: 1.3rem; }
}

/* =====================================================
   STICKY TOUCHPOINTS
   WhatsApp float (desktop) + mobile bottom bar
   ===================================================== */

/* --- SVG icon helper --- */
.wa-icon { flex-shrink: 0; display: block; }

/* --- Desktop: floating WhatsApp pill (bottom-right) --- */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 980;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #25D366;
  color: #fff;
  padding: 0.78rem 1.35rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(37,211,102,0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.15s ease;
}
.wa-float:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.52);
}
.wa-float-label { white-space: nowrap; }

/* Pulse 3× dopo 1.5 s per attirare l'attenzione al primo caricamento */
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 22px rgba(37,211,102,0.38); }
  50%  { box-shadow: 0 4px 22px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
  100% { box-shadow: 0 4px 22px rgba(37,211,102,0.38); }
}
.wa-float { animation: wa-pulse 2.4s ease-in-out 1.5s 3; }
.wa-float:hover { animation: none; }

/* --- Mobile: sticky bottom bar (WA + Prenota) --- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 980;
  background: var(--bianco);
  border-top: 1px solid rgba(200,169,110,0.22);
  padding: 0.6rem 0.9rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  gap: 0.6rem;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.07);
}
.sticky-mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.76rem 0.4rem;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s ease;
}
.sticky-mobile-bar a:active { opacity: 0.78; }
.sticky-mobile-bar .smb-wa {
  background: #25D366;
  color: #fff;
}
.sticky-mobile-bar .smb-book {
  background: var(--blu-dark);
  color: #fff;
}

/* Responsive: mostra bar su mobile, nascondi float */
/* =====================================================
   PILLAR 1 — OSPITALITÀ ARTIGIANALE (camere.html)
   ===================================================== */
.artisan-intro-section {
  background: var(--crema);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.artisan-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.artisan-intro-icon {
  color: var(--ocra);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artisan-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  color: var(--blu-dark);
  line-height: 1.5;
  margin: 0 0 1.4rem;
  padding: 0;
  border: none;
  quotes: none;
}
.artisan-subtext {
  font-size: 0.97rem;
  color: var(--testo-mid);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.artisan-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  text-align: left;
  margin-top: 1rem;
}
.artisan-pillar {
  background: var(--bianco);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.artisan-pillar-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ocra-dark);
}
.artisan-pillar-desc {
  font-size: 0.875rem;
  color: var(--testo-mid);
  line-height: 1.55;
}

/* =====================================================
   PILLAR 2 — HIGHLIGHT NOME NICOLETTA NELLE RECENSIONI
   ===================================================== */
mark.review-highlight {
  background: rgba(200,169,110,0.2);
  color: var(--blu-dark);
  border-radius: 3px;
  padding: 0 3px;
  font-weight: 600;
  text-decoration: none;
  font-style: inherit;
}
.host-nicoletta-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  color: var(--testo-mid);
  margin-bottom: 1rem;
}
.host-stat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ocra);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* =====================================================
   PILLAR 3 — BLOG CARD INSIDER
   ===================================================== */
.blog-card--insider .blog-card-img {
  position: relative;
}
.insider-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: var(--blu-dark);
  color: var(--bianco);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.blog-card--insider {
  border: 1px solid rgba(27,79,114,0.15);
}
.blog-card--insider:hover {
  border-color: rgba(27,79,114,0.35);
}

/* =====================================================
   PILLAR 4 — TABELLA CONFRONTO vs OTA (prenota.html)
   ===================================================== */
.garanzie-vs-table {
  margin-top: 2rem;
  background: var(--bianco);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 10px;
  overflow: hidden;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.garanzie-vs-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--testo-muted);
  padding: 1rem 1.5rem 0.5rem;
}
.garanzie-vs-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1.3fr;
  font-size: 0.82rem;
  line-height: 1.4;
}
.vs-col--header {
  background: var(--calce);
  font-weight: 700;
  padding: 0.7rem 1rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vs-col--direct.vs-col--header { color: var(--verde); background: rgba(92,107,58,0.08); }
.vs-col--ota.vs-col--header { color: var(--testo-muted); background: rgba(0,0,0,0.03); }
.vs-row-label {
  padding: 0.6rem 1rem;
  font-weight: 600;
  color: var(--testo-light);
  border-top: 1px solid rgba(200,169,110,0.12);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
}
.vs-cell {
  padding: 0.6rem 1rem;
  border-top: 1px solid rgba(200,169,110,0.12);
  display: flex;
  align-items: center;
  color: var(--testo-mid);
  font-size: 0.8rem;
}
.vs-cell--direct { background: rgba(92,107,58,0.04); }
.vs-cell--ota { background: rgba(0,0,0,0.01); color: var(--testo-muted); }
@media (max-width: 640px) {
  .artisan-pillars { grid-template-columns: 1fr; }
  .artisan-quote { font-size: 1.1rem; }
}
@media (max-width: 540px) {
  .garanzie-vs-grid { grid-template-columns: 1fr 1fr; }
  .vs-col--header:first-child,
  .vs-row-label { display: none; }
  .vs-col--direct.vs-col--header,
  .vs-col--ota.vs-col--header { font-size: 0.7rem; text-align: center; }
}

@media (max-width: 768px) {
  .wa-float { display: none; }
  .sticky-mobile-bar { display: flex; }
  /* Spazio extra al footer per non coprire il contenuto */
  .site-footer { padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px)); }
}
