/* ============================================================
   HelloChalet — Editorial Slow-Luxury Theme CSS
   ============================================================ */

:root {
  --c-cream: #FFFFFF;
  --c-cream-2: #F5F2EE;
  --c-paper: #FAF8F4;
  --c-ink: #3D3835;
  --c-ink-2: #564B47;
  --c-muted: #8A7F7A;
  --c-line: #E6E1DA;
  --c-line-2: #EFEBE4;
  --c-forest: #1E7AC9;
  --c-forest-2: #155A99;
  --c-deep: #1A4773;
  --c-clay: #1E7AC9;
  --c-clay-2: #155A99;
  --c-gold: #7FB5D7;

  --bg: var(--c-cream);
  --fg: var(--c-ink);
  --accent: var(--c-forest);
  --accent-soft: rgba(30,122,201,0.08);
  --muted: var(--c-muted);
  --line: var(--c-line);

  --f-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --f-eyebrow: "Tenor Sans", "Optima", serif;
  --f-body: "Manrope", -apple-system, "Helvetica Neue", sans-serif;

  --maxw: 1320px;
  --gutter: clamp(24px, 4vw, 64px);
  --section-y: clamp(80px, 10vw, 140px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--c-clay); color: var(--c-paper); }

/* ----------- Typography ----------- */
.eyebrow {
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 400;
  color: var(--c-muted);
}
.eyebrow.dark { color: var(--c-ink); }
.eyebrow.cream { color: var(--c-cream); }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-size: clamp(48px, 7.5vw, 116px);
  margin: 0;
  color: var(--c-ink);
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 400; color: var(--c-forest); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-wrap: balance;
  color: var(--c-ink);
}
h2.section-title { font-size: clamp(40px, 5.5vw, 80px); }
h3 { font-size: clamp(28px, 3vw, 40px); }
h4 { font-size: clamp(22px, 2vw, 28px); }
p { margin: 0; text-wrap: pretty; }
.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--c-ink-2);
  max-width: 56ch;
}

/* ----------- Layout ----------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-y) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-dark { background: var(--c-ink); color: var(--c-cream); }
.section-dark .eyebrow { color: rgba(245,239,229,0.6); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--c-cream); }
.section-dark .lead { color: rgba(245,239,229,0.78); }
.section-forest { background: var(--c-deep); color: var(--c-cream); }
.section-forest .eyebrow { color: rgba(245,239,229,0.7); }
.section-forest h2, .section-forest h3 { color: var(--c-cream); }
.section-forest .lead { color: rgba(245,239,229,0.78); }
.center { text-align: center; }

/* ----------- Header ----------- */
#booking-bar { scroll-margin-top: 100px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,239,229,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--c-line-2);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease,
              backdrop-filter 0.35s ease;
}
/* Homepage: fixed trasparente sopra l'hero */
.site-header.transparent {
  position: fixed; left: 0; right: 0; top: 0; width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(245,239,229,0.16);
  color: var(--c-cream);
}
.site-header.transparent .top-bar { color: rgba(245,239,229,0.8); border-bottom-color: rgba(245,239,229,0.16); }
.site-header.transparent .nav a { color: var(--c-cream); }
.site-header.transparent .logo-img,
.site-header.transparent .custom-logo { filter: brightness(0) invert(1); }
.site-header.transparent .cta-btn { border-color: rgba(245,239,229,0.6); color: var(--c-cream); }
/* Dopo scroll: fixed con blur opaco (transition su background) */
.site-header.transparent.scrolled {
  background: rgba(245,239,229,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--c-line-2);
  color: var(--c-ink);
}
.site-header.transparent.scrolled .top-bar { color: var(--c-muted); border-bottom-color: var(--c-line-2); }
.site-header.transparent.scrolled .nav a { color: var(--c-ink); }
.site-header.transparent.scrolled .logo-img,
.site-header.transparent.scrolled .custom-logo { filter: none; }
.site-header.transparent.scrolled .cta-btn { border-color: var(--c-ink); color: var(--c-ink); }
.site-header.transparent.scrolled .hamburger span { background: var(--c-ink); }
.site-header.transparent.scrolled .hamburger { border-color: rgba(0,0,0,0.2); }

.top-bar {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-line-2);
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; gap: 24px; }
.top-bar .top-links { display: flex; gap: 24px; align-items: center; }
.top-bar .top-links a { display: flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--c-ink); }

.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo .custom-logo-link { display: flex; align-items: center; }
.logo .custom-logo { height: 44px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.logo-img { height: 44px; width: auto; display: block; }

.nav {
  display: flex; gap: 36px;
  font-family: var(--f-eyebrow);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav a { color: var(--c-ink); position: relative; padding: 4px 0; transition: color 0.2s; }
.nav a:hover { color: var(--c-forest); }
.nav a.current-menu-item::after, .nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
}

.header-actions { display: flex; gap: 16px; align-items: center; }
.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  transition: all 0.2s;
  background: none;
}
.icon-btn:hover { border-color: var(--c-forest); color: var(--c-forest); }
.icon-btn svg { display: block; }

.cta-btn {
  font-family: var(--f-eyebrow);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--c-ink);
  border-radius: 999px;
  color: var(--c-ink);
  background: transparent;
  transition: all 0.25s;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover { background: var(--c-ink); color: var(--c-cream); }
.cta-btn.solid { background: var(--c-forest); color: var(--c-cream); border-color: var(--c-forest); }
.cta-btn.solid:hover { background: var(--c-forest-2); border-color: var(--c-forest-2); }
.cta-btn.clay { background: var(--c-clay); color: var(--c-cream); border-color: var(--c-clay); }
.cta-btn.clay:hover { background: var(--c-clay-2); border-color: var(--c-clay-2); }
.cta-btn.ghost-light { border-color: rgba(245,239,229,0.5); color: var(--c-cream); }
.cta-btn.ghost-light:hover { background: var(--c-cream); color: var(--c-ink); border-color: var(--c-cream); }

/* Hamburger mobile */
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: none;
}
.nav-toggle svg { display: block; }

