/* ================================================================
   Lavika Loft v4 – VISIBLE Glassmorphism · Bold Animations
   Key: colored/gradient backgrounds BEHIND glass elements
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #49494a;
  --accent: #b8aa7b;
  --accent-dark: #a0935f;
  --accent-light: #d4c9a8;
  --accent-glow: rgba(184,170,123,0.35);
  --bg: #faf8f5;
  --bg-warm: #f5f0e8;
  --bg-cool: #f0ede6;
  --white: #ffffff;
  --text: #49494a;
  --text-light: #6e6e6f;
  --text-muted: #9a9a9b;
  --border: #e8e4dc;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-h: "quiche-display", Georgia, serif;
  --font-b: "Montserrat", -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b); font-size: 16px; line-height: 1.7;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea {
  font: inherit; color: var(--text);
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 14px 18px; width: 100%; background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
label {
  display: block; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 8px; letter-spacing: 0.02em; text-transform: uppercase;
}

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-title {
  font-family: var(--font-h); font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400; text-align: center; margin-bottom: 14px;
  letter-spacing: -0.02em; line-height: 1.15;
}
.section-intro {
  text-align: center; color: var(--text-light); max-width: 560px;
  margin: 0 auto 56px; font-size: 1.05rem; line-height: 1.8;
}
.section-note {
  text-align: center; color: var(--text-muted); font-size: 0.88rem;
  margin-top: 36px; font-style: italic;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-b); font-weight: 600; font-size: 0.88rem;
  padding: 14px 32px; border-radius: 50px;
  transition: all 0.4s var(--ease); white-space: nowrap; letter-spacing: 0.03em;
}
.btn svg { width: 18px; height: 18px; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,170,123,0.4);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(184,170,123,0.55);
}
.btn-outline {
  border: 2px solid var(--accent); color: var(--accent-dark);
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: var(--accent); color: var(--white); transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(184,170,123,0.3);
}
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════ */

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(60px, -40px) scale(1.15) rotate(5deg); }
  50% { transform: translate(20px, -80px) scale(0.95) rotate(-3deg); }
  75% { transform: translate(-40px, -20px) scale(1.08) rotate(2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(-50px, 40px) scale(1.1) rotate(-4deg); }
  66% { transform: translate(30px, -30px) scale(0.9) rotate(6deg); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -50px) scale(1.2); }
}
@keyframes textGradient {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}
@keyframes gradBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.92) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(184,170,123,0.4); }
  50% { box-shadow: 0 8px 40px rgba(184,170,123,0.65); }
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }

/* ── Floating decorative blobs (VISIBLE) ── */
.blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(60px);
}
.blob-1 {
  width: 500px; height: 500px; top: -15%; right: -10%;
  background: radial-gradient(circle, rgba(184,170,123,0.25) 0%, transparent 70%);
  animation: float1 20s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px; bottom: -10%; left: -8%;
  background: radial-gradient(circle, rgba(160,147,95,0.2) 0%, transparent 70%);
  animation: float2 25s ease-in-out infinite;
}
.blob-3 {
  width: 300px; height: 300px; top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(184,170,123,0.15) 0%, transparent 70%);
  animation: float3 18s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL – VISIBLE
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.vis {
  opacity: 1; transform: translateY(0);
}
/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.35s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.45s; }
.stagger > .reveal:nth-child(8) { transition-delay: 0.5s; }
.stagger > .reveal:nth-child(9) { transition-delay: 0.55s; }

/* Hero entrance */
.hero-anim { opacity: 0; animation: fadeUp 0.9s var(--ease) forwards; }
.hero-anim:nth-child(1) { animation-delay: 0.1s; }
.hero-anim:nth-child(2) { animation-delay: 0.25s; }
.hero-anim:nth-child(3) { animation-delay: 0.4s; }
.hero-anim:nth-child(4) { animation-delay: 0.55s; }
.hero-anim:nth-child(5) { animation-delay: 0.7s; }
.hero-anim:nth-child(6) { animation-delay: 0.85s; }
.hero-anim:nth-child(7) { animation-delay: 1.0s; }

/* ══════════════════════════════════════════
   HEADER – Sticky glass
   ══════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,245,0.7);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(232,228,220,0.6);
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(250,248,245,0.92);
  box-shadow: 0 4px 30px rgba(73,73,74,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 400; color: var(--primary);
  z-index: 102;
}
.logo img { height: 40px; width: auto; border-radius: 4px; }
/* ── Desktop nav ── */
.desktop-nav { display: flex; gap: 36px; }
.desktop-nav a {
  font-size: 0.86rem; font-weight: 500; color: var(--text-light);
  transition: color 0.3s; position: relative;
}
.desktop-nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 50%; width: 0; height: 2px;
  background: var(--accent); transition: all 0.3s var(--ease); transform: translateX(-50%); border-radius: 2px;
}
.desktop-nav a:hover { color: var(--primary); }
.desktop-nav a:hover::after { width: 100%; }
.desktop-nav a.nav-active { color: var(--accent); }
.desktop-nav a.nav-active::after { width: 100%; }
.header-cta { font-size: 0.82rem; padding: 10px 24px; }

/* ── Mobile nav drawer (lives outside header) ── */
.mobile-nav {
  display: none; /* hidden on desktop */
}
.mobile-nav-cta { display: none; }

/* Hamburger */
.menu-toggle {
  display: none; width: 32px; height: 32px; padding: 0; position: relative;
  z-index: 102; cursor: pointer; background: none; border: none;
}
.menu-toggle span {
  display: block; position: absolute; left: 4px; right: 4px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68,-0.6,0.32,1.6);
}
.menu-toggle span:nth-child(1) { top: 7px; }
.menu-toggle span:nth-child(2) { top: 15px; transition: opacity 0.2s 0.15s; }
.menu-toggle span:nth-child(3) { top: 23px; }
.menu-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transition: opacity 0.2s; }
.menu-toggle.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* Overlay */
.nav-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(73,73,74,0.3); z-index: 99;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.nav-overlay.visible { opacity: 1; }

/* ══════════════════════════════════════════
   HERO – Gradient mesh background
   ══════════════════════════════════════════ */
