:root {
  --pine: #1f3a34;
  --pine-deep: #152a25;
  --sage: #6f8a7e;
  --cream: #f5f0e4;
  --sand: #e9e2d0;
  --copper: #c0763f;
  --copper-dark: #a35f2d;
  --ink: #1d2320;
  --muted: #56615c;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}
img, svg { display: block; }
a { color: inherit; }

.wrap { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.25rem); max-width: 16ch; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: .9rem;
}
.lede { font-size: 1.2rem; max-width: 56ch; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(21, 42, 37, .92);
  backdrop-filter: saturate(140%) blur(8px);
  color: var(--cream);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.brand em { font-style: normal; font-weight: 400; opacity: .75; }
.brand img { border-radius: 7px; }
nav { display: flex; align-items: center; gap: 1.5rem; font-size: .95rem; }
nav a { text-decoration: none; opacity: .85; }
nav a:hover { opacity: 1; }
.nav-cta { border: 1px solid rgba(245, 240, 228, .4); padding: .4rem .9rem; border-radius: 999px; opacity: 1; }
.nav-cta:hover { background: rgba(245, 240, 228, .1); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--pine-deep) 0%, var(--pine) 70%, #2c4a42 100%);
  color: var(--cream);
  padding-top: clamp(4rem, 10vw, 7.5rem);
  overflow: hidden;
}
.hero .eyebrow { color: #e0a877; }
.hero .lede { color: rgba(245, 240, 228, .85); }
.hero-inner { position: relative; z-index: 1; padding-bottom: clamp(7rem, 14vw, 11rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.ridge { position: absolute; left: 0; bottom: -1px; width: 100%; height: clamp(120px, 18vw, 260px); }
.ridge-far { fill: #3c5c52; opacity: .7; }
.ridge-near { fill: var(--cream); }
.creek { fill: none; stroke: var(--copper); stroke-width: 3; opacity: .55; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  border: 1.5px solid transparent;
  overflow-wrap: anywhere;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--copper); color: #fff; }
.btn-primary:hover { background: var(--copper-dark); }
.btn-ghost { border-color: rgba(245, 240, 228, .45); color: var(--cream); }
.btn-ghost:hover { background: rgba(245, 240, 228, .1); }
.btn-light { background: var(--cream); color: var(--pine-deep); }
.btn-light:hover { background: #fff; }
a:focus-visible, .btn:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; }

/* Sections */
.section { padding-block: clamp(4rem, 9vw, 6.5rem); scroll-margin-top: 4rem; }
.section-alt { background: var(--sand); }
.two-col { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.prose { color: var(--muted); font-size: 1.1rem; }
@media (min-width: 820px) {
  .two-col { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.cards { display: grid; gap: 1.5rem; margin-top: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(31, 58, 52, .1);
}
.card p { color: var(--muted); margin: 0; }
.card-icon { width: 44px; height: 44px; margin-bottom: 1.2rem; fill: none; stroke: var(--pine); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.steps { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { border-top: 2px solid var(--pine); padding-top: 1.2rem; }
.steps p { color: var(--muted); margin: 0; }
.step-num { display: block; font-family: var(--serif); color: var(--copper); font-size: 1.1rem; margin-bottom: .4rem; }

/* Contact */
.contact { background: var(--pine); color: var(--cream); }
.contact .eyebrow { color: #e0a877; }
.contact .lede { color: rgba(245, 240, 228, .85); margin-inline: auto; }
.contact-inner { text-align: center; }
.contact h2 { max-width: 22ch; margin-inline: auto; }
.contact .btn { margin-top: 1rem; }

/* Footer */
.site-footer { background: var(--pine-deep); color: rgba(245, 240, 228, .65); font-size: .9rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; padding-block: 1.5rem; }

@media (max-width: 560px) {
  nav a:not(.nav-cta) { display: none; }
  .brand em { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* Sell-to-us lists, about, contact */
.prose-sm { color: var(--muted); font-size: 1.05rem; max-width: 48ch; }
.two-col .btn { margin-top: .5rem; }
.list-title { font-size: 1.1rem; margin: 0 0 .6rem; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: .6rem; color: var(--muted); }
.checklist li { position: relative; padding-left: 1.7rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: .9rem; height: .5rem;
  border-left: 2.5px solid var(--copper); border-bottom: 2.5px solid var(--copper); transform: rotate(-45deg);
}
.checklist.plain li::before { border: 0; width: .6rem; height: 2px; background: var(--muted); top: .8em; transform: none; }

.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1rem; }
.contact-note { margin-top: 1.5rem; font-size: .95rem; color: rgba(245, 240, 228, .7); }