/* ----------- Hero ----------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid; place-items: end start;
  /* Compensa l'header fixed trasparente in homepage */
  margin-top: calc(-1 * var(--header-h, 110px));
  padding: var(--header-h, 110px) 0 clamp(60px, 8vw, 100px) 0;
  color: var(--c-cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: var(--c-ink);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(65deg, rgba(15,18,12,0.72) 0%, rgba(15,18,12,0.42) 38%, rgba(15,18,12,0.12) 70%, rgba(15,18,12,0) 100%),
    linear-gradient(180deg, rgba(15,18,12,0) 55%, rgba(15,18,12,0.55) 100%);
  pointer-events: none;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-content {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 28px;
}
.hero h1 {
  color: var(--c-cream);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  font-style: italic;
  font-weight: 400;
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero h1 em { font-style: normal; color: var(--c-cream); }
.hero-sub {
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: clamp(11px, 0.95vw, 14px);
  color: rgba(245,239,229,0.86);
}
.hero-desc {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 52ch;
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.scroll-hint {
  position: absolute;
  right: var(--gutter);
  bottom: 110px;
  font-family: var(--f-eyebrow);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,239,229,0.7);
  display: flex; align-items: center; gap: 12px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-hint::before {
  content: "";
  width: 1px; height: 40px; background: rgba(245,239,229,0.6);
}

/* ----------- Booking bar ----------- */
.booking-bar {
  margin: -56px auto 0;
  max-width: calc(var(--maxw) - var(--gutter) * 2);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  box-shadow: 0 20px 60px -30px rgba(31,36,25,0.4);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  position: relative; z-index: 4;
}
.booking-bar > * + * { border-left: 1px solid var(--c-line-2); }
.booking-field {
  padding: 22px 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.booking-field .label {
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: var(--c-muted);
}
.booking-field .value {
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  color: var(--c-ink);
}
.booking-field input, .booking-field select {
  border: 0;
  background: transparent;
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  color: var(--c-ink);
  outline: none;
  width: 100%;
  padding: 0;
}
.booking-submit {
  display: grid; place-items: center; padding: 0 36px;
  background: var(--c-forest);
  color: var(--c-cream);
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  cursor: pointer;
  border: 0;
  transition: background 0.25s;
  border-radius: 0 4px 4px 0;
}
.booking-submit:hover { background: var(--c-forest-2); }

/* ----------- Booking bar home (form custom) ----------- */
.booking-bar-section { position: relative; z-index: 4; margin-top: -56px; }
.booking-bar-section .booking-bar-wrap {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  box-shadow: 0 20px 60px -30px rgba(31,36,25,0.4);
  border-radius: 4px;
  overflow: hidden;
}
.hc-search-form { display: flex; align-items: stretch; min-height: 80px; }
.hc-search-field {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 20px 28px;
  border-right: 1px solid var(--c-line-2);
}
.hc-search-field--text { flex: 1.4; }
.hc-search-label {
  font-family: var(--f-eyebrow);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-muted);
}
.hc-search-select,
.hc-search-input {
  background: none; border: 0; outline: none;
  font-family: var(--f-body); font-size: 15px; color: var(--c-ink);
  padding: 0; width: 100%; cursor: pointer;
  appearance: none; -webkit-appearance: none;
}
.hc-search-select option { color: var(--c-ink); background: var(--c-paper); }
.hc-search-divider { width: 1px; background: var(--c-line-2); margin: 16px 0; flex-shrink: 0; }
.hc-search-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 0 36px;
  background: var(--c-forest); color: var(--c-cream);
  border: 0; border-radius: 0 4px 4px 0;
  font-family: var(--f-eyebrow); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.hc-search-btn:hover { background: var(--c-forest-2); }

/* ----------- Section head ----------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head.center { display: block; text-align: center; max-width: 720px; margin-inline: auto; }
.section-head .lead { margin-top: 18px; }

/* ----------- Bento categories ----------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 56px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  isolation: isolate;
}
.bento-card .bento-img,
.bento-card .bento-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bento-card .bento-img img { transition: transform 0.7s ease; }
.bento-card:hover .bento-img img { transform: scale(1.04); }
.bento-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.62) 100%);
  pointer-events: none;
}
.bento-overlay {
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 12px;
  color: var(--c-cream);
  z-index: 1;
}
.bento-eyebrow {
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.bento-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 400;
  color: var(--c-cream);
  line-height: 1.0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.bento-title em { color: var(--c-gold); font-style: italic; }
.bento-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 38ch;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s, max-height 0.4s;
}
.bento-card:hover .bento-desc { opacity: 1; max-height: 120px; }
.bento-link {
  font-family: var(--f-eyebrow);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-cream);
  opacity: 0.9;
  margin-top: 4px;
}

.bento-grid .bento-1 { grid-column: span 6; grid-row: span 2; }
.bento-grid .bento-2 { grid-column: span 3; grid-row: span 1; }
.bento-grid .bento-3 { grid-column: span 3; grid-row: span 1; }
.bento-grid .bento-4 { grid-column: span 3; grid-row: span 1; }
.bento-grid .bento-5 { grid-column: span 3; grid-row: span 1; }

/* ----------- Chalet cards ----------- */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.chalet-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
.chalet-card .img-wrap {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}
.chalet-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.chalet-card:hover .img-wrap img { transform: scale(1.04); }
.chalet-card .meta {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.chalet-card .name {
  font-family: var(--f-display);
  font-size: clamp(22px, 1.8vw, 28px);
  font-style: italic;
  line-height: 1.1;
  color: var(--c-ink);
}
.chalet-card .chalet-sub {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--f-display);
}
.chalet-card .location {
  font-family: var(--f-eyebrow);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 6px;
}
.chalet-card .price {
  text-align: right;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
}
.chalet-card .price small {
  display: block;
  font-family: var(--f-eyebrow);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.chalet-card .badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(250,246,238,0.92);
  color: var(--c-ink);
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}
.chalet-card .wishlist {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(250,246,238,0.92);
  display: grid; place-items: center;
  color: var(--c-ink);
  transition: all 0.2s;
  border: 0;
  cursor: pointer;
}
.chalet-card .wishlist:hover { background: var(--c-clay); color: var(--c-cream); }
.chalet-card .wishlist svg { display: block; }

.signature-grid .card-1,
.signature-grid .card-2,
.signature-grid .card-3,
.signature-grid .card-4,
.signature-grid .card-5,
.signature-grid .card-6 { grid-column: span 4; }

.see-all-row {
  margin-top: 64px;
  display: flex; justify-content: center;
}

/* ----------- Amenity row ----------- */
.amenity-row {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.amenity-row span { display: flex; align-items: center; gap: 6px; }
.amenity-row svg { display: block; flex-shrink: 0; }

/* ----------- Themed blocks ----------- */
.themed-blocks { display: grid; grid-template-columns: 1fr; }
.themed-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 480px;
}
/* Alternanza automatica: blocchi pari hanno immagine a destra */
.themed-block:nth-child(even) .themed-img { order: 2; }
.themed-block:nth-child(even) .themed-copy { order: 1; }
/* Classe esplicita ancora supportata per override dal Customizer */
.themed-block.img-right .themed-img { order: 2; }
.themed-block.img-right .themed-copy { order: 1; }
.themed-block.img-left .themed-img { order: 0; }
.themed-block.img-left .themed-copy { order: 1; }
.themed-block .themed-img,
.themed-block .themed-img img {
  width: 100%; height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.themed-block .themed-copy {
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(48px, 6vw, 96px);
  background: var(--c-cream);
}
.themed-block:nth-child(2) .themed-copy { background: var(--c-paper); }
.themed-block .themed-copy h3 {
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 64px);
  max-width: 14ch;
}
.themed-block .themed-copy h3 em { color: var(--c-forest); }
.themed-block .themed-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink-2);
  max-width: 44ch;
}
.themed-block .themed-copy .cta-btn { align-self: flex-start; margin-top: 4px; }

/* ----------- Pagina Destinazioni ----------- */
.dest-intro {
  max-width: 72ch;
  padding: clamp(28px, 3.5vw, 48px) 0 clamp(24px, 3vw, 36px);
}
.dest-intro h2 {
  font-style: italic;
  font-size: clamp(26px, 2.8vw, 40px);
  margin-top: 10px;
  line-height: 1.15;
}
.dest-intro-text {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dest-intro-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-2);
  max-width: 68ch;
}

.dest-blocks { display: grid; grid-template-columns: 1fr; }
.dest-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 500px;
}
.dest-block.img-right .dest-img { order: 2; }
.dest-block.img-right .dest-copy { order: 1; }
.dest-img,
.dest-img img {
  width: 100%; height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}
.dest-img-placeholder {
  width: 100%; height: 100%;
  min-height: 500px;
  background: var(--c-cream-2);
}
.dest-copy {
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(48px, 6vw, 96px);
  background: var(--c-cream);
}
.dest-block:nth-child(even) .dest-copy { background: var(--c-paper); }
.dest-copy h2 {
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
}
.dest-excerpt p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink-2);
  max-width: 46ch;
}
.dest-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

@media (max-width: 1023px) {
  .dest-block,
  .dest-block.img-right { grid-template-columns: 1fr; }
  .dest-block.img-right .dest-img { order: 0; }
  .dest-block.img-right .dest-copy { order: 1; }
  .dest-img, .dest-img img, .dest-img-placeholder { min-height: 320px; height: 320px; }
}
@media (max-width: 767px) {
  .dest-copy { padding: 36px 24px; }
  .dest-actions { flex-direction: column; }
  .dest-actions .cta-btn { text-align: center; }
}

/* ----------- Host Locale ----------- */
.host-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.host-split .img-wrap {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
}
.host-split .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.host-split .copy { display: flex; flex-direction: column; gap: 28px; }
.host-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.2;
  color: var(--c-ink-2);
  border-left: 1px solid var(--c-line);
  padding-left: 28px;
}
.host-meta {
  display: flex; gap: 24px; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.host-meta .who { font-family: var(--f-display); font-style: italic; font-size: 22px; }
.host-meta .role {
  font-family: var(--f-eyebrow); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 11px; color: var(--c-muted); margin-top: 4px;
}

/* ----------- Experiences ----------- */
.exp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: 56px;
}
.exp-card { display: flex; flex-direction: column; gap: 18px; cursor: pointer; }
.exp-card .img-wrap {
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  overflow: hidden;
}
.exp-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.exp-card:hover .img-wrap img { transform: scale(1.05); }
.exp-card .title { font-family: var(--f-display); font-size: 22px; font-style: italic; }
.exp-card .kind {
  font-family: var(--f-eyebrow);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(245,239,229,0.7);
}

/* ----------- Testimonials ----------- */
.testi-wrap {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 64px;
}
.testi { display: flex; flex-direction: column; gap: 16px; padding-right: 12px; }
.testi .stars { color: var(--c-clay); letter-spacing: 4px; font-size: 14px; }
.testi .quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--c-ink-2);
}
.testi .author {
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--c-muted);
}

/* ----------- Blog ----------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.5vw, 40px);
  margin-top: 56px;
}
.blog-card { display: flex; flex-direction: column; gap: 16px; cursor: pointer; }
.blog-card .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}
.blog-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.blog-card:hover .img-wrap img { transform: scale(1.04); }
.blog-card .blog-meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 4px;
}
.blog-card .blog-title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.2;
  color: var(--c-ink);
  max-width: 22ch;
}
.blog-card .blog-link {
  font-family: var(--f-eyebrow);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-forest);
  margin-top: 4px;
}

/* ----------- Newsletter ----------- */
.newsletter-band {
  position: relative;
  isolation: isolate;
  color: var(--c-cream);
  padding: clamp(56px, 7vw, 96px) 0;
  overflow: hidden;
}
.newsletter-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(26,71,115,0.78) 0%, rgba(26,71,115,0.82) 100%), var(--c-deep);
}
.newsletter-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: end;
}
.newsletter-form { display: flex; gap: 14px; align-items: stretch; }
.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--c-cream);
  font-size: 15px;
  border-radius: 999px;
  outline: none;
  transition: all 0.2s;
}
.newsletter-form input:focus { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }

