
:root {
  --bg: #f5f2eb;
  --paper: #fffdf9;
  --ink: #1d1c1a;
  --muted: #6f6a61;
  --line: #ded8ce;
  --accent: #9b6b28;
  --accent-dark: #6f4817;
  --soft: #eee7da;
  --shadow: 0 16px 45px rgba(31, 27, 21, 0.10);
  --radius: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip {
  position: absolute; left: -9999px; top: 0;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 9999;
  background: #fff; padding: .75rem 1rem; border-radius: .6rem;
}
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}
.hero-copy {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 6rem);
}
.hero-inner { max-width: 620px; margin-left: auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 0 1rem;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -.025em; }
h3 { font-size: 1.45rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 48ch; color: #3f3b35; }
.price {
  margin: 1.5rem 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.button.primary { background: var(--ink); color: #fff; }
.button:hover { transform: translateY(-1px); }
.hero-image {
  min-height: 92vh;
  background: #ddd4c5;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.kicker { color: var(--accent-dark); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spotlight.reverse .spotlight-image { order: 2; }
.spotlight-copy {
  padding: clamp(2.5rem, 6vw, 6rem);
  display: flex;
  align-items: center;
}
.spotlight-copy > div { max-width: 620px; }
.spotlight-image { min-height: 640px; background: #ddd4c5; }
.spotlight-image img { width: 100%; height: 100%; object-fit: cover; }
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.fact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.fact span {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}
.fact strong { font-size: 1.12rem; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.gallery a {
  min-height: 270px;
  overflow: hidden;
  border-radius: 14px;
  background: #ddd4c5;
  box-shadow: 0 6px 20px rgba(31,27,21,.06);
}
.gallery a:nth-child(1),
.gallery a:nth-child(2) { grid-column: span 2; min-height: 420px; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .25s ease;
}
.gallery a:hover img { transform: scale(1.025); }
.note {
  padding: 1.25rem 1.4rem;
  background: var(--soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
}
.clean-list { padding-left: 1.15rem; margin: 1.25rem 0 0; }
.clean-list li { margin: .45rem 0; }
.contact-card {
  background: var(--ink);
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 2rem;
  align-items: end;
  box-shadow: var(--shadow);
}
.contact-card .muted { color: #d7d1c8; }
.contact-card .button { border-color: #fff; background: #fff; color: var(--ink); }
.email-display { font-weight: 700; word-break: break-word; }
footer {
  padding: 2.2rem 0 3rem;
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.90);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 90vh; object-fit: contain; }
.lightbox button {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: #fff; color: #111; font-size: 1.5rem; cursor: pointer;
}
.small { font-size: .92rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero, .spotlight { grid-template-columns: 1fr; }
  .hero-image { min-height: 65vh; order: -1; }
  .hero-copy { padding: 3rem 1.5rem 4rem; }
  .hero-inner { margin: 0; }
  .spotlight.reverse .spotlight-image { order: 0; }
  .spotlight-image { min-height: 55vh; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery a, .gallery a:nth-child(1), .gallery a:nth-child(2) { grid-column: span 1; min-height: 300px; }
  .contact-card { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .facts { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery a, .gallery a:nth-child(1), .gallery a:nth-child(2) { min-height: 340px; }
  .actions .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
