/* ============================================
   HomeMolander — style.css
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --alpine-blue:  #3d6e8a;
  --alpine-light: #e8f2f8;
  --alpine-dark:  #1e3d50;
  --snow:         #f8f9fa;
  --text:         #1a1a1a;
  --text-muted:   #555;
  --text-light:   #888;
  --border:       rgba(0,0,0,0.09);
  --radius:       12px;
  --radius-sm:    8px;
  --green-avail:  #e8f5e9;
  --green-text:   #2e7d32;
  --red-booked:   #fde8e8;
  --red-text:     #c62828;
  --max-width:    1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--snow);
  font-size: 16px;
  line-height: 1.65;
}

/* ── NAV ─────────────────────────────────── */

nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,249,250,0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 1.5rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600;
  color: var(--alpine-dark); text-decoration: none; white-space: nowrap;
  flex-shrink: 0; margin-right: 0.5rem;
}
.nav-links { display: flex; gap: 1.2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 15px; color: var(--text-muted); text-decoration: none; letter-spacing: 0.3px; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--alpine-blue); }
.nav-cta { background: var(--alpine-blue) !important; color: white !important; padding: 6px 12px !important; border-radius: 999px; font-weight: 700; }
.nav-cta:hover { background: var(--alpine-dark) !important; color: white !important; }
.nav-cta.nav-outline { background: transparent !important; color: var(--alpine-blue) !important; border: 2px solid var(--alpine-blue); }
.nav-cta.nav-outline:hover { background: var(--alpine-blue) !important; color: white !important; }
.nav-cta.nav-green { background: #2e7d32 !important; }
.nav-cta.nav-green:hover { background: #1b5e20 !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }

/* ── NAV DROPDOWN ─────────────────────────── */

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 3px; cursor: pointer; }
.nav-arrow { font-size: 10px; transition: transform 0.2s; display: inline-block; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-submenu {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%); background: white; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  list-style: none; min-width: 170px; padding: 6px 0; z-index: 200;
}
.nav-submenu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top: none; border-bottom-color: var(--border);
}
.nav-submenu li a { display: block; padding: 9px 16px; font-size: 13px !important; color: var(--text-muted) !important; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav-submenu li a:hover { background: var(--alpine-light); color: var(--alpine-blue) !important; }
.nav-dropdown:hover .nav-submenu { display: block; animation: dd-fadein 0.15s ease; }
@keyframes dd-fadein {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── HERO ─────────────────────────────────── */

.hero { position: relative; height: 70vh; min-height: 400px; max-height: 600px; overflow: hidden; }
.hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; display: block; }
.hero-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #87CEEB 0%, #4a7a9b 50%, #2e5e7e 100%);
  position: absolute; top: 0; left: 0; display: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 100%, rgba(10,25,40,0.6) 100%);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 2.5rem clamp(1.5rem, 5vw, 3rem);
}
.hero-eyebrow { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 300; margin-bottom: 0.5rem; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,8vw,64px); font-weight: 600; color: #fff; line-height: 1.05; letter-spacing: -1px; }
.hero-sub { font-size: clamp(13px,2vw,16px); color: rgba(255,255,255,0.8); margin-top: 0.75rem; font-weight: 300; }

/* ── PILLS BAR ─────────────────────────────── */

.pills-bar { background: white; border-bottom: 1px solid var(--border); padding: 0 1.5rem; }
.pills-inner { max-width: var(--max-width); margin: 0 auto; display: flex; gap: 0.75rem; padding: 0.85rem 0; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.pills-inner::-webkit-scrollbar { display: none; }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; padding: 5px 14px; border-radius: 999px; background: var(--alpine-light); color: var(--alpine-dark); white-space: nowrap; }
.pill svg { width: 15px; height: 15px; stroke: var(--alpine-blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── LAYOUT ───────────────────────────────── */

.page { max-width: var(--max-width); margin: 0 auto; padding: 0 2.5rem; }
section { padding: 3rem 0; }
section + section { border-top: 1px solid var(--border); }
.section-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--alpine-blue); font-weight: 700; margin-bottom: 0.5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,34px); font-weight: 400; line-height: 1.15; margin-bottom: 1.25rem; }
.section-title em { font-style: italic; color: var(--alpine-blue); }
.desc-text { font-size: 16px; line-height: 1.8; color: var(--text-muted); max-width: 100%; margin-bottom: 2rem; }