/* ----------- Footer ----------- */
.site-footer {
  background: var(--c-cream-2);
  color: var(--c-ink);
  padding: clamp(60px, 7vw, 90px) 0 32px;
}
.footer-logo-row {
  display: flex; justify-content: center;
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--c-line);
}
.footer-logo-row img,
.footer-logo-row .custom-logo { height: 56px; width: auto; max-width: 240px; object-fit: contain; display: block; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  padding: clamp(48px, 6vw, 72px) 0 56px;
  border-bottom: 1px solid var(--c-line);
}
.footer-col h5 {
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: var(--c-ink);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; color: var(--c-ink-2); line-height: 1.5; }
.footer-col a { color: var(--c-ink-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--c-forest); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}
.footer-socials { display: flex; gap: 18px; margin-top: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--c-ink);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  transition: all 0.2s;
}
.footer-socials a:hover { color: var(--c-cream); background: var(--c-forest); border-color: var(--c-forest); }
.footer-socials svg { display: block; }

/* ----------- Listings archive ----------- */
/* Wrapper ricerca archivio strutture */
.listings-search-wrap {
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
}
.archive-search-bar {
  background: var(--c-paper);
  overflow: hidden;
}
/* Sezione risultati ricerca (si svela sopra la griglia WP) */
.iw-archive-results-section {
  padding: 48px 0 0;
  background: var(--c-cream);
}
/* Legacy — mantenuto per compatibilità */
.listings-search {
  background: var(--c-cream);
  padding: clamp(36px, 4vw, 56px) 0 clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--c-line);
}
.search-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr auto;
  gap: clamp(20px, 2vw, 32px);
  align-items: end;
}
.search-field {
  display: flex; flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid var(--c-line);
  padding: 10px 0 12px;
}
.search-field .lbl {
  font-family: var(--f-eyebrow);
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.search-field input, .search-field select {
  border: 0;
  background: transparent;
  padding: 4px 0;
  font-size: 16px;
  outline: none;
  color: var(--c-ink);
  width: 100%;
}
.filter-bar {
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line-2);
  padding: 24px 0;
  position: sticky;
  top: 79px;
  z-index: 20;
}
.filter-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.filter-row .left { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; flex: 1; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px;
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-pill:hover { border-color: var(--c-ink); }
.filter-pill.active { background: var(--c-ink); color: var(--c-cream); border-color: var(--c-ink); }
.results-meta {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 32px 0 24px;
}
.results-meta .count { font-family: var(--f-display); font-style: italic; font-size: 20px; color: var(--c-ink-2); }
.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  padding-bottom: 80px;
}
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 8px;
  padding: 0 0 60px;
}
.page-btn {
  min-width: 38px; height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--c-ink-2);
  transition: all 0.2s;
  border: 0;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
}
.page-btn:hover { background: var(--c-line-2); }
.page-btn.active { background: var(--c-forest); color: var(--c-cream); }

/* ----------- Page hero (interno) ----------- */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: grid; align-items: end;
  padding-bottom: 48px;
  color: var(--c-cream);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: var(--c-ink);
}
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(65deg, rgba(15,18,12,0.72) 0%, rgba(15,18,12,0.42) 38%, rgba(15,18,12,0.12) 70%, rgba(15,18,12,0) 100%),
    linear-gradient(180deg, rgba(15,18,12,0) 55%, rgba(15,18,12,0.55) 100%);
  pointer-events: none;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero .container { display: grid; gap: 18px; }
.page-hero h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  font-style: italic;
  color: var(--c-cream);
  line-height: 1.0;
  max-width: 16ch;
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
}
.breadcrumb {
  font-family: var(--f-eyebrow);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,229,0.7);
  display: flex; gap: 12px; align-items: center;
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
}
.breadcrumb a:hover { color: var(--c-cream); }
.breadcrumb .sep { opacity: 0.5; }

/* ----------- Detail page ----------- */
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 72vh;
}
.detail-gallery .gimg { position: relative; overflow: hidden; }
.detail-gallery .gimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-gallery .g-main { grid-row: span 2; }
.detail-gallery .gallery-btn {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(250,246,238,0.92);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--f-eyebrow);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-ink);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  border: 0;
}
.detail-header {
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 60px;
}
.detail-header h1 {
  font-size: clamp(40px, 6vw, 84px);
  font-style: italic;
  line-height: 1.0;
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.detail-header-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-top: 28px;
}
.detail-header .place {
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--c-muted);
  display: flex; align-items: center; gap: 4px;
}
.detail-header .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* ----------- Singola Destinazione ----------- */
.dest-single-hero {
  position: relative;
  min-height: 38vh;
  display: grid; align-items: end;
  padding-bottom: 48px;
  color: var(--c-cream);
  overflow: hidden;
  isolation: isolate;
}
.dest-single-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: var(--c-ink);
}
.dest-single-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,36,25,0.72) 0%, rgba(31,36,25,0.2) 60%, transparent 100%);
}
.dest-single-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-single-hero h1 {
  font-style: italic;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--c-cream);
  margin-top: 10px;
}

/* Layout 2 colonne */
.dest-single-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding: clamp(48px, 6vw, 80px) 0;
}

/* Contenuto editoriale */
.dest-single-content { min-width: 0; }
.dest-single-content h2 {
  font-style: italic;
  font-size: clamp(28px, 3vw, 42px);
  margin: 40px 0 16px;
  line-height: 1.15;
}
.dest-single-content h3 {
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  margin: 32px 0 12px;
}
.dest-single-content p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--c-ink-2);
  margin-bottom: 18px;
  max-width: 64ch;
}
.dest-single-content ul, .dest-single-content ol {
  padding-left: 20px;
  margin-bottom: 18px;
  color: var(--c-ink-2);
  font-size: 17px;
  line-height: 1.7;
}
.dest-single-content li { margin-bottom: 6px; }

/* Sidebar */
.dest-single-sidebar {
  position: sticky;
  top: calc(var(--header-h, 110px) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dest-sidebar-card {
  border: 1px solid var(--c-line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-paper);
}
.dest-sidebar-img { aspect-ratio: 16/9; overflow: hidden; }
.dest-sidebar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-sidebar-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dest-sidebar-body h3 {
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  margin: 0;
}
.dest-sidebar-body p { font-size: 15px; color: var(--c-ink-2); line-height: 1.6; margin: 0; }
.dest-sidebar-body .full-w { width: 100%; text-align: center; margin-top: 4px; }
.dest-sidebar-divider {
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: center;
  padding: 4px 0;
  border-top: 1px solid var(--c-line-2);
  margin-top: 4px;
}
.dest-sidebar-search .iw-avail-search-wrapper { --iw-avail-h: auto; }
.dest-sidebar-search .iw-avail-search-fields {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: unset !important;
  grid-template-areas: unset !important;
  gap: 0 !important;
}
.dest-sidebar-search .iw-avail-field,
.dest-sidebar-search .iw-avail-field-submit {
  padding: 12px 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid var(--c-line-2) !important;
}
.dest-sidebar-search .iw-avail-field-submit { border-bottom: 0 !important; padding: 16px 0 0 !important; }
.dest-sidebar-search .iw-avail-btn { width: 100%; padding: 14px !important; }
.dest-sidebar-search .iw-avail-select,
.dest-sidebar-search .iw-avail-input { font-size: 16px !important; }

.dest-sidebar-contacts {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.dest-sidebar-contacts .lbl {
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.dest-sidebar-contacts a {
  display: flex; align-items: center; gap: 8px;
  color: var(--c-ink);
  font-weight: 500;
}
.dest-sidebar-contacts a:hover { color: var(--c-forest); }

/* Responsive */
@media (max-width: 1023px) {
  .dest-single-layout { grid-template-columns: 1fr; }
  .dest-single-sidebar { position: static; }
  .dest-sidebar-img { aspect-ratio: 16/7; }
}
@media (max-width: 767px) {
  .dest-single-content p { max-width: 100%; }
}
.detail-quick {
  display: flex; flex-wrap: wrap;
  gap: 28px 44px;
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 40px;
}
.detail-quick .item .lbl {
  font-family: var(--f-eyebrow);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-muted);
}
.detail-quick .item .val {
  font-family: var(--f-display); font-style: italic; font-size: 26px; color: var(--c-ink);
}
.detail-section { padding: 32px 0; border-bottom: 1px solid var(--c-line); }
.detail-section:last-child { border-bottom: 0; }
.detail-section h3 { font-style: italic; font-size: clamp(28px, 2.4vw, 36px); margin-bottom: 20px; }
.detail-section .body { font-size: 17px; line-height: 1.7; color: var(--c-ink-2); max-width: 64ch; }

.amenities {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px 36px;
  list-style: none;
  padding: 0; margin: 0;
}
.amenities li {
  display: flex; gap: 12px; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-line-2);
  font-size: 14px;
}
.amenities li .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-forest); flex-shrink: 0; }

