/* ── Fonts ── */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  /* ── Palette ── */
  --green-deep: #1a2c1e;
  --green-dark: #0f1a10;
  --green-muted: #2d4a36;
  --gold: #c9a84c;
  --gold-light: rgba(201, 168, 76, 0.15);
  --cream: #f5f0e3;
  --cream-dark: #e8e0d0;
  --text-dark: #1a1a16;
  --text-mid: #4a4a3a;
  --text-light: #8a8a72;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--green-deep); }

/* ── Topbar ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 44px;
  background: #c0392b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.topbar__text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}
.topbar__cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 5px 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
  border-radius: 3px;
}
.topbar__cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
}

/* ── Section label ── */
.section__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__label--light { color: rgba(201,168,76,0.8); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  background: var(--green-deep);
  overflow: hidden;
}
.hero__atmosphere {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__atmosphere::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,26,16,0.25) 0%, rgba(15,26,16,0.05) 40%, rgba(15,26,16,0.65) 100%),
    radial-gradient(ellipse 65% 68% at 16% 80%, rgba(8,14,9,0.52) 0%, transparent 72%);
  pointer-events: none;
}
.hero__atmosphere::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(15,26,16,0.82) 0%, transparent 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: heroFade 1.2s ease-out both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--green-deep);
  padding: 7px 13px;
  margin-bottom: 2rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245,240,227,0.85);
  max-width: 500px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245,240,227,0.7);
  text-transform: uppercase;
  margin-top: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,227,0.6);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  z-index: 2;
  animation: heroFade 1.2s 0.6s ease-out both;
}

/* ── Estate ── */
.estate {
  padding: 120px 60px;
  background: var(--cream);
}
.estate__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.estate__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  align-items: center;
}
.estate__text { margin-bottom: 0; }
.estate__visual {
  overflow: hidden;
  border-radius: 4px;
}
.estate__visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.estate__visual:hover img { transform: scale(1.02); }
.estate__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.estate__body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.estate__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.estate__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.estate__feature:hover {
  border-color: var(--gold);
  background: #faf8f3;
}
.estate__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.estate__feature-icon svg,
.estate__feature-icon svg.lucide {
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke: var(--gold);
  stroke-width: 1.5;
}
.estate__feature-icon svg.lucide * {
  stroke: var(--gold);
}
.estate__feature strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.estate__feature span {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
}

/* ── Interiors ── */
.interiors {
  padding: 100px 60px;
  background: var(--cream-dark);
}
.interiors__inner { max-width: 1100px; margin: 0 auto; }
.interiors__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}
.interiors__spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 2px;
  align-items: center;
}
.interiors__spot {
  background: var(--cream);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  align-self: stretch;
}
.interiors__spot:hover { transform: scale(1.01); }
.interiors__spot img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.interiors__spot-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
  min-height: 320px;
}
.interiors__spot-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.interiors__spot-info p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}
.interiors__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.15);
  margin-top: 48px;
}
.interiors__feature {
  background: var(--cream);
  padding: 32px 28px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.interiors__feature:hover { background: var(--white); }
.interiors__feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--gold);
}
.interiors__feature-icon svg,
.interiors__feature-icon svg.lucide {
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke: var(--gold);
  stroke-width: 1.5;
}
.interiors__feature-icon svg.lucide * {
  stroke: var(--gold);
}
.interiors__feature h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.interiors__feature p {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-light);
}

/* ── Exteriors ── */
.exteriors {
  padding: 120px 60px;
  background: var(--green-deep);
  color: var(--cream);
}
.exteriors__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exteriors__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.exteriors__body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,227,0.7);
  margin-bottom: 32px;
}
.exteriors__list { display: flex; flex-direction: column; gap: 12px; }
.exteriors__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(245,240,227,0.85);
}
.exteriors__visual {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.exteriors__visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.exteriors__visual:hover img { transform: scale(1.02); }
.exteriors__visual-caption {
  padding: 20px 0 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245,240,227,0.5);
  text-align: center;
  font-style: italic;
}