.hero {
  padding: 130px 0 110px; position: relative; overflow: hidden;
  /* Multi-layer gradient background for glassmorphism contrast */
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184,170,123,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(160,147,95,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(212,201,168,0.15) 0%, transparent 60%),
    linear-gradient(175deg, #faf8f5 0%, #f3ede2 50%, #efe8da 100%);
}
.hero-inner {
  display: flex; align-items: center; gap: 60px; position: relative; z-index: 2;
}
.hero-content { flex: 1; max-width: 640px; }
.hero-h1 {
  font-family: var(--font-h); font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 400; line-height: 1.05; margin-bottom: 14px; letter-spacing: -0.03em;
  /* Animated gradient text */
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 40%, var(--accent-dark) 60%, var(--primary) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradient 5s ease-in-out infinite;
}
.hero-h2 {
  font-family: var(--font-h); font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 400; color: var(--accent-dark); margin-bottom: 22px;
}
.hero-text {
  font-size: 1.1rem; color: var(--text-light); line-height: 1.85; margin-bottom: 24px;
}
/* GLASS badge */
.hero-badge {
  display: inline-flex; gap: 8px;
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-light);
  box-shadow: 0 8px 32px rgba(73,73,74,0.08);
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-ctas .btn-accent { animation: pulseGlow 3s ease-in-out infinite; }
.hero-trust { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.03em; }
.hero-image { flex: 1; max-width: 480px; }
.hero-image img { border-radius: var(--radius-xl); box-shadow: 0 20px 60px rgba(73,73,74,0.12); }

/* ══════════════════════════════════════════
   TRUST STRIP – Glass on gradient
   ══════════════════════════════════════════ */
.trust-strip {
  position: relative; z-index: 3; padding: 24px 0;
  /* Gradient background behind glass */
  background:
    linear-gradient(90deg, rgba(184,170,123,0.08) 0%, rgba(184,170,123,0.15) 50%, rgba(184,170,123,0.08) 100%);
}
.trust-strip::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
.trust-inner {
  display: flex; justify-content: center; gap: 52px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; font-weight: 500; color: var(--text-light);
  transition: color 0.3s, transform 0.3s;
}
.trust-item:hover { color: var(--primary); transform: translateY(-2px); }
.trust-item svg {
  width: 20px; height: 20px; color: var(--accent);
  transition: transform 0.5s var(--ease-bounce);
}
.trust-item:hover svg { transform: scale(1.3) rotate(-5deg); }

/* ══════════════════════════════════════════
   CARDS – Glass on colored BG
   ══════════════════════════════════════════ */
.section-cards-bg {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184,170,123,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(160,147,95,0.08) 0%, transparent 50%),
    var(--bg-warm);
}
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 28px;
}
.card {
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 40px 32px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px rgba(73,73,74,0.06);
  transition: all 0.5s var(--ease);
  position: relative; overflow: hidden;
}
/* Animated gradient border on hover */
.card::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, transparent, var(--accent-light), var(--accent), var(--accent-light), transparent);
  background-size: 400% 400%;
  border-radius: inherit; z-index: -1;
  opacity: 0; transition: opacity 0.5s;
}
.card:hover::before {
  opacity: 1;
  animation: gradBorder 3s ease infinite;
}
.card::after {
  content: ''; position: absolute; inset: 1px;
  background: rgba(255,255,255,0.75);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-radius: inherit; z-index: -1;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(184,170,123,0.2);
}
.card-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(184,170,123,0.2), rgba(184,170,123,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s var(--ease-bounce);
}
.card:hover .card-icon { transform: scale(1.15) rotate(-5deg); }
.card-icon svg { width: 28px; height: 28px; color: var(--accent-dark); }
.card h3 { font-family: var(--font-h); font-size: 1.25rem; margin-bottom: 10px; font-weight: 400; position: relative; z-index: 1; }
.card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   GALLERY – Main photo + thumbnails
   ══════════════════════════════════════════ */
.gallery-outer {
  width: 100%;
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.11);
}

/* Main image */
.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg-warm);
}
.gallery-main > img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.gallery-main > img.is-fading { opacity: 0; }

/* Arrows */
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  z-index: 2; color: var(--primary);
}
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-arrow:disabled { opacity: 0.28; cursor: default; }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

/* Counter badge */
.gallery-counter {
  position: absolute; bottom: 12px; right: 14px;
  background: rgba(0,0,0,0.48); color: #fff;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: 20px;
  backdrop-filter: blur(6px); pointer-events: none;
}

/* Thumbnails strip */
.gallery-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 12px 10px;
  background: var(--white);
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex: 0 0 100px;
  height: 68px;
  border-radius: calc(var(--radius) * 0.5);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { opacity: 0.8; }
.gallery-thumb.is-active { border-color: var(--accent-dark); opacity: 1; }

/* Gallery modal */
.gallery-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.gallery-modal.is-open { opacity: 1; pointer-events: all; }
.gallery-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,8,6,0.93);
  backdrop-filter: blur(6px);
}
.gallery-modal-img-wrap {
  position: relative; z-index: 1;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.gallery-modal-img-wrap img {
  max-width: 100%; max-height: 88vh;
  object-fit: contain; border-radius: 10px;
  transition: opacity 0.18s ease;
  display: block;
}
.gallery-modal-img-wrap img.is-fading { opacity: 0; }
.gallery-modal-close {
  position: fixed; top: 16px; right: 16px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.13); border: none; cursor: pointer;
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.gallery-modal-close:hover { background: rgba(255,255,255,0.22); }
.gallery-modal-arrow {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s;
}
.gallery-modal-arrow:hover { background: rgba(255,255,255,0.2); }
.gallery-modal-arrow:disabled { opacity: 0.22; cursor: default; }
.gallery-modal-prev { left: 12px; }
.gallery-modal-next { right: 12px; }
.gallery-modal-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.65); font-size: 0.82rem; letter-spacing: 0.06em;
  pointer-events: none;
}
@media (max-width: 768px) {
  .gallery-modal-arrow { width: 40px; height: 40px; }
  .gallery-modal-prev { left: 4px; }
  .gallery-modal-next { right: 4px; }
}

/* ══════════════════════════════════════════
   SERVICES – Glass tiles on warm bg
   ══════════════════════════════════════════ */
.section-services-bg {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,170,123,0.12) 0%, transparent 50%),
    var(--bg);
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr)); gap: 16px;
}
.service-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.4s var(--ease);
}
.service-item:hover {
  background: rgba(255,255,255,0.85);
  border-color: var(--accent-light);
  box-shadow: 0 8px 24px rgba(184,170,123,0.15);
  transform: translateY(-4px);
}
.service-item svg {
  width: 22px; height: 22px; color: var(--accent); flex-shrink: 0;
  transition: transform 0.5s var(--ease-bounce);
}
.service-item:hover svg { transform: scale(1.3) rotate(-8deg); }
.service-item span { font-size: 0.93rem; font-weight: 500; }

/* ══════════════════════════════════════════
   PRICING – Visible glass cards
   ══════════════════════════════════════════ */
