@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

/* ---------------------------------------------------------------
   Design tokens
   Palette: dark charcoal/slate + gold accent. Fixed dark theme —
   not user-switchable, so no prefers-color-scheme override.
--------------------------------------------------------------- */
:root {
  /* Surfaces — cooled toward the dusk sky, not neutral grey */
  --bg: #2C2F34;
  --bg-alt: #33373D;
  --surface: #3A3F46;
  --surface-raised: #454B53;

  /* Text */
  --ink: #F3EFE7;
  --ink-soft: #C9C3B6;
  --muted: #A9A69D;

  /* Borders */
  --border: #4A5058;
  --border-strong: #5C636C;

  /* Accent */
  --gold: #C9A84C;
  --gold-hover: #DAB95F;
  --gold-ink: #1C1A14;
  --gold-soft: rgba(201, 168, 76, 0.10);
  --gold-soft-border: rgba(201, 168, 76, 0.35);

  /* Mountain graphic — Fisher Peak alpenglow */
  --sky-top: #24272C;
  --sky-horizon: #3C424B;
  --alpenglow: #E0A868;
  --alpenglow-deep: #B97A45;
  --snow-lit: #F0E4CE;
  --cloud-rose: #C9A98F;
  --rock-shadow: #14171C;
  --rock-mid: #1F2329;

  /* Type */
  --font-head: "Newsreader", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale (8px rhythm) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; }

::selection { background: var(--gold-soft-border); color: var(--ink); }

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(30, 32, 36, 0.35);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 0 rgba(224, 168, 104, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: 68px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  text-decoration: none;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.wordmark-peak {
  width: 24px;
  height: 19px;
  flex-shrink: 0;
}

.wordmark-accent {
  color: var(--alpenglow);
  font-style: normal;
  margin-left: 0.1em;
}

.wordmark.small {
  font-size: 1.05rem;
  font-style: normal;
  gap: 0;
}

.wordmark.small .wordmark-accent { color: var(--gold); }

.site-nav {
  display: flex;
  gap: var(--space-4);
  margin-right: auto;
  margin-left: var(--space-5);
}

.site-nav a {
  text-decoration: none;
  font-size: 1.05rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--gold); }

.header-cta { flex-shrink: 0; }

.nav-toggle-input { display: none; }

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-toggle-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

/* Buttons */

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--gold-ink);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.18);
}

.btn-large {
  font-size: 1.05rem;
  padding: 16px 34px;
}

.btn-small {
  font-size: 0.85rem;
  padding: 9px 18px;
}

/* Eyebrow labels */

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.eyebrow-section { margin-bottom: var(--space-1); }

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 68px 0 0;
  min-height: 880px;
  background: var(--sky-top);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("images/fisher-peak.png");
  background-size: cover;
  background-position: 62% 32%;
  z-index: 0;
  pointer-events: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(15, 15, 17, 0.78) 0%, rgba(15, 15, 17, 0.42) 40%, rgba(15, 15, 17, 0.08) 62%, rgba(15, 15, 17, 0) 78%),
    linear-gradient(180deg, rgba(15, 15, 17, 0.6) 0%, rgba(15, 15, 17, 0.2) 16%, rgba(15, 15, 17, 0) 34%, rgba(15, 15, 17, 0) 70%, var(--bg) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  padding-top: var(--space-1);
}

.hero-heading { max-width: 700px; }

.hero h1 {
  font-size: clamp(1.8rem, 3.8vw, 3.06rem);
  max-width: 24ch;
}

.hero-qr {
  position: absolute;
  bottom: var(--space-7);
  right: 7%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  text-decoration: none;
  transition: transform 0.15s ease;
}

.hero-qr:hover { transform: translateY(-2px); }

.hero-actions {
  position: absolute;
  bottom: var(--space-7);
  left: var(--space-3);
  z-index: 1;
}

.hero-qr img {
  width: 288px;
  height: 288px;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.hero-qr-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 52ch;
  margin-top: var(--space-2);
}