/* ── FEATURES ─────────────────────────────── */

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 12px; }
.feat-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center; }
.feat-icon { width: 40px; height: 40px; margin: 0 auto 10px; background: var(--alpine-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.feat-icon svg { width: 20px; height: 20px; stroke: var(--alpine-blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feat-card span { font-size: 13px; color: var(--text-muted); line-height: 1.4; display: block; }

/* ── GALLERY ──────────────────────────────── */

.gallery-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 8px; border-radius: var(--radius); overflow: hidden; }
.gallery-cell { overflow: hidden; position: relative; cursor: zoom-in; }
.gallery-cell.main { grid-row: span 2; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; background: var(--alpine-light); }
.gallery-cell:hover img { transform: scale(1.05); }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent,rgba(0,0,0,0.5)); color: rgba(255,255,255,0.9); font-size: 11px; padding: 1rem 0.75rem 0.5rem; letter-spacing: 0.5px; opacity: 0; transition: opacity 0.3s; }
.gallery-cell:hover .gallery-label { opacity: 1; }
.gallery-note { margin-top: 10px; font-size: 12px; color: var(--text-light); text-align: center; }
.lb-hint { font-size: 12px; opacity: 0.8; margin-left: 4px; }

/* ── LIGHTBOX ─────────────────────────────── */

#lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 9999;
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; animation: lb-fadein 0.2s ease; }
@keyframes lb-fadein { from { opacity: 0; } to { opacity: 1; } }
.lb-img-wrap { max-width: 90vw; max-height: 90vh; text-align: center; position: relative; }
.lb-img-wrap img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,0.6); display: block; margin: 0 auto; animation: lb-scalein 0.2s ease; }
@keyframes lb-scalein { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
#lb-caption { color: rgba(255,255,255,0.75); font-size: 13px; margin-top: 12px; letter-spacing: 0.5px; }
.lb-close { position: fixed; top: 20px; right: 24px; background: rgba(255,255,255,0.12); border: none; color: white; font-size: 20px; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10000; }
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: white; font-size: 32px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10000; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }

/* ── VIDEO ────────────────────────────────── */