.section-pricing-bg {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(184,170,123,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(160,147,95,0.08) 0%, transparent 50%),
    var(--bg-warm);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 24px;
}
.price-card {
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: all 0.5s var(--ease); position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--accent-light));
  background-size: 200% 100%;
  animation: gradBorder 3s ease infinite;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(184,170,123,0.22);
}
.price-period {
  font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--accent-dark); margin-bottom: 14px;
}
.price-amount {
  font-family: var(--font-h); font-size: 2.6rem; color: var(--primary); line-height: 1.1;
}
.price-amount small { font-size: 0.45em; font-weight: 400; color: var(--text-muted); }
.price-original {
  display: block; font-size: 0.42em; text-decoration: line-through; color: var(--text-muted);
  font-weight: 400; margin-bottom: 2px;
}
.price-dates { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; }
.price-features {
  display: flex; flex-direction: column; gap: 6px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid rgba(232,228,220,0.5);
}
.price-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-light); font-weight: 500;
}
.price-feat svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.price-feat-disc { color: #2e7d32; }
.price-feat-disc svg { color: #2e7d32; }
.price-min {
  display: inline-block; margin-top: 14px; padding: 6px 16px; border-radius: 50px;
  background: rgba(184,170,123,0.12); font-size: 0.78rem; font-weight: 600; color: var(--accent-dark);
}
.price-extra { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }

/* ══════════════════════════════════════════
   DYNAMIC PRICE SUMMARY
   ══════════════════════════════════════════ */
.price-summary {
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(184,170,123,0.3);
  border-radius: var(--radius-lg); padding: 24px 28px; margin-top: 20px;
  display: none; /* shown by JS */
  animation: fadeScale 0.4s var(--ease);
}
.price-summary.active { display: block; }
.price-summary-title {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 400;
  color: var(--accent-dark); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.price-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(232,228,220,0.5);
}
.price-summary-row:last-child { border-bottom: none; }
.price-summary-row.total {
  font-weight: 700; font-size: 1.1rem; color: var(--primary);
  padding-top: 14px; margin-top: 6px;
  border-top: 2px solid var(--accent); border-bottom: none;
}
.price-summary-label { color: var(--text-light); }
.price-summary-value { font-weight: 600; color: var(--primary); }
.price-summary-loading {
  text-align: center; padding: 16px; color: var(--text-muted); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
/* Sub-rows (weekend surcharge, extra guests) */
.price-summary-row.ps-sub {
  font-size: 0.82rem; padding: 4px 0 4px 14px; opacity: 0.85;
  border-bottom: 1px dashed rgba(232,228,220,0.4);
}
.price-summary-row.ps-sub .price-summary-label { color: var(--text-muted); }
.price-summary-row.ps-sub .price-summary-value { font-weight: 500; color: var(--text-light); }
/* Discount row */
.price-summary-row.ps-discount {
  background: rgba(76,175,80,0.06); border-radius: 8px;
  padding: 10px 12px; margin: 6px 0; border-bottom: none;
}
.price-summary-row.ps-discount .price-summary-label { color: #2e7d32; font-weight: 600; font-size: 0.88rem; }
.ps-discount-val { color: #2e7d32 !important; font-weight: 700 !important; }
/* Strikethrough original price */
.ps-strike { text-decoration: line-through; color: var(--text-muted); font-size: 0.85em; margin-right: 4px; }
/* Detail label under period */
.ps-detail { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; font-weight: 400; }
/* Average per night */
.ps-avg { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* ══════════════════════════════════════════
   CALENDAR
   ══════════════════════════════════════════ */
.availability-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start;
}
.calendar-container {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 8px 32px rgba(73,73,74,0.06); border: 1px solid var(--border);
}
.calendar-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px;
}
.calendar-nav .btn {
  border-radius: 50%; width: 42px; height: 42px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-warm); transition: all 0.3s;
}
.calendar-nav .btn:hover { background: var(--accent-light); transform: scale(1.1); }
.calendar-nav .btn svg { width: 18px; height: 18px; }
.calendar-month { font-family: var(--font-h); font-size: 1.25rem; text-transform: capitalize; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-header {
  text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  padding: 8px 0; text-transform: uppercase; letter-spacing: 0.06em;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s var(--ease);
}
.cal-day.empty { cursor: default; }
.cal-day.available { background: #d6eedb; color: #2e7d32; }
.cal-day.available:hover { background: var(--accent-light); color: var(--primary); transform: scale(1.15); }
.cal-day.booked { background: #f5d0d0; color: #a05252; cursor: not-allowed; }
.cal-day.blocked { background: #e8e5dd; color: var(--text-muted); cursor: not-allowed; opacity: 0.7; }
.cal-day.past { color: var(--text-muted); opacity: 0.3; cursor: not-allowed; }
.cal-day.selected {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--white);
  box-shadow: 0 4px 16px rgba(184,170,123,0.5); transform: scale(1.15);
}
.cal-day.in-range { background: rgba(184,170,123,0.2); color: var(--accent-dark); }
.calendar-legend { display: flex; gap: 24px; margin-top: 20px; justify-content: center; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-light); font-weight: 500; }
.dot { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.dot-available { background: #d6eedb; }
.dot-booked { background: #f5d0d0; }
.dot-blocked { background: #e8e5dd; }
.calendar-loading {
  grid-column: 1 / -1; text-align: center; padding: 48px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* ══════════════════════════════════════════
   BOOKING FORM – Glass with animated top bar
   ══════════════════════════════════════════ */
/* Step labels */
.cal-step-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--accent-dark); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(184,170,123,0.2);
}
.cal-step-label svg { width: 18px; height: 18px; }

/* Calendar selection feedback */
.cal-selection {
  margin-top: 16px; padding: 14px 18px;
  background: rgba(184,170,123,0.08); border-radius: 12px;
  animation: fadeScale 0.3s var(--ease);
}
.cal-sel-row { display: flex; gap: 24px; flex-wrap: wrap; }
.cal-sel-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text);
}
.cal-sel-item svg { width: 14px; height: 14px; color: var(--accent); }

/* Guest selector – Big interactive buttons */
.booking-step { margin-bottom: 24px; }
.guests-selector {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 16px 0;
}
.guest-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(184,170,123,0.12); border: 2px solid rgba(184,170,123,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s var(--ease);
}
.guest-btn:hover {
  background: var(--accent); border-color: var(--accent);
  transform: scale(1.1);
}
.guest-btn:hover svg { color: var(--white); }
.guest-btn svg { width: 18px; height: 18px; color: var(--accent-dark); transition: color 0.3s; }
.guest-display { text-align: center; min-width: 80px; }
.guest-count {
  display: block; font-size: 2.5rem; font-weight: 300; line-height: 1;
  color: var(--primary); letter-spacing: -0.02em;
}
.guest-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* Personal data section – appears with animation */
.booking-personal {
  animation: fadeScale 0.5s var(--ease);
  padding-top: 8px;
}

.booking-form-container {
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 8px 32px rgba(73,73,74,0.06);
  border: 1px solid rgba(255,255,255,0.6);
  position: relative; overflow: hidden;
}
/* Animated gradient top bar */
.booking-form-container::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-light) 25%, var(--accent) 50%, var(--accent-light) 75%, transparent 100%);
  background-size: 200% 100%;
  animation: gradBorder 4s ease infinite;
}
.booking-form-container h3 {
  font-family: var(--font-h); font-size: 1.35rem; margin-bottom: 28px; font-weight: 400;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-microcopy { font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-top: 14px; }
.form-errors {
  background: rgba(254,226,226,0.8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid #fecaca; border-radius: 10px;
  padding: 18px; margin-top: 16px; color: #a05252; font-size: 0.9rem;
  animation: fadeScale 0.3s var(--ease);
}
.form-errors ul { list-style: none; padding: 0; }
.form-errors li { padding: 3px 0; }
.form-errors li::before { content: '✕ '; color: #e57373; font-weight: 600; }
.form-success { text-align: center; padding: 48px 24px; animation: fadeScale 0.5s var(--ease); }
.form-success svg { width: 52px; height: 52px; color: #4caf50; margin: 0 auto 18px; }
.form-success h4 { font-family: var(--font-h); font-size: 1.4rem; margin-bottom: 10px; font-weight: 400; }
.form-success p { color: var(--text-light); }

/* ══════════════════════════════════════════
   REVIEWS – Glass on warm bg
   ══════════════════════════════════════════ */
.section-reviews-bg {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(184,170,123,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(212,201,168,0.12) 0%, transparent 50%),
    var(--bg-warm);
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px rgba(73,73,74,0.06);
  transition: all 0.5s var(--ease); position: relative;
}
.review-card::after {
  content: '\201C'; position: absolute; top: 16px; right: 24px;
  font-family: var(--font-h); font-size: 5rem; color: var(--accent-light);
  line-height: 1; opacity: 0.35;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(184,170,123,0.18);
}
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 16px; letter-spacing: 4px; }
.review-text {
  font-size: 1rem; line-height: 1.75; color: var(--text); margin-bottom: 18px;
  font-style: italic; position: relative; z-index: 1;
}
.review-author { font-size: 0.88rem; font-weight: 600; color: var(--accent-dark); }

/* ══════════════════════════════════════════
   POSIZIONE – Redesigned Map + POI
   ══════════════════════════════════════════ */
.section-map-bg {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,170,123,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(160,147,95,0.08) 0%, transparent 50%),
    var(--bg);
}
/* Map hero area */
.map-hero {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 16px 60px rgba(73,73,74,0.1);
  margin-bottom: 56px; border: 1px solid var(--border);
}
.map-hero iframe {
  width: 100%; height: 400px; border: none; display: block;
  filter: saturate(0.85) contrast(1.05);
}
/* Glass address overlay on map */
.map-overlay {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 24px;
  background: rgba(255,255,255,0.75);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.8);
  padding: 18px 32px; border-radius: 60px;
  box-shadow: 0 8px 32px rgba(73,73,74,0.12);
  white-space: nowrap; z-index: 2;
}
.map-overlay-address {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 600; color: var(--primary);
}
.map-overlay-address svg { color: var(--accent); }
.map-overlay .btn { padding: 10px 20px; font-size: 0.82rem; }

/* POI Section – Cards with progress bars */
.poi-section-title {
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 400;
  text-align: center; margin-bottom: 12px;
}
.poi-section-sub {
  text-align: center; color: var(--text-light); margin-bottom: 40px; font-size: 0.95rem;
}
.poi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px; margin-bottom: 56px;
}
.poi-card {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius); transition: all 0.4s var(--ease);
}
.poi-card:hover {
  background: rgba(255,255,255,0.85); transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(184,170,123,0.15);
}
.poi-icon-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(184,170,123,0.2), rgba(184,170,123,0.06));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.4s var(--ease-bounce);
}
.poi-card:hover .poi-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.poi-icon-wrap svg { width: 22px; height: 22px; color: var(--accent-dark); }
.poi-info { flex: 1; min-width: 0; }
.poi-name { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.poi-meta {
  display: flex; align-items: center; gap: 14px; font-size: 0.82rem; color: var(--text-muted);
}
.poi-meta-item { display: flex; align-items: center; gap: 5px; }
.poi-meta-item svg { width: 14px; height: 14px; color: var(--accent); }
/* Distance bar */
.poi-bar-wrap { flex: 1; max-width: 80px; height: 4px; background: rgba(184,170,123,0.15); border-radius: 4px; overflow: hidden; }
.poi-bar {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transition: width 1s var(--ease);
}

/* Nearby services – Beautiful grid */
.nearby-section {
  margin-top: 56px; padding-top: 56px; position: relative;
}
.nearby-section::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
}
.nearby-section h3 {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 400;
  text-align: center; margin-bottom: 12px;
}
.nearby-section > p {
  color: var(--text-light); max-width: 600px; margin: 0 auto 36px;
  font-size: 0.95rem; line-height: 1.75; text-align: center;
}
.nearby-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 16px;
}
.nearby-card {
  padding: 24px 20px; text-align: center;
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius); transition: all 0.4s var(--ease);
}
.nearby-card:hover {
  background: rgba(255,255,255,0.85); transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(184,170,123,0.15);
}
.nearby-card-icon {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(184,170,123,0.2), rgba(184,170,123,0.06));
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease-bounce);
}
.nearby-card:hover .nearby-card-icon { transform: scale(1.15) rotate(-6deg); }
.nearby-card-icon svg { width: 20px; height: 20px; color: var(--accent-dark); }
.nearby-card strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 6px; }
.nearby-card span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); transition: background 0.3s; }
.faq-item:hover { background: rgba(184,170,123,0.04); }
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 1rem; font-weight: 600; color: var(--text); gap: 16px;
}
.faq-question svg {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.4s var(--ease); color: var(--accent);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--accent-dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease), padding 0.5s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { color: var(--text-light); line-height: 1.75; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
  background: var(--primary); color: rgba(255,255,255,0.85);
  padding: 60px 0 40px; position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: start; gap: 36px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 1.3rem; color: var(--white); margin-bottom: 8px;
}
.footer-logo img { height: 32px; border-radius: 4px; }
.footer-claim { font-size: 0.88rem; opacity: 0.6; }
.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-contacts a {
  display: flex; align-items: center; gap: 10px; font-size: 0.9rem; transition: all 0.3s;
}
.footer-contacts a:hover { color: var(--accent-light); transform: translateX(5px); }
.footer-contacts svg { width: 16px; height: 16px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.85rem; opacity: 0.5; transition: all 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--accent-light); }