.hero-photo-credit {
  position: absolute;
  bottom: 8px;
  right: 12px;
  z-index: 1;
  font-size: 0.7rem;
  color: rgba(243, 239, 231, 0.4);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.hero-photo-credit:hover { color: rgba(243, 239, 231, 0.75); }

/* Sections */

.section {
  position: relative;
  padding: var(--space-7) 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--rock-shadow) 0%,
    var(--alpenglow-deep) 20%,
    var(--alpenglow) 50%,
    var(--alpenglow-deep) 80%,
    var(--rock-shadow) 100%);
}

.section-alt { background: var(--bg-alt); }

.section h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  max-width: 20ch;
}

#what-i-do h2 { max-width: 30ch; }

#who-its-for h2 { max-width: 34ch; }

.section-lede {
  max-width: 56ch;
  font-size: 1.05rem;
  margin-bottom: var(--space-5);
}

/* What I do */

.grid { display: grid; gap: var(--space-3); }

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.5);
}

.card-number {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p { font-size: 0.95rem; margin: 0; }

/* Who it's for */

.who-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3) var(--space-4);
}

.who-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: 0 8px 16px -10px rgba(0, 0, 0, 0.45);
}

.who-icon {
  width: 26px;
  height: 26px;
  color: var(--alpenglow);
  flex-shrink: 0;
}

.who-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ink);
}

.who-examples {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Why local */

.why-local {
  position: relative;
  overflow: hidden;
}

.why-local-photo {
  position: absolute;
  inset: 0;
  background-image: url("images/fisher-peak.png");
  background-size: cover;
  background-position: 30% 40%;
  filter: grayscale(45%) brightness(0.55);
  opacity: 0.4;
}

.why-local::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(44, 47, 52, 0.75) 38%, rgba(44, 47, 52, 0.25) 70%, rgba(44, 47, 52, 0.55) 100%);
}

.why-local-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

/* Pricing */

.grid-pricing {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.5);
}

.price-card-highlight {
  background: var(--surface-raised);
  border-color: var(--alpenglow-deep);
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--gold-soft-border);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: var(--space-3);
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.price-card-head { margin-bottom: var(--space-3); }

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}

.price-tag {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-2);
}

.price-prefix {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 100%;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--ink);
  line-height: 1;
}

.price-period {
  font-size: 0.95rem;
  color: var(--muted);
}

.price-security {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin: 0 0 10px;
}

.price-desc {
  font-size: 0.95rem;
  margin: 0;
}

.price-features {
  list-style: none;
  margin: 0;
  padding: var(--space-3) 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.price-features li {
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}

.price-footnote {
  margin-top: var(--space-4);
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 60ch;
}

/* Contact */

.section-contact {
  background: var(--surface);
  text-align: left;
}

.contact-inner { max-width: 560px; }

.section-contact h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }

/* Footer */

.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: var(--space-4) 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--rock-shadow) 0%,
    var(--alpenglow-deep) 20%,
    var(--alpenglow) 50%,
    var(--alpenglow-deep) 80%,
    var(--rock-shadow) 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 1180px) {
  .grid-pricing { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-pricing { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .who-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-nav { display: none; }
  .nav-toggle-btn { display: flex; }

  .nav-toggle-input:checked ~ .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 20;
    margin: 0;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.5);
  }

  .nav-toggle-input:checked ~ .site-nav a {
    padding: 14px var(--space-3);
    border-bottom: 1px solid var(--border);
  }

  .hero { flex-direction: column; padding: 68px 0 var(--space-5); min-height: 620px; }
  .hero-inner { order: 1; }
  .hero-actions { order: 2; position: static; transform: none; margin: var(--space-4) 0 0; }
  .hero-qr { order: 3; position: static; margin: var(--space-4) 0 0; flex-direction: row; gap: var(--space-2); }
  .hero-qr img { width: 120px; height: 120px; }
  .section { padding: var(--space-6) 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .who-list { grid-template-columns: 1fr; }
  .header-cta { padding: 8px 14px; font-size: 0.8rem; }
  .wordmark { font-size: 1.1rem; gap: 6px; }
  .wordmark-peak { width: 18px; height: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
}