/* =========================================================
   Dolomiti Dream — Apartments in Falcade (Dolomites)
   Modern, elegant alpine landing.
   ========================================================= */

:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-2: #f1ece3;
  --ink: #1e2a23;
  --ink-soft: #38443c;
  --muted: #737b71;
  --line: #e5ddd0;
  --forest: #2f4a3c;
  --forest-dk: #21382b;
  --forest-lt: #edf1ec;
  --gold: #b98a3e;
  --gold-dk: #9c7130;
  --shadow-sm: 0 2px 10px rgba(31, 42, 36, .06);
  --shadow-md: 0 14px 40px rgba(31, 42, 36, .10);
  --shadow-lg: 0 30px 70px rgba(31, 42, 36, .18);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .2px;
  margin: 0;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-dk);
  margin-bottom: 14px;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.section--alt { background: var(--surface); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

.btn {
  --bg-btn: var(--forest);
  --fg-btn: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-btn);
  color: var(--fg-btn);
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { --bg-btn: var(--gold); }
.btn--gold:hover { --bg-btn: var(--gold-dk); }
.btn--ghost {
  --bg-btn: transparent;
  --fg-btn: #fff;
  border: 1.5px solid rgba(255, 255, 255, .6);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--outline {
  --bg-btn: transparent;
  --fg-btn: var(--forest);
  border: 1.5px solid var(--forest);
  box-shadow: none;
}
.btn--outline:hover { background: var(--forest); --fg-btn: #fff; }
.btn svg { width: 18px; height: 18px; }

/* ---------------- Header ---------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.header.scrolled {
  background: rgba(247, 244, 238, .92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: color .35s ease;
}
.header.scrolled .brand { color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px;
  flex: none;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.brand__sub {
  display: block;
  font-family: var(--ff-body);
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .8;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  position: relative;
  transition: color .3s ease;
}
.header.scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav__links a:hover::after { width: 100%; }

/* Language switcher */
.lang {
  position: relative;
}
.lang__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.header.scrolled .lang__btn {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--line);
}
.lang__btn svg { width: 14px; height: 14px; transition: transform .3s ease; }
.lang.open .lang__btn svg { transform: rotate(180deg); }
.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background .2s ease;
}
.lang__menu button:hover { background: var(--forest-lt); }
.lang__menu button.active { color: var(--gold-dk); }
.lang__flag { font-size: 1.1rem; line-height: 1; }

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px; height: 2px;
  background: #fff;
  transition: all .3s ease;
}
.header.scrolled .burger span { background: var(--ink); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/general/neve-sole-caviola-dal-poggiolo.jpg") center 40%/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,30,25,.55) 0%, rgba(20,30,25,.25) 40%, rgba(20,30,25,.65) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; text-align: center; padding-top: 60px; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 26px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero h1 em { font-style: italic; font-weight: 500; color: #f0d9ac; }
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 600px;
  margin: 22px auto 36px;
  color: rgba(255,255,255,.92);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll span { width: 1px; height: 40px; background: rgba(255,255,255,.5); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: .3; transform: scaleY(.6);} 50% { opacity: 1; transform: scaleY(1);} }

/* Trust bar */
.trust {
  background: var(--forest-dk);
  color: #fff;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
}
.trust__item { display: flex; align-items: center; gap: 14px; }
.trust__item svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.trust__num { font-family: var(--ff-body); font-size: 1.6rem; font-weight: 800; line-height: 1; letter-spacing: -.01em; font-variant-numeric: lining-nums tabular-nums; }
.trust__lbl { font-size: .82rem; color: rgba(255,255,255,.75); }

/* ---------------- Intro ---------------- */
.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.intro__media .stack {
  position: absolute;
  right: -26px; bottom: -34px;
  width: 46%;
  border: 6px solid var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.intro__body h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.intro__body p { color: var(--ink-soft); margin: 18px 0; font-size: 1.06rem; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; font-weight: 500; }
.feature-list svg { width: 22px; height: 22px; color: var(--forest); flex: none; margin-top: 2px; }

/* ---------------- Apartment ---------------- */
.apt { position: relative; }
.apt + .apt { margin-top: clamp(72px, 9vw, 130px); }
.apt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.apt--reverse .apt__gallery { order: 2; }

.apt__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-lt);
  color: var(--forest-dk);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .05em;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.apt__title { font-size: clamp(2rem, 4.4vw, 3rem); }
.apt__score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
}
.apt__score .badge {
  background: var(--forest);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 11px;
  border-radius: 10px 10px 10px 2px;
}
.apt__score .badge-txt strong { display: block; font-size: .95rem; }
.apt__score .badge-txt span { font-size: .82rem; color: var(--muted); }
.apt__desc { color: var(--ink-soft); margin: 20px 0 24px; font-size: 1.05rem; }

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.spec { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; }
.spec svg { width: 22px; height: 22px; color: var(--gold-dk); }

.amenities {
  list-style: none;
  padding: 0; margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
.amenities li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--ink-soft); }
.amenities svg { width: 20px; height: 20px; color: var(--forest); flex: none; }

.apt__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 118px;
  gap: 10px;
}
.gallery__item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  background: var(--surface-2);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(30,42,35,0);
  transition: background .3s ease;
}
.gallery__item:hover::after { background: rgba(30,42,35,.12); }
.gallery__item--big { grid-column: span 2; grid-row: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
}
.gallery__more span:first-child { font-family: var(--ff-display); font-size: 1.8rem; }
.gallery__more span:last-child { font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; opacity: .8; }

