:root {
  --bg: #f5f1ea;
  --surface: #fffdf9;
  --ink: #1f2933;
  --muted: #5b6773;
  --line: #ddd4c7;
  --brand: #8a5a2b;
  --brand-dark: #69411a;
  --accent: #22313f;
  --shadow: 0 14px 40px rgba(31, 41, 51, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221, 212, 199, 0.8);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.brand-lockup {
  width: 280px;
  max-width: 48vw;
  display: block;
}
.brand small, nav a, .lead, .small-note, .section-heading p { color: var(--muted); }
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
nav a {
  text-decoration: none;
  font-weight: 600;
}
.hero {
  padding: 5rem 0 3rem;
}
.hero-grid, .two-col, .contact-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.7rem;
}
h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); max-width: 12ch; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
.lead { font-size: 1.1rem; max-width: 62ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0;
}
.button {
  display: inline-flex;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.button.primary {
  background: var(--accent);
  color: white;
}
.button.secondary {
  background: white;
  color: var(--accent);
  border: 1px solid var(--line);
}
.hero-points, .checklist ul {
  padding-left: 1.1rem;
}
.hero-card, .card, .step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.hero-card, .card { padding: 1.4rem; }
.contact-preview {
  margin: 1rem 0;
  padding: 1rem;
  background: #f3ede4;
  border-radius: 16px;
}
.section {
  padding: 4.5rem 0;
}
.section.alt { background: #efe8de; }
.section.accent {
  background: linear-gradient(135deg, #22313f, #334a5c);
  color: white;
}
.section.accent .eyebrow,
.section.accent .small-note { color: #d3dde6; }
.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}
.cards.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.step {
  padding: 1.4rem;
}
.step span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ead7bf;
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}
.contact-card a { color: white; }
.site-footer {
  border-top: 1px solid rgba(221, 212, 199, 0.8);
  background: #f0e9df;
}
.footer-inner {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-grid, .two-col, .contact-block, .cards.three-up, .steps {
    grid-template-columns: 1fr;
  }
  .nav, .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 0;
  }
  .brand-lockup {
    width: min(260px, 70vw);
    max-width: 100%;
  }
  h1 { max-width: 100%; }
}
