/* ============================================================
   Vacay Estate — design system
   Direction: Italian editorial luxe. Warm ivory, deep green,
   terracotta. Fraunces (display) + Inter (text). Big imagery,
   generous whitespace, quiet motion.
   ============================================================ */

:root {
  /* palette */
  --ivory: #faf6ef;
  --ivory-deep: #f3ead9;
  --ink: #22301f;
  --ink-soft: #46523f;
  --muted: #6b7263;
  --green: #2e4a3b;
  --green-deep: #23392e;
  --terracotta: #c2643c;
  --terracotta-soft: #d98b63;
  --sand: #e9dfce;
  --line: #ded4c0;
  --white: #fffdf9;

  /* type scale */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --fs-900: clamp(2.6rem, 6vw, 4.6rem);
  --fs-800: clamp(2.1rem, 4.2vw, 3.2rem);
  --fs-700: clamp(1.6rem, 3vw, 2.2rem);
  --fs-600: 1.35rem;
  --fs-500: 1.125rem;
  --fs-400: 1rem;
  --fs-300: 0.875rem;
  --fs-200: 0.78rem;

  /* spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: 6.5rem;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(34, 48, 31, 0.08);
  --shadow-md: 0 10px 34px rgba(34, 48, 31, 0.13);
  --shadow-lg: 0 24px 64px rgba(34, 48, 31, 0.2);
  --container: 74rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-400);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

h1, h2, h3, .price {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); }
h1 em, h2 em { font-style: italic; color: var(--terracotta); }
.hero h1 em { color: var(--terracotta-soft); text-shadow: 0 2px 26px rgba(0, 0, 0, 0.55); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.section { padding: var(--s-6) 0; }
.section-tinted { background: var(--ivory-deep); }
.center { text-align: center; }

.kicker {
  font-size: var(--fs-200);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s-2);
}
.kicker.light { color: var(--terracotta-soft); }
.lead { font-size: var(--fs-500); color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-300);
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: 1.5px solid transparent;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, .chip:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
}
.btn-solid { background: var(--green); color: var(--white); }
.btn-solid:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: rgba(255, 253, 249, 0.65); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 253, 249, 0.14); transform: translateY(-2px); }
.btn-line { border-color: var(--green); color: var(--green); }
.btn-line:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-wide { width: 100%; text-align: center; }
.text-link {
  font-weight: 600;
  font-size: var(--fs-300);
  color: var(--green);
  border-bottom: 1.5px solid var(--terracotta);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.text-link:hover { color: var(--terracotta); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.over-hero {
  position: fixed;
  left: 0; right: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.over-hero.scrolled {
  background: rgba(250, 246, 239, 0.94);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 76px;
}
.brand-logo { height: 46px; width: auto; }
.site-header.over-hero:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.main-nav a {
  font-size: var(--fs-300);
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); border-bottom-color: var(--terracotta); }
.site-header.over-hero:not(.scrolled) .main-nav a { color: rgba(255, 253, 249, 0.85); }
.site-header.over-hero:not(.scrolled) .main-nav a:hover,
.site-header.over-hero:not(.scrolled) .main-nav a.active { color: var(--white); }
.main-nav .nav-cta {
  border: 1.5px solid var(--green);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  color: var(--green);
  font-weight: 600;
}
.main-nav .nav-cta:hover { background: var(--green); color: var(--white); border-bottom-color: transparent; }
.site-header.over-hero:not(.scrolled) .main-nav .nav-cta {
  border-color: rgba(255, 253, 249, 0.7);
  color: var(--white);
}
.site-header.over-hero:not(.scrolled) .main-nav .nav-cta:hover { background: rgba(255, 253, 249, 0.16); }
.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.2s ease; display: block; }
.site-header.over-hero:not(.scrolled) .nav-toggle span { background: var(--white); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 96vh; display: flex; align-items: center; color: var(--white); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 28, 18, 0.52) 0%, rgba(20, 28, 18, 0.22) 40%, rgba(20, 28, 18, 0.55) 100%),
    linear-gradient(105deg, rgba(20, 28, 18, 0.66) 0%, rgba(20, 28, 18, 0.08) 62%);
}
.hero-content { position: relative; z-index: 2; padding-top: 76px; padding-bottom: var(--s-5); }
.hero h1 { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35); max-width: 13ch; }
.hero-sub {
  margin-top: var(--s-3);
  max-width: 44ch;
  font-size: var(--fs-500);
  color: rgba(255, 253, 249, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.hero-actions { margin-top: var(--s-4); display: flex; gap: var(--s-2); flex-wrap: wrap; }
.hero-strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: rgba(20, 28, 18, 0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 253, 249, 0.16);
}
.hero-strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.1rem;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
  font-size: var(--fs-300); color: rgba(255, 253, 249, 0.85); letter-spacing: 0.03em;
}

/* ---------- intro ---------- */
.intro-grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--s-5); align-items: start; }
.intro-copy h2 { font-size: var(--fs-800); }
.intro-text p + p { margin-top: var(--s-2); }
.intro-stats {
  margin-top: var(--s-4);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
  border-top: 1px solid var(--line); padding-top: var(--s-3);
}
.intro-stats strong { font-family: var(--font-display); font-size: var(--fs-700); font-weight: 500; display: block; color: var(--green); }
.intro-stats span { font-size: var(--fs-300); color: var(--muted); }