/* Mobile CTA */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 14px 20px;
  background: rgba(250,248,245,0.9);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 900px) {
  .availability-wrapper { grid-template-columns: 1fr; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .poi-grid { grid-template-columns: 1fr; }
  .map-overlay { position: relative; bottom: auto; left: auto; transform: none; border-radius: var(--radius); margin: -40px 20px 40px; flex-direction: column; gap: 12px; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }
}

/* ── Mobile nav + layout ── */
@media (max-width: 768px) {
  /* ── Hide desktop nav, show mobile drawer ── */
  .desktop-nav { display: none; }
  .mobile-nav {
    display: flex; flex-direction: column; justify-content: center;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 85vw; max-width: 340px;
    background: rgba(250,248,245,0.98);
    -webkit-backdrop-filter: blur(30px) saturate(1.8);
    backdrop-filter: blur(30px) saturate(1.8);
    padding: 100px 0 40px;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -20px 0 60px rgba(73,73,74,0);
  }
  .mobile-nav.open {
    transform: translateX(0);
    box-shadow: -20px 0 60px rgba(73,73,74,0.12);
  }
  .mobile-nav-inner {
    display: flex; flex-direction: column; gap: 0; padding: 0;
    flex: 1; overflow-y: auto;
  }
  .mobile-nav-inner a {
    padding: 20px 36px;
    font-size: 1.1rem; font-weight: 500; letter-spacing: 0.01em;
    color: var(--primary);
    border-bottom: 1px solid rgba(232,228,220,0.5);
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s, color 0.2s;
  }
  .mobile-nav.open .mobile-nav-inner a {
    opacity: 1; transform: translateX(0);
  }
  .mobile-nav.open .mobile-nav-inner a[data-i="1"] { transition-delay: 0.08s; }
  .mobile-nav.open .mobile-nav-inner a[data-i="2"] { transition-delay: 0.13s; }
  .mobile-nav.open .mobile-nav-inner a[data-i="3"] { transition-delay: 0.18s; }
  .mobile-nav.open .mobile-nav-inner a[data-i="4"] { transition-delay: 0.23s; }
  .mobile-nav.open .mobile-nav-inner a[data-i="5"] { transition-delay: 0.28s; }
  .mobile-nav.open .mobile-nav-inner a[data-i="6"] { transition-delay: 0.33s; }

  .mobile-nav-inner a::before {
    content: ''; position: absolute; left: 0; top: 50%; height: 0;
    width: 3px; background: var(--accent); border-radius: 0 3px 3px 0;
    transform: translateY(-50%); transition: height 0.3s var(--ease);
  }
  .mobile-nav-inner a:hover::before,
  .mobile-nav-inner a:active::before { height: 60%; }
  .mobile-nav-inner a:hover,
  .mobile-nav-inner a:active { background: rgba(194,171,146,0.08); color: var(--accent); }

  /* Mobile CTA inside drawer */
  .mobile-nav-cta {
    display: block; padding: 24px 36px 0;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
  }
  .mobile-nav.open .mobile-nav-cta { opacity: 1; transform: translateY(0); }

  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.visible { pointer-events: auto; }

  /* Mobile fixed CTA at bottom */
  .mobile-cta { display: block; }
  .mobile-cta .btn { box-sizing: border-box; }
  body { padding-bottom: 80px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* ── All grids single column ── */
  .form-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-thumb { flex: 0 0 84px; height: 58px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr; }

  /* ── Fix overflows ── */
  .trust-inner { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-image { max-width: 100%; }
  .hero { padding: 90px 0 70px; }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3rem); }

  /* ── Footer mobile ── */
  .footer-inner { flex-direction: column; text-align: center; align-items: center; gap: 24px; }
  .footer-contacts { align-items: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }

  /* ── Map ── */
  .map-hero iframe { height: 280px; }
  .map-overlay { flex-direction: column; white-space: normal; text-align: center; }

  /* ── Booking ── */
  .calendar-legend { gap: 12px; font-size: 0.82rem; }
  .guests-selector { gap: 16px; }
  .price-summary { font-size: 0.9rem; }
  .cal-sel-row { flex-direction: column; gap: 8px; }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 70px 0 50px; }
  .hero-h1 { font-size: 2rem; }
  .hero-h2 { font-size: 1rem; }
  .hero-text { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-badge { padding: 10px 18px; font-size: 0.8rem; }
  .gallery-main { aspect-ratio: 4/3; }
  .gallery-thumb { flex: 0 0 72px; height: 50px; }
  .gallery-arrow { width: 34px; height: 34px; }
  .gallery-thumbs { padding: 8px 8px 8px; }
  .calendar-container { padding: 16px; }
  .calendar-grid { gap: 3px; }
  .cal-day { width: 36px; height: 36px; font-size: 0.78rem; }
  .booking-form-container { padding: 20px; }
  .section-title { font-size: 1.6rem; }
  .footer-contacts a { font-size: 0.85rem; }
  .footer-links { gap: 16px; }
  .price-card { padding: 24px 20px; }
  .faq-question { padding: 16px; font-size: 0.9rem; }
}

/* ══════════════════════════════════════════════
   LANGUAGE SWITCHER
   ══════════════════════════════════════════════ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: all .25s;
  border: 1.5px solid rgba(73,73,74,.12);
}
.lang-switch:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.08);
}
.mobile-nav-lang {
  padding: 0 32px;
  margin-bottom: 12px;
}
.lang-switch-mobile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  background: rgba(184,170,123,.1);
  transition: all .25s;
}
.lang-switch-mobile:hover {
  background: rgba(184,170,123,.2);
}

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0 20px 20px;
  animation: cookieSlideUp .4s ease-out;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(184,170,123,.2);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 -4px 40px rgba(0,0,0,.08), 0 2px 12px rgba(0,0,0,.04);
}
.cookie-banner-text strong {
  font-size: 1rem;
  display: block;
  margin-bottom: 6px;
}
.cookie-banner-text p {
  font-size: 0.84rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 16px;
}
.cookie-banner-toggles {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(245,243,240,.7);
  border-radius: 12px;
  cursor: pointer;
}
.cookie-toggle-info {
  flex: 1;
}
.cookie-toggle-info strong {
  font-size: 0.85rem;
  display: block;
}
.cookie-toggle-info small {
  font-size: 0.75rem;
  color: #888;
}
/* Toggle switch */
.cookie-toggle input { display: none; }
.cookie-slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: #ccc;
  border-radius: 24px;
  transition: .25s;
  flex-shrink: 0;
}
.cookie-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: .25s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--accent);
}
.cookie-toggle input:checked + .cookie-slider::after {
  left: 23px;
}
.cookie-slider.locked {
  background: #8bc48e;
  opacity: .7;
  cursor: not-allowed;
}
.cookie-slider.locked::after {
  left: 23px;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.cookie-banner-actions .btn {
  font-size: 0.82rem;
}
.cookie-more-link {
  font-size: 0.75rem;
  color: #999;
  text-decoration: underline;
}
.cookie-more-link:hover {
  color: var(--accent-dark);
}
/* Reopen button (bottom-left floating) */
.cookie-reopen {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,170,123,.3);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.cookie-reopen:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.1);
}

