/* ---------- Tokens ---------- */
:root {
  --limestone: #F2EFE6;
  --limestone-2: #E9E4D6;
  --ink: #14181B;
  --ink-soft: #4A5054;
  --cobalt: #1C4B66;
  --cobalt-bright: #2E6C8E;
  --ochre: #B9832B;
  --gold-soft: #E3C98C;
  --fig: #5B2333;
  --terracotta: #B8583A;
  --line: rgba(20, 24, 27, 0.14);
  --line-on-dark: rgba(242, 239, 230, 0.22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 18px 40px -18px rgba(20,24,27,0.28);
  --shadow-warm: 0 20px 50px -20px rgba(184,88,58,0.35);
  --font-display: "Fraunces", Georgia, serif;
  --font-mono: "Space Mono", "SF Mono", monospace;
  --font-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: 1220px;
}

* { box-sizing: border-box; }

/* Visible keyboard focus */
:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 3px;
}
.immersive :focus-visible,
.amenities :focus-visible,
.site-footer :focus-visible { outline-color: var(--gold-soft); }

/* Skip to content */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: var(--limestone);
  padding: 12px 20px;
  border-radius: 0 0 6px 6px;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--limestone);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 460; margin: 0; color: var(--ink); }
h1 em, h2 em { font-style: italic; font-weight: 460; color: var(--cobalt); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 18px;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary { background: var(--ink); color: var(--limestone); }
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: var(--shadow-warm); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--limestone); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 239, 230, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { height: 40px; width: auto; }
.logo span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 460;
  color: var(--ink);
}
.main-nav { display: flex; gap: 44px; }
.main-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a:hover { color: var(--ink); }
.nav-num { color: var(--ochre); font-size: 11px; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.lang-toggle {
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 7px 11px;
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  color: var(--ink-soft);
}
.header-actions .btn { padding: 11px 24px; font-size: 13.5px; }

/* ---------- Mobile nav ---------- */
[hidden] { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  padding: 0 9px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.3px) rotate(-45deg); }

.mobile-nav {
  position: sticky;
  top: 82px;
  z-index: 39;
  background: var(--limestone);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 8px 22px 18px;
}
.mobile-nav a {
  font-family: var(--font-mono);
  font-size: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero { padding-top: 64px; background: var(--limestone); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}
.hero-text { padding-top: 10px; }
.hero h1 {
  font-size: clamp(46px, 5.6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 400px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 70%;
  height: 60%;
  background: radial-gradient(circle, rgba(227,201,140,0.55) 0%, rgba(227,201,140,0) 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero-fade {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 130px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 130px);
}
.hero-fade img { width: 100%; height: 100%; object-fit: cover; object-position: center 72%; transition: transform 1.2s ease; }
.hero-fade:hover img { transform: scale(1.03); }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding: 26px 40px;
}
.strip-item { display: flex; flex-direction: column; gap: 6px; border-left: 1px solid var(--line); padding-left: 20px; }
.strip-item:first-child { border-left: none; padding-left: 0; }
.strip-item span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.strip-item strong { font-family: var(--font-display); font-size: 24px; font-weight: 460; }

/* ---------- Tile divider (coppi motif) ---------- */
.tile-divider { color: rgba(185,131,43,0.4); line-height: 0; background: var(--limestone); }

/* ---------- Intro ---------- */
.intro { padding: 130px 0 90px; }
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  margin-bottom: 90px;
}
.intro-head h2 { font-size: 42px; line-height: 1.08; }
.intro-body p { font-size: 17px; color: var(--ink-soft); margin-bottom: 20px; max-width: 480px; }
.intro-note { font-weight: 600; color: var(--ink) !important; margin-bottom: 26px; }
.intro-photo { width: 100%; max-width: 380px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  padding: 30px 26px;
  background: var(--limestone-2);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feature-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ochre);
  color: var(--limestone);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-bottom: 18px;
}
.feature h3 { font-size: 19px; margin-bottom: 10px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Immersive full-bleed moments ---------- */
.immersive {
  position: relative;
  height: 78vh;
  min-height: 520px;
  background-size: 100%;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 74px;
  overflow: hidden;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { background-size: 100%; }
  100% { background-size: 116%; }
}
.immersive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,18,16,0.65) 0%, rgba(15,18,16,0.05) 55%);
}
.immersive .wrap { position: relative; z-index: 1; }
.immersive .eyebrow { color: var(--gold-soft); margin-bottom: 14px; }
.immersive-line {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--limestone);
  font-size: clamp(24px, 3vw, 38px);
  max-width: 640px;
  line-height: 1.3;
}
.immersive-terrace { background-image: url('../photos/terrace-sunset-mountains.webp'); }
.immersive-monopoli { background-image: url('../photos/dintorni/mono-aerial.webp'); background-position: center 45%; }

