/* parkstamp.com — the one stylesheet.
   Generated pages link this file; no page carries an inline <style> block.
   Where the old per-page styles had drifted, the park-page values won
   (footer max-width 1080, 14px/0.7 links, gold column titles) — those are
   the ones approved on screen. Edit here, rebuild nothing: this file is
   hand-maintained and served as-is. */

/* ── Fonts (self-hosted, was render-blocking Google Fonts) ─────────────── */
@font-face {
  font-family: 'Patua One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/patua-one-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Reset, tokens, base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ranger-navy:  #1a2b3c;
  --canyon-rust:  #c4572b;
  --trail-gold:   #d4a13a;
  --parchment:    #f5ebd6;
  --forest-green: #2d5016;
  --charcoal:     #2a2a2a;
  --smoke:        #8a8a8a;
  --off-white:    #faf6ef;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ────────────────────────────────────────────────────────────── */
.top-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--ranger-navy);
  padding: 12px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid rgba(245,235,214,0.06);
}
.nav-wordmark { font-family: 'Patua One', serif; font-size: 22px; line-height: 1; text-decoration: none; }
.nav-wordmark .park { color: var(--parchment); }
.nav-wordmark .stamp { color: var(--trail-gold); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(245,235,214,0.8); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--canyon-rust); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--parchment); background: var(--canyon-rust);
  padding: 8px 18px; border-radius: 4px; text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #a8471f; }

/* Mobile nav. The toggle only appears when JS is running (html.js), so a
   no-JS visitor never sees a button that does nothing. The panel ships in
   the HTML with [hidden] and stays hidden without JS. */
.nav-toggle { display: none; }
.nav-menu { display: none; }
.nav-menu[hidden] { display: none; }

@media (max-width: 860px) {
  .top-nav { padding: 10px 18px; }
  .nav-wordmark { font-size: 19px; }
  .nav-links { display: none; }
  .nav-cta { font-size: 10px; padding: 8px 14px; }
  html.js .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin: -6px -8px -6px 0;
    background: none; border: none; cursor: pointer; border-radius: 6px;
    color: var(--parchment);
  }
  html.js .nav-toggle:hover { color: var(--trail-gold); }
  .nav-menu:not([hidden]) {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ranger-navy);
    border-bottom: 1px solid rgba(245,235,214,0.12);
    box-shadow: 0 18px 30px rgba(0,0,0,0.25);
  }
  .nav-menu a {
    display: block; padding: 13px 22px; min-height: 44px;
    font-size: 15px; font-weight: 500; color: rgba(245,235,214,0.9);
    text-decoration: none; border-top: 1px solid rgba(245,235,214,0.07);
  }
  .nav-menu a:hover { color: var(--canyon-rust); background: rgba(245,235,214,0.04); }
}

/* ── Store badges: the official Apple / Google Play badge artwork, inline
   SVG, everywhere a store link appears (hero, CTA bands, footer). Do not
   restyle the art; both vendors' brand guidelines require it as shipped.
   Sizing keeps the two visually equal and above both vendors' minimums. */
.store-badge { display: inline-block; height: 50px; opacity: 0.92; transition: opacity 0.2s; }
.store-badge:hover { opacity: 1; }
.store-badge svg { display: block; height: 100%; width: auto; }