/* ══════════════════════════════════════════════
   LEGAL PAGES (Privacy & Cookie Policy)
   ══════════════════════════════════════════════ */
.legal-page {
  min-height: 100vh;
  background: var(--bg, #faf8f5);
  padding: 60px 0;
}
.legal-page .container {
  max-width: 760px;
}
.legal-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.legal-back {
  display: inline-flex; align-items: center;
  font-size: 0.88rem;
  color: var(--accent-dark, #a0935f);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.legal-back:hover {
  color: var(--primary, #49494a);
}
.legal-page h1 {
  font-family: "quiche-display", serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--primary, #49494a);
}
.legal-updated {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 36px;
}
.legal-page h2 {
  font-family: "quiche-display", serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 32px 0 12px;
  color: var(--primary, #49494a);
}
.legal-page h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 24px 0 10px;
}
.legal-page p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}
.legal-page a {
  color: var(--accent-dark, #a0935f);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 0.85rem;
}
.cookie-table th {
  background: rgba(184,170,123,.1);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(184,170,123,.2);
}
.cookie-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
}
.cookie-table code {
  background: rgba(184,170,123,.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.82rem;
}

/* ── Responsive cookie banner ── */
@media (max-width: 600px) {
  .cookie-banner { padding: 0 12px 12px; }
  .cookie-banner-inner { padding: 18px 20px; border-radius: 16px; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions .btn { width: 100%; justify-content: center; }
}

/* ── Responsive header with lang switch ── */
@media (max-width: 768px) {
  .header-actions .lang-toggle { display: none; }
  .header-actions .header-cta { display: none; }
}

/* ══════════════════════════════════════════════
   GUEST GUIDE PAGE  v3
   ══════════════════════════════════════════════ */

.guide-body { background: var(--bg-warm); }
html.guide-page { background: var(--bg-warm); }

/* ─────────────────────────────
   TOP BAR
───────────────────────────── */
.guide-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,245,0.94);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(232,228,220,0.8);
}
.guide-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 16px;
}
.guide-back {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.84rem; font-weight: 600; color: var(--accent-dark);
  text-decoration: none; transition: color .2s;
  flex-shrink: 0;
}
.guide-back:hover { color: var(--primary); }
.guide-topbar-logo { display: flex; align-items: center; }
.guide-logo { height: 32px; width: auto; border-radius: 4px; }
.guide-topbar-name {
  font-family: var(--font-h); font-size: 1.1rem; color: var(--primary);
  font-weight: 400; text-decoration: none;
}
.guide-lang {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(184,170,123,0.12); border: 1.5px solid rgba(184,170,123,0.25);
  font-size: 0.72rem; font-weight: 700; letter-spacing: .04em;
  color: var(--primary); text-decoration: none; transition: all .25s;
}
.guide-lang:hover {
  background: var(--accent); color: #fff;
  border-color: var(--accent); transform: scale(1.08);
}

/* ─────────────────────────────
   HERO
───────────────────────────── */
.guide-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 80px 0 72px;
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg) 65%);
}
.guide-hero-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}
.guide-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: .07em;
  color: var(--accent-dark); text-transform: uppercase; margin-bottom: 20px;
}
.guide-h1 {
  font-family: var(--font-h); font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 400; letter-spacing: -0.025em; line-height: 1.12;
  background: linear-gradient(135deg, var(--primary) 30%, var(--accent-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.guide-welcome-text {
  color: var(--text-light); font-size: 1.08rem; line-height: 1.82;
  max-width: 540px; margin: 0 auto 32px;
}
/* check-in strip — two items side by side */
.guide-checkin-strip {
  display: inline-flex; align-items: center; gap: 0;
  background: rgba(184,170,123,0.1); border: 1.5px solid rgba(184,170,123,0.28);
  border-radius: 14px; overflow: hidden;
}
.guide-checkin-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px; color: var(--accent-dark);
}
.guide-checkin-item svg { flex-shrink: 0; opacity: .7; }
.guide-checkin-label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; opacity: .6;
}
.guide-checkin-time {
  display: block; font-size: 0.92rem; font-weight: 700;
  color: var(--primary); margin-top: 1px;
}
.guide-checkin-divider {
  width: 1px; align-self: stretch;
  background: rgba(184,170,123,0.3);
}

/* ─────────────────────────────
   ANCHOR NAV
───────────────────────────── */
.guide-anchor-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 60px; z-index: 40;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.guide-anchor-nav::-webkit-scrollbar { display: none; }
.guide-anchor-inner {
  display: flex; gap: 4px;
  padding: 10px 28px; white-space: nowrap;
  max-width: 1160px; margin: 0 auto;
}
.guide-anchor-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-light);
  text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: all .2s;
}
.guide-anchor-pill:hover {
  background: rgba(184,170,123,0.1);
  color: var(--accent-dark);
}
.guide-anchor-pill.is-active {
  background: rgba(184,170,123,0.12);
  border-color: rgba(184,170,123,0.3);
  color: var(--accent-dark);
}