@media (prefers-reduced-motion: reduce) {
  .immersive { animation: none; }
}

/* ---------- Gallery ---------- */
.gallery { padding: 110px 0; }
.gallery-head { margin-bottom: 50px; }
.gallery h2 { font-size: 36px; line-height: 1.1; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.g-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  display: block;
  transition: box-shadow 0.3s ease;
}
.g-item:hover { box-shadow: var(--shadow-soft); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.g-item:hover img { transform: scale(1.04); }
.g-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--limestone);
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.g-item:hover .g-caption { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .g-caption { opacity: 1; transform: none; }
  .g-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(10,12,10,0.55), transparent);
    pointer-events: none;
  }
  .g-caption { z-index: 1; }
}

/* Row 1 — feature + side, both close to the photos' native 4:3 */
.g-feature { grid-column: span 7; aspect-ratio: 16 / 11; }
.g-side    { grid-column: span 5; aspect-ratio: 5 / 4; }
/* Row 2 — three equal panels */
.g-third   { grid-column: span 4; aspect-ratio: 4 / 3; }

.gallery-foot { margin-top: 44px; text-align: center; }
.gallery-foot .text-link { background: none; border: none; cursor: pointer; font-size: 14.5px; font-family: var(--font-body); }

/* ---------- Amenities ---------- */
.amenities { background: var(--ink); color: var(--limestone); padding: 110px 0; }
.amenities-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.amenities-head .eyebrow { color: var(--gold-soft); }
.amenities-head h2 { color: var(--limestone); font-size: 38px; line-height: 1.15; }
.amenities-head h2 em { color: var(--gold-soft); }
.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.amenities-list li {
  font-size: 15px;
  padding: 14px 22px;
  background: rgba(242,239,230,0.07);
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.amenities-list li:hover { background: rgba(227,201,140,0.14); transform: translateY(-2px); }
.amenities-list li span { font-family: var(--font-mono); font-size: 11px; color: var(--gold-soft); }

/* ---------- Reviews ---------- */
.reviews { padding: 100px 0; }
.reviews-head { margin-bottom: 50px; }
.reviews-head h2 { font-size: 34px; line-height: 1.15; margin-bottom: 30px; }
.score-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.score-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--limestone-2);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
}
.score-num { font-family: var(--font-display); font-size: 30px; font-weight: 460; color: var(--ochre); line-height: 1; }
.score-label { font-family: var(--font-mono); font-size: 11px; line-height: 1.5; color: var(--ink-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.reviews-grid-more { margin-top: 24px; }
.reviews-foot { margin-top: 40px; text-align: center; }
.reviews-foot .text-link { background: none; border: none; cursor: pointer; font-size: 14.5px; font-family: var(--font-body); }
.review-card {
  background: var(--limestone-2);
  border-radius: var(--radius-md);
  padding: 40px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 26px;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--ochre);
  opacity: 0.35;
  line-height: 1;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.review-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.review-meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.review-meta .flag { font-size: 16px; }
.review-meta .source {
  margin-left: auto;
  color: var(--cobalt);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-meta .translated {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ochre);
  border: 1px solid rgba(185,131,43,0.4);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 2px;
}

/* ---------- Booking ---------- */
.booking { padding: 120px 0; background: var(--limestone-2); }
.booking-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.booking-intro h2 { font-size: 38px; margin-bottom: 24px; line-height: 1.15; }
.booking-intro p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 28px; max-width: 400px; }
.booking-perks li {
  font-size: 15px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
}
.booking-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}
.bw-loading { color: var(--ink-soft); font-size: 14px; font-family: var(--font-mono); }

.bw-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.bw-datebox { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; }
.bw-datebox span { display: block; font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); margin-bottom: 3px; }
.bw-datebox strong { font-size: 15px; font-weight: 600; }

.bw-cal { margin-bottom: 22px; }
.bw-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.bw-cal-head strong { font-family: var(--font-display); font-weight: 460; font-size: 17px; }
.bw-nav { background: none; border: 1px solid var(--line); border-radius: 50%; width: 32px; height: 32px; font-size: 18px; line-height: 1; cursor: pointer; color: var(--ink); }
.bw-nav:hover { background: var(--limestone-2); }
.bw-dow, .bw-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bw-dow span { text-align: center; font-family: var(--font-mono); font-size: 10px; color: var(--ink-soft); padding-bottom: 6px; }
.bw-day { aspect-ratio: 1; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-family: var(--font-body); font-size: 13.5px; cursor: pointer; color: var(--ink); padding: 0; }
.bw-day:hover:not(:disabled) { border-color: var(--ochre); }
.bw-day.bw-empty { border: none; background: none; }
.bw-day.bw-past { opacity: .3; cursor: default; }
.bw-day.bw-busy { background: var(--limestone-2); color: var(--ink-soft); text-decoration: line-through; cursor: not-allowed; }
.bw-day.bw-start, .bw-day.bw-end { background: var(--ink); border-color: var(--ink); color: var(--limestone); font-weight: 600; }
.bw-day.bw-between { background: var(--limestone-2); border-color: var(--limestone-2); }
.bw-minstay { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-soft); margin-top: 12px; text-align: center; }