.booking-card {
  position: sticky; top: 110px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 12px 40px -20px rgba(31,36,25,0.18);
}
.booking-card .price-row {
  display: flex; align-items: baseline; gap: 8px;
  padding-bottom: 20px; border-bottom: 1px solid var(--c-line-2); margin-bottom: 20px;
}
.booking-card .price-row .from {
  font-family: var(--f-eyebrow); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-muted);
}
.booking-card .price-row .price {
  font-family: var(--f-display); font-style: italic; font-size: 38px; color: var(--c-ink);
}
.booking-card .price-row .per { font-size: 13px; color: var(--c-muted); }
.booking-card .field-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.booking-card .bfield { padding: 14px 18px; display: flex; flex-direction: column; gap: 2px; }
.booking-card .bfield + .bfield { border-left: 1px solid var(--c-line-2); }
.booking-card .bfield.full { grid-column: span 2; border-top: 1px solid var(--c-line-2); border-left: 0; }
.booking-card .bfield .lbl {
  font-family: var(--f-eyebrow); font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-muted);
}
.booking-card .bfield .val { font-size: 14px; color: var(--c-ink-2); }
.booking-card .breakdown {
  font-size: 13px;
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--c-line-2);
  margin-top: 6px;
}
.booking-card .breakdown .row { display: flex; justify-content: space-between; }
.booking-card .breakdown .row.total {
  font-family: var(--f-display); font-style: italic; font-size: 22px;
  padding-top: 14px; border-top: 1px solid var(--c-line-2); margin-top: 6px;
  color: var(--c-ink);
}

/* ----------- Contact ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-info .block .lbl {
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.contact-info .block .val {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.3;
  color: var(--c-ink);
}
.contact-form {
  background: var(--c-paper);
  padding: clamp(36px, 4vw, 56px);
  border-radius: 2px;
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: 22px;
}
.contact-form h3 { font-style: italic; font-size: clamp(26px, 2.4vw, 36px); margin-bottom: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field {
  display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--c-line);
  padding: 10px 0 8px;
}
.field .lbl {
  font-family: var(--f-eyebrow); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--c-muted);
}
.field input, .field textarea, .field select {
  border: 0; background: transparent; padding: 6px 0;
  font-size: 15px; outline: none; resize: none; color: var(--c-ink); width: 100%;
}
.field textarea { min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: var(--c-muted); }
.checkbox-row { display: flex; gap: 12px; align-items: flex-start; font-size: 12px; color: var(--c-muted); }
.checkbox-row input { margin-top: 3px; accent-color: var(--c-forest); }

/* ----------- Divider ----------- */
.divider {
  width: 60px; height: 1px;
  background: var(--c-ink);
  margin: 28px 0;
}
.divider.light { background: rgba(245,239,229,0.5); }
.divider.center { margin-inline: auto; }

/* ----------- Mobile nav ----------- */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: var(--c-paper);
  flex-direction: column;
  padding: 80px var(--gutter) 40px;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 16px;
}
.mobile-menu .close-btn {
  position: absolute; top: 24px; right: var(--gutter);
  font-size: 28px; color: var(--c-ink); background: none; border: 0; cursor: pointer;
}

/* ----------- Responsive ----------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .signature-grid > * { grid-column: span 12 !important; }
  .trio, .testi-wrap, .blog-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  .bento-grid > * { grid-column: span 3 !important; grid-row: span 1 !important; }
  .themed-block, .themed-block.img-right { grid-template-columns: 1fr; }
  .themed-block.img-right .themed-img { order: 0; }
  .themed-block.img-right .themed-copy { order: 1; }
  .themed-block .themed-img, .themed-block .themed-img img { min-height: 320px; height: 320px; }
  .section-head { grid-template-columns: 1fr; }
  .booking-bar { grid-template-columns: 1fr 1fr; }
  .booking-bar > *:nth-child(5) { grid-column: span 2; padding: 18px; text-align: center; }
  .hc-search-form { flex-wrap: wrap; }
  .hc-search-field { flex-basis: 50%; border-bottom: 1px solid var(--c-line-2); }
  .hc-search-divider { display: none; }
  .hc-search-btn { flex-basis: 100%; border-radius: 0 0 4px 4px; padding: 18px; justify-content: center; }
  .detail-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 60vh; }
  .detail-gallery .g-main { grid-row: span 1; grid-column: span 2; }
  .detail-layout, .contact-grid, .host-split, .newsletter-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .list-grid { grid-template-columns: 1fr 1fr; }
  .exp-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .testi-wrap, .blog-grid, .booking-bar, .amenities, .footer-grid { grid-template-columns: 1fr; }
  .hc-search-form { flex-direction: column; }
  .hc-search-field { flex-basis: 100%; border-right: 0; }
  .hc-search-btn { border-radius: 0 0 4px 4px; padding: 18px; justify-content: center; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .bento-grid > * { grid-column: 1 !important; }
  .booking-bar > * + * { border-left: 0; border-top: 1px solid var(--c-line-2); }
  .booking-submit { border-radius: 0 0 4px 4px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: 4px; }
  .list-grid, .exp-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
/* ============================================================
   HelloChalet — Responsive (da mockup tab/mobile ufficiale)
   Breakpoints:
     Desktop large : ≥ 1280px (default)
     Desktop small : 1024–1279px
     Tablet        : 768–1023px
     Mobile large  : 480–767px
     Mobile small  : ≤ 479px
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   Hamburger toggle button
   ───────────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--c-ink); }
.hamburger span {
  display: block;
  width: 18px; height: 1.4px;
  background: var(--c-ink);
  transition: all 0.25s;
}
.site-header.transparent .hamburger span { background: var(--c-cream); }
.site-header.transparent .hamburger { border-color: rgba(245,239,229,0.5); }

/* ─────────────────────────────────────────────────────────────
   Mobile drawer (slide-in da destra)
   ───────────────────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 88vw);
  height: 100vh;
  background: var(--c-cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,.0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: -20px 0 60px -20px rgba(31,36,25,0.3);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(31,36,25,0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--c-line);
}
.mobile-drawer-head img,
.mobile-drawer-head .custom-logo { height: 38px; width: auto; }

.mobile-drawer-close {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  color: var(--c-ink);
  font-size: 24px; line-height: 1;
  cursor: pointer;
  background: transparent;
}
.mobile-drawer-close:hover { border-color: var(--c-ink); }

.mobile-drawer .drawer-nav {
  padding: 32px 28px 20px;
  display: flex; flex-direction: column; gap: 4px;
  list-style: none;
  margin: 0;
}
.mobile-drawer .drawer-nav li { padding: 0; }
.mobile-drawer .drawer-nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line-2);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer .drawer-nav a:hover {
  color: var(--c-forest);
  padding-left: 8px;
}

.mobile-drawer .drawer-cta {
  display: block;
  margin: 24px 28px 0;
  padding: 18px;
  background: var(--c-forest);
  color: var(--c-cream);
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-drawer .drawer-cta:hover { background: var(--c-forest-2); }

.mobile-drawer .drawer-contact {
  padding: 28px;
  border-top: 1px solid var(--c-line);
  background: var(--c-cream-2);
  display: flex; flex-direction: column; gap: 14px;
  font-size: 14px;
  color: var(--c-ink-2);
  margin-top: auto;
}
.mobile-drawer .drawer-contact a {
  display: flex; align-items: center; gap: 10px;
  color: var(--c-ink-2);
  transition: color 0.2s;
}
.mobile-drawer .drawer-contact a:hover { color: var(--c-forest); }
.mobile-drawer .drawer-contact .lbl {
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.mobile-drawer .drawer-contact svg { display: block; flex-shrink: 0; }

/* Header icon-btn: always-show rimane visibile su mobile */
.header-actions .icon-btn { display: grid; }
.header-actions .cta-btn { display: inline-block; }