/* ---------- section head ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-3); margin-bottom: var(--s-4); }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.section-sub { max-width: 52ch; color: var(--muted); margin-top: var(--s-2); }

/* ---------- featured cards ---------- */
.feature-card {
  display: grid; grid-template-columns: 7fr 5fr; gap: var(--s-4);
  align-items: center; margin-bottom: var(--s-5);
}
.feature-card.flip { direction: rtl; }
.feature-card.flip > * { direction: ltr; }
.feature-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); display: block; }
.feature-media img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; transition: transform 0.6s ease; }
.feature-media:hover img { transform: scale(1.04); }
.feature-region { font-size: var(--fs-200); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: var(--s-1); }
.feature-body h3 { font-size: var(--fs-700); }
.feature-body h3 a:hover { color: var(--green); }
.feature-summary { margin-top: var(--s-2); color: var(--ink-soft); }
.feature-facts { display: flex; gap: var(--s-2); margin-top: var(--s-2); font-size: var(--fs-300); color: var(--muted); }
.feature-facts span + span { border-left: 1px solid var(--line); padding-left: var(--s-2); }
.feature-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); margin-top: var(--s-3); flex-wrap: wrap; }
.price { font-size: var(--fs-600); color: var(--green); }
.price small { font-family: var(--font-body); font-size: var(--fs-300); color: var(--muted); font-weight: 400; }

/* ---------- property cards ---------- */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.prop-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.prop-media { position: relative; overflow: hidden; }
.prop-media img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prop-card:hover .prop-media img { transform: scale(1.05); }
.prop-price {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(250, 246, 239, 0.94); color: var(--green);
  font-size: var(--fs-200); font-weight: 600; letter-spacing: 0.03em;
  padding: 0.35rem 0.75rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.prop-body { padding: var(--s-3); }
.prop-region { font-size: var(--fs-200); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.35rem; }
.prop-body h3 { font-size: var(--fs-600); }
.prop-summary { font-size: var(--fs-300); color: var(--ink-soft); margin-top: 0.5rem; }
.prop-facts { font-size: var(--fs-300); color: var(--muted); margin-top: 0.6rem; }

/* ---------- services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); }
.service {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s-4) var(--s-3); box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--ivory-deep); color: var(--green);
  display: grid; place-items: center; margin-bottom: var(--s-2);
}
.service-icon svg { width: 28px; height: 28px; }
.service h3 { font-size: var(--fs-500); margin-bottom: 0.5rem; }
.service p { font-size: var(--fs-300); color: var(--ink-soft); }

/* ---------- quote band ---------- */
.band { position: relative; min-height: 54vh; display: flex; align-items: center; overflow: hidden; }
.band-media { position: absolute; inset: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-media::after { content: ""; position: absolute; inset: 0; background: rgba(24, 34, 24, 0.55); }
.band-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.band blockquote p { font-family: var(--font-display); font-size: var(--fs-800); font-style: italic; line-height: 1.25; }
.band cite { display: block; margin-top: var(--s-3); font-style: normal; font-size: var(--fs-300); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 253, 249, 0.75); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: var(--s-5); align-items: start; }
.contact-info .lead { margin-top: var(--s-2); }
.contact-list { list-style: none; margin-top: var(--s-4); display: grid; gap: var(--s-3); }
.contact-label { display: block; font-size: var(--fs-200); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.contact-list a { font-family: var(--font-display); font-size: var(--fs-600); color: var(--green); }
.contact-list a:hover { color: var(--terracotta); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s-4); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
.field { margin-bottom: var(--s-2); }
.field label { display: block; font-size: var(--fs-300); font-weight: 600; margin-bottom: 0.35rem; color: var(--ink-soft); }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--ivory); font: inherit; color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #a8a494; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 74, 59, 0.14);
  background: var(--white);
}
.field textarea { resize: vertical; }
.form-note { margin-top: var(--s-2); font-size: var(--fs-300); color: var(--muted); text-align: center; }
.form-success { text-align: center; padding: var(--s-4) var(--s-2); }
.form-success h3 { color: var(--green); margin-bottom: var(--s-2); }
.form-success.compact { padding: var(--s-2) 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(255, 253, 249, 0.85); padding: var(--s-5) 0 var(--s-3); }
.footer-grid { display: grid; grid-template-columns: 4fr 2fr 3fr 3fr; gap: var(--s-4); }
.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-tagline { margin-top: var(--s-2); font-size: var(--fs-300); color: rgba(255, 253, 249, 0.66); max-width: 30ch; }
.footer-col h4 { font-size: var(--fs-200); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta-soft); margin-bottom: var(--s-2); }
.footer-col a, .footer-col span { display: block; font-size: var(--fs-300); padding: 0.22rem 0; color: rgba(255, 253, 249, 0.85); }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom {
  margin-top: var(--s-4); padding-top: var(--s-3);
  border-top: 1px solid rgba(255, 253, 249, 0.15);
  display: flex; justify-content: space-between; gap: var(--s-2); flex-wrap: wrap;
  font-size: var(--fs-200); color: rgba(255, 253, 249, 0.6);
}
.footer-admin:hover { color: var(--white); text-decoration: underline; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: var(--s-5) 0 var(--s-4); background: var(--ivory-deep); border-bottom: 1px solid var(--line); }
.page-sub { max-width: 56ch; color: var(--ink-soft); margin-top: var(--s-2); }
.page-sub a { color: var(--terracotta); font-weight: 600; }
.filter-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: var(--s-3); }
.chip {
  border: 1.5px solid var(--line); background: var(--white);
  padding: 0.45rem 1.05rem; border-radius: 999px;
  font-size: var(--fs-300); font-weight: 500; color: var(--ink-soft);
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--green); color: var(--green); }
.chip.active { background: var(--green); border-color: var(--green); color: var(--white); }
.collection-page { padding-top: var(--s-5); }
.empty-note { text-align: center; padding: var(--s-5) 0; color: var(--muted); }
.empty-note a { color: var(--terracotta); font-weight: 600; }