.bw-summary { margin: 18px 0; }
.bw-line { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14.5px; border-top: 1px solid var(--line); }
.bw-line.bw-discount span:last-child { color: var(--green, #2E6B4F); }
.bw-line.bw-total { border-top: 1.5px solid var(--ink); margin-top: 4px; padding-top: 13px; font-family: var(--font-display); font-size: 19px; font-weight: 500; }
.bw-loading { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); }

.bw-guest { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.bw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bw-field { display: flex; flex-direction: column; gap: 7px; }
.bw-field label { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.bw-field input, .bw-field select, .bw-field textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px;
  font-size: 15px; font-family: var(--font-body); color: var(--ink); background: #fff; width: 100%;
}
.bw-field textarea { resize: vertical; }

.bw-rates { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.bw-rate { display: flex; align-items: flex-start; gap: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.bw-rate:hover { border-color: var(--ochre); background: rgba(185,131,43,.05); }
.bw-rate input { margin-top: 3px; }
.bw-rate strong { font-size: 14.5px; }
.bw-rate span { font-size: 13.5px; color: var(--ink-soft); }

.bw-terms { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); }
.bw-terms a { color: var(--cobalt); text-decoration: underline; }
.bw-submit { width: 100%; }
.bw-note { text-align: center; font-size: 12px; font-family: var(--font-mono); color: var(--ink-soft); margin-top: 12px; }
.bw-error { background: #F6E7E2; border: 1px solid #D6B5AA; color: #8A3B29; border-radius: 10px; padding: 12px 14px; font-size: 14px; margin-bottom: 14px; }
.bw-error a { color: inherit; text-decoration: underline; }

@media (max-width: 600px) { .bw-row { grid-template-columns: 1fr; } }

/* ---------- Location ---------- */
.location { padding: 120px 0 110px; }
.location-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 24px;
}
.location-content h2 { font-size: 38px; margin-bottom: 24px; line-height: 1.15; }
.location-content p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 32px; max-width: 460px; }
.text-link { font-weight: 600; color: var(--cobalt); border-bottom: 1px solid currentColor; padding-bottom: 2px; }

.location-portrait { margin: 0; }
.location-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
figure figcaption {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin-top: 12px;
}

.location-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.location-pair figure { margin: 0; }
.location-pair img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.6s ease;
}
.location-pair figure:hover img { transform: scale(1.02); }

.distances { width: 100%; max-width: 460px; margin-bottom: 30px; border-collapse: collapse; }
.distances td { padding: 11px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.distances td:first-child { color: var(--ink); }
.distances td:last-child { text-align: right; font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); }

/* ---------- Family ---------- */
.family { padding: 90px 0; background: var(--limestone); }
.family .wrap { max-width: 720px; text-align: center; }
.family p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.8; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(242,239,230,0.82); padding: 76px 0 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-on-dark);
  margin-bottom: 28px;
  align-items: start;
}
.footer-logo-card {
  background: var(--limestone);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}
.footer-logo-card img { height: 64px; width: auto; }
.footer-host { font-size: 14px; font-family: var(--font-mono); color: rgba(242,239,230,0.7); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-contact p { color: rgba(242,239,230,0.5); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.footer-contact a:hover { color: var(--limestone); }
.footer-legal { font-size: 13px; line-height: 1.9; color: rgba(242,239,230,0.6); font-family: var(--font-mono); }
.footer-legal a:hover { color: var(--limestone); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 50;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,12,10,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: 4px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--limestone);
  font-size: 28px;
  cursor: pointer;
  padding: 12px;
}
.lb-close { top: 16px; right: 24px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); font-size: 40px; }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); font-size: 40px; }
.lightbox .lb-prev, .lightbox .lb-next { background: rgba(20,24,27,0.45); border-radius: 50%; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
@media (max-width: 600px) {
  .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 30px; }
  .lb-close { top: 10px; right: 12px; }
}
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(242,239,230,0.7);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .intro-grid, .booking-grid, .amenities-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .location { margin-left: 20px; margin-right: 20px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .strip-item:nth-child(3) { border-left: none; padding-left: 0; }
  .amenities-list { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-feature { grid-column: span 2; aspect-ratio: 16 / 10; }
  .g-side, .g-third { grid-column: span 1; aspect-ratio: 4 / 3; }
  .location-top { grid-template-columns: 1fr; gap: 40px; }
  .location-portrait img { aspect-ratio: 4 / 3; }
  .location-pair { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 22px; }
  .hero { padding-top: 40px; }
  .hero h1 { font-size: 42px; }
  .booking-widget { padding: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