/* ─────────────────────────────────────────────────────────────
   Tablet (≤ 1023px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  :root {
    --gutter: clamp(20px, 4vw, 40px);
    --section-y: clamp(56px, 8vw, 96px);
    --maxw: 100%;
  }

  .nav { display: none; }
  .header-actions .icon-btn:not(.always-show) { display: none; }
  .header-actions .cta-btn { display: none; }
  .hamburger { display: inline-flex; }

  .top-bar .container { flex-wrap: wrap; gap: 6px; font-size: 11px; }
  .top-bar .top-links a:nth-child(n+2) { display: none; }
  .top-bar .top-links:last-child a:not(:last-child) { display: none; }

  /* Hero */
  .hero { min-height: 78vh; }
  .hero h1 { font-size: clamp(48px, 8.5vw, 84px); }
  .hero-content { gap: 22px; }

  /* Booking bar wrapper (plugin hca) */
  .booking-bar-wrap .hca-form--inline {
    grid-template-columns: 1fr 1fr;
  }
  .booking-bar-wrap .hca-group:nth-child(3),
  .booking-bar-wrap .hca-group:nth-child(4) {
    border-top: 1px solid var(--c-line-2);
  }
  .booking-bar-wrap .hca-group:nth-child(2) { border-left: 1px solid var(--c-line-2); }
  .booking-bar-wrap .hca-group:nth-child(4) { border-left: 1px solid var(--c-line-2); }
  .booking-bar-wrap .hca-group--submit {
    grid-column: span 2;
    padding: 0;
    border-top: 1px solid var(--c-line-2);
  }

  /* Grids → 2 colonne */
  .trio, .exp-row, .list-grid, .testi-wrap,
  .contact-team, .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .signature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .signature-grid > * {
    grid-column: span 1 !important;
    padding-top: 0 !important;
  }
  .signature-grid > * .img-wrap { aspect-ratio: 4 / 3 !important; }

  /* Bento tablet: feature grande + 4 piccole */
  .bento-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 12px; }
  .bento-grid .bento-1 { grid-column: span 4; grid-row: span 2; }
  .bento-grid .bento-2,
  .bento-grid .bento-3,
  .bento-grid .bento-4,
  .bento-grid .bento-5 { grid-column: span 2; grid-row: span 1; }

  /* Themed blocks stack */
  .themed-block, .themed-block.img-right { grid-template-columns: 1fr; min-height: 0; }
  .themed-block.img-right .themed-img { order: 0; }
  .themed-block.img-right .themed-copy { order: 1; }
  .themed-block .themed-img,
  .themed-block .themed-img img { min-height: 300px; height: 300px; }
  .themed-block .themed-copy { padding: 48px 32px; gap: 18px; }
  .themed-block .themed-copy h3 { font-size: clamp(34px, 5vw, 48px); }

  .host-split { grid-template-columns: 1fr; gap: 32px; }
  .host-split .img-wrap { aspect-ratio: 16 / 11; }

  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }

  /* Detail page */
  .detail-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 180px;
    height: auto; gap: 4px;
  }
  .detail-gallery .g-main { grid-column: span 2; grid-row: 1; height: 320px; }
  .detail-gallery .gimg:nth-child(4),
  .detail-gallery .gimg:nth-child(5) { display: none; }
  .detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .booking-card { position: static; max-width: 520px; margin: 0 auto; }
  .amenities { grid-template-columns: 1fr; }

  /* Listings */
  .filter-bar { top: 0; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-row .left { flex-wrap: nowrap; }
  .filter-pill { flex-shrink: 0; }
  .search-row { grid-template-columns: 1fr 1fr; gap: 22px; }
  .search-btn { grid-column: span 2; width: 100%; padding: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-form { padding: 32px 28px; }

  /* Page hero */
  .page-hero h1 { font-size: clamp(40px, 7vw, 64px); }

  /* Type */
  h2.section-title { font-size: clamp(34px, 5vw, 56px) !important; }
  .lead { font-size: 17px; }
}

/* ─────────────────────────────────────────────────────────────
   Mobile (≤ 767px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --section-y: clamp(48px, 12vw, 72px);
  }

  .nav-row { padding: 14px 0; gap: 12px; }
  .logo-img { height: 36px !important; }

  /* Hero */
  .hero { min-height: 88vh; padding-bottom: clamp(44px, 8vw, 64px); }
  .hero h1 { font-size: clamp(40px, 11vw, 60px); line-height: 1; max-width: 12ch; }
  .hero-sub { font-size: 11px; letter-spacing: 0.24em; }
  .hero-desc { font-size: 16px !important; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .cta-btn { width: 100%; text-align: center; justify-content: center; }
  .scroll-hint { display: none; }

  /* Slider controls */
  .hs-controls { bottom: 18px; gap: 12px; }
  .hs-arrow { width: 36px; height: 36px; }

  /* Booking bar plugin */
  .booking-bar-wrap {
    margin-top: -32px;
    border-radius: 8px;
  }
  .booking-bar-wrap .hca-form--inline {
    grid-template-columns: 1fr;
  }
  .booking-bar-wrap .hca-group { border-right: 0; border-top: 1px solid var(--c-line-2); }
  .booking-bar-wrap .hca-group:first-child { border-top: 0; }
  .booking-bar-wrap .hca-group--submit { grid-column: 1; border-top: 1px solid var(--c-line-2); }
  .booking-bar-wrap .hca-btn { width: 100%; border-radius: 0 0 8px 8px; padding: 20px; }

  /* Section heads */
  .section-head, .section-head.center { margin-bottom: 32px; }
  .section-head.center { text-align: center; }
  .section-head .lead { font-size: 16px; }

  /* Type */
  h2.section-title { font-size: clamp(30px, 8vw, 44px) !important; }
  h3 { font-size: clamp(24px, 6vw, 32px); }
  .lead { font-size: 15.5px; line-height: 1.55; }
  .section { padding: 56px 0 !important; }

  /* All grids → 1 colonna */
  .trio, .exp-row, .list-grid, .testi-wrap,
  .contact-team, .blog-grid, .signature-grid,
  .amenities, .form-row, .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .form-row { gap: 14px !important; }

  /* Bento mobile: tutto stack */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 10px;
  }
  .bento-grid > * { grid-column: 1 !important; grid-row: span 1 !important; }
  .bento-grid .bento-1 { grid-row: span 1 !important; }
  .bento-overlay { padding: 22px; }
  .bento-title { font-size: 28px; }
  .bento-desc { opacity: 1 !important; max-height: 200px !important; font-size: 12.5px; }

  /* Chalet card */
  .chalet-card .meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .chalet-card .price { text-align: left; }
  .amenity-row { gap: 12px; }

  /* Detail */
  .detail-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 130px 130px;
    height: auto; gap: 4px;
  }
  .detail-gallery .g-main { grid-row: 1 !important; grid-column: 1 !important; height: 240px; }
  .detail-gallery .gimg:nth-child(2) { grid-row: 2 !important; grid-column: 1 !important; }
  .detail-gallery .gimg:nth-child(3) { grid-row: 3 !important; grid-column: 1 !important; }
  .detail-gallery .gimg:nth-child(4),
  .detail-gallery .gimg:nth-child(5) { display: none; }
  .detail-header { padding: 32px 0 24px; margin-bottom: 36px; }
  .detail-header h1 { font-size: clamp(30px, 7vw, 44px); }
  .detail-quick { gap: 18px 28px; padding: 22px 0 28px; }
  .detail-quick .item .val { font-size: 18px; }
  .detail-section { padding: 24px 0; }
  .detail-section h3 { font-size: clamp(24px, 6vw, 30px); }
  .detail-section .body { font-size: 15px; }
  .detail-header .actions { gap: 8px; flex-wrap: wrap; }
  .detail-header .actions .cta-btn { font-size: 10px; padding: 12px 18px; letter-spacing: 0.18em; }
  .booking-card { padding: 24px; max-width: 100%; }
  .booking-card .price-row .price { font-size: 30px; }

  /* Themed blocks */
  .themed-block .themed-copy { padding: 36px 22px; }
  .themed-block .themed-copy h3 { font-size: clamp(28px, 7vw, 38px); }

  /* Host */
  .host-quote { font-size: 18px; padding-left: 18px; }
  .host-meta { flex-wrap: wrap; gap: 14px; }
  .host-meta .cta-btn { margin-left: 0 !important; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form input { border-radius: 999px; padding: 14px 20px; }
  .newsletter-form .cta-btn { width: 100%; padding: 14px; text-align: center; }

  /* Footer */
  .footer-col li, .footer-col a { font-size: 14px; }
  .footer-socials { justify-content: flex-start; }
  .footer-logo-row img { height: 44px !important; }
  .site-footer { padding: 60px 0 28px; }

  /* Listings */
  .search-row { grid-template-columns: 1fr; gap: 16px; }
  .search-btn { grid-column: 1; width: 100%; }
  .results-meta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 0 18px; }
  .pagination .page-btn { min-width: 32px; height: 32px; padding: 0 10px; font-size: 12px; }

  /* Contact */
  .contact-info .block .val { font-size: 22px; }
  .contact-info .block p { font-size: 14px; }
  .filter-pill { font-size: 12px; padding: 8px 14px; }

  /* Page hero */
  .page-hero { min-height: 42vh !important; padding-bottom: 36px; }
  .page-hero h1 { font-size: clamp(34px, 9vw, 52px); max-width: 14ch; }

  /* Drawer mobile */
  .mobile-drawer .drawer-nav a { font-size: 24px; padding: 14px 0; }
}