/* ─────────────────────────────
   ACCESS GRID: WiFi + WhatsApp
───────────────────────────── */
.guide-access-section { padding: 80px 0; }
.guide-access-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; align-items: stretch;
}
.guide-access-card { border-radius: var(--radius-lg); padding: 36px; }

/* WiFi card */
.wifi-card {
  background: var(--white);
  border: 2px solid rgba(184,170,123,0.25);
  box-shadow: 0 8px 40px rgba(73,73,74,0.07);
}
.wifi-card-header {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 400;
  color: var(--primary); padding-bottom: 22px;
  border-bottom: 1px solid var(--border); margin-bottom: 26px;
}
.wifi-card-icon-wrap {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.wifi-field { margin-bottom: 18px; }
.wifi-field:last-of-type { margin-bottom: 0; }
.wifi-field > label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.wifi-value-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--bg-warm); border-radius: 10px; padding: 14px 18px;
}
.wifi-value-row-pass {
  background: #f0ede6;
  box-shadow: inset 0 1px 3px rgba(73,73,74,0.06);
}
.wifi-value {
  font-size: 1rem; font-weight: 600; color: var(--primary);
  flex: 1; word-break: break-all;
}
.wifi-pass {
  font-family: 'Courier New', monospace; letter-spacing: .1em; font-size: 1.05rem;
}
.wifi-hint {
  font-size: 0.79rem; color: var(--text-muted);
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
}
.copy-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 8px 14px;
  font-family: var(--font-b); font-size: 0.76rem; font-weight: 600;
  color: var(--accent-dark); cursor: pointer; white-space: nowrap;
  transition: all .22s; box-shadow: 0 1px 4px rgba(73,73,74,0.06);
}
.copy-btn:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
  transform: translateY(-1px); box-shadow: 0 4px 14px var(--accent-glow);
}
.copy-btn-done {
  background: #22c55e !important; color: #fff !important;
  border-color: #22c55e !important;
  box-shadow: 0 4px 14px rgba(34,197,94,.28) !important;
}

