:root {
  --bg: #f5f1eb;
  --ink: #1f1b18;
  --muted: #6f665f;
  --accent: #8b5e34;
  --accent-2: #b9895d;
  --panel: #ffffff;
  --shadow: 0 14px 30px rgba(31, 27, 24, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.section { padding: 80px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-weight: 700; font-size: .76rem; color: var(--accent); margin: 0 0 12px; }
h1, h2, h3 { font-family: 'Playfair Display', serif; margin: 0 0 12px; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4.8vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }

.topbar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(245,241,235,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(31,27,24,.08);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.brand { font-weight: 800; letter-spacing: .08em; }
.brand span { color: var(--accent); }
nav { display: flex; gap: 18px; align-items: center; font-weight: 500; }

.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  position: relative;
  background: url('https://images.unsplash.com/photo-1616486029423-aaa4789e8c9a?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,.56), rgba(0,0,0,.26)); }
.hero-content { position: relative; color: #fff; max-width: 760px; padding: 70px 0; }
.hero .lead { color: rgba(255,255,255,.9); font-size: 1.08rem; }
.hero-cta { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #744d2a; }
.btn-light { background: #fff; color: #111; }
.btn-outline { border-color: var(--ink); }

.section-head { margin-bottom: 28px; }
.section-head.center { text-align: center; }
.grid { display: grid; gap: 20px; }
.cards { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-body { padding: 18px; }
.card p { color: var(--muted); margin: 0; }

.split { background: #ece4da; }
.split-grid { display: grid; gap: 28px; grid-template-columns: 1.2fr 1fr; align-items: center; }
.split ul { padding-left: 0; list-style: none; margin: 18px 0 0; }
.split li { margin: 10px 0; }
.split-image { border-radius: 18px; box-shadow: var(--shadow); }

.quotes { grid-template-columns: repeat(3, 1fr); }
blockquote {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  font-size: 1.02rem;
}
cite { display: block; margin-top: 12px; color: var(--muted); font-style: normal; }

.cta { background: #1f1b18; color: #fff; text-align: center; }
.cta-wrap { max-width: 760px; }
.contact-form { display: grid; gap: 12px; margin-top: 18px; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.72); }
textarea { min-height: 120px; resize: vertical; }
#thanks { display: none; color: #9ef7be; margin: 4px 0 0; }

footer { background: #161310; color: #b9aca1; }
.foot { display: flex; justify-content: space-between; gap: 12px; padding: 18px 0; flex-wrap: wrap; font-size: .92rem; }

@media (max-width: 900px) {
  .cards, .quotes { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  nav a:not(.btn) { display: none; }
}