/* ─────────────────────────────────────────────────────────────
   Very small (≤ 380px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 380px) {
  .top-bar { display: none; }
  .hero h1 { font-size: clamp(36px, 11vw, 50px); }
  .bento-grid { grid-auto-rows: 220px; }
}
/* ============================================================
/* ============================================================
   HelloChalet — Responsive (da mockup tab/mobile ufficiale)
   Breakpoints:
     Desktop large : ≥ 1280px (default)
     Desktop small : 1024–1279px
     Tablet        : 768–1023px
     Mobile large  : 480–767px
     Mobile small  : ≤ 479px
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   Hamburger toggle button
   ───────────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--c-ink); }
.hamburger span {
  display: block;
  width: 18px; height: 1.4px;
  background: var(--c-ink);
  transition: all 0.25s;
}
.site-header.transparent .hamburger span { background: var(--c-cream); }
.site-header.transparent .hamburger { border-color: rgba(245,239,229,0.5); }

/* ─────────────────────────────────────────────────────────────
   Mobile drawer (slide-in da destra)
   ───────────────────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 88vw);
  height: 100vh;
  background: var(--c-cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,.0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: -20px 0 60px -20px rgba(31,36,25,0.3);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(31,36,25,0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--c-line);
}
.mobile-drawer-head img,
.mobile-drawer-head .custom-logo { height: 38px; width: auto; }

.mobile-drawer-close {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  color: var(--c-ink);
  font-size: 24px; line-height: 1;
  cursor: pointer;
  background: transparent;
}
.mobile-drawer-close:hover { border-color: var(--c-ink); }

.mobile-drawer .drawer-nav {
  padding: 32px 28px 20px;
  display: flex; flex-direction: column; gap: 4px;
  list-style: none;
  margin: 0;
}
.mobile-drawer .drawer-nav li { padding: 0; }
.mobile-drawer .drawer-nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line-2);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer .drawer-nav a:hover {
  color: var(--c-forest);
  padding-left: 8px;
}

.mobile-drawer .drawer-cta {
  display: block;
  margin: 24px 28px 0;
  padding: 18px;
  background: var(--c-forest);
  color: var(--c-cream);
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-drawer .drawer-cta:hover { background: var(--c-forest-2); }

.mobile-drawer .drawer-contact {
  padding: 28px;
  border-top: 1px solid var(--c-line);
  background: var(--c-cream-2);
  display: flex; flex-direction: column; gap: 14px;
  font-size: 14px;
  color: var(--c-ink-2);
  margin-top: auto;
}
.mobile-drawer .drawer-contact a {
  display: flex; align-items: center; gap: 10px;
  color: var(--c-ink-2);
  transition: color 0.2s;
}
.mobile-drawer .drawer-contact a:hover { color: var(--c-forest); }
.mobile-drawer .drawer-contact .lbl {
  font-family: var(--f-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.mobile-drawer .drawer-contact svg { display: block; flex-shrink: 0; }

/* Header icon-btn: always-show rimane visibile su mobile */
.header-actions .icon-btn { display: grid; }
.header-actions .cta-btn { display: inline-block; }

/* ─────────────────────────────────────────────────────────────
   Tablet (≤ 1023px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  :root {
    --gutter: clamp(20px, 4vw, 40px);
    --section-y: clamp(56px, 8vw, 96px);
    --maxw: 100%;
  }

  .nav { display: none; }
  .header-actions .icon-btn:not(.always-show) { display: none; }
  .header-actions .cta-btn { display: none; }
  .hamburger { display: inline-flex; }

  .top-bar .container { flex-wrap: wrap; gap: 6px; font-size: 11px; }
  .top-bar .top-links a:nth-child(n+2) { display: none; }
  .top-bar .top-links:last-child a:not(:last-child) { display: none; }

  /* Hero */
  .hero { min-height: 78vh; }
  .hero h1 { font-size: clamp(48px, 8.5vw, 84px); }
  .hero-content { gap: 22px; }

  /* Booking bar wrapper (plugin hca) */
  .booking-bar-wrap .hca-form--inline {
    grid-template-columns: 1fr 1fr;
  }
  .booking-bar-wrap .hca-group:nth-child(3),
  .booking-bar-wrap .hca-group:nth-child(4) {
    border-top: 1px solid var(--c-line-2);
  }
  .booking-bar-wrap .hca-group:nth-child(2) { border-left: 1px solid var(--c-line-2); }
  .booking-bar-wrap .hca-group:nth-child(4) { border-left: 1px solid var(--c-line-2); }
  .booking-bar-wrap .hca-group--submit {
    grid-column: span 2;
    padding: 0;
    border-top: 1px solid var(--c-line-2);
  }

  /* Grids → 2 colonne */
  .trio, .exp-row, .list-grid, .testi-wrap,
  .contact-team, .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .signature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .signature-grid > * {
    grid-column: span 1 !important;
    padding-top: 0 !important;
  }
  .signature-grid > * .img-wrap { aspect-ratio: 4 / 3 !important; }

  /* Bento tablet: feature grande + 4 piccole */
  .bento-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 12px; }
  .bento-grid .bento-1 { grid-column: span 4; grid-row: span 2; }
  .bento-grid .bento-2,
  .bento-grid .bento-3,
  .bento-grid .bento-4,
  .bento-grid .bento-5 { grid-column: span 2; grid-row: span 1; }

  /* Themed blocks stack */
  .themed-block, .themed-block.img-right { grid-template-columns: 1fr; min-height: 0; }
  .themed-block.img-right .themed-img { order: 0; }
  .themed-block.img-right .themed-copy { order: 1; }
  .themed-block .themed-img,
  .themed-block .themed-img img { min-height: 300px; height: 300px; }
  .themed-block .themed-copy { padding: 48px 32px; gap: 18px; }
  .themed-block .themed-copy h3 { font-size: clamp(34px, 5vw, 48px); }

  .host-split { grid-template-columns: 1fr; gap: 32px; }
  .host-split .img-wrap { aspect-ratio: 16 / 11; }

  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }

  /* Detail page */
  .detail-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 180px;
    height: auto; gap: 4px;
  }
  .detail-gallery .g-main { grid-column: span 2; grid-row: 1; height: 320px; }
  .detail-gallery .gimg:nth-child(4),
  .detail-gallery .gimg:nth-child(5) { display: none; }
  .detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .booking-card { position: static; max-width: 520px; margin: 0 auto; }
  .amenities { grid-template-columns: 1fr; }

  /* Listings */
  .filter-bar { top: 0; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-row .left { flex-wrap: nowrap; }
  .filter-pill { flex-shrink: 0; }
  .search-row { grid-template-columns: 1fr 1fr; gap: 22px; }
  .search-btn { grid-column: span 2; width: 100%; padding: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-form { padding: 32px 28px; }

  /* Page hero */
  .page-hero h1 { font-size: clamp(40px, 7vw, 64px); }

  /* Type */
  h2.section-title { font-size: clamp(34px, 5vw, 56px) !important; }
  .lead { font-size: 17px; }
}

/* ─────────────────────────────────────────────────────────────
   Mobile (≤ 767px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --section-y: clamp(48px, 12vw, 72px);
  }

  .nav-row { padding: 14px 0; gap: 12px; }
  .logo-img { height: 36px !important; }

  /* Hero */
  .hero { min-height: 88vh; padding-bottom: clamp(44px, 8vw, 64px); }
  .hero h1 { font-size: clamp(40px, 11vw, 60px); line-height: 1; max-width: 12ch; }
  .hero-sub { font-size: 11px; letter-spacing: 0.24em; }
  .hero-desc { font-size: 16px !important; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .cta-btn { width: 100%; text-align: center; justify-content: center; }
  .scroll-hint { display: none; }

  /* Slider controls */
  .hs-controls { bottom: 18px; gap: 12px; }
  .hs-arrow { width: 36px; height: 36px; }

  /* Booking bar plugin */
  .booking-bar-wrap {
    margin-top: -32px;
    border-radius: 8px;
  }
  .booking-bar-wrap .hca-form--inline {
    grid-template-columns: 1fr;
  }
  .booking-bar-wrap .hca-group { border-right: 0; border-top: 1px solid var(--c-line-2); }
  .booking-bar-wrap .hca-group:first-child { border-top: 0; }
  .booking-bar-wrap .hca-group--submit { grid-column: 1; border-top: 1px solid var(--c-line-2); }
  .booking-bar-wrap .hca-btn { width: 100%; border-radius: 0 0 8px 8px; padding: 20px; }

  /* Section heads */
  .section-head, .section-head.center { margin-bottom: 32px; }
  .section-head.center { text-align: center; }
  .section-head .lead { font-size: 16px; }

  /* Type */
  h2.section-title { font-size: clamp(30px, 8vw, 44px) !important; }
  h3 { font-size: clamp(24px, 6vw, 32px); }
  .lead { font-size: 15.5px; line-height: 1.55; }
  .section { padding: 56px 0 !important; }

  /* All grids → 1 colonna */
  .trio, .exp-row, .list-grid, .testi-wrap,
  .contact-team, .blog-grid, .signature-grid,
  .amenities, .form-row, .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .form-row { gap: 14px !important; }

  /* Bento mobile: tutto stack */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 10px;
  }
  .bento-grid > * { grid-column: 1 !important; grid-row: span 1 !important; }
  .bento-grid .bento-1 { grid-row: span 1 !important; }
  .bento-overlay { padding: 22px; }
  .bento-title { font-size: 28px; }
  .bento-desc { opacity: 1 !important; max-height: 200px !important; font-size: 12.5px; }

  /* Chalet card */
  .chalet-card .meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .chalet-card .price { text-align: left; }
  .amenity-row { gap: 12px; }

  /* Detail */
  .detail-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 130px 130px;
    height: auto; gap: 4px;
  }
  .detail-gallery .g-main { grid-row: 1 !important; grid-column: 1 !important; height: 240px; }
  .detail-gallery .gimg:nth-child(2) { grid-row: 2 !important; grid-column: 1 !important; }
  .detail-gallery .gimg:nth-child(3) { grid-row: 3 !important; grid-column: 1 !important; }
  .detail-gallery .gimg:nth-child(4),
  .detail-gallery .gimg:nth-child(5) { display: none; }
  .detail-header { padding: 32px 0 24px; margin-bottom: 36px; }
  .detail-header h1 { font-size: clamp(30px, 7vw, 44px); }
  .detail-quick { gap: 18px 28px; padding: 22px 0 28px; }
  .detail-quick .item .val { font-size: 18px; }
  .detail-section { padding: 24px 0; }
  .detail-section h3 { font-size: clamp(24px, 6vw, 30px); }
  .detail-section .body { font-size: 15px; }
  .detail-header .actions { gap: 8px; flex-wrap: wrap; }
  .detail-header .actions .cta-btn { font-size: 10px; padding: 12px 18px; letter-spacing: 0.18em; }
  .booking-card { padding: 24px; max-width: 100%; }
  .booking-card .price-row .price { font-size: 30px; }

  /* Themed blocks */
  .themed-block .themed-copy { padding: 36px 22px; }
  .themed-block .themed-copy h3 { font-size: clamp(28px, 7vw, 38px); }

  /* Host */
  .host-quote { font-size: 18px; padding-left: 18px; }
  .host-meta { flex-wrap: wrap; gap: 14px; }
  .host-meta .cta-btn { margin-left: 0 !important; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form input { border-radius: 999px; padding: 14px 20px; }
  .newsletter-form .cta-btn { width: 100%; padding: 14px; text-align: center; }

  /* Footer */
  .footer-col li, .footer-col a { font-size: 14px; }
  .footer-socials { justify-content: flex-start; }
  .footer-logo-row img { height: 44px !important; }
  .site-footer { padding: 60px 0 28px; }

  /* Listings */
  .search-row { grid-template-columns: 1fr; gap: 16px; }
  .search-btn { grid-column: 1; width: 100%; }
  .results-meta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 0 18px; }
  .pagination .page-btn { min-width: 32px; height: 32px; padding: 0 10px; font-size: 12px; }

  /* Contact */
  .contact-info .block .val { font-size: 22px; }
  .contact-info .block p { font-size: 14px; }
  .filter-pill { font-size: 12px; padding: 8px 14px; }

  /* Page hero */
  .page-hero { min-height: 42vh !important; padding-bottom: 36px; }
  .page-hero h1 { font-size: clamp(34px, 9vw, 52px); max-width: 14ch; }

  /* Drawer mobile */
  .mobile-drawer .drawer-nav a { font-size: 24px; padding: 14px 0; }
}

