:root {
  --bg: #f6f1ea;
  --surface: rgba(255,255,255,0.92);
  --text: #231f1a;
  --muted: #665f58;
  --line: #e7ddd2;
  --accent: #7e5d41;
  --accent-dark: #5f432d;
  --shadow: 0 18px 50px rgba(44, 33, 21, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(126,93,65,0.08), transparent 30%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
p, li { font-size: 1rem; line-height: 1.65; color: var(--muted); }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 28px 0 72px; }
.section-first { padding-top: 10px; }
.card {
  background: var(--surface);
  border: 1px solid rgba(126,93,65,0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}
.site-header { padding: 28px 0 16px; }
.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.title-wrap { max-width: 760px; }
h1 {
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  line-height: 0.95;
}
h1 span {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--muted);
}
.subhead {
  font-size: 1.06rem;
  max-width: 55ch;
}
.price-card {
  min-width: 255px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #8a6748, var(--accent-dark));
  color: #fff;
  box-shadow: 0 18px 45px rgba(85, 52, 29, 0.28);
}
.price-label, .price-note { opacity: 0.9; }
.price { margin: 8px 0 6px; font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.lead {
  color: var(--text);
  font-size: 1.18rem;
  max-width: 56ch;
}
.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.highlight {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
}
.highlight strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}
.highlight span { font-size: 0.95rem; line-height: 1.45; color: var(--muted); }
.prominent-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.96rem;
}
.section-heading { margin-bottom: 22px; }
h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}
h3 { margin-bottom: 14px; font-size: 1.16rem; }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.fact { padding: 24px; }
.fact ul { margin: 0; padding-left: 18px; }
.fact.accent {
  background: linear-gradient(180deg, rgba(126,93,65,0.98), rgba(95,67,45,0.98));
}
.fact.accent h3,
.fact.accent p,
.fact.accent strong { color: #fff; }
.featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
}
.gallery-item img { object-fit: cover; }
.gallery-item-large img { aspect-ratio: 1.1 / 1; }
.gallery-item-medium img { aspect-ratio: 4 / 5; }
.gallery-grid-secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.gallery-item-secondary img { aspect-ratio: 4 / 3; object-fit: cover; }
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}
.floorplan-card,
.map-card {
  padding: 24px;
}
.floorplan-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 20px;
  align-items: start;
}
.floorplan-link {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.floorplan-link img {
  width: 100%;
  height: auto;
  background: #fff;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 600;
  transition: transform .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-1px); }
#map {
  margin-top: 18px;
  height: 430px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
/* ── Contact CTA ── */
.contact-cta {
  background: var(--accent);
  color: #fff;
  padding: 56px 0 60px;
  text-align: center;
}
.contact-heading {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #fff;
}
.contact-names {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 20px;
  opacity: 0.92;
  color: #fff;
}
.contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.contact-link {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.contact-link:hover {
  border-color: #fff;
}
.contact-sep {
  opacity: 0.5;
  font-size: 1.2rem;
}
.download-btn {
  display: inline-block;
  margin: 20px 0 16px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  transition: background 0.15s, border-color 0.15s;
}
.download-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}
.share-row {
  margin: 20px 0 4px;
}
.share-label {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity 0.15s, transform 0.1s;
}
.share-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.share-wa     { background: #25d366; color: #fff; }
.share-signal { background: #3a76f0; color: #fff; }
.share-mail { background: rgba(255,255,255,0.2); color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.share-copy { background: rgba(255,255,255,0.2); color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.contact-no-broker {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
  margin: 0;
  color: #fff;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid rgba(126,93,65,0.12);
  padding: 26px 0 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-note code {
  background: rgba(126,93,65,0.08);
  padding: 2px 6px;
  border-radius: 6px;
}

@media (max-width: 1100px) {
  .facts-grid,
  .featured-grid,
  .gallery-grid-secondary,
  .split-grid,
  .floorplan-card,
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topbar { flex-direction: column; }
  .price-card { min-width: 0; }
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .highlights { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 20px), var(--max)); }
  .site-header { padding-top: 20px; }
  .section { padding-bottom: 56px; }
  .fact,
  .floorplan-card,
  .map-card { padding: 20px; }
  .facts-grid { grid-template-columns: 1fr; }
  #map { height: 320px; }
}

.featured-grid-four {
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  align-items: stretch;
}
.hero-gallery-item img {
  aspect-ratio: 1.2 / 1;
}
.gallery-grid-secondary-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