/* ── Gallery ── */
.gallery {
  padding: 80px 0;
  background: var(--green-deep);
}
.gallery__inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.gallery__header p { margin-bottom: 4px; }
.gallery__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery__item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4 / 3;
}
.gallery__item:focus { outline: none; }
.gallery__item:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.88);
}
.gallery__item:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,16,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,15,10,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__img {
  max-width: 90vw;
  max-height: calc(90vh - 56px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245,240,227,0.6);
  font-size: 2rem;
  line-height: 1;
  transition: color 0.2s ease;
  padding: 8px;
}
.lightbox__close:hover { color: var(--cream); }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245,240,227,0.5);
  padding: 16px;
  transition: color 0.2s ease;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--cream); }
.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(245,240,227,0.5);
}
.lightbox__caption {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,227,0.7);
  text-align: center;
  max-width: 600px;
  line-height: 1.4;
}
.lightbox__caption[hidden] {
  display: none;
}

/* ── Location ── */
.location {
  padding: 120px 60px;
  background: var(--cream-dark);
}
.location__inner { max-width: 1100px; margin: 0 auto; }
.location__header {
  max-width: 640px;
  margin-bottom: 56px;
}
.location__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.location__lead {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}
.location__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.location__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.location__card:hover {
  border-color: var(--gold);
  background: var(--cream);
}
.location__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.location__card-icon svg,
.location__card-icon svg.lucide {
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke: var(--gold);
  stroke-width: 1.5;
}
.location__card-icon svg.lucide * {
  stroke: var(--gold);
}
.location__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.location__card p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-light);
}
.location__quote {
  margin: 0;
  padding: 40px 48px;
  background: var(--green-deep);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
}

/* ── Pricing ── */
.pricing {
  padding: 120px 60px;
  background: var(--cream-dark);
  text-align: center;
}
.pricing__inner { max-width: 800px; margin: 0 auto; }
.pricing__amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}
.pricing__context {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 60px;
}
.pricing__compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.2);
}
.pricing__compare-item {
  background: var(--cream);
  padding: 32px 24px;
  text-align: center;
}
.pricing__compare-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
}
.pricing__compare-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── Contact ── */
.contact {
  padding: 120px 60px;
  background: var(--green-deep);
  color: var(--cream);
}
.contact__inner { max-width: 700px; margin: 0 auto; }
.contact__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.contact__body {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,240,227,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
}
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact__field { display: flex; flex-direction: column; gap: 8px; }
.contact__field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,227,0.6);
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 14px 16px;
  background: rgba(245,240,227,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--cream);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact__field input::placeholder,