/* ─────────────────────────────────────────────────────────────
   Very small (≤ 380px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 380px) {
  .top-bar { display: none; }
  .hero h1 { font-size: clamp(36px, 11vw, 50px); }
  .bento-grid { grid-auto-rows: 220px; }
}
/* ============================================================
   Hero Slider
   ============================================================ */

.hero-slider {
  min-height: 92vh;
  display: block;         /* override grid per gestire i layer */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--c-cream);
}

/* ---- Sfondi ---- */
.hs-bgs {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hs-bg {
  position: absolute;
  inset: 0;
  background: var(--c-ink);
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity;
}
.hs-bg.is-active { opacity: 1; }
.hs-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(65deg, rgba(15,18,12,0.72) 0%, rgba(15,18,12,0.42) 38%, rgba(15,18,12,0.12) 70%, rgba(15,18,12,0) 100%),
    linear-gradient(180deg, rgba(15,18,12,0) 55%, rgba(15,18,12,0.55) 100%);
  pointer-events: none;
}
.hs-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Contenuti ---- */
.hs-contents {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hs-content {
  grid-area: 1 / 1;          /* tutti i contenuti sovrapposti nella stessa cella */
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 28px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
  pointer-events: none;
}
.hs-content.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hs-content h1 {
  color: var(--c-cream);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  font-style: italic;
  font-weight: 400;
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hs-content h1 em { font-style: normal; color: var(--c-cream); }

/* ---- Controlli ---- */
.hs-controls {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.hs-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245,239,229,0.45);
  background: rgba(15,18,12,0.25);
  backdrop-filter: blur(8px);
  color: var(--c-cream);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}
.hs-arrow:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(245,239,229,0.8);
}
.hs-arrow svg { display: block; }

.hs-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hs-dot {
  width: 28px; height: 2px;
  border-radius: 999px;
  background: rgba(245,239,229,0.4);
  border: 0;
  cursor: pointer;
  transition: all 0.35s;
  padding: 0;
}
.hs-dot.is-active {
  background: var(--c-cream);
  width: 48px;
}

/* ---- Progress bar ---- */
.hs-progress {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  background: var(--c-forest);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* scroll-hint non più assoluto nel slider (rimane in basso a destra) */
.hero-slider .scroll-hint {
  position: absolute;
  right: var(--gutter);
  bottom: 48px;
  z-index: 5;
}

@media (max-width: 640px) {
  .hs-controls { bottom: 24px; gap: 14px; }
  .hs-arrow { width: 36px; height: 36px; }
  .hero-slider .scroll-hint { display: none; }
}

/* ============================================================
   Single struttura — gallery wrap + booking calendar
   ============================================================ */

.detail-gallery-wrap {
  width: 100%;
  overflow: hidden;
}

/* booking-card: contacts row (replaces old manager contact) */
.booking-card-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line-2);
  margin-top: 18px;
  font-size: 13px;
  color: var(--c-muted);
}
.booking-card-contacts .lbl {
  font-family: var(--f-eyebrow);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 3px;
}
.booking-card-contacts a {
  color: var(--c-ink);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.booking-card-contacts a:hover { text-decoration: underline; }

/* iw_calendar integration inside booking card */
.booking-calendar-wrap {
  margin-bottom: 16px;
}
.booking-calendar-wrap .iw-calendar-wrap,
.booking-calendar-wrap .iw-calendar {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  font-family: var(--f-body) !important;
}
.booking-calendar-wrap .iw-cal-head {
  font-family: var(--f-eyebrow) !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--c-muted) !important;
  padding: 0 0 12px !important;
  border-bottom: 1px solid var(--c-line-2) !important;
  margin-bottom: 12px !important;
}
.booking-calendar-wrap .iw-cal-nav button {
  background: transparent !important;
  border: 1px solid var(--c-line) !important;
  border-radius: 50% !important;
  color: var(--c-ink) !important;
  width: 28px !important;
  height: 28px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.booking-calendar-wrap .iw-cal-nav button:hover {
  background: var(--c-cream-2) !important;
}
.booking-calendar-wrap .iw-cal-day {
  font-size: 13px !important;
  color: var(--c-ink-2) !important;
}
.booking-calendar-wrap .iw-cal-day.available {
  color: var(--c-ink) !important;
  font-weight: 500 !important;
}
.booking-calendar-wrap .iw-cal-day.booked,
.booking-calendar-wrap .iw-cal-day.unavailable {
  color: var(--c-muted) !important;
  text-decoration: line-through !important;
}
.booking-calendar-wrap .iw-cal-day.selected,
.booking-calendar-wrap .iw-cal-day.in-range {
  background: var(--c-forest) !important;
  color: var(--c-cream) !important;
  border-radius: 2px !important;
}
.booking-calendar-wrap .iw-cal-legend {
  font-family: var(--f-eyebrow) !important;
  font-size: 9.5px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--c-muted) !important;
  margin-top: 12px !important;
}
.booking-calendar-wrap .iw-cal-cta,
.booking-calendar-wrap .iw-calendar-btn {
  display: block !important;
  width: 100% !important;
  background: var(--c-ink) !important;
  color: var(--c-cream) !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-family: var(--f-eyebrow) !important;
  font-size: 11px !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  padding: 16px !important;
  cursor: pointer !important;
  margin-top: 16px !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: opacity 0.2s !important;
}
.booking-calendar-wrap .iw-cal-cta:hover,
.booking-calendar-wrap .iw-calendar-btn:hover { opacity: 0.85 !important; }