/* ── Shared page furniture (breadcrumb, fact band, CTA band) ───────────── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.crumb { font-size: 12px; color: var(--smoke); padding: 20px 0 0; }
.crumb a { color: var(--smoke); text-decoration: none; }
.crumb a:hover { color: var(--canyon-rust); }
.crumb span { margin: 0 6px; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--canyon-rust); margin-bottom: 14px; }
.facts { background: var(--off-white); border-top: 1px solid #ece3d2; border-bottom: 1px solid #ece3d2; }
.facts-inner { max-width: 1080px; margin: 0 auto; padding: 26px 24px; display: flex; gap: 56px; flex-wrap: wrap; }
.fact-label { font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--smoke); }
.fact-value { font-family: 'Patua One', serif; font-size: 24px; color: var(--ranger-navy); margin-top: 4px; }
.cta { background: var(--ranger-navy); color: var(--parchment); text-align: center; }
.cta h2 { color: var(--parchment); }
.cta .sub { color: rgba(245,235,214,0.72); }
.badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ── Article pages (parks index, region pages, park pages) ─────────────── */
.article h1 { font-family: 'Patua One', serif; font-size: 46px; line-height: 1.12; color: var(--ranger-navy); font-weight: 400; margin-bottom: 20px; }
.article h2 { font-family: 'Patua One', serif; font-size: 30px; color: var(--ranger-navy); font-weight: 400; margin-bottom: 10px; }
.article section { padding: 64px 0; }
.article section p { margin-bottom: 16px; max-width: 74ch; }
.article .sub { color: var(--smoke); font-size: 15px; margin-bottom: 34px; }
.article .lede { font-size: 18px; line-height: 1.65; color: #444; margin-bottom: 18px; }
.article .masthead { padding: 28px 0 40px; max-width: 74ch; }
@media (max-width: 860px) { .article h1 { font-size: 34px; } }

/* Park / region list cards (hub + region pages) */
.plist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: #ece3d2; border: 1px solid #ece3d2; }
.pcard { background: #fff; padding: 18px 20px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; text-decoration: none; color: inherit; }
a.pcard:hover { background: var(--off-white); }
.pcard .nm { font-family: 'Patua One', serif; font-size: 17px; color: var(--ranger-navy); }
a.pcard:hover .nm { color: var(--canyon-rust); }
.pcard .st { font-size: 13px; color: var(--smoke); margin-top: 2px; }
.pcard .rt { font-size: 12px; color: var(--smoke); text-align: right; white-space: nowrap; }
.pcard.soon .nm { color: var(--smoke); }
@media (max-width: 760px) { .plist { grid-template-columns: 1fr; } }
.rgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.rcard { border: 1px solid #ece3d2; border-radius: 4px; padding: 22px; text-decoration: none; color: inherit; display: block; transition: border-color 0.2s; }
.rcard:hover { border-color: var(--canyon-rust); }
.rcard h3 { font-family: 'Patua One', serif; font-size: 21px; color: var(--ranger-navy); font-weight: 400; margin-bottom: 6px; }
.rcard .rm { font-size: 12px; color: var(--smoke); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 10px; }
.rcard p { font-size: 15px; color: #4a4a4a; margin: 0; }
@media (max-width: 760px) { .rgrid { grid-template-columns: 1fr; } }
.caveat { border-left: 3px solid var(--canyon-rust); padding: 4px 0 4px 18px; margin-top: 26px; max-width: 74ch; }
.caveat .ct { font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--canyon-rust); margin-bottom: 6px; }
.caveat p { margin: 0; font-size: 15px; color: #4a4a4a; }

/* ── Park pages ────────────────────────────────────────────────────────── */
.page-park .park-hero { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; padding: 28px 0 56px; }
.page-park .park-hero p { margin-bottom: 16px; }
.page-park .stamp-frame { position: sticky; top: 92px; }
.page-park .stamp-frame img { display: block; width: 100%; height: auto; border-radius: 3px; border: 6px solid var(--trail-gold); box-shadow: 0 14px 40px rgba(26,43,60,0.18); }
.page-park .stamp-caption { margin-top: 14px; text-align: center; }
.page-park .stamp-caption .scene { font-family: 'Patua One', serif; font-size: 17px; color: var(--ranger-navy); }
.page-park .stamp-caption .meta { font-size: 12px; color: var(--smoke); margin-top: 3px; }
.page-park .stamp-caption .rights { font-size: 11px; color: var(--smoke); margin-top: 10px; line-height: 1.5; }
@media (max-width: 860px) {
  .page-park .park-hero { grid-template-columns: 1fr; gap: 36px; }
  .page-park .stamp-frame { position: static; max-width: 300px; margin: 0 auto; }
}
.page-park .designs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.page-park .design { border-left: 3px solid var(--trail-gold); padding-left: 18px; }
.page-park .design h3 { font-family: 'Patua One', serif; font-size: 19px; color: var(--ranger-navy); font-weight: 400; margin-bottom: 8px; }
.page-park .design p { font-size: 15px; color: #4a4a4a; margin: 0; }
@media (max-width: 860px) { .page-park .designs { grid-template-columns: 1fr; gap: 22px; } }
.page-park .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.page-park .step-n { font-family: 'Patua One', serif; font-size: 15px; color: var(--parchment); background: var(--forest-green); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.page-park .step h3 { font-size: 16px; color: var(--ranger-navy); margin-bottom: 6px; }
.page-park .step p { font-size: 15px; color: #4a4a4a; margin: 0; }
@media (max-width: 860px) { .page-park .steps { grid-template-columns: 1fr; gap: 24px; } }
.page-park .nearby { background: var(--off-white); }
.page-park .nearby-list { display: flex; flex-wrap: wrap; gap: 10px; }
.page-park .nearby-list a { font-size: 14px; color: var(--ranger-navy); text-decoration: none; background: #fff; border: 1px solid #e6dcc8; border-radius: 999px; padding: 8px 16px; transition: border-color 0.2s, color 0.2s; }
.page-park .nearby-list a:hover { border-color: var(--canyon-rust); color: var(--canyon-rust); }
/* FAQ block (park pages + /faq share the styling below via .faq-list) */

/* ── Homepage ──────────────────────────────────────────────────────────── */
.page-home .hero { background: var(--ranger-navy); padding: 64px 24px 0; position: relative; overflow: hidden; }
.page-home .hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 75%, rgba(45,80,22,0.30) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 18%, rgba(196,87,43,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(212,161,58,0.10) 0%, transparent 45%);
  pointer-events: none;
}
.page-home .hero-inner { position: relative; z-index: 1; max-width: 1040px; margin: 0 auto; display: flex; align-items: center; gap: 56px; padding-bottom: 56px; }
.page-home .hero-left { flex: 1; max-width: 520px; }
.page-home .hero-wordmark { font-family: 'Patua One', serif; font-size: 58px; line-height: 1; margin-bottom: 14px; letter-spacing: -1px; }
.page-home .hero-wordmark .park { color: var(--parchment); }
.page-home .hero-wordmark .stamp { color: var(--trail-gold); }
.page-home .hero-tagline { font-family: 'Patua One', serif; font-size: 26px; color: var(--parchment); letter-spacing: 0.5px; margin-bottom: 16px; line-height: 1.25; }
.page-home .hero-sub { font-size: 16px; color: rgba(245,235,214,0.6); max-width: 440px; margin-bottom: 28px; line-height: 1.7; }
.page-home .hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.page-home .hero-coming { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--parchment); border: 1px solid var(--canyon-rust); padding: 6px 16px; border-radius: 4px; }
.page-home .hero-right { flex-shrink: 0; display: flex; justify-content: center; }
.page-home .hero-shot { width: 268px; border-radius: 30px; display: block; box-shadow: 0 30px 70px rgba(0,0,0,0.45); border: 4px solid #11202e; }
.page-home .stat-band { position: relative; z-index: 1; max-width: 1040px; margin: 0 auto; display: flex; justify-content: center; gap: 0; border-top: 1px solid rgba(245,235,214,0.10); flex-wrap: wrap; }
.page-home .stat { flex: 1; min-width: 150px; text-align: center; padding: 22px 18px; border-right: 1px solid rgba(245,235,214,0.08); }
.page-home .stat:last-child { border-right: none; }
.page-home .stat-num { font-family: 'Patua One', serif; font-size: 30px; color: var(--parchment); line-height: 1; }
.page-home .stat-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,235,214,0.55); margin-top: 8px; }
.page-home .mtn { display: block; width: 100%; height: 70px; }

.page-home .section-head { text-align: center; max-width: 640px; margin: 0 auto 12px; }
.page-home .section-head .eyebrow { margin-bottom: 12px; }
.page-home .section-title { font-family: 'Patua One', serif; font-size: 33px; color: var(--ranger-navy); line-height: 1.2; }
.page-home .section-intro { font-size: 16px; color: var(--charcoal); line-height: 1.8; max-width: 560px; margin: 14px auto 0; }

.page-home .features { padding: 84px 24px 40px; max-width: 1040px; margin: 0 auto; }
.page-home .features > .section-head { margin-bottom: 64px; }
.page-home .feature { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
.page-home .feature:nth-child(even) { flex-direction: row-reverse; }
.page-home .feature-text { flex: 1; }
.page-home .feature-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--canyon-rust); margin-bottom: 12px; }
.page-home .feature-title { font-family: 'Patua One', serif; font-size: 27px; color: var(--ranger-navy); line-height: 1.25; margin-bottom: 16px; }
.page-home .feature-body { font-size: 15.5px; color: var(--charcoal); line-height: 1.8; margin-bottom: 18px; }
.page-home .feature-list { list-style: none; }
.page-home .feature-list li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 14.5px; color: var(--charcoal); line-height: 1.5; }
.page-home .feature-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 13px; height: 13px; border-radius: 50%; background: var(--forest-green); box-shadow: 0 0 0 3px rgba(45,80,22,0.14); }
.page-home .feature-img-wrap { flex-shrink: 0; width: 256px; display: flex; justify-content: center; }
.page-home .feature-img { width: 256px; border-radius: 26px; display: block; box-shadow: 0 22px 48px rgba(26,43,60,0.22); border: 4px solid #11202e; }

.page-home .magic { background: var(--off-white); padding: 84px 24px; border-top: 3px solid var(--canyon-rust); }
.page-home .magic-kicker { text-align: center; font-size: 14px; font-weight: 600; color: var(--canyon-rust); margin: 18px auto 0; max-width: 560px; }
.page-home .magic-grid { max-width: 940px; margin: 52px auto 0; display: flex; gap: 28px; align-items: stretch; }
.page-home .magic-card { flex: 1; background: #fff; border: 1px solid rgba(26,43,60,0.12); border-radius: 18px; padding: 30px 28px 8px; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.page-home .magic-card.wow { border: 2px solid var(--forest-green); box-shadow: 0 22px 50px rgba(45,80,22,0.16); }
.page-home .magic-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--forest-green); color: var(--parchment); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 999px; white-space: nowrap; }
.page-home .magic-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--canyon-rust); margin-bottom: 8px; }
.page-home .magic-title { font-family: 'Patua One', serif; font-size: 23px; color: var(--ranger-navy); line-height: 1.25; margin-bottom: 12px; }
.page-home .magic-body { font-size: 15px; color: var(--charcoal); line-height: 1.7; margin-bottom: 24px; max-width: 340px; }
.page-home .magic-shot { width: 230px; border-radius: 24px; display: block; box-shadow: 0 20px 44px rgba(26,43,60,0.24); border: 4px solid #11202e; }

.page-home .how { background: var(--off-white); padding: 84px 24px; border-top: 1px solid rgba(26,43,60,0.06); }
.page-home .how-grid { max-width: 1000px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.page-home .how-card { background: #fff; border: 1px solid rgba(26,43,60,0.12); border-radius: 14px; padding: 26px 20px; text-align: center; }
.page-home .how-ico { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 12px; background: rgba(26,43,60,0.06); display: flex; align-items: center; justify-content: center; }
.page-home .how-ico svg { width: 24px; height: 24px; }
.page-home .how-card-title { font-family: 'Patua One', serif; font-size: 17px; color: var(--ranger-navy); margin-bottom: 8px; }
.page-home .how-card-body { font-size: 13.5px; color: var(--charcoal); line-height: 1.6; }
.page-home .how-sub { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; text-align: left; }
.page-home .how-sub-row { display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; color: var(--charcoal); line-height: 1.45; }
.page-home .how-sub-tag { flex-shrink: 0; font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--parchment); background: var(--ranger-navy); padding: 2px 7px; border-radius: 4px; margin-top: 1px; }
.page-home .how-pills { display: flex; gap: 6px; justify-content: center; margin-bottom: 10px; }
.page-home .how-pill { font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.page-home .how-pill.stamped { background: var(--forest-green); color: #fff; }
.page-home .how-pill.collected { background: var(--trail-gold); color: var(--ranger-navy); }

.page-home .showcase { padding: 84px 24px; text-align: center; max-width: 980px; margin: 0 auto; }
.page-home .stamp-row { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 48px; }
.page-home .stamp-ex { width: 134px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.page-home .stamp-ex-frame { position: relative; width: 134px; aspect-ratio: 2/3; border: 2px double var(--trail-gold); outline: 1px solid var(--trail-gold); outline-offset: 4px; overflow: hidden; background: var(--off-white); box-shadow: 0 12px 28px rgba(26,43,60,0.18); transition: transform 0.3s ease; }
.page-home .stamp-ex.stamped .stamp-ex-frame { border-color: var(--smoke); outline-color: var(--smoke); }
.page-home .stamp-ex.stamped .stamp-ex-frame img { filter: grayscale(1); opacity: 0.5; }
.page-home .stamp-ex-lock { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(26,43,60,0.16); }
.page-home .stamp-ex-lock svg { width: 30px; height: 30px; color: rgba(255,255,255,0.92); filter: drop-shadow(0 1px 2px rgba(26,43,60,0.55)); }
.page-home .stamp-ex:hover .stamp-ex-frame { transform: translateY(-5px); }
.page-home .stamp-ex-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-home .stamp-ex-cap { text-align: center; }
.page-home .stamp-ex-name { display: block; font-family: 'Patua One', serif; font-size: 13px; color: var(--ranger-navy); }
.page-home .stamp-ex-meta { display: block; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--forest-green); margin-top: 3px; }
.page-home .stamp-ex-meta.collected { color: var(--trail-gold); }
.page-home .showcase-browse { display: block; text-align: center; margin-top: 34px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--canyon-rust); text-decoration: none; transition: color 0.2s; }
.page-home .showcase-browse:hover { color: #a8471f; }

.page-home .pricing { background: var(--off-white); padding: 84px 24px; border-top: 1px solid rgba(26,43,60,0.06); }
.price-grid { max-width: 940px; margin: 52px auto 0; display: flex; gap: 24px; align-items: stretch; justify-content: center; flex-wrap: wrap; }
.price-card { flex: 1; min-width: 260px; max-width: 320px; background: #fff; border: 1px solid rgba(26,43,60,0.12); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--forest-green); box-shadow: 0 20px 48px rgba(45,80,22,0.16); position: relative; }
.price-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--forest-green); color: var(--parchment); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 999px; white-space: nowrap; }
.price-name { font-family: 'Patua One', serif; font-size: 21px; color: var(--ranger-navy); }
.price-amt { font-family: 'Patua One', serif; font-size: 40px; color: var(--ranger-navy); margin: 8px 0 2px; }
.price-amt small { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--smoke); }
.price-tag { font-size: 13px; color: var(--smoke); margin-bottom: 20px; }
.price-list { list-style: none; flex: 1; }
.price-list li { position: relative; padding-left: 24px; margin-bottom: 11px; font-size: 14px; color: var(--charcoal); line-height: 1.45; }
.price-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--forest-green); font-weight: 700; font-size: 14px; }
.price-note { font-size: 12.5px; color: var(--smoke); text-align: center; margin-top: 28px; }
.pricing-more, .faq-more { display: block; text-align: center; margin-top: 34px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--canyon-rust); text-decoration: none; transition: color 0.2s; }
.pricing-more:hover, .faq-more:hover { color: #a8471f; }

.page-home .founder { background: #fff; padding: 72px 24px; text-align: center; border-top: 1px solid rgba(26,43,60,0.06); }
.page-home .founder-quote { font-family: 'Patua One', serif; font-size: 22px; color: var(--ranger-navy); max-width: 560px; margin: 0 auto 14px; line-height: 1.55; }
.page-home .founder-attribution { font-size: 13px; color: var(--smoke); }

.page-home .faq { background: var(--off-white); padding: 84px 24px; border-top: 1px solid rgba(26,43,60,0.06); }

.page-home .signup { background: var(--ranger-navy); padding: 84px 24px; text-align: center; }
.page-home .signup-headline { font-family: 'Patua One', serif; font-size: 30px; color: var(--parchment); margin-bottom: 10px; }
.page-home .signup-sub { font-size: 15px; color: rgba(245,235,214,0.55); margin-bottom: 28px; }
.page-home .signup-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.page-home .signup-divider { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,235,214,0.3); margin-bottom: 18px; }
.page-home .signup-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; }
.page-home .signup-input { flex: 1; padding: 14px 18px; font-family: 'Inter', sans-serif; font-size: 15px; border: 2px solid rgba(245,235,214,0.15); border-right: none; border-radius: 5px 0 0 5px; background: rgba(245,235,214,0.06); color: var(--parchment); outline: none; transition: border-color 0.2s; }
.page-home .signup-input::placeholder { color: rgba(245,235,214,0.3); }
.page-home .signup-input:focus { border-color: var(--canyon-rust); }
.page-home .signup-btn { padding: 14px 26px; font-family: 'Patua One', serif; font-size: 15px; letter-spacing: 0.5px; background: var(--canyon-rust); color: var(--parchment); border: 2px solid var(--canyon-rust); border-radius: 0 5px 5px 0; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.page-home .signup-btn:hover { background: #a8471f; border-color: #a8471f; }
.page-home .signup-success { display: none; font-family: 'Patua One', serif; font-size: 18px; color: var(--parchment); margin-top: 8px; }
.page-home .signup-error { display: none; font-size: 13px; color: #e74c3c; margin-top: 12px; }
.page-home .signup-note { font-size: 11px; color: rgba(245,235,214,0.25); margin-top: 16px; }
.page-home .signup-note a { color: rgba(245,235,214,0.4); text-decoration: none; border-bottom: 1px solid rgba(245,235,214,0.15); transition: color 0.2s; }
.page-home .signup-note a:hover { color: var(--canyon-rust); }

@media (max-width: 860px) {
  .page-home .hero-inner { flex-direction: column; text-align: center; gap: 40px; padding-bottom: 48px; }
  .page-home .hero-left { max-width: 520px; }
  .page-home .hero-sub { margin-left: auto; margin-right: auto; }
  .page-home .hero-badges { justify-content: center; }
  .page-home .feature, .page-home .feature:nth-child(even) { flex-direction: column; text-align: center; gap: 32px; }
  .page-home .feature-list { display: inline-block; text-align: left; }
  .page-home .magic-grid { flex-direction: column; gap: 36px; max-width: 380px; }
  .page-home .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .page-home .hero { padding-top: 44px; }
  .page-home .hero-wordmark { font-size: 44px; }
  .page-home .hero-tagline { font-size: 22px; }
  .page-home .hero-shot { width: 230px; }
  .page-home .stat { min-width: 50%; border-right: none; }
  .page-home .section-title { font-size: 27px; }
  .page-home .features { padding: 60px 22px 20px; }
  .page-home .feature { margin-bottom: 56px; }
  .page-home .stamp-row { gap: 16px; }
  .page-home .stamp-ex, .page-home .stamp-ex-frame { width: 104px; }
  .price-grid { gap: 20px; }
  .page-home .how-grid { grid-template-columns: 1fr; }
  .page-home .signup-form { flex-direction: column; gap: 10px; }
  .page-home .signup-input { border-right: 2px solid rgba(245,235,214,0.15); border-radius: 5px; }
  .page-home .signup-btn { border-radius: 5px; }
}

/* ── FAQ accordion (homepage teaser, /faq, park pages) ─────────────────── */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(26,43,60,0.10); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: 'Patua One', serif; font-size: 17px; color: var(--ranger-navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'Inter', sans-serif; font-size: 24px; color: var(--canyon-rust); font-weight: 400; transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 22px; font-size: 15px; color: var(--charcoal); line-height: 1.75; max-width: 640px; }

/* ── How-it-works page ─────────────────────────────────────────────────── */
.page-hiw .page-hero { background: var(--ranger-navy); color: var(--parchment); padding: 72px 24px 64px; text-align: center; }
.page-hiw .page-hero .eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--trail-gold); margin-bottom: 14px; }
.page-hiw .page-hero h1 { font-family: 'Patua One', serif; font-weight: 400; font-size: clamp(32px, 5vw, 48px); line-height: 1.1; margin-bottom: 16px; }
.page-hiw .page-hero p { max-width: 560px; margin: 0 auto; font-size: 17px; color: rgba(245,235,214,0.82); }
.page-hiw .steps { max-width: 860px; margin: 0 auto; padding: 64px 24px 24px; }
.page-hiw .step { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.page-hiw .step:last-child { border-bottom: none; }
.page-hiw .step-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--off-white); color: var(--canyon-rust); font-family: 'Patua One', serif; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.page-hiw .step-body h2 { font-family: 'Patua One', serif; font-weight: 400; font-size: 24px; color: var(--ranger-navy); margin-bottom: 8px; }
.page-hiw .step-body p { font-size: 16px; color: var(--charcoal); max-width: 560px; }
.page-hiw .step-body .hl-stamped { color: var(--forest-green); font-weight: 600; }
.page-hiw .step-body .hl-collected { color: var(--trail-gold); font-weight: 600; }
.page-hiw .stamp-pair { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.page-hiw .stamp-ex { width: 150px; }
.page-hiw .stamp-ex-frame { position: relative; aspect-ratio: 2/3; border-radius: 6px; overflow: hidden; border: 2px solid var(--trail-gold); }
.page-hiw .stamp-ex.stamped .stamp-ex-frame { border-color: #cfcabb; }
.page-hiw .stamp-ex-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hiw .stamp-ex.stamped .stamp-ex-frame img { filter: grayscale(1); opacity: 0.62; }
.page-hiw .stamp-ex-lock { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; }
.page-hiw .stamp-ex-lock svg { width: 30px; height: 30px; opacity: 0.92; }
.page-hiw .stamp-ex-cap { display: flex; flex-direction: column; margin-top: 8px; }
.page-hiw .stamp-ex-name { font-family: 'Patua One', serif; font-size: 15px; color: var(--ranger-navy); }
.page-hiw .stamp-ex-meta { font-size: 12px; font-weight: 600; color: var(--forest-green); }
.page-hiw .stamp-ex-meta.collected { color: var(--trail-gold); }
.page-hiw .cta-band { background: var(--off-white); text-align: center; padding: 60px 24px; }
.page-hiw .cta-band h2 { font-family: 'Patua One', serif; font-weight: 400; font-size: 28px; color: var(--ranger-navy); margin-bottom: 12px; }
.page-hiw .cta-band p { color: var(--charcoal); margin-bottom: 22px; }
.page-hiw .cta-band-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.page-hiw .cta-band .coming-note { display: block; margin-top: 16px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--smoke); }
@media (max-width: 640px) { .page-hiw .step { gap: 16px; } }

/* ── Legal pages (privacy, terms, delete-account) ──────────────────────── */
.page-legal .content { max-width: 680px; margin: 0 auto; padding: 56px 24px 80px; }
.page-legal .page-title { font-family: 'Patua One', serif; font-size: 34px; color: var(--ranger-navy); margin-bottom: 8px; }
.page-legal .last-updated { font-size: 12px; color: var(--smoke); margin-bottom: 40px; }
.page-legal .content h2 { font-family: 'Patua One', serif; font-size: 20px; color: var(--ranger-navy); margin-top: 36px; margin-bottom: 12px; }
.page-legal .content h3 { font-size: 15px; font-weight: 700; color: var(--ranger-navy); margin-top: 20px; margin-bottom: 6px; }
.page-legal .content p { font-size: 14px; color: var(--charcoal); line-height: 1.85; margin-bottom: 16px; }
.page-legal .content ul, .page-legal .content ol { font-size: 14px; color: var(--charcoal); line-height: 1.85; margin-bottom: 16px; padding-left: 24px; }
.page-legal .content li { margin-bottom: 6px; }
.page-legal .content a { color: var(--canyon-rust); }
.page-legal .contact-box { background: #faf6ef; border-left: 4px solid var(--canyon-rust); padding: 20px 24px; margin-top: 32px; border-radius: 0 4px 4px 0; }
.page-legal .contact-box p { margin-bottom: 4px; }
.page-legal .steps-box { background: #faf6ef; border: 1px solid #ece3d2; border-radius: 6px; padding: 20px 24px; margin-bottom: 16px; }
.page-legal .steps-box ol { margin-bottom: 0; }

/* ── Footer (standard on every page) ───────────────────────────────────── */
.footer { background: var(--ranger-navy); color: rgba(245,235,214,0.7); padding: 48px 24px 0; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { min-width: 220px; }
.footer-wordmark { font-family: 'Patua One', serif; font-size: 22px; }
.footer-wordmark .park { color: var(--parchment); }
.footer-wordmark .stamp { color: var(--trail-gold); }
.footer-tagline { font-size: 13px; margin-top: 6px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.footer-badges .store-badge { height: 40px; }
.footer-index { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--trail-gold); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 14px; color: rgba(245,235,214,0.7); text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: var(--canyon-rust); }
.footer-bottom { max-width: 1080px; margin: 40px auto 0; border-top: 1px solid rgba(245,235,214,0.1); padding: 22px 0 32px; }
.footer-legal { font-size: 12px; line-height: 1.7; color: rgba(245,235,214,0.55); }

/* Mobile footer mirrors desktop: brand block first, then the three columns
   stacked, everything left-aligned. Never centered. */
@media (max-width: 860px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-index { flex-direction: column; gap: 28px; }
  .footer-bottom { text-align: left; }
}

/* ── /pricing and /faq pages ───────────────────────────────────────────── */
.page-pricing .price-grid { max-width: none; margin-top: 8px; justify-content: flex-start; }
.page-pricing .price-card { min-width: 240px; }
.page-pricing .price-note { text-align: left; }
.page-faq .faq-list { margin: 8px 0 0; max-width: 760px; }

/* Park designs section: all three variants ship on the page (2026-08-15
   override), 600px thumbnails only. Official-site link closes the history. */
.page-park .design-art { display: block; width: 100%; max-width: 240px; height: auto; border: 4px solid var(--trail-gold); border-radius: 3px; margin-bottom: 14px; box-shadow: 0 10px 26px rgba(26,43,60,0.14); }
.page-park .official-link a { color: var(--canyon-rust); }

/* ── Maps (Phase M): static inline SVG, no tiles, no JS ────────────────── */
.mapcard { border: 1px solid #ece3d2; border-radius: 4px; overflow: hidden; background: #fff; }
.mapcard svg { display: block; width: 100%; height: auto; }
.page-hub .national-map { max-width: 1080px; margin: 0 auto; padding: 0 24px 8px; }
.page-hub .region-map, .page-region .region-map { margin-bottom: 26px; }
