/* First Year Pup — site styles
   Palette: oat #F3EDE2, brown #2B211B, sage #7C9A7E, tangerine #E07A3F
   Type: Fraunces (headlines), Figtree (body), DM Mono (labels) */

:root {
  --oat: #F3EDE2;
  --oat-deep: #EAE1D1;
  --paper: #FAF6EE;
  --ink: #2B211B;
  --ink-soft: #5A4C42;
  --sage: #7C9A7E;
  --sage-deep: #5E7D61;
  --tangerine: #E07A3F;
  --tangerine-deep: #C9642B;
  --line: #DDD2BF;
  --radius: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--oat);
  color: var(--ink);
  font-family: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 14px;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: 24px; }
p { margin: 0 0 16px; }
.lede { font-size: 20px; color: var(--ink-soft); max-width: 34em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700; font-size: 17px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.btn-primary { background: var(--tangerine); color: #fff; box-shadow: 0 6px 0 var(--tangerine-deep); }
.btn-primary:hover { background: #E8864D; }
.btn-ghost { border: 2px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--oat); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.fine { font-size: 14px; color: var(--ink-soft); margin-top: 14px; }

/* Header */
.site-header { padding: 20px 0; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo {
  font-family: "Fraunces", Georgia, serif; font-weight: 800; font-size: 26px;
  text-decoration: none; letter-spacing: -0.01em;
}
.logo span { color: var(--sage-deep); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { text-decoration: none; font-weight: 600; font-size: 16px; }
.nav a:hover { color: var(--tangerine-deep); }
.nav .nav-cta { background: var(--ink); color: var(--oat); padding: 10px 18px; border-radius: 999px; }
.nav .nav-cta:hover { background: var(--sage-deep); color: #fff; }

/* Hero */
.hero { padding: 40px 0 80px; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-art {
  background: var(--paper);
  border-radius: 32px;
  padding: 18px;
  border: 2px solid var(--line);
  transform: rotate(1.5deg);
  box-shadow: 0 24px 50px -28px rgba(43,33,27,.45);
}
.hero-art img { border-radius: 20px; }

/* Sections */
section { padding: 88px 0; }
.band { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 44px; }

/* Checklist feature */
.feature { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.feature-art { border-radius: var(--radius); overflow: hidden; }
.checks { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; }
.checks .box {
  flex: 0 0 26px; height: 26px; margin-top: 2px;
  border-radius: 8px; background: var(--sage); color: #fff;
  display: grid; place-items: center; font-size: 15px; font-weight: 800;
}
.checks strong { display: block; }
.checks small { color: var(--ink-soft); font-size: 16px; }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
}
.band .pillar { background: var(--oat); }
.pillar .num {
  font-family: "DM Mono", monospace; font-size: 13px; letter-spacing: .12em;
  color: var(--tangerine-deep); margin-bottom: 10px; display: block;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { font-size: 16px; color: var(--ink-soft); margin: 0; }

/* Week strip */
.weeks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.week-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--line); display: flex; flex-direction: column;
}
.week-card .body { padding: 22px 24px 26px; }
.week-card .label { margin-bottom: 8px; }
.week-card h3 { font-size: 22px; margin-bottom: 8px; }
.week-card p { font-size: 16px; color: var(--ink-soft); margin: 0; }

/* Promise */
.promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.promise h3 { font-size: 22px; }
.promise p { color: var(--ink-soft); font-size: 17px; }
.promise .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--tangerine); margin-bottom: 16px; }

/* Final CTA */
.cta-block {
  background: var(--sage); color: #fff; border-radius: 36px;
  padding: 64px 48px; text-align: center;
}
.cta-block h2 { color: #fff; }
.cta-block p { color: #F1F5EF; max-width: 34em; margin-left: auto; margin-right: auto; }
.cta-block .btn-row { justify-content: center; }
.cta-block .btn-ghost { border-color: #fff; color: #fff; }
.cta-block .btn-ghost:hover { background: #fff; color: var(--sage-deep); }

/* Footer */
.site-footer { padding: 48px 0 56px; font-size: 15px; color: var(--ink-soft); }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a { text-decoration: none; font-weight: 600; color: var(--ink); }
.site-footer a:hover { color: var(--tangerine-deep); }

/* Legal page */
.legal { padding: 40px 0 80px; }
.legal .wrap { max-width: 760px; }
.legal h2 { font-size: 30px; margin-top: 44px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal li { margin-bottom: 8px; }

/* Responsive */
@media (max-width: 960px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero .wrap, .feature { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 16px; }
  .hero-art { transform: none; }
  .weeks, .promise { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .wrap { padding: 0 16px; }
  .nav a:not(.nav-cta) { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .cta-block { padding: 48px 22px; border-radius: 26px; }
  .lede { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
}

.nav .nav-cta { white-space: nowrap; }
@media (max-width: 600px) { .hide-sm { display: none; } }