/* ============================================================
   iw-booking-widget — integrazione in booking-card
   Solo sfondo e padding: il resto del widget rimane invariato
   ============================================================ */

.booking-card .iw-booking-widget {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
}

/* Padding card leggermente ridotto per bilanciare il widget interno */
.booking-card { padding: 28px; }

/* ============================================================
   Esperienze — pagina hub + griglia servizi
   ============================================================ */

/* Split due blocchi homepage esperienze */
.esp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.esp-block {
  display: flex;
  flex-direction: column;
}
.esp-block-img {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}
.esp-block-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.esp-block-img:hover img { transform: scale(1.04); }
.esp-block-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,36,25,0.35) 0%, transparent 60%);
}
.esp-block-body {
  padding: 28px 0 0;
}
.esp-block-body h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--c-ink);
  margin: 8px 0 14px;
  line-height: 1.15;
}
.esp-block-body p {
  font-size: 15px;
  color: var(--c-ink-2);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 44ch;
}

/* Griglia servizi */
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.servizio-card {
  display: flex;
  flex-direction: column;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.servizio-card:hover {
  box-shadow: 0 12px 40px -16px rgba(31,36,25,0.2);
}
.servizio-card-img {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.servizio-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.servizio-card:hover .servizio-card-img img { transform: scale(1.04); }
.servizio-card-placeholder {
  width: 100%; height: 100%;
  background: var(--c-cream-2);
}
.servizio-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.servizio-card-body h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.25;
}
.servizio-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.servizio-card-body h3 a:hover { text-decoration: underline; }
.servizio-card-body p {
  font-size: 13px;
  color: var(--c-ink-2);
  line-height: 1.6;
  margin: 4px 0 8px;
  flex: 1;
}
.servizio-card-body .cta-btn { align-self: flex-start; margin-top: auto; }

/* Responsive */
@media (max-width: 1023px) {
  .servizi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .esp-split { grid-template-columns: 1fr; gap: 40px; }
  .servizi-grid { grid-template-columns: 1fr; gap: 24px; }
  .servizio-card-img { aspect-ratio: 16 / 9; }
}

/* ============================================================
   Blog — archive (home.php) + single post
   ============================================================ */

/* --- Archive grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}
.blog-card { display: flex; flex-direction: column; }
.blog-card-img {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
  background: var(--c-cream-2);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-placeholder { width: 100%; height: 100%; background: var(--c-cream-2); }
.blog-card-body { padding: 20px 0 0; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.blog-card-meta {
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: flex; align-items: center; gap: 8px;
}
.blog-card-meta a { color: var(--c-muted); text-decoration: none; }
.blog-card-meta a:hover { color: var(--c-ink); }
.sep-dot { opacity: 0.5; }
.blog-card-title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.25;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { text-decoration: underline; }
.blog-card-excerpt {
  font-size: 14px;
  color: var(--c-ink-2);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-read {
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink);
  text-decoration: none;
  margin-top: 4px;
}
.blog-card-read:hover { text-decoration: underline; }

/* --- Single post hero --- */
.post-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  background: var(--c-deep);
}
.post-hero--noimag {
  min-height: 32vh;
  background: var(--c-deep);
}
.post-hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.post-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.post-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,18,13,0.72) 0%, rgba(15,18,13,0.25) 55%, transparent 100%);
}
.post-hero .container { position: relative; z-index: 1; }
.post-hero .breadcrumb a,
.post-hero .breadcrumb span { color: rgba(245,239,229,0.7); }
.post-hero h1 {
  color: var(--c-cream);
  max-width: 22ch;
  margin-top: 16px;
}
.post-hero-meta {
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,229,0.65);
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px;
}

/* --- Single post layout --- */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  padding: 60px 0 80px;
  align-items: start;
}
.post-content { min-width: 0; }

/* Prose — contenuto editoriale */
.prose { font-size: 17px; line-height: 1.8; color: var(--c-ink-2); }
.prose h2 { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(24px,2.2vw,32px); color: var(--c-ink); margin: 48px 0 16px; line-height: 1.2; }
.prose h3 { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(20px,1.8vw,26px); color: var(--c-ink); margin: 36px 0 12px; }
.prose p { margin: 0 0 22px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 22px; }
.prose li { margin-bottom: 8px; }
.prose img { width: 100%; height: auto; border-radius: 2px; margin: 32px 0; display: block; }
.prose a { color: var(--c-forest); text-decoration: underline; }
.prose blockquote { border-left: 3px solid var(--c-forest); padding-left: 24px; margin: 32px 0; font-style: italic; color: var(--c-ink); font-family: var(--f-display); font-size: 1.15em; }
.prose strong { color: var(--c-ink); font-weight: 600; }

/* Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--c-line-2); }

/* Navigazione prev/next */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--c-line-2);
}
.post-nav-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.post-nav-item:hover { border-color: var(--c-ink); background: var(--c-cream-2); }
.post-nav-item--next { text-align: right; }
.post-nav-dir {
  font-family: var(--f-eyebrow);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.post-nav-title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--c-ink);
  line-height: 1.3;
}

/* --- Sidebar --- */
.post-sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 32px; }
.sidebar-block {
  border: 1px solid var(--c-line);
  border-radius: 2px;
  padding: 24px;
}
.sidebar-block-title {
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.sidebar-posts { display: flex; flex-direction: column; gap: 16px; }
.sidebar-post {
  display: flex; gap: 14px; align-items: flex-start;
  text-decoration: none; color: inherit;
}
.sidebar-post-img {
  flex-shrink: 0;
  width: 72px; height: 56px;
  overflow: hidden; border-radius: 2px;
}
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-post-body { display: flex; flex-direction: column; gap: 4px; }
.sidebar-post-date {
  font-family: var(--f-eyebrow);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.sidebar-post-title {
  font-size: 13px;
  color: var(--c-ink);
  line-height: 1.4;
  font-family: var(--f-display);
  font-style: italic;
}
.sidebar-post:hover .sidebar-post-title { text-decoration: underline; }

.sidebar-cta-block { background: var(--c-deep); border-color: transparent; }
.sidebar-cta-block .eyebrow { color: rgba(245,239,229,0.6); }
.sidebar-cta-block h3 {
  font-family: var(--f-display); font-style: italic;
  font-size: 22px; font-weight: 400;
  color: var(--c-cream); margin: 10px 0 10px;
}
.sidebar-cta-block p { font-size: 13px; color: rgba(245,239,229,0.7); margin-bottom: 20px; }
.full-w { width: 100%; text-align: center; justify-content: center; }

/* --- Responsive --- */
@media (max-width: 1023px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-sidebar { position: static; }
}
@media (max-width: 767px) {
  .blog-grid { grid-template-columns: 1fr; gap: 32px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-item--next { text-align: left; }
}

/* ============================================================
   Filtri avanzati — Case e Chalet
   ============================================================ */

.filter-row--pills {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line-2);
  margin-bottom: 0;
}
.filter-row--advanced {
  padding: 18px 0 20px;
}
.adv-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 20px;
}
.adv-filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 160px;
}
.adv-filter-group--search { flex: 1; min-width: 200px; }
.adv-filter-label {
  font-family: var(--f-eyebrow);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.adv-filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--c-paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  padding: 9px 34px 9px 12px;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-ink);
  cursor: pointer;
  transition: border-color 0.2s;
  width: 100%;
}
.adv-filter-select:focus { outline: none; border-color: var(--c-ink); }
.adv-filter-select:hover { border-color: var(--c-ink-2); }
.adv-filter-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.adv-filter-search-wrap svg {
  position: absolute;
  right: 12px;
  color: var(--c-muted);
  pointer-events: none;
}
.adv-filter-input {
  border: 1px solid var(--c-line);
  border-radius: 2px;
  padding: 9px 36px 9px 12px;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-ink);
  width: 100%;
  background: var(--c-paper);
  transition: border-color 0.2s;
}
.adv-filter-input::placeholder { color: var(--c-muted); }
.adv-filter-input:focus { outline: none; border-color: var(--c-ink); }
.adv-filter-reset {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  padding: 9px 14px;
  font-family: var(--f-eyebrow);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  align-self: flex-end;
}
.adv-filter-reset:hover { border-color: var(--c-ink); color: var(--c-ink); }

/* Loading state */
.hc-grid-loading { opacity: 0.45; pointer-events: none; transition: opacity 0.2s; }

@media (max-width: 767px) {
  .adv-filters { gap: 10px 14px; }
  .adv-filter-group { min-width: calc(50% - 7px); }
  .adv-filter-group--search { min-width: 100%; flex: none; }
}
