/* nate-land.com — design tokens sampled from the live Gamma site 2026-07-07.
   Faithful port: don't restyle without checking the spec. */
:root {
  --cream: #F5F0E8;        /* page base */
  --cream-deep: #F1E9DA;   /* panels/cards on cream */
  --cream-line: #EBE2D4;   /* hairlines on cream */
  --forest: #1A2B28;       /* darkest green: bands, headline ink */
  --teal: #1D4241;         /* teal band */
  --navy: #1D3040;         /* navy band */
  --ink: #2C3E35;          /* body text on cream */
  --gold: #C8A96E;         /* accent */
  --gold-deep: #947438;    /* accent on light backgrounds */
  --chip: #372C15;         /* eyebrow chip on dark bands */
  --paper: #FFFFFF;
  --display: "Libre Baskerville", Georgia, serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.25; }

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ---- header ---- */
.site-header { background: var(--cream); border-bottom: 1px solid var(--cream-line); }
.site-header .wrap {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 14px; padding-bottom: 14px;
}
.wordmark {
  font-family: var(--display); font-size: 1.15rem; color: var(--forest);
  text-decoration: none; letter-spacing: .02em; margin-right: auto;
}
.site-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-nav a { text-decoration: none; font-size: .92rem; color: var(--ink); }
.site-nav a:hover { color: var(--gold-deep); }
.site-nav a[aria-current="page"] { color: var(--gold-deep); font-weight: 600; }

/* ---- buttons ---- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: .95rem;
  padding: 12px 26px; border-radius: 999px; transition: background .15s ease;
}
.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: var(--gold-deep); color: var(--cream); }
.btn-ghost { border: 1.5px solid var(--gold); color: var(--forest); }
.btn-ghost:hover { background: var(--gold); }
.band-dark .btn-ghost { color: var(--cream); }
.band-dark .btn-ghost:hover { color: var(--forest); }

/* ---- bands ---- */
.band { padding: 84px 0; }
.band-forest { background: var(--forest); }
.band-teal { background: var(--teal); }
.band-navy { background: var(--navy); }
.band-cream-deep { background: var(--cream-deep); }
.band-dark { color: var(--cream); }
.band-dark p { color: rgba(245, 240, 232, .85); }

.eyebrow {
  display: inline-block; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 22px;
  background: var(--cream-deep); color: var(--ink);
}
.band-dark .eyebrow { background: var(--chip); color: #fff; }

.band h2 { font-size: clamp(1.7rem, 4vw, 2.45rem); color: var(--forest); margin-bottom: 18px; }
.band .lede { max-width: 640px; margin-bottom: 42px; }
/* dark-band heading override must come AFTER .band h2 (equal specificity — order decides) */
.band-dark h1, .band-dark h2, .band-dark h3 { color: #fff; }

/* ---- hero ---- */
.hero { padding: 96px 0 90px; }
.hero h1 { font-size: clamp(2rem, 5vw, 2.9rem); color: var(--forest); max-width: 750px; margin-bottom: 26px; }
.hero p { max-width: 640px; margin-bottom: 18px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 22px; }
.hero .locale { font-style: italic; color: var(--gold-deep); }

/* home hero: interior photo behind a cream wash, like the original site */
.hero-home {
  background:
    linear-gradient(rgba(245, 240, 232, .92), rgba(245, 240, 232, .96) 55%, var(--cream)),
    url('/img/hero.webp') center 30% / cover no-repeat;
}

/* hero with an illustration beside the text (service pages) */
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-grid img { width: 100%; height: auto; border-radius: 12px; display: block; }
@media (max-width: 760px) { .hero-grid { grid-template-columns: 1fr; } }

/* text + portrait/figure split */
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.split img { width: 100%; height: auto; max-height: 460px; object-fit: cover; border-radius: 12px; display: block; }
.split figcaption { font-size: .85rem; margin-top: 10px; color: var(--gold-deep); }
.band-dark .split figcaption { color: var(--gold); }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

/* ---- card grids ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
  border-radius: 10px; padding: 30px 28px;
  background: rgba(245, 240, 232, .06); border: 1px solid rgba(245, 240, 232, .16);
}
.band-light .card, .card-light { background: var(--paper); border: 1px solid var(--cream-line); }
.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p { font-size: .95rem; }
.card ul { margin: 16px 0 0 18px; font-size: .92rem; }
.card li { margin-bottom: 7px; }
.card .card-link { display: inline-block; margin-top: 18px; font-weight: 600; font-size: .92rem; color: var(--gold); text-decoration: none; }
.card-light .card-link { color: var(--gold-deep); }
.card .card-link:hover { text-decoration: underline; }
a.card { display: block; text-decoration: none; }

/* ---- stats ---- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; }
.stat { background: var(--paper); border: 1px solid var(--cream-line); border-radius: 10px; padding: 26px 24px; }
.stat .num { font-family: var(--display); font-size: 2.3rem; color: var(--gold-deep); display: block; margin-bottom: 8px; }
.stat h3 { font-family: var(--body); font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--forest); }
.stat p { font-size: .9rem; }

/* ---- testimonials ----
   PLACEHOLDER RULE: a <figure class="quote"> with class "placeholder" must be
   removed or replaced with a real quote before DNS cutover. Never ships live. */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.quote { border-left: 3px solid var(--gold); padding: 6px 0 6px 22px; }
.quote blockquote { font-family: var(--display); font-size: 1.05rem; line-height: 1.6; margin-bottom: 14px; }
.quote figcaption { font-size: .88rem; color: rgba(245, 240, 232, .75); }
.quote.placeholder { position: relative; opacity: .75; }
.quote.placeholder::before {
  content: "placeholder — real quote before launch"; display: block;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}

/* ---- footer / CTA ---- */
.site-footer { background: var(--forest); color: var(--cream); padding: 80px 0 40px; }
.site-footer h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 16px; }
.site-footer .lede { color: rgba(245, 240, 232, .85); max-width: 620px; margin-bottom: 30px; }
.footer-meta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(245, 240, 232, .2); margin-top: 56px; padding-top: 26px; font-size: .9rem;
}
.footer-meta .name { font-family: var(--display); margin-right: auto; }
.footer-meta a { color: var(--cream); text-decoration: none; }
.footer-meta a:hover { color: var(--gold); }
.copyright { margin-top: 22px; font-size: .8rem; color: rgba(245, 240, 232, .55); }

/* ---- writing cards (baked by tools/build-writing.js) ---- */
.post-date { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

/* LinkedIn highlight slot — same never-ship rule as testimonial placeholders */
.linkedin-slot { margin-top: 26px; }
.linkedin-slot iframe { max-width: 100%; border: 0; border-radius: 10px; }

/* ---- contact form embed ---- */
.form-shell { background: var(--paper); border: 1px solid var(--cream-line); border-radius: 10px; padding: 18px; }
.form-shell iframe { width: 100%; border: 0; min-height: 620px; }

@media (max-width: 640px) {
  .band { padding: 60px 0; }
  .hero { padding: 64px 0 60px; }
}