.contact__field textarea::placeholder { color: rgba(245,240,227,0.3); }
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--gold);
  background: rgba(245,240,227,0.1);
}
.contact__field select option { background: var(--green-deep); color: var(--cream); }
.contact__field textarea { resize: vertical; }
.contact__submit {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.1s ease;
  align-self: flex-start;
}
.contact__submit:hover { background: #d4b55a; }
.contact__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.contact__form-error {
  padding: 12px 16px;
  background: rgba(220, 80, 80, 0.15);
  border: 1px solid rgba(220, 80, 80, 0.4);
  border-radius: 2px;
  color: #f5c6c6;
  font-size: 0.85rem;
  font-weight: 300;
}
.contact__form-success {
  padding: 12px 16px;
  background: rgba(45, 74, 54, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 2px;
  color: var(--cream);
}
.contact__form-success p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
}
.contact__note {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(245,240,227,0.4);
  margin-top: 12px;
  font-style: italic;
}

/* ── Footer ── */
.footer {
  padding: 48px 60px;
  background: var(--green-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  margin-bottom: 6px;
}
.footer__brand p { font-size: 0.8rem; font-weight: 300; color: rgba(245,240,227,0.5); }
.footer__meta p { font-size: 0.78rem; font-weight: 300; color: rgba(245,240,227,0.35); }
.footer__legal a { font-size: 0.78rem; font-weight: 300; color: rgba(245,240,227,0.55); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 2px; }
.footer__legal a:hover { color: var(--cream); border-bottom-color: var(--gold); }

/* ── Tablet & mobile ── */
@media (max-width: 768px) {
  .topbar {
    padding: 0 16px;
    gap: 12px;
  }
  .topbar__text {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .topbar__cta {
    flex-shrink: 0;
    padding: 4px 10px;
    font-size: 0.65rem;
    line-height: 1.4;
  }
  .hero { padding: 0 24px 60px; }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }
  .hero__stat-divider { display: none; }
  .hero__scroll { display: none; }
  .estate, .interiors, .exteriors, .location, .map, .pricing, .contact { padding: 80px 24px; }
  .map__frame {
    aspect-ratio: 4 / 3;
    max-height: none;
    min-height: 280px;
  }
  .gallery { padding: 60px 0; }
  .gallery__inner { padding: 0 24px; }
  .gallery__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .estate__intro { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .estate__features { grid-template-columns: repeat(2, 1fr); }
  .estate__visual img { height: 280px; }
  .interiors__spotlight { grid-template-columns: 1fr; align-items: start; }
  .interiors__spot { order: 1; min-height: 0; }
  .interiors__spot-info { order: 2; min-height: 0; padding: 32px 28px; }
  .interiors__spot img { min-height: 0; }
  .interiors__features { grid-template-columns: 1fr; }
  .exteriors__inner { grid-template-columns: 1fr; gap: 48px; }
  .exteriors__visual img { height: 280px; }
  .location__grid { grid-template-columns: 1fr; }
  .pricing__compare { grid-template-columns: 1fr; }
  .contact__form-row { grid-template-columns: 1fr; }
  .contact__submit { width: 100%; text-align: center; }
  .footer { padding: 40px 24px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .lightbox__prev, .lightbox__next { display: none; }
}

/* ── PDF brief: hero CTA ── */
.hero__actions { margin-top: 2rem;  }
.hero__cta {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  background: #c9a84c;
  color: #1a1a1a;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 3px;
}
.hero__cta:hover { background: #d4b55a; }

/* ── PDF brief: screen-hidden, print-visible ── */
#pdf-brief { display: none; }

@media print {
  @page { margin: 14mm; }

  html, body {
    height: auto;
    margin: 0;
    padding: 0;
  }

  body > *:not(#pdf-brief) { display: none !important; }

  #pdf-brief {
    display: block !important;
    position: static;
    width: 100%;
    color: #1a1a1a;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
  }

  .pdf-page {
    page-break-after: always;
    break-after: page;
    padding: 14mm;
    box-sizing: border-box;
  }
  .pdf-page:last-child {
    page-break-after: auto;
    break-after: auto;
  }

  .pdf-cover { text-align: center; padding-top: 30mm; }
  .pdf-cover h1 { font-size: 36pt; margin: 0 0 8mm; letter-spacing: 0.05em; }
  .pdf-cover__specs { font-size: 14pt; letter-spacing: 0.08em; margin-bottom: 16mm; }
  .pdf-cover img { width: 85%; height: auto; }
  .pdf-cover__footer { font-size: 9pt; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 14mm; color: #555; }

  .pdf-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 4mm 6mm;
  }
  .pdf-photo {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .pdf-photo img {
    width: 100%;
    height: 52mm;
    object-fit: cover;
    display: block;
  }
  .pdf-photo figcaption {
    font-family: 'Jost', sans-serif;
    font-size: 8pt;
    letter-spacing: 0.04em;
    margin-top: 1.5mm;
    color: #444;
    line-height: 1.3;
  }

  .pdf-narrative h2 { font-size: 20pt; margin: 0 0 6mm; }
  .pdf-narrative h3 { font-size: 13pt; margin: 6mm 0 3mm; letter-spacing: 0.04em; text-transform: uppercase; font-family: 'Jost', sans-serif; font-weight: 500; }
  .pdf-narrative p { font-size: 11pt; line-height: 1.55; margin: 0 0 4mm; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
}

/* ── Map (OpenStreetMap embed) ── */
.map {
  background: var(--cream);
  padding: 120px 60px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.map__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.map__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.map__body {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}
.map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 8;
  max-height: 400px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.map__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Legal pages ── */
.legal-header {
  padding: 40px 60px;
  background: var(--green-deep);
}
.legal-header a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
}
.legal {
  padding: 80px 60px 100px;
  background: var(--cream);
}
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal__inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.legal__updated {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 48px;
  font-style: italic;
}
.legal__inner h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 40px 0 12px;
}
.legal__inner p, .legal__inner li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.legal__inner ul { padding-left: 24px; margin-bottom: 12px; }
.legal__inner a { color: var(--gold); text-decoration: none; border-bottom: 1px solid currentColor; }
.legal__inner a:hover { opacity: 0.8; }
.legal__back {
  display: inline-block;
  margin-top: 48px;
  font-size: 0.85rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .legal-header { padding: 24px; }
  .legal { padding: 48px 24px 72px; }
}