/* Weekend Picker landing — self-contained styles, no build step.
   Brand: cream paper, ink text, grass accent, sun highlight. */
:root {
  --paper: #fbf8f1;
  --ink: #2b2622;
  --soft: #6b635a;
  --grass: #4f7b3b;
  --grass-deep: #3d5f2e;
  --sun: #f2b705;
  --hairline: #e7e0d4;
  --card: #ffffff;
  --maxw: 64rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hand {
  font-family: "Patrick Hand", "Comic Sans MS", cursive;
  color: var(--grass);
  font-weight: 400;
}

a { color: var(--grass-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* ── nav ─────────────────────────────────────────────── */
.nav {
  border-bottom: 1px solid var(--hairline);
  background: color-mix(in oklab, var(--paper) 88%, white);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: saturate(1.2) blur(6px);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 0.9rem; padding-bottom: 0.9rem; }
.brand { display: flex; align-items: center; gap: 0.55rem; font-weight: 800; font-size: 1.15rem; text-decoration: none; color: var(--ink); }
.brand .dot { width: 0.7rem; height: 0.7rem; border-radius: 999px; background: var(--sun); box-shadow: 0 0 0 4px color-mix(in oklab, var(--sun) 30%, transparent); }
.nav-links { display: flex; gap: 1.25rem; font-size: 0.95rem; }
.nav-links a { color: var(--soft); text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 640px) {
  /* On small screens the inline links crowd the brand — drop them; the hero
     CTAs + footer links cover navigation. */
  .nav-links { display: none; }
}

/* ── hero ────────────────────────────────────────────── */
.hero { padding: 4rem 0 3rem; text-align: center; }
.hero .kicker { font-size: 1.4rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.1; margin: 0.5rem 0 1rem; letter-spacing: -0.02em; }
.hero p.lede { font-size: 1.2rem; color: var(--soft); max-width: 42rem; margin: 0 auto 1.75rem; }
.cta-row { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 0.8rem 1.4rem; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 1rem; border: 1px solid transparent; }
.btn-primary { background: var(--grass); color: #fff; }
.btn-primary:hover { background: var(--grass-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--ink); }
.note { font-size: 0.9rem; color: var(--soft); margin-top: 1rem; }

/* ── sections ────────────────────────────────────────── */
section { padding: 3rem 0; }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head .hand { font-size: 1.2rem; }
.section-head h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin: 0.25rem 0; letter-spacing: -0.01em; }
.section-head p { color: var(--soft); max-width: 40rem; margin: 0.5rem auto 0; }
.alt { background: color-mix(in oklab, var(--paper) 70%, white); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

.grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.card { background: var(--card); border: 1px solid var(--hairline); border-radius: 1rem; padding: 1.4rem; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.card h3 { margin: 0.2rem 0 0.4rem; font-size: 1.1rem; }
.card p { margin: 0; color: var(--soft); font-size: 0.97rem; }
.card .num { font-family: "Patrick Hand", cursive; color: var(--grass); font-size: 1.6rem; line-height: 1; }
.emoji { font-size: 1.7rem; line-height: 1; }

/* pricing */
.price-row { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.price { background: var(--card); border: 1px solid var(--hairline); border-radius: 1rem; padding: 1.5rem; }
.price h3 { margin: 0; font-size: 1.05rem; }
.price .amt { font-size: 1.9rem; font-weight: 800; margin: 0.4rem 0; }
.price .amt span { font-size: 0.95rem; font-weight: 500; color: var(--soft); }
.price ul { margin: 0.75rem 0 0; padding-left: 1.1rem; color: var(--soft); font-size: 0.95rem; }
.price.feature { border-color: var(--grass); box-shadow: 0 0 0 3px color-mix(in oklab, var(--grass) 14%, transparent); }

/* messaging / SMS disclosure */
.disclosure { background: var(--card); border: 1px solid var(--hairline); border-radius: 1rem; padding: 1.75rem; max-width: 48rem; margin: 0 auto; }
.disclosure h3 { margin-top: 1.25rem; font-size: 1.05rem; }
.disclosure h3:first-child { margin-top: 0; }
.disclosure ul { padding-left: 1.2rem; }
.disclosure .sample { background: var(--paper); border: 1px solid var(--hairline); border-radius: 0.6rem; padding: 0.75rem 1rem; font-size: 0.95rem; margin: 0.5rem 0; }
.pill { display: inline-block; background: color-mix(in oklab, var(--grass) 12%, white); color: var(--grass-deep); border: 1px solid color-mix(in oklab, var(--grass) 30%, white); border-radius: 999px; padding: 0.15rem 0.6rem; font-size: 0.8rem; font-weight: 700; }

/* contact */
.contact { text-align: center; }
.contact a.email { font-size: 1.2rem; font-weight: 700; }

/* ── footer ──────────────────────────────────────────── */
footer { border-top: 1px solid var(--hairline); padding: 2.5rem 0; color: var(--soft); font-size: 0.9rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; justify-content: space-between; }
footer a { color: var(--soft); text-decoration: none; }
footer a:hover { color: var(--ink); }
footer .links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ── legal pages ─────────────────────────────────────── */
.legal { max-width: 48rem; margin: 0 auto; padding: 3rem 0; }
.legal h1 { font-size: 2rem; margin-bottom: 0.25rem; }
.legal .updated { color: var(--soft); font-size: 0.9rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.2rem; margin-top: 2rem; }
.legal p, .legal li { color: #3f3a34; }
.legal a { color: var(--grass-deep); }
.back { display: inline-block; margin-bottom: 1.5rem; color: var(--soft); text-decoration: none; }
.back:hover { color: var(--ink); }