/* ---------------- Experiences ---------------- */
.exp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.exp-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.exp-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.exp-card:hover img { transform: scale(1.07); }
.exp-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,30,25,0) 30%, rgba(20,30,25,.82) 100%);
}
.exp-card__body { position: relative; z-index: 2; padding: 24px; }
.exp-card__body h3 { color: #fff; font-size: 1.5rem; }
.exp-card__body p { font-size: .9rem; color: rgba(255,255,255,.85); margin: 6px 0 0; }

/* ---------------- Location ---------------- */
.loc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: stretch;
}
.loc__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  border: 6px solid var(--surface);
}
.loc__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.loc__info h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.loc__address {
  display: flex; gap: 12px;
  padding: 18px 20px;
  background: var(--forest-lt);
  border-radius: var(--radius-sm);
  margin: 22px 0 26px;
  font-weight: 600;
}
.loc__address svg { width: 24px; height: 24px; color: var(--forest); flex: none; }
.distances { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.distances li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}
.distances li span:first-child { display: flex; align-items: center; gap: 11px; }
.distances svg { width: 19px; height: 19px; color: var(--gold-dk); flex: none; }
.distances .dist { font-weight: 700; color: var(--forest); white-space: nowrap; }

/* ---------------- Reviews (minimalist full-width slider) ---------------- */
.reviews__scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: -24px 0 48px;
  color: var(--muted);
  font-size: .95rem;
  letter-spacing: .01em;
}
.reviews__scores b { color: var(--forest); font-weight: 800; }
.reviews__sep { width: 1px; height: 16px; background: var(--line); }

.reviews {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
.reviews__stage {
  width: 100%;
  display: grid;
}
.review {
  grid-area: 1 / 1;               /* stack all slides */
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.review.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  position: relative;
}
.review__stars { color: var(--gold); letter-spacing: 4px; font-size: .95rem; margin-bottom: 22px; }
.review__text {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  line-height: 1.42;
  margin: 0 auto;
}
.review__text::before { content: "“"; }
.review__text::after  { content: "”"; }
.review__foot {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review__foot cite {
  font-style: normal;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: .04em;
}
.review__foot small { color: var(--muted); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }

/* subtle arrows — thin chevrons, no background */
.reviews__nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 10px;
  color: var(--muted);
  cursor: pointer;
  opacity: .5;
  transition: opacity .25s ease, color .25s ease;
  z-index: 3;
}
.reviews__nav:hover { opacity: 1; color: var(--forest); }
.reviews__nav svg { width: 26px; height: 26px; stroke-width: 1.4; }
.reviews__nav--prev { left: 0; }
.reviews__nav--next { right: 0; }

/* dots */
.reviews__dots {
  display: flex;
  gap: 9px;
  margin-top: 40px;
  justify-content: center;
}
.reviews__dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.reviews__dots button.active { background: var(--forest); transform: scale(1.35); }

/* ---------------- Contact ---------------- */
.contact { background: var(--forest-dk); color: #fff; position: relative; overflow: hidden; }
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../img/general/estate-vista-montagne.jpg") center/cover;
  opacity: .12;
}
.contact .container { position: relative; z-index: 2; }
.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact h2 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
.contact__intro { color: rgba(255,255,255,.8); margin: 18px 0 30px; font-size: 1.06rem; }
.contact__methods { display: grid; gap: 16px; }
.contact__method {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  transition: background .3s ease, transform .3s ease;
}
.contact__method:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }
.contact__method svg { width: 26px; height: 26px; color: var(--gold); flex: none; }
.contact__method small { display: block; color: rgba(255,255,255,.6); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.contact__method strong { font-size: 1.08rem; }

.form {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(47,74,60,.12);
}
.field textarea { resize: vertical; min-height: 96px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: .78rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form__ok {
  display: none;
  background: var(--forest-lt);
  color: var(--forest-dk);
  border: 1px solid var(--forest);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  font-weight: 600;
}
.form__ok.show { display: block; }
.form.sent .form__fields { display: none; }

/* ---------------- Footer ---------------- */
.footer { background: #17241d; color: rgba(255,255,255,.7); padding: 56px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer p { font-size: .92rem; max-width: 320px; }
.footer h4 { color: #fff; font-family: var(--ff-body); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: .92rem; transition: color .25s ease; }
.footer ul a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
}

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(15,20,17,.94);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav svg, .lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .9rem; }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
/* Fallback: if JS/IntersectionObserver is unavailable, never hide content */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .burger { display: flex; }
  /* the whole nav becomes a dropdown panel below the header */
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    background: var(--surface);
    padding: 22px 24px 26px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav__links a { color: var(--ink); padding: 10px 0; font-size: 1rem; }
  .nav__links a::after { display: none; }
  .lang { display: block; border-top: 1px solid var(--line); padding-top: 16px; width: 100%; }
  .lang__btn { display: none; }
  .lang__menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0; min-width: 0;
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .lang__menu button { width: auto; background: var(--surface-2); padding: 8px 14px; }
  .lang__menu button.active { background: var(--forest); color: #fff; }
  .intro__grid, .apt__grid, .loc__grid, .contact__grid, .reviews__grid { grid-template-columns: 1fr; }
  .apt--reverse .apt__gallery { order: 0; }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .intro__media .stack { width: 40%; right: -14px; bottom: -20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .form__row { grid-template-columns: 1fr; }
  .exp__grid { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 96px; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .reviews__nav { display: none; }
  .review__text::before, .review__text::after { content: ""; }
}