/* ---------- property page ---------- */
.prop-hero { padding: var(--s-4) 0 0; }
.crumbs { font-size: var(--fs-300); color: var(--muted); margin-bottom: var(--s-2); }
.crumbs a { color: var(--terracotta); font-weight: 600; }
.prop-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-3); }
.prop-location { color: var(--muted); font-size: var(--fs-500); margin-top: 0.4rem; }
.prop-head-price { display: flex; align-items: center; gap: var(--s-3); }
.gallery {
  display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--s-2); border-radius: var(--radius-lg); overflow: hidden;
  max-height: 560px;
}
.gallery-item { overflow: hidden; display: block; position: relative; padding: 0; }
.gallery-item.main { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.prop-detail-grid { display: grid; grid-template-columns: 7fr 5fr; gap: var(--s-5); align-items: start; }
.facts-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s-3); margin-bottom: var(--s-4); text-align: center;
}
.facts-bar strong { font-family: var(--font-display); font-size: var(--fs-600); font-weight: 500; display: block; color: var(--green); }
.facts-bar span { font-size: var(--fs-200); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.prop-description p { margin-bottom: var(--s-3); font-size: var(--fs-500); color: var(--ink-soft); }
.amenities { margin-top: var(--s-4); }
.amenities h2 { font-size: var(--fs-700); margin-bottom: var(--s-3); }
.amenities-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem var(--s-3); }
.amenities-grid li { display: flex; align-items: center; gap: 0.6rem; font-size: var(--fs-300); color: var(--ink-soft); }
.amenities-grid svg { width: 18px; height: 18px; color: var(--terracotta); flex-shrink: 0; }
.prop-aside { position: sticky; top: 100px; }
.inquiry-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s-4); box-shadow: var(--shadow-md); }
.inquiry-sub { font-size: var(--fs-300); color: var(--muted); margin: 0.4rem 0 var(--s-3); }
.inquiry-alt { margin-top: var(--s-3); text-align: center; font-size: var(--fs-300); color: var(--muted); }
.inquiry-alt a { color: var(--green); font-weight: 600; }
.inquiry-alt a:hover { color: var(--terracotta); }

/* ---------- lightbox ---------- */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 24, 18, 0.92);
  display: flex; align-items: center; justify-content: center; padding: var(--s-4);
}
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 18px; right: 26px;
  color: var(--white); font-size: 2.4rem; line-height: 1; padding: 0.4rem;
}

/* ---------- 404 ---------- */
.notfound { padding: calc(var(--s-6) * 1.4) 0; }
.notfound .btn { margin-top: var(--s-3); }

/* ---------- reveal animation (JS-gated so no-JS users see everything) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .intro-grid, .contact-grid, .prop-detail-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; gap: var(--s-3); }
  .feature-card.flip { direction: ltr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .collection-grid, .collection-grid.three { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .prop-aside { position: static; }
}
@media (max-width: 660px) {
  .main-nav {
    position: fixed; inset: 0; top: 76px;
    background: var(--ivory); border-top: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    padding: var(--s-4); gap: var(--s-3);
    transform: translateX(100%); transition: transform 0.25s ease;
    z-index: 49;
  }
  .main-nav.open { transform: none; }
  .site-header.over-hero:not(.scrolled) .main-nav a { color: var(--ink-soft); }
  .site-header.over-hero:not(.scrolled) .main-nav.open ~ * a { color: var(--ink-soft); }
  .main-nav a { font-size: var(--fs-500); }
  .nav-toggle { display: flex; }
  .services-grid, .collection-grid, .collection-grid.three { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; max-height: none; }
  .gallery-item.main { grid-row: auto; }
  .gallery-item:not(.main) { display: none; }
  .facts-bar { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .amenities-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 88vh; }
}
