:root {
  --ink: #1a1c16;
  --ink-soft: #3a3d34;
  --cream: #f4efe4;
  --paper: #faf7f0;
  --white: #ffffff;
  --line: #d8d0c2;
  --forest: #2d3d2a;
  --forest-deep: #1c281b;
  --moss: #4a6b45;
  --gold: #c4a15a;
  --gold-hover: #d4b56e;
  --shadow: 0 18px 40px rgba(26, 28, 22, 0.12);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 12px 20px;
  transition: 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover { background: var(--gold-hover); }

.btn-dark {
  background: var(--forest);
  color: var(--cream);
}

.btn-dark:hover { background: var(--forest-deep); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 239, 228, 0.4);
}

.btn-outline:hover { background: rgba(255,255,255,0.08); }

/* Hero */
.hero {
  background:
    linear-gradient(180deg, rgba(28, 40, 27, 0.72), rgba(28, 40, 27, 0.88)),
    radial-gradient(circle at 20% 20%, #4a6b45 0%, transparent 40%),
    var(--forest-deep);
  color: var(--cream);
  padding: 72px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero p.lead {
  font-size: 1.12rem;
  max-width: 34rem;
  color: rgba(244, 239, 228, 0.86);
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: rgba(250, 247, 240, 0.96);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.hero-card p { color: var(--ink-soft); margin-bottom: 18px; }

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  background: var(--cream);
  border-radius: 12px;
  padding: 14px;
}

.stat b { display: block; font-size: 1.05rem; }
.stat span { font-size: 0.82rem; color: var(--ink-soft); }

/* Sections */
section { padding: 72px 0; }

h2.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.muted { color: var(--ink-soft); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.band {
  background: var(--forest);
  color: var(--cream);
}

.band .muted { color: rgba(244,239,228,0.75); }

.list {
  margin: 18px 0 0 18px;
}

.list li { margin-bottom: 8px; }

/* Quote */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  margin-top: 28px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 14px 0 6px;
}

select, input, textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

textarea { min-height: 110px; resize: vertical; }

.result {
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
}

.result .range {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 10px 0 14px;
}

.fineprint { font-size: 0.86rem; color: rgba(244,239,228,0.75); }

.note {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  margin-top: 28px;
}

.contact-item {
  margin-top: 16px;
}

.contact-item a { color: var(--forest); font-weight: 600; text-decoration: none; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-toggle { display: none; background: none; border: 0; font-size: 1.4rem; }

@media (max-width: 860px) {
  .hero-grid, .cards, .quote-layout, .contact-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    right: 20px;
    top: 84px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}