/* Access codes card */
.access-code-card {
  background: var(--white);
  border: 2px solid rgba(184,170,123,0.25);
  box-shadow: 0 8px 40px rgba(73,73,74,0.07);
}
.access-code-icon-wrap {
  background: linear-gradient(135deg, var(--primary), #3a3a3b) !important;
}

/* WhatsApp / Contact card */
.contact-card {
  background: linear-gradient(150deg, #183326 0%, #0d2418 100%);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 16px;
  box-shadow: 0 12px 48px rgba(10,35,20,0.35);
}
.contact-card-icon {
  width: 68px; height: 68px;
  background: rgba(37,211,102,0.18); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: #4ade80;
  box-shadow: 0 0 0 1px rgba(37,211,102,0.2);
}
.contact-card-title {
  font-family: var(--font-h); font-size: 1.55rem; font-weight: 400;
  color: #fff; margin: 0; line-height: 1.2;
}
.contact-card-sub { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }
.contact-card-note { font-size: 0.76rem; color: rgba(255,255,255,0.35); margin: 0; }
.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  font-size: 0.9rem; padding: 15px 30px;
}
.btn-wa:hover {
  transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ─────────────────────────────
   HOUSE RULES
───────────────────────────── */
.guide-rules-section { }
.guide-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  counter-reset: rule-counter;
}
.guide-rule-card {
  position: relative; display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 20px 20px 20px;
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
  box-shadow: 0 2px 8px rgba(73,73,74,0.04);
  counter-increment: rule-counter;
}
.guide-rule-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 8px 30px rgba(73,73,74,0.1);
  transform: translateY(-2px);
}
/* rule number top-right */
.guide-rule-num {
  position: absolute; top: 14px; right: 16px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: .06em;
  color: rgba(184,170,123,0.4); font-family: var(--font-b);
}
.guide-rule-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(212,201,168,.45), rgba(184,170,123,.1));
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
}
.guide-rule-body { min-width: 0; padding-right: 24px; }
.guide-rule-body strong {
  display: block; font-size: 0.88rem; font-weight: 700;
  color: var(--primary); margin-bottom: 5px; line-height: 1.3;
}
.guide-rule-body p {
  font-size: 0.82rem; line-height: 1.62; color: var(--text-light); margin: 0;
}

/* ─────────────────────────────
   ESPLORA CATANIA (POI)
───────────────────────────── */
.guide-poi-list {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 820px; margin: 0 auto;
}
.guide-poi-card {
  display: grid; grid-template-columns: 54px 1fr auto;
  align-items: center; gap: 18px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
  box-shadow: 0 2px 8px rgba(73,73,74,0.04);
}
.guide-poi-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 8px 30px rgba(73,73,74,0.1);
  transform: translateY(-2px);
}
.guide-poi-icon-wrap {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(212,201,168,.3), rgba(184,170,123,.08));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
}
.guide-poi-body { min-width: 0; }
.guide-poi-name {
  font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 5px;
}
.guide-poi-desc {
  font-size: 0.82rem; color: var(--text-light); line-height: 1.55; margin-bottom: 10px;
}
.guide-poi-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.guide-poi-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.76rem; font-weight: 600; padding: 4px 10px; border-radius: 50px;
}
.guide-poi-badge-dist { background: rgba(184,170,123,0.15); color: var(--accent-dark); }
.guide-poi-badge-walk { background: rgba(73,73,74,0.07); color: var(--text-light); }
.guide-maps-btn { flex-shrink: 0; white-space: nowrap; }

/* ─────────────────────────────
   CONSIGLI SU CATANIA
───────────────────────────── */
.guide-tips-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.guide-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.guide-tip-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
  box-shadow: 0 2px 8px rgba(73,73,74,0.04);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.guide-tip-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 8px 30px rgba(184,170,123,0.15);
  transform: translateY(-3px);
}
.guide-tip-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), rgba(184,170,123,0.2));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); margin-bottom: 2px;
  box-shadow: 0 4px 16px rgba(184,170,123,0.2);
}
.guide-tip-card strong {
  display: block; font-size: 0.9rem; font-weight: 700;
  color: var(--primary); line-height: 1.3;
}
.guide-tip-card p {
  font-size: 0.81rem; line-height: 1.65; color: var(--text-light); margin: 0;
}

/* ─────────────────────────────
   LA TUA ZONA (nearby)
───────────────────────────── */
.guide-nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 12px;
}
.guide-nearby-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px 16px; text-align: center;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  box-shadow: 0 2px 6px rgba(73,73,74,0.04);
}
.guide-nearby-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 6px 22px rgba(184,170,123,0.14);
  transform: translateY(-3px);
}
.guide-nearby-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,170,123,0.2), rgba(184,170,123,0.05));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 11px; color: var(--accent-dark);
}
.guide-nearby-card strong {
  display: block; font-size: 0.86rem; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
}
.guide-nearby-card span { font-size: 0.78rem; color: var(--text-muted); }

/* ─────────────────────────────
   NUMERI UTILI
───────────────────────────── */
.guide-emergency {
  background: var(--primary);
  padding: 32px 0;
}
.guide-emergency-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.guide-emergency-title {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.guide-emergency-grid {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.guide-emergency-card {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 20px; min-width: 100px;
  text-decoration: none; color: #fff;
  transition: all .22s;
}
.guide-emergency-card:hover {
  background: rgba(255,255,255,0.14); transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
}
.guide-emergency-num {
  font-size: 1.5rem; font-weight: 700; line-height: 1.1;
  font-family: var(--font-b); color: #fff;
}
.guide-emergency-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  margin-top: 4px; text-align: center;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.guide-footer {
  background: var(--bg-warm); border-top: 1px solid var(--border);
  padding: 40px 0;
}
.guide-footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
}
.guide-footer-brand { display: flex; align-items: center; justify-content: center; }
.guide-footer-logo { height: 36px; width: auto; border-radius: 4px; }
.guide-footer-name {
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 400;
  color: var(--primary);
}
.guide-footer-address {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.86rem; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
.guide-footer-address:hover { color: var(--accent-dark); }
.guide-footer-links {
  display: flex; align-items: center; gap: 12px;
}
.guide-footer-sep { color: var(--text-muted); opacity: .4; }
.guide-lang-footer {
  font-size: 0.82rem; font-weight: 600; color: var(--accent-dark);
  text-decoration: none; transition: color .2s;
}
.guide-lang-footer:hover { color: var(--primary); }

/* ─── Arrival & Transfer section ─── */
.guide-arrival-section { padding: 80px 0; background: var(--bg-warm); }
.guide-routes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 32px;
}
.guide-route-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); overflow: hidden;
  box-shadow: 0 4px 24px rgba(73,73,74,0.07);
  display: flex; flex-direction: column;
}
.guide-route-options { flex: 1; }
.guide-route-header {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--primary), #3a3a3b);
  color: #fff;
}
.guide-route-header-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.guide-route-title {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 400;
  line-height: 1.2;
}
.guide-route-subtitle { font-size: 0.74rem; opacity: .65; margin-top: 2px; }
.guide-route-option {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 14px; align-items: start;
  padding: 18px 24px;
  border-top: 1px solid var(--border);
}
.guide-route-option-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--bg-warm); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.guide-route-option-label {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-weight: 700; font-size: 0.88rem; color: var(--primary);
  margin-bottom: 6px;
}
.guide-route-option-detail {
  font-size: 0.74rem; font-weight: 700; color: var(--accent-dark);
  background: rgba(184,170,123,0.14);
  border-radius: 6px; padding: 3px 9px; white-space: nowrap;
}
.guide-route-option-desc {
  font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; margin: 0;
}
.guide-route-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
}

