:root {
  --bg: #FAF6F1;
  --sand: #F0E8DA;
  --sand-warm: #F5EDDE;
  --sage: #839C7A;
  --sage-deep: #6C8562;
  --terracotta: #C46B4E;
  --terracotta-deep: #A85639;
  --pine: #2E3F30;
  --pine-soft: #4E6350;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--pine);
  font-family: 'Nunito Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: var(--pine);
  line-height: 1.1;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 24px; max-width: 20ch; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }

.eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
}

.lede {
  font-size: 1.15rem;
  color: var(--pine-soft);
  max-width: 58ch;
  line-height: 1.65;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--sage); color: white; }
.btn-primary:hover { background: var(--sage-deep); text-decoration: none; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.quiet {
  color: var(--pine);
  font-weight: 600;
  border-bottom: 2px solid var(--sand);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.quiet:hover { border-color: var(--terracotta); text-decoration: none; }

/* ---------- Nav ---------- */
.nav { padding: 26px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--pine);
}
.brand-mark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--pine);
}
.brand-dot {
  width: 10px;
  height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  margin-top: 8px;
}

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  color: var(--pine);
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--terracotta); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-inner { padding-bottom: 40px; }
.hero .lede { margin-top: 32px; margin-bottom: 40px; }
.cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.mountains { display: block; width: 100%; height: auto; margin-top: 20px; }

/* ---------- Services ---------- */
.services { padding: 100px 0; background: var(--sand-warm); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-sub { font-size: 1.1rem; color: var(--pine-soft); margin-top: 8px; max-width: 55ch; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: var(--bg);
  border-radius: 20px;
  padding: 34px 32px;
  border: 1px solid rgba(46, 63, 48, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(46, 63, 48, 0.08);
}
.card p { color: var(--pine-soft); font-size: 0.99rem; }

/* ---------- Quote ---------- */
.quote { padding: 100px 0; text-align: center; }
.quote blockquote { max-width: 780px; margin: 0 auto; }
.quote p {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.35;
  color: var(--pine);
  margin: 28px 0 32px;
}
.quote footer { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.quote cite { font-style: normal; font-weight: 700; color: var(--pine); }
.quote span { color: var(--pine-soft); font-size: 0.94rem; }

/* ---------- Idaho callout ---------- */
.idaho { padding: 90px 0; background: var(--pine); color: var(--bg); }
.idaho-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.idaho-tag {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196, 107, 78, 0.12);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.idaho-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--bg);
}

/* ---------- CTA band ---------- */
.cta-band { padding: 100px 0; text-align: center; background: var(--sand-warm); }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { max-width: none; margin: 0 auto 20px; }
.cta-band p { color: var(--pine-soft); font-size: 1.1rem; margin-bottom: 36px; max-width: 48ch; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.foot { padding: 50px 0 60px; border-top: 1px solid rgba(46, 63, 48, 0.1); }
.foot-inner { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.foot-brand { display: inline-flex; align-items: center; gap: 8px; }
.foot-meta { color: var(--pine-soft); font-size: 0.95rem; }
.foot-fine { color: var(--pine-soft); font-size: 0.82rem; opacity: 0.7; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero { padding: 50px 0 0; }
  .services, .quote, .idaho, .cta-band { padding: 70px 0; }
  .cards { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .wrap { padding: 0 22px; }
}
