:root {
  --bg: #f6f1ea;
  --ink: #1c1712;
  --muted: #5c5349;
  --accent: #8b3a2a;
  --card: #fffdf9;
  --line: #e4d8c8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3, .logo, .quote {
  font-family: "Cormorant Garamond", Georgia, serif;
}
a { color: var(--accent); }
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 6vw;
  background: rgba(246,241,234,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo { font-size: 1.6rem; font-weight: 600; color: var(--ink); text-decoration: none; }
nav { display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
nav a { text-decoration: none; color: var(--ink); font-size: 0.95rem; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.4rem; }
.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 8rem 6vw 6rem;
  background:
    linear-gradient(180deg, rgba(28,23,18,.35), rgba(28,23,18,.55)),
    url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
  text-align: center;
}
.hero h1 { font-size: clamp(3rem, 8vw, 6.2rem); line-height: 0.95; }
.lead { max-width: 38rem; margin: 1rem auto 1.6rem; font-size: 1.15rem; }
.eyebrow { letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; margin-bottom: .6rem; color: var(--accent); }
.hero .eyebrow { color: #f3d9c4; }
.hero-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: 0;
  padding: .75rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.btn-ghost { background: transparent; border: 1px solid currentColor; }
.hero .btn-ghost { color: #fff; }
.btn-small { padding: .45rem .9rem; font-size: .9rem; }
.section { padding: 5rem 0; }
.section.alt { background: #efe6d9; }
.wrap { width: min(1080px, 90vw); margin: 0 auto; }
.split { display: grid; grid-template-columns: 1.3fr .8fr; gap: 2rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
}
.card.warn { background: #fff6e8; }
.quote { font-size: 1.4rem; margin-top: 1rem; font-style: italic; }
.facts { list-style: none; }
.facts li { padding: .35rem 0; border-bottom: 1px solid var(--line); }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.5rem; }
.pills span, .chips li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .9rem;
}
.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin-top: 1rem; }
.tables { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
table { width: 100%; border-collapse: collapse; margin-top: .6rem; }
th, td { text-align: left; padding: .45rem 0; border-bottom: 1px solid var(--line); }
.muted { color: var(--muted); margin-top: 1rem; }
.tiny { font-size: .8rem; color: var(--muted); }
.form { display: grid; gap: .7rem; }
.form input, .form textarea {
  width: 100%; padding: .6rem .7rem;
  border: 1px solid var(--line); border-radius: 8px; font: inherit;
}
label { display: grid; gap: .25rem; font-size: .9rem; }
.price { color: var(--accent); font-weight: 600; margin: .25rem 0 .4rem; }
h2.spaced { margin-top: 2.4rem; }
footer { padding: 2rem 0 3rem; color: var(--muted); }
@media (max-width: 800px) {
  .nav-toggle { display: block; }
  nav { display: none; position: absolute; top: 58px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 1rem 6vw 1.4rem; border-bottom: 1px solid var(--line); }
  body.menu-open nav { display: flex; }
  .split, .grid-3, .tables { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; padding-top: 7rem; }
}
