:root {
  --ivory: #f6f1e8;
  --cream: #fbf8f3;
  --sand: #e8dfd2;
  --olive: #3d4f3a;
  --olive-deep: #2c3a2a;
  --sage: #7d9276;
  --terracotta: #c47a5a;
  --terracotta-deep: #a86246;
  --charcoal: #2b2a27;
  --ink: #1c1b19;
  --muted: #6d675e;
  --white: #fffcf8;
  --shadow: 0 18px 50px rgba(44, 58, 42, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 79, 58, 0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 13px;
}
.brand img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 50%;
  background: var(--ivory);
}
.nav-links { display: flex; gap: 22px; align-items: center; font-size: 15px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--olive); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--olive); color: var(--white) !important;
  padding: 12px 20px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: inherit; font-size: 14px; letter-spacing: 0.04em;
}
.btn:hover { background: var(--olive-deep); }
.btn-ghost {
  background: transparent; color: var(--olive) !important;
  border: 1px solid var(--olive);
}
.menu-toggle { display: none; background: none; border: 0; font-size: 24px; }

.hero {
  position: relative; min-height: 86vh;
  display: grid; place-items: end start;
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,27,25,0.15) 0%, rgba(28,27,25,0.55) 100%);
}
.hero-copy {
  position: relative; z-index: 1; color: var(--white);
  padding: 0 0 72px;
  max-width: 680px;
}
.eyebrow {
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px;
  color: #efe6d8; margin-bottom: 14px;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 16px; }
.hero p { font-size: 18px; max-width: 520px; margin-bottom: 26px; color: #f3eee6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

section { padding: 88px 0; }
.section-kicker {
  color: var(--terracotta); letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 12px; margin-bottom: 10px;
}
h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 14px; }
.lead { color: var(--muted); max-width: 640px; font-size: 18px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(61,79,58,0.06);
}
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card h3 { font-size: 26px; margin-bottom: 8px; }
.price { color: var(--olive); font-weight: 600; margin: 10px 0 14px; }
.card ul { padding-left: 18px; color: var(--muted); }
.card li { margin: 6px 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.step {
  background: var(--ivory); padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--sand);
}
.num { color: var(--terracotta); font-family: "Fraunces", serif; font-size: 28px; }

.areas {
  background: var(--olive-deep); color: var(--ivory);
}
.areas .lead { color: #d7d1c4; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill {
  border: 1px solid rgba(246,241,232,0.25); padding: 8px 14px; border-radius: 999px;
}

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.split img { border-radius: 28px; height: 460px; width: 100%; object-fit: cover; }

.gallery { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-top: 32px; }
.gallery img { width: 100%; height: 280px; object-fit: cover; border-radius: 20px; }
.gallery img.tall { height: 576px; grid-row: span 2; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; margin-top: 32px; }
form, .info-box {
  background: var(--white); padding: 28px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
label { display: block; font-size: 13px; margin: 12px 0 6px; color: var(--muted); }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--sand); background: var(--cream); font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; }
.success { display: none; background: #e7efe4; color: var(--olive-deep); padding: 12px; border-radius: 12px; margin-bottom: 12px; }

footer {
  background: var(--ink); color: #d8d2c6; padding: 36px 0 24px; font-size: 14px;
}
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer a { color: #efe6d8; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--cream); padding: 20px; border-bottom: 1px solid var(--sand);
  }
  .menu-toggle { display: block; }
  .grid-3, .steps, .split, .contact-grid, .gallery { grid-template-columns: 1fr; }
  .gallery img, .gallery img.tall { height: 240px; }
  .hero { min-height: 78vh; }
}
