/* Burrow marketing — warm-premium, on the design-system tokens. */
@font-face {
  font-family: "Fraunces";
  src: url("assets/fraunces-variable.woff2") format("woff2");
  font-weight: 100 900; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/inter-variable.woff2") format("woff2");
  font-weight: 100 900; font-display: swap;
}
:root {
  --paper: #fbfaf7; --card: #ffffff; --tint: #f4f0eb; --hairline: #ece7e1;
  --ink: #1a1714; --muted: #6b635c; --faint: #8a817a;
  --pink: #f2b5d8; --pink-soft: #fbeaf2; --pink-hover: #ec9fcb;
  --berry: #9b2c5e; --berry-deep: #7d2049;
  --cyan: #2b8fc4; --cyan-soft: #e7f3fb;
  --success: #3f7d4f; --gold: #b8841c;
  --r-md: 0.75rem; --r-lg: 1.125rem; --r-xl: 1.5rem; --r-2xl: 2rem;
  --shadow-md: 0 6px 20px -6px rgba(26,23,20,.12), 0 2px 6px -2px rgba(26,23,20,.06);
  --shadow-lg: 0 24px 60px -16px rgba(26,23,20,.22), 0 8px 20px -8px rgba(26,23,20,.10);
  --maxw: 1140px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 560; letter-spacing: -0.02em; text-wrap: balance; margin: 0; }
p { margin: 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--berry); }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; font-family: "Fraunces", serif; font-weight: 620; font-size: 22px; }
.brand .mark {
  width: 34px; height: 22px; background: var(--berry);
  -webkit-mask: url("assets/hedgehog.png") center/contain no-repeat;
  mask: url("assets/hedgehog.png") center/contain no-repeat;
}
.nav-links { display: flex; gap: 26px; margin-left: 12px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--berry); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; font-weight: 600; font-size: 15px; padding: 12px 22px; cursor: pointer; border: 1px solid transparent; transition: transform .12s ease, background .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--berry); color: #fff; }
.btn-primary:hover { background: var(--berry-deep); }
.btn-pink { background: var(--pink); color: var(--ink); box-shadow: var(--shadow-md); }
.btn-pink:hover { background: var(--pink-hover); }
.btn-ghost { color: var(--ink); border-color: var(--hairline); background: var(--card); }
.btn-ghost:hover { background: var(--tint); }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---- Hero ---- */
.hero { padding: 84px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.4vw, 66px); line-height: 1.02; }
.hero .lede { font-size: 19px; color: var(--muted); margin-top: 22px; max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--faint); }
.hero-art {
  border-radius: var(--r-2xl); background: linear-gradient(155deg, var(--pink-soft), var(--tint));
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; position: relative; overflow: hidden;
  border: 1px solid var(--hairline);
}
.hero-art .badge {
  position: absolute; background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 13px 16px;
}
.hero-hog { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hero-hog span { width: 46%; aspect-ratio: 1155/737; background: var(--berry); opacity: .92;
  -webkit-mask: url("assets/hedgehog.png") center/contain no-repeat; mask: url("assets/hedgehog.png") center/contain no-repeat; }

/* ---- Sections ---- */
section { padding: 76px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 42px); margin-top: 14px; line-height: 1.08; }
.section-head p { color: var(--muted); font-size: 17.5px; margin-top: 14px; }
.tint { background: var(--tint); }
.ink-sec { background: var(--ink); color: #fff; }
.ink-sec h2, .ink-sec .eyebrow { color: #fff; }
.ink-sec .eyebrow { color: var(--pink); }
.ink-sec p { color: rgba(255,255,255,.72); }

/* ---- Cards / grids ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-md); }
.card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--pink-soft); color: var(--berry); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.card h3 { font-size: 20px; }
.card p { color: var(--muted); font-size: 15px; margin-top: 8px; }

/* ---- Stats ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { text-align: center; padding: 20px; }
.stat .n { font-family: "Fraunces", serif; font-size: clamp(34px, 4vw, 48px); font-weight: 560; font-variant-numeric: tabular-nums; }
.stat .l { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
.ink-sec .stat .n { color: #fff; }
.ink-sec .stat .l { color: rgba(255,255,255,.7); }

/* ---- Tiers ---- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: 28px; display: flex; flex-direction: column; }
.tier.featured { border-color: var(--pink); box-shadow: var(--shadow-lg); position: relative; }
.tier.featured::before { content: "Most popular"; position: absolute; top: -12px; left: 28px; background: var(--pink); color: var(--ink); font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.tier .price { font-family: "Fraunces", serif; font-size: 40px; font-weight: 560; margin: 10px 0 2px; }
.tier ul { list-style: none; padding: 0; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.tier li { font-size: 14.5px; color: var(--muted); padding-left: 26px; position: relative; }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--berry); font-weight: 700; }
.tier .btn { margin-top: auto; justify-content: center; }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(150deg, var(--pink), #f7c9e2); border-radius: var(--r-2xl); padding: 56px; text-align: center; margin: 40px 0; }
.cta-band h2 { font-size: clamp(28px, 3.4vw, 40px); }
.cta-band p { color: rgba(26,23,20,.72); margin: 14px auto 26px; max-width: 46ch; font-size: 17px; }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--hairline); padding: 48px 0 40px; }
.foot-grid { display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand { max-width: 260px; }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; }
.foot-cols { margin-left: auto; display: flex; gap: 56px; }
.foot-col h4 { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin: 0 0 12px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--muted); padding: 4px 0; }
.foot-col a:hover { color: var(--berry); }
.foot-legal { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; color: var(--faint); font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ---- Waitlist form ---- */
.waitlist-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.waitlist-form input[type="email"] {
  flex: 1 1 260px; min-width: 220px; padding: 13px 20px; border-radius: 999px;
  border: 1px solid rgba(26,23,20,.14); background: #fff; font: inherit; font-size: 15px; color: var(--ink);
}
.waitlist-form input[type="email"]::placeholder { color: var(--faint); }
.waitlist-form input[type="email"]:focus-visible { outline: 2px solid var(--berry); outline-offset: 2px; border-color: transparent; }
.form-status { flex-basis: 100%; width: 100%; text-align: center; min-height: 22px; margin-top: 12px; font-size: 14.5px; font-weight: 600; color: var(--berry-deep); }
.waitlist-form.is-done .form-status { color: var(--success); }

/* ---- Legal / content pages ---- */
.legal { padding: 56px 0 96px; }
.legal .wrap { max-width: 760px; }
.legal-banner {
  margin-bottom: 34px; border: 1px solid var(--gold); background: #fdf6e7; color: #6b4e10;
  border-radius: var(--r-md); padding: 14px 18px; font-size: 13.5px; line-height: 1.55;
}
.legal-banner strong { color: #4d3908; }
.legal h1 { font-size: clamp(30px, 4vw, 42px); }
.legal .updated { margin-top: 10px; color: var(--muted); font-size: 13.5px; }
.legal h2 { font-size: 20px; margin: 40px 0 12px; }
.legal p, .legal li { font-size: 15px; line-height: 1.72; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--berry); font-weight: 600; }
.legal strong { font-weight: 640; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { aspect-ratio: 16/11; }
  .grid-3, .stats, .tiers { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .foot-cols { margin-left: 0; gap: 32px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { justify-content: center; }
}