.video-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #000; aspect-ratio: 16/9; max-width: 800px; }
.video-wrap video { width: 100%; height: 100%; display: block; object-fit: cover; }
.video-placeholder { aspect-ratio: 16/9; max-width: 800px; background: var(--alpine-light); border: 2px dashed var(--alpine-blue); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 2rem; text-align: center; color: var(--text-muted); }
.video-placeholder svg { width: 48px; height: 48px; stroke: var(--alpine-blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0.6; }
.video-placeholder p { font-size: 14px; line-height: 1.6; }
.video-placeholder code { font-family: monospace; font-size: 13px; background: white; padding: 2px 6px; border-radius: 4px; border: 1px solid var(--border); color: var(--alpine-dark); }

/* ── PLACES ───────────────────────────────── */

.places-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 16px; }
.place-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.place-img { height: 80px; background-size: cover; background-position: center; }
.place-img-1 { background-color: #7ab3c8; background-image: linear-gradient(135deg,#7ab3c8,#3d7a9a); }
.place-img-2 { background-color: #8a7a6a; background-image: linear-gradient(135deg,#8a7a6a,#5a4a3a); }
.place-img-3 { background-color: #7a9a6a; background-image: linear-gradient(135deg,#7a9a6a,#4a6a3a); }
.place-img-4 { background-color: #a0b8d0; background-image: linear-gradient(135deg,#a0b8d0,#5080a8); }
.place-img-5 { background-color: #9a8a7a; background-image: linear-gradient(135deg,#9a8a7a,#6a5a4a); }
.place-img-6 { background-color: #808888; background-image: linear-gradient(135deg,#808888,#505858); }
.place-body { padding: 1rem 1.25rem 1.25rem; }
.place-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--alpine-blue); background: var(--alpine-light); padding: 3px 10px; border-radius: 999px; margin-bottom: 0.5rem; }
.place-card strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.place-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── ACTIVITIES ───────────────────────────── */

.activities-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 12px; }
.act-card { display: flex; gap: 14px; align-items: flex-start; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; }
.act-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--alpine-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.act-icon svg { width: 20px; height: 20px; stroke: var(--alpine-blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.act-card strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.act-card p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ── METEO ────────────────────────────────── */

.meteo-loading { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; padding: 1rem 0; }
.meteo-loading svg { width: 20px; height: 20px; stroke: var(--alpine-blue); fill: none; stroke-width: 2; stroke-linecap: round; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.meteo-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 12px; }
.meteo-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center; }
.meteo-card.today-card { border-color: var(--alpine-blue); background: var(--alpine-light); }
.meteo-date { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.meteo-card.today-card .meteo-date { color: var(--alpine-blue); }
.meteo-icon { font-size: 36px; line-height: 1; margin: 0.5rem 0; }
.meteo-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 0.5rem; line-height: 1.3; }
.meteo-temps { display: flex; justify-content: center; gap: 8px; font-size: 14px; }
.meteo-max { font-weight: 700; color: var(--text); }
.meteo-min { color: var(--text-light); }
.meteo-extra { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }
.meteo-extra span { display: flex; align-items: center; gap: 5px; }
.meteo-extra svg { width: 15px; height: 15px; stroke: var(--alpine-blue); fill: none; stroke-width: 2; stroke-linecap: round; }
.meteo-error { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; font-size: 14px; color: var(--text-muted); }
.meteo-error a { color: var(--alpine-blue); text-decoration: none; font-weight: 700; }

/* ── COME ARRIVARE ────────────────────────── */

.arrive-tabs { display: flex; gap: 8px; margin-bottom: 1.5rem; flex-wrap: wrap; }
.arrive-tab { display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; border-radius: 999px; border: 1px solid var(--border); background: white; font-size: 14px; font-weight: 700; color: var(--text-muted); cursor: pointer; transition: all 0.2s; font-family: 'Lato', sans-serif; }
.arrive-tab svg { width: 16px; height: 16px; stroke: var(--text-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.arrive-tab.active { background: var(--alpine-blue); border-color: var(--alpine-blue); color: white; }
.arrive-tab.active svg { stroke: white; }
.arrive-tab:hover:not(.active) { background: var(--alpine-light); border-color: var(--alpine-blue); color: var(--alpine-dark); }
.arrive-panel { display: block; }
.arrive-panel.hidden { display: none; }
.arrive-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.25rem; }
.arrive-step { display: flex; gap: 16px; align-items: flex-start; padding: 1rem 1rem 1rem 0; position: relative; }
.arrive-step:not(:last-child) { border-left: 2px solid var(--alpine-light); margin-left: 19px; padding-left: 1.25rem; }
.arrive-step:last-child { margin-left: 0; }
.step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--alpine-blue); color: white; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: -38px; position: relative; z-index: 1; }
.arrive-step:last-child .step-num { margin-left: 0; }
.arrive-step strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.arrive-step p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.arrive-info-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0.5rem; }
.arrive-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; padding: 5px 12px; background: var(--alpine-light); border-radius: 999px; color: var(--alpine-dark); }
.arrive-chip svg { width: 13px; height: 13px; stroke: var(--alpine-blue); fill: none; stroke-width: 2; stroke-linecap: round; }
.arrive-chip a { color: var(--alpine-blue); text-decoration: none; font-weight: 700; }

/* ── MAPPA ────────────────────────────────── */

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-bottom: 1rem; }
.map-links { display: flex; gap: 10px; flex-wrap: wrap; }
.map-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; background: white; border: 1px solid var(--border); border-radius: 999px; font-size: 13px; color: var(--text); text-decoration: none; font-weight: 700; transition: background 0.15s, box-shadow 0.15s; }
.map-btn:hover { background: var(--alpine-light); box-shadow: 0 2px 8px rgba(61,110,138,0.12); }
.map-btn svg { width: 15px; height: 15px; stroke: var(--alpine-blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── NOLEGGI ──────────────────────────────── */

.rental-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 1.25rem; }
.rental-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.rental-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rental-ski  { background: #e3eef6; }
.rental-boot { background: #e8f2ff; }
.rental-bike { background: #e8f5e9; }
.rental-trek { background: #fff8e1; }
.rental-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rental-ski  svg { stroke: #1565c0; }
.rental-boot svg { stroke: #3d6e8a; }
.rental-bike svg { stroke: #2e7d32; }
.rental-trek svg { stroke: #e65100; }
.rental-body strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.rental-body ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; margin-bottom: 0.75rem; }
.rental-body ul li { font-size: 13px; color: var(--text-muted); padding-left: 14px; position: relative; line-height: 1.4; }
.rental-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--alpine-blue); font-size: 11px; }
.rental-season { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }
.rental-winter { background: #e3eef6; color: #1565c0; }
.rental-summer { background: #e8f5e9; color: #2e7d32; }
.rental-all    { background: #f3e5f5; color: #6a1b9a; }
.rental-note { display: flex; align-items: flex-start; gap: 10px; background: var(--alpine-light); border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.rental-note svg { width: 18px; height: 18px; stroke: var(--alpine-blue); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; margin-top: 1px; }

/* ── DOTAZIONI ────────────────────────────── */

.dotazioni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.dotaz-group {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.dotaz-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.dotaz-title svg {
  width: 18px; height: 18px;
  stroke: var(--alpine-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.dotaz-group ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dotaz-group ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.dotaz-group ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--alpine-blue);
  font-size: 11px;
  font-weight: 700;
}

/* ── DISPONIBILITÀ LAYOUT ─────────────────── */

.disponibilita-layout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* ── CALENDAR ─────────────────────────────── */

.calendar-wrap { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; flex: 1; min-width: 280px; max-width: 100%; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.cal-nav { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; font-size: 18px; color: var(--text-muted); transition: background 0.15s; }
.cal-nav:hover { background: var(--alpine-light); }
.cal-month-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; text-align: center; }
.cal-day-name { font-size: 11px; color: var(--text-light); padding: 6px 0; font-weight: 700; letter-spacing: 0.5px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 13px; border-radius: var(--radius-sm); color: var(--text); }
.cal-day.available { background: var(--green-avail); color: var(--green-text); font-weight: 700; }
.cal-day.booked { background: var(--red-booked); color: var(--red-text); text-decoration: line-through; }
.cal-day.today { outline: 2px solid var(--alpine-blue); outline-offset: -2px; font-weight: 700; }
.cal-legend { display: flex; gap: 1.5rem; margin-top: 1rem; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; align-items: center; }
.leg-dot { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 5px; vertical-align: middle; }
.leg-dot.avail     { background: var(--green-avail); border: 1px solid #a5d6a7; }
.leg-dot.booked    { background: var(--red-booked);  border: 1px solid #ef9a9a; }
.leg-dot.today-dot { background: none; border: 2px solid var(--alpine-blue); }
.cal-note { margin-top: 1rem; font-size: 13px; color: var(--text-muted); }

/* ── BOOKING FORM ─────────────────────────── */

.booking-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  flex: 1.2;
  min-width: 300px;
  max-width: 100%;
  margin-top: 0;
}
.booking-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.booking-field { display: flex; flex-direction: column; gap: 5px; }
.booking-field label { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); }
.booking-field input[type="date"],
.booking-field select,
.booking-field textarea {
  font-family: 'Lato', sans-serif; font-size: 14px; color: var(--text);
  background: var(--snow); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 9px 12px; outline: none; transition: border-color 0.2s; width: 100%;
}
.booking-field input[type="date"]:focus,
.booking-field select:focus,
.booking-field textarea:focus { border-color: var(--alpine-blue); background: white; }
.booking-field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.book-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--alpine-blue); color: white; border: none; border-radius: 999px;
  padding: 12px 24px; font-size: 14px; font-weight: 700; font-family: 'Lato', sans-serif;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.book-btn:hover { background: var(--alpine-dark); transform: translateY(-1px); }
.book-btn svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── CONTACTS ─────────────────────────────── */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 12px; margin-bottom: 1.5rem; }
.contact-card { display: flex; align-items: center; gap: 16px; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s; }
.contact-card:hover { box-shadow: 0 4px 20px rgba(61,110,138,0.12); transform: translateY(-2px); }
.contact-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-mail { background: #e3eef6; }
.ci-wa   { background: #e8f5e9; }
.contact-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ci-mail svg { stroke: #1565c0; }
.ci-wa   svg { stroke: #2e7d32; }
.contact-card strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.contact-card span { font-size: 13px; color: var(--text-muted); }
.info-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.info-pill { font-size: 12px; padding: 6px 14px; background: white; border: 1px solid var(--border); border-radius: 999px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.info-pill svg { width: 14px; height: 14px; stroke: var(--text-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── FOOTER ───────────────────────────────── */

footer { background: var(--alpine-dark); color: rgba(255,255,255,0.7); text-align: center; padding: 2.5rem 1.5rem; margin-top: 1rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: white; font-style: italic; margin-bottom: 0.5rem; }
footer p { font-size: 13px; margin-top: 4px; }
.footer-release { font-size: 10px; color: rgba(255,255,255,0.25); margin-top: 1.5rem; letter-spacing: 0.5px; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: white; }

/* ── RESPONSIVE ───────────────────────────── */

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 56px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 0.5rem 0; z-index: 200; }
  .nav-links.open li a { display: block; padding: 12px 1.5rem; font-size: 15px; }
  .nav-links.open .nav-cta { margin: 8px 1.5rem; text-align: center; border-radius: var(--radius); padding: 10px 16px !important; display: block; }
  .nav-hamburger { display: flex; }
  .nav-submenu { position: static; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--alpine-light); border-radius: 0; margin-left: 1rem; padding: 0; display: none; }
  .nav-submenu::before { display: none; }
  .nav-dropdown.open .nav-submenu { display: block; }
  .nav-submenu li a { padding: 8px 1rem; }
  .hero { height: 55vh; min-height: 320px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 120px 120px; }
  .gallery-cell.main { grid-column: span 2; grid-row: span 1; }
  .features-grid { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .feat-card { padding: 0.9rem 0.5rem; }
  section { padding: 2rem 0; }
  .activities-grid { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: 1fr; }
  .meteo-grid { grid-template-columns: repeat(2,1fr); }
  .disponibilita-layout { flex-direction: column; }
  .calendar-wrap, .booking-wrap { min-width: 100%; }
  .cal-day { font-size: 12px; }
  .rental-grid { grid-template-columns: repeat(2,1fr); }
  .arrive-step:not(:last-child) { margin-left: 16px; }
  .step-num { width: 32px; height: 32px; font-size: 13px; margin-left: -32px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 24px; }
  .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .cal-day-name { font-size: 10px; }
  .cal-day { font-size: 11px; }
}