/* Transfer card */
.guide-transfer-card {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  box-shadow: 0 8px 40px rgba(184,170,123,0.3);
}
.guide-transfer-title {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 400;
  color: #fff; margin: 0 0 8px;
  display: flex; align-items: center; gap: 10px;
}
.guide-transfer-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.72);
  margin: 0 0 18px; max-width: 520px; line-height: 1.55;
}
.guide-transfer-features {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.guide-transfer-feature {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600;
  background: rgba(255,255,255,0.16); color: #fff;
  border-radius: 20px; padding: 6px 14px;
}
.btn-transfer {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--accent-dark);
  font-family: var(--font-b); font-weight: 700; font-size: 0.95rem;
  padding: 16px 28px; border-radius: var(--radius); white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform .22s, box-shadow .22s;
}
.btn-transfer:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ─────────────────────────────
   LANGUAGE TOGGLE
───────────────────────────── */
.lang-toggle {
  display: inline-flex; align-items: center;
  background: rgba(184,170,123,0.1);
  border: 1.5px solid rgba(184,170,123,0.25);
  border-radius: 50px; padding: 3px; gap: 2px;
  flex-shrink: 0;
}
.lang-toggle-opt {
  display: inline-flex; align-items: center; justify-content: center;
  height: 28px; padding: 0 13px;
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .05em;
  color: var(--text-muted); text-decoration: none;
  transition: background .2s, color .2s, box-shadow .2s;
}
.lang-toggle-opt.is-active {
  background: var(--accent-dark); color: #fff;
  box-shadow: 0 2px 6px rgba(139,124,84,0.28);
}
.lang-toggle-opt:not(.is-active):hover {
  color: var(--accent-dark); background: rgba(184,170,123,0.12);
}
.lang-toggle-sm .lang-toggle-opt { height: 26px; padding: 0 11px; font-size: 0.7rem; }

/* ─────────────────────────────
   UX IMPROVEMENTS v4
───────────────────────────── */

/* Scroll offset: sticky topbar (60px) + anchor nav (~55px) */
#accesso, #arrivo, #regole, #esplora, #consigli, #zona { scroll-margin-top: 120px; }

/* Anchor nav: bigger tap targets + solid active state */
.guide-anchor-pill { min-height: 40px; padding: 8px 18px; font-size: 0.82rem; }
.guide-anchor-pill.is-active {
  background: var(--accent-dark); color: #fff; border-color: var(--accent-dark);
  box-shadow: 0 2px 8px rgba(139,124,84,0.28);
}

/* Check-in strip: column layout, icons hidden */
.guide-checkin-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 14px 28px; }
.guide-checkin-item svg { display: none; }
.guide-checkin-time { font-size: 1.05rem; }

/* Access section header spacing */
.guide-access-section .section-title { margin-bottom: 8px; }
.guide-access-section .section-intro { margin-bottom: 36px; }

/* Larger monospace for codes + wifi */
.wifi-pass { font-size: 1.2rem; letter-spacing: .14em; }

/* Reliable tap target on maps / directions buttons */
.guide-maps-btn { min-height: 40px; display: inline-flex; align-items: center; }
.btn-transfer { min-height: 48px; }

/* Route option: allow detail badge to wrap on narrow containers */
.guide-route-option-label { flex-wrap: wrap; }

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 900px) {
  .guide-tips-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
@media (max-width: 900px) {
  .guide-access-grid { grid-template-columns: 1fr 1fr; }
  .guide-access-card:last-child { grid-column: 1 / -1; }
  .guide-routes-grid { grid-template-columns: 1fr; }
  .guide-transfer-card { flex-direction: column; gap: 24px; padding: 32px 28px; }
  .guide-transfer-title { font-size: 1.3rem; }
}
@media (max-width: 768px) {
  .guide-access-grid { grid-template-columns: 1fr; gap: 16px; }
  .guide-access-section { padding: 52px 0; }
  .guide-access-card { padding: 24px 20px; }
  .guide-poi-card { grid-template-columns: 44px 1fr; gap: 14px; padding: 16px; }
  .guide-maps-btn { grid-column: 1 / -1; width: 100%; justify-content: center; padding: 11px 16px; }
  .guide-anchor-inner { padding-left: 16px; padding-right: 16px; }
  .guide-rule-card { padding: 14px 16px; gap: 12px; }
  .guide-rule-icon { width: 36px; height: 36px; border-radius: 10px; }
  .guide-tip-card { padding: 20px 16px; gap: 8px; }
  .guide-tip-icon { width: 44px; height: 44px; }
  .guide-nearby-card { padding: 14px 12px; }
  .guide-nearby-icon { width: 38px; height: 38px; margin-bottom: 8px; }
}
@media (max-width: 560px) {
  .guide-hero { padding: 56px 0 52px; }
  .guide-h1 { -webkit-text-fill-color: var(--primary); background: none; color: var(--primary); }
  .guide-access-section { padding: 56px 0; }
  .guide-access-card { padding: 26px 20px; }
  .wifi-card-header { font-size: 1.3rem; }
  .guide-rules-grid { grid-template-columns: 1fr; }
  .guide-tips-grid { grid-template-columns: 1fr; }
  .guide-nearby-grid { grid-template-columns: 1fr 1fr; }
  .guide-checkin-strip { flex-direction: column; gap: 0; width: 100%; max-width: 280px; }
  .guide-checkin-divider { width: 100%; height: 1px; }
  .guide-checkin-item { justify-content: center; }
  .guide-emergency-grid { gap: 8px; }
  .guide-emergency-card { min-width: 80px; padding: 12px 14px; }
  .guide-arrival-section { padding: 52px 0; }
  .guide-route-option { padding: 14px 18px; }
  .guide-route-option-label { flex-direction: column; align-items: flex-start; gap: 4px; }
  .guide-transfer-card { padding: 28px 20px; }
  .guide-transfer-features { justify-content: center; }
  .guide-route-option { grid-template-columns: 36px 1fr; gap: 10px; padding: 16px 20px; }
  .guide-route-option-icon { width: 36px; height: 36px; }
  .guide-route-header { padding: 18px 20px; }
  .guide-route-footer { padding: 14px 20px; }
}

/* ── Footer condiviso migliorato (Equal Studio credit, colonne, NAP) ── */
.footer-inner { gap: 40px 50px; }
.footer-brand { max-width: 300px; }
.footer-address {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-size: 0.85rem; color: rgba(255,255,255,0.62); transition: color .3s;
}
.footer-address:hover { color: var(--accent-light); }
.footer-address svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col h4, .footer-contacts h4 {
  font-family: var(--font-h); font-weight: 400; font-size: 1.02rem;
  color: var(--accent-light); margin: 0 0 8px;
}
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color .3s, transform .3s; width: fit-content; }
.footer-col a:hover { color: var(--accent-light); transform: translateX(4px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 12px 28px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.13);
}
.footer-copy, .footer-credit { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-credit a { color: var(--accent-light); font-weight: 600; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-brand { max-width: none; }
}
