/* =================================================================
   docshelf.org — design system
   Built 2026-04-20. Fraunces + Inter + Caveat + DM Mono.
   ================================================================= */

:root {
  --lav:     #e9e2ff;
  --lav-2:   #f3eefe;
  --rose:    #ffd9e8;
  --rose-2:  #fff5f8;
  --peach:   #ffe5d4;
  --peach-2: #fff3e8;
  --blue:    #d6e8ff;
  --blue-2:  #eaf3ff;
  --mint:    #d9f0e4;
  --mint-2:  #eef7f2;
  --butter:  #fff3c9;
  --butter-2:#fffaeb;
  --cream:   #fbf7f2;
  --cream-2: #fdfbf7;
  --ink:     #1a1530;
  --ink-2:   #2a2448;
  --ink-3:   #4a4468;
  --mute:    #6a6482;
  --mute-2:  #9a94ae;
  --grape:   #7b4ad1;
  --grape-2: #9f6ee3;
  --pink-2:  #ff7ab3;
  --pink-3:  #ffa8bc;
  --line:    rgba(26, 21, 48, 0.08);
  --line-2:  rgba(26, 21, 48, 0.04);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.6;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =====================================================
   NAV
   ===================================================== */
.site-nav {
  background: rgba(251, 247, 242, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}
.site-brand-logo { height: 32px; width: auto; display: block; }
.site-brand-mark { height: 32px; width: auto; display: none; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  list-style: none;
  margin: 0 auto 0 12px;
}
.nav-links a {
  transition: color 0.15s;
  position: relative;
  padding: 6px 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--grape); }
.nav-links .new-tag,
.nav-drawer-links .new-tag {
  position: absolute;
  top: -6px; right: -26px;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: var(--pink-2);
  font-weight: 600;
}
.nav-drawer-links .new-tag {
  position: static;
  margin-left: 8px;
}
.nav-search {
  flex: 0 1 260px;
  position: relative;
}
.nav-search input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  background: rgba(26, 21, 48, 0.05);
  border: 1px solid transparent;
  border-radius: 999px;
  font: 500 13px/1 'Inter', sans-serif;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.nav-search input::placeholder { color: var(--mute-2); font-weight: 400; }
.nav-search input:focus {
  outline: none;
  background: #fff;
  border-color: var(--grape);
  box-shadow: 0 0 0 3px rgba(123, 74, 209, 0.12);
}
.nav-search svg {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  color: var(--mute);
  pointer-events: none;
}
.nav-toggle {
  display: none;
  padding: 6px;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-drawer { display: none; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-top: 80px;
}
.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  color: #fff;
  margin-bottom: 14px;
  display: inline-block;
}
.footer-brand:before {
  content: "✦";
  color: var(--pink-2);
  font-style: normal;
  font-size: 14px;
  margin-right: 4px;
}
.site-footer h4 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-about { max-width: 320px; line-height: 1.6; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: rgba(255,255,255,0.8); transition: color 0.15s; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom em,
.site-footer .soon {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--pink-3);
}
.footer-bottom em { color: rgba(255,255,255,0.7); }

/* =====================================================
   SHARED: buttons + pills + stars
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.15s, color 0.15s, border-color 0.15s;
  cursor: pointer;
  text-decoration: none;
  border: 0;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--grape); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 12.5px 22px;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-cream { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.btn-cream:hover { background: #fff; }
.btn-arrow svg { width: 14px; height: 14px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 21, 48, 0.04);
  font-weight: 500;
}
.pill-planners,
.pill-grape { background: var(--lav-2); color: var(--grape); }
.pill-checklists,
.pill-pink { background: var(--rose); color: #c53f7a; }
.pill-worksheets,
.pill-mint { background: var(--blue-2); color: #3a7b5a; }
.pill-peach { background: var(--peach); color: #c85a2f; }
.pill-live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.stars { color: #f5a623; letter-spacing: -1px; font-size: 15px; }

/* =====================================================
   HOME PAGE
   ===================================================== */
.home-shell {
  background:
    radial-gradient(900px 500px at 88% -10%, var(--peach) 0%, transparent 55%),
    radial-gradient(700px 400px at -5% 90%, var(--lav) 0%, transparent 55%),
    var(--cream);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  padding: 56px 32px 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 620px;
}
.hero-copy { position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grape);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--grape);
  position: relative;
}
.hero h1 em:after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 6px;
  height: 12px;
  background: var(--butter);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-0.5deg);
}
.hero .sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* flat-lay */
.hero-art {
  position: relative;
  height: 560px;
}
.paper {
  position: absolute;
  background: #fff;
  border-radius: 4px;
  box-shadow:
    0 1px 2px rgba(26,21,48,0.06),
    0 24px 48px -12px rgba(26,21,48,0.2);
  padding: 22px 18px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.paper:hover { transform: translateY(-10px) rotate(var(--rot, 0deg)); }

.paper-big {
  top: 0; left: 40px;
  width: 250px; height: 340px;
  transform: rotate(-7deg);
  --rot: -7deg;
  background: linear-gradient(180deg, #fff 0 78%, var(--rose) 78% 100%);
}
.paper-big .ph-tag {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grape); margin-bottom: 8px;
}
.paper-big .ph-h {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 500; color: var(--ink);
  line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.02em;
}
.paper-big .ph-section {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--grape);
  margin: 10px 0 6px;
}
.paper-big .ph-row {
  display: flex; gap: 8px; align-items: center; margin-bottom: 9px;
  font-family: 'Inter', sans-serif; font-size: 9.5px; color: var(--ink-2);
  line-height: 1.3;
}
.paper-big .ph-row .b {
  width: 11px; height: 11px; border: 1.4px solid var(--grape); border-radius: 2.5px;
  flex-shrink: 0;
}
.paper-big .ph-row.done .b { background: var(--grape); position: relative; }
.paper-big .ph-row.done .b:after {
  content: "✓"; color: #fff; position: absolute;
  left: 1.5px; top: -3px; font-size: 9px; font-weight: 700;
}
.paper-big .ph-row.done { color: var(--mute); text-decoration: line-through; }
.paper-big .ph-pg {
  position: absolute; bottom: 12px; right: 16px;
  font-family: 'DM Mono', monospace; font-size: 8px; color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
}

.paper-cal {
  top: 70px; left: 260px;
  width: 220px; height: 290px;
  transform: rotate(5deg);
  --rot: 5deg;
}
.paper-cal .ph-h {
  font-family: 'Caveat', cursive; font-size: 28px; color: var(--grape);
  font-weight: 700; margin-bottom: 12px; line-height: 1;
}
.paper-cal .cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 16px;
}
.paper-cal .cal-grid span {
  aspect-ratio: 1;
  background: var(--cream-2);
  border-radius: 3px;
  font-family: 'Inter', sans-serif; font-size: 8.5px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mute);
}
.paper-cal .cal-grid span.lv { background: var(--lav); color: var(--grape); font-weight: 600; }
.paper-cal .cal-grid span.hi { background: var(--grape); color: #fff; font-weight: 700; }
.paper-cal .cal-note {
  font-family: 'Caveat', cursive; font-size: 17px; color: var(--ink-2); line-height: 1.25;
}

.paper-bar {
  top: 340px; left: 140px;
  width: 260px; height: 200px;
  transform: rotate(-3deg);
  --rot: -3deg;
  background: linear-gradient(135deg, var(--butter) 0%, var(--peach) 100%);
  padding: 22px;
}
.paper-bar .ph-h {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 22px;
  font-weight: 400; color: var(--ink); margin-bottom: 14px;
}
.paper-bar .bars { display: flex; flex-direction: column; gap: 8px; }
.paper-bar .bars .b {
  height: 10px; background: rgba(255,255,255,0.7); border-radius: 5px;
  position: relative; overflow: hidden;
}
.paper-bar .bars .b:after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; border-radius: 5px;
}
.paper-bar .bars .b.b1:after { width: 72%; background: var(--pink-2); }
.paper-bar .bars .b.b2:after { width: 48%; background: var(--grape); }
.paper-bar .bars .b.b3:after { width: 85%; background: var(--grape-2); }
.paper-bar .bars .b.b4:after { width: 32%; background: var(--pink-2); }
.paper-bar .ph-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: 0.12em;
  color: var(--ink); margin-top: 10px;
}

/* shelves strip */
.shelves-strip {
  padding: 64px 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.shelves-wrap { max-width: 1280px; margin: 0 auto; }
.strip-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px;
  gap: 24px;
}
.strip-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 44px;
  letter-spacing: -0.03em;
}
.strip-header h2 em { font-style: italic; color: var(--grape); font-weight: 400; }
.strip-header a {
  font-size: 13px; font-weight: 600; color: var(--ink);
  border-bottom: 1.5px solid var(--ink); padding-bottom: 2px;
  flex-shrink: 0;
}
.strip-header a:hover { color: var(--grape); border-color: var(--grape); }

.shelves {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
  min-height: 420px;
}
.shelf {
  position: relative;
  padding: 32px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
}
.shelf:hover { transform: translateY(-4px); }
.shelf:hover .shelf-art { transform: translateY(-8px) rotate(var(--r, 0deg)); }
.shelf-art { transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1); }
.shelf h3 {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 14px 0 10px;
}
.shelf h3 em { font-style: italic; color: var(--grape); }
.shelf-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.shelf p {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
  margin-bottom: 24px;
}
.shelf-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
}
.shelf-planners { background: linear-gradient(135deg, var(--lav-2), var(--cream-2)); }
.shelf-checklists { background: linear-gradient(135deg, var(--rose-2), var(--peach-2)); }
.shelf-worksheets { background: linear-gradient(135deg, var(--blue-2), var(--mint-2)); }

.shelf-art {
  position: absolute;
  bottom: -30px; right: -10px;
  width: 220px; height: 270px;
  background: #fff;
  border-radius: 6px;
  padding: 22px 18px;
  box-shadow: 0 20px 40px -10px rgba(26,21,48,0.18);
}
.shelf-planners .shelf-art { transform: rotate(-5deg); --r: -5deg; width: 260px; height: 310px; }
.shelf-checklists .shelf-art { transform: rotate(5deg); --r: 5deg; }
.shelf-worksheets .shelf-art { transform: rotate(-4deg); --r: -4deg; }

.shelf-art .art-tag {
  font-family: 'DM Mono', monospace;
  font-size: 8px; letter-spacing: 0.14em;
  color: var(--mute); margin-bottom: 10px;
}
.shelf-art .art-h {
  font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em; margin-bottom: 14px;
}
.shelf-art .art-item {
  display: flex; gap: 6px; align-items: center; margin-bottom: 8px;
  font-size: 9px; color: var(--ink-2);
}
.shelf-art .art-item .b {
  width: 9px; height: 9px; border: 1.2px solid currentColor; border-radius: 2px; flex-shrink: 0;
  opacity: 0.5;
}
.shelf-art .art-item.on .b { background: currentColor; opacity: 1; }
.shelf-art .art-item.on { text-decoration: line-through; opacity: 0.55; }
.shelf-art .art-row { height: 5px; background: #f0ecf7; border-radius: 2.5px; margin-bottom: 7px; }
.shelf-art .art-row.w80 { width: 80%; }
.shelf-art .art-row.w60 { width: 60%; }
.shelf-art .art-row.w70 { width: 70%; }
.shelf-art .fld { border-bottom: 1px solid #d0dfef; margin-bottom: 12px; padding-bottom: 4px; }
.shelf-art .fld label {
  font-family: 'DM Mono', monospace; font-size: 7px; color: var(--mute);
  text-transform: uppercase; letter-spacing: 0.12em;
  display: block;
}
.shelf-art .fld .val {
  font-family: 'Caveat', cursive; color: var(--grape); font-size: 14px; font-weight: 700;
  margin-top: 1px;
}
.shelf-art .mini-cal {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 14px;
}
.shelf-art .mini-cal span {
  aspect-ratio: 1;
  background: var(--cream-2);
  border-radius: 2px;
}
.shelf-art .mini-cal span.lv { background: var(--lav); }
.shelf-art .mini-cal span.hi { background: var(--grape); }

/* "Why" band */
.why {
  padding: 80px 32px;
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}
.why-inner { max-width: 1280px; margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-copy h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 20px 0 28px;
}
.why-copy h2 em { font-style: italic; color: var(--grape); font-weight: 400; }
.why-copy p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat .n {
  font-family: 'Fraunces', serif;
  font-size: 44px; font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .n em { font-style: italic; color: var(--grape); font-weight: 500; }
.stat .l {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute); margin-top: 10px;
}
.why-stack {
  position: relative;
  height: 480px;
}
.paper-stack {
  position: absolute;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(26,21,48,0.06), 0 24px 50px -10px rgba(26,21,48,0.18);
  padding: 24px;
}
.ps-1 { width: 300px; height: 420px; top: 0; left: 20px; transform: rotate(-4deg); background: linear-gradient(180deg, #fff 0 85%, var(--lav) 85% 100%); }
.ps-2 { width: 300px; height: 420px; top: 20px; left: 60px; transform: rotate(2deg); background: linear-gradient(180deg, #fff 0 85%, var(--rose) 85% 100%); z-index: 2; }
.ps-3 { width: 300px; height: 420px; top: 40px; left: 100px; transform: rotate(6deg); background: linear-gradient(180deg, #fff 0 85%, var(--peach) 85% 100%); z-index: 3; }
.ps-head {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.18em;
  color: var(--mute); margin-bottom: 12px;
}
.ps-title {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px;
  letter-spacing: -0.02em; margin-bottom: 18px; color: var(--ink);
  line-height: 1.1;
}
.ps-row { height: 7px; background: #f0ecf7; border-radius: 3px; margin-bottom: 10px; }
.ps-row.w80 { width: 80%; } .ps-row.w60 { width: 60%; } .ps-row.w70 { width: 70%; } .ps-row.w90 { width: 90%; }
.ps-sub {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 13px;
  color: var(--grape); margin: 16px 0 10px;
}

/* newsletter */
.newsletter {
  padding: 72px 32px;
  background: linear-gradient(135deg, var(--lav-2), var(--rose-2));
  border-top: 1px solid var(--line);
}
.newsletter-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.newsletter h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.newsletter h2 em { font-style: italic; color: var(--grape); font-weight: 400; }
.newsletter p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.newsletter-form { position: relative; }
.newsletter-form input {
  width: 100%;
  padding: 20px 170px 20px 24px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font: 400 15px/1 'Inter', sans-serif;
  color: var(--ink);
}
.newsletter-form input:focus { outline: none; border-color: var(--grape); }
.newsletter-form button {
  position: absolute;
  right: 5px; top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}
.newsletter-form button:hover { background: var(--grape); }
.newsletter-fine { margin-top: 12px; font-size: 12px; color: var(--mute); }
.newsletter-thanks {
  padding: 20px 24px;
  background: #fff;
  border: 1.5px solid var(--grape);
  border-radius: 999px;
  color: var(--grape);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
}
.newsletter-form.sent .newsletter-fine { display: none; }

/* =====================================================
   CATEGORY PAGE
   ===================================================== */
.cat-hero {
  padding: 64px 32px 36px;
  background: linear-gradient(135deg, var(--rose-2), var(--peach-2));
  border-bottom: 1px solid var(--line);
}
.cat-hero-inner { max-width: 1280px; margin: 0 auto; }
.cat-hero--checklists { background: linear-gradient(135deg, var(--rose-2), var(--peach-2)); }
.cat-hero--planners { background: linear-gradient(135deg, var(--lav-2), var(--cream-2)); }
.cat-hero--worksheets { background: linear-gradient(135deg, var(--blue-2), var(--mint-2)); }

.breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--mute); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--grape); }
.breadcrumb .sep { margin: 0 8px; color: var(--mute-2); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

.cat-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  max-width: 800px;
}
.cat-hero h1 em { font-style: italic; color: var(--grape); font-weight: 400; }
.cat-hero--checklists h1 em { color: #c53f7a; }
.cat-hero .lede {
  font-size: 17px; color: var(--ink-2);
  max-width: 560px; line-height: 1.55;
}

.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  max-width: 1280px; margin: 0 auto;
}
.cat-toolbar-count {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.cat-toolbar-count strong { color: var(--ink); font-weight: 600; }
.cat-toolbar-sort {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--mute);
}
.cat-toolbar-sort select {
  font: 500 13px/1 'Inter', sans-serif;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  cursor: pointer;
}

.cat-grid-wrap { max-width: 1280px; margin: 0 auto; padding: 36px 32px 64px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.cat-empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--mute);
  font-size: 15px;
}

/* =====================================================
   PRODUCT CARD
   ===================================================== */
.pcard {
  display: block;
  position: relative;
  transition: transform 0.25s ease;
}
.pcard:hover { transform: translateY(-4px); }

.pcard-thumb {
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--bg-a, var(--lav-2)), var(--bg-b, var(--rose-2)));
  box-shadow: 0 1px 2px rgba(26,21,48,0.04);
}
.pcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.pcard:hover .pcard-thumb img { transform: scale(1.04); }

.pcard-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ink); color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.pcard-pages {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: var(--ink-2);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.pcard-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}
.pcard-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}
.pcard-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.pcard-price {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pcard-view {
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.pcard:hover .pcard-view { color: var(--grape); border-color: var(--grape); }

/* =====================================================
   PRODUCT PAGE
   ===================================================== */
.pp {
  padding: 32px 32px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.pp-crumbs {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 28px;
}
.pp-crumbs a { color: var(--mute); transition: color 0.15s; }
.pp-crumbs a:hover { color: var(--grape); }
.pp-crumbs .sep { margin: 0 8px; color: var(--mute-2); }
.pp-crumbs .current { color: var(--ink); font-weight: 500; }

.pp-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}

.pp-preview { position: relative; }
.pp-hero-image {
  aspect-ratio: 4/5;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lav-2), var(--rose-2));
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 1px 2px rgba(26,21,48,0.04), 0 30px 60px -20px rgba(26,21,48,0.15);
}
.pp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
}
.pp-pagecount {
  position: absolute;
  top: 18px; left: 18px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
}
.pp-pagecount .k { color: var(--grape); }
.pp-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.pp-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
  position: relative;
  padding: 10px;
}
.pp-thumb.active { border-color: var(--grape); box-shadow: 0 0 0 3px rgba(123,74,209,0.1); }
.pp-thumb:hover { border-color: var(--grape); }
.pp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pp-thumb-empty:after {
  content: "";
  position: absolute;
  left: 22%; top: 14%;
  width: 56%; height: 72%;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(26,21,48,0.12);
}

.pp-sell {
  position: sticky;
  top: 90px;
  align-self: flex-start;
}
.pp-tag-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pp-sell h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  color: var(--ink);
}
.pp-sell h1 em { font-style: italic; color: var(--grape); }
.pp-sell .lede {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 24px;
}
.pp-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.pp-price {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.pp-price-fine {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.4;
}
.pp-price-fine strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

.pp-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  border: 0;
}
.pp-buy:hover { background: var(--grape); transform: translateY(-1px); }
.pp-buy svg { width: 16px; height: 16px; }
.pp-buy[disabled], .pp-buy.disabled { opacity: 0.55; cursor: not-allowed; background: var(--ink-3); }
.pp-buy[disabled]:hover, .pp-buy.disabled:hover { transform: none; background: var(--ink-3); }

.pp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.trust-item {
  display: flex; gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
  align-items: flex-start;
}
.trust-item strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }
.trust-item .ico {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--lav-2);
  color: var(--grape);
  display: flex; align-items: center; justify-content: center;
}
.trust-item .ico svg { width: 14px; height: 14px; }

.pp-at-glance {
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.pp-at-glance h4 {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 14px;
  font-weight: 500;
}
.pp-at-glance ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pp-at-glance li {
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 13px;
  color: var(--ink-2);
}
.pp-at-glance li strong { color: var(--ink); font-weight: 600; }

/* what's inside */
.pp-included {
  padding: 64px 32px;
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}
.pp-included-inner { max-width: 1280px; margin: 0 auto; }
.pp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pp-section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pp-section-head h2 em { font-style: italic; color: var(--grape); font-weight: 400; }
.pp-section-head .meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute);
  text-transform: uppercase;
}
.pp-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.sec {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.2s, border-color 0.2s;
}
.sec:hover { transform: translateY(-3px); border-color: var(--grape); }
.sec .sec-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grape);
  margin-bottom: 6px;
  font-weight: 600;
}
.sec h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}
.sec p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.sec-count {
  font-size: 12px; color: var(--mute);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex; align-items: center; gap: 6px;
}
.sec-count strong { color: var(--grape); font-weight: 700; }

.buy-band {
  padding: 72px 32px;
  background: linear-gradient(135deg, var(--lav-2), var(--rose-2));
  border-top: 1px solid var(--line);
  text-align: center;
}
.buy-band h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.buy-band h2 em { font-style: italic; color: var(--grape); font-weight: 400; }
.buy-band p {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.buy-band-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.buy-band-cta:hover { background: var(--grape); transform: translateY(-1px); }
.buy-band-cta svg { width: 16px; height: 16px; }

/* =====================================================
   BUNDLES placeholder
   ===================================================== */
.bundles {
  padding: 100px 32px;
  background:
    radial-gradient(700px 400px at 90% 0%, var(--peach) 0%, transparent 60%),
    radial-gradient(500px 400px at 0% 100%, var(--lav) 0%, transparent 60%),
    var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bundles-inner { max-width: 900px; margin: 0 auto; }
.bundles .pill { margin-bottom: 24px; }
.bundles h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.bundles h1 em { font-style: italic; color: var(--grape); font-weight: 400; }
.bundles p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.bundles-stack {
  position: relative;
  width: 420px;
  height: 280px;
  margin: 40px auto 0;
}
.bundles-stack .bs {
  position: absolute;
  width: 240px; height: 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 50px -10px rgba(26,21,48,0.2);
  padding: 26px 22px;
}
.bundles-stack .bs-a { top: 0; left: 20px; transform: rotate(-6deg); background: linear-gradient(180deg, #fff 0 78%, var(--lav) 78% 100%); }
.bundles-stack .bs-b { top: 10px; left: 90px; transform: rotate(2deg); background: linear-gradient(180deg, #fff 0 78%, var(--rose) 78% 100%); z-index: 2; }
.bundles-stack .bs-c { top: 20px; left: 160px; transform: rotate(7deg); background: linear-gradient(180deg, #fff 0 78%, var(--peach) 78% 100%); z-index: 3; }
.bundles-stack .bs-h {
  font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.18em;
  color: var(--mute); margin-bottom: 10px;
}
.bundles-stack .bs-title {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 14px;
  letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.15;
}
.bundles-stack .bs-row {
  height: 4px; background: #f0ecf7; border-radius: 2px; margin-bottom: 6px;
}
.bundles-stack .bs-row.w80 { width: 80%; }
.bundles-stack .bs-row.w60 { width: 60%; }

.bundles-form {
  display: flex;
  max-width: 440px;
  margin: 40px auto 0;
  gap: 8px;
}
.bundles-form input {
  flex: 1;
  padding: 16px 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font: 400 14px 'Inter', sans-serif;
  color: var(--ink);
}
.bundles-form input:focus { outline: none; border-color: var(--grape); }
.bundles-form button {
  padding: 16px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}
.bundles-form button:hover { background: var(--grape); }
.bundles-form-thanks {
  display: none;
  margin-top: 20px;
  color: var(--grape);
  font-weight: 600;
}
.bundles-form.sent .bundles-form-thanks { display: block; }
.bundles-form.sent > input,
.bundles-form.sent > button { display: none; }

/* =====================================================
   STATIC PAGES
   ===================================================== */
.static-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}
.static-page h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 14px;
}
.static-page .subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--grape);
  margin-bottom: 36px;
}
.static-page p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 18px;
}
.static-page h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}
.static-page h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  margin: 28px 0 12px;
}
.static-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.static-page ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.static-page ul li:before {
  content: "✦";
  position: absolute;
  left: 0; top: 0;
  color: var(--grape);
  font-size: 14px;
}
.static-page a {
  color: var(--grape);
  border-bottom: 1px solid var(--grape);
  transition: color 0.15s, border-color 0.15s;
}
.static-page a:hover { color: var(--ink); border-color: var(--ink); }
.about-promise {
  padding: 28px 32px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 32px 0;
}

/* thanks page */
.thanks-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}
.thanks-page h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.thanks-page h1 em { font-style: italic; color: var(--grape); }
.thanks-page p { color: var(--ink-2); font-size: 17px; margin-bottom: 24px; line-height: 1.55; }

/* contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.contact-card {
  padding: 22px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.contact-card h3 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-card a {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--grape);
}
.contact-card a:hover { color: var(--grape); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 60px; min-height: 0; }
  .hero h1 { font-size: 56px; }
  .hero-art { height: 440px; margin: 0 auto; width: 100%; max-width: 500px; }
  .shelves { grid-template-columns: 1fr 1fr; }
  .shelf-planners { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-copy h2 { font-size: 44px; }
  .why-stack { height: 420px; width: 100%; max-width: 440px; margin: 0 auto; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .cat-hero h1 { font-size: 48px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .pp-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .pp-sell { position: static; }
  .pp-sell h1 { font-size: 40px; }
  .pp-sections-grid { grid-template-columns: 1fr; }
  .pp-section-head h2 { font-size: 36px; }
  .buy-band h2 { font-size: 40px; }
  .bundles h1 { font-size: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav-inner {
    padding: 14px 20px;
    gap: 14px;
  }
  .site-brand-logo { height: 28px; }
  .site-brand-mark { height: 28px; }
  .nav-links { display: none; }
  .nav-search:not(.nav-search-mobile) { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-drawer {
    display: none;
    padding: 16px 20px 20px;
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .nav-drawer.open { display: block; }
  .nav-search-mobile {
    flex: 1;
    margin-bottom: 14px;
    max-width: none;
  }
  .nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
  }
  .nav-drawer-links a {
    display: block;
    padding: 14px 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line-2);
  }
  .nav-drawer-links a:hover { color: var(--grape); }
  .nav-drawer-links li:last-child a { border-bottom: 0; }

  .hero h1 { font-size: 42px; }
  .hero-art { height: 380px; }
  .paper-big { width: 190px; height: 260px; left: 0; }
  .paper-cal { width: 170px; height: 230px; left: 160px; top: 40px; }
  .paper-bar { width: 200px; height: 160px; left: 40px; top: 240px; }

  .shelves { grid-template-columns: 1fr; }
  .shelf-planners { grid-column: span 1; }
  .strip-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .strip-header h2 { font-size: 32px; }
  .shelf-art {
    position: relative;
    bottom: auto; right: auto;
    width: 100%; height: auto; min-height: 180px;
    margin-top: 20px;
  }
  .shelf-planners .shelf-art,
  .shelf-checklists .shelf-art,
  .shelf-worksheets .shelf-art {
    width: 100%; height: auto; min-height: 180px;
  }
  .shelves-strip, .why, .newsletter, .pp-included, .buy-band { padding-left: 20px; padding-right: 20px; }
  .why-copy h2 { font-size: 36px; }
  .why-stack { height: 380px; }
  .ps-3 { left: 60px; }
  .ps-1, .ps-2, .ps-3 { width: 240px; height: 340px; }
  .newsletter h2 { font-size: 32px; }
  .newsletter-form input { padding: 18px 130px 18px 20px; font-size: 14px; }
  .newsletter-form button { padding: 12px 16px; font-size: 12px; }

  .cat-hero { padding: 40px 20px 28px; }
  .cat-hero h1 { font-size: 36px; }
  .cat-toolbar { padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .cat-grid-wrap { padding: 24px 20px 48px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pcard-title { font-size: 16px; }
  .pcard-price { font-size: 17px; }

  .pp { padding: 24px 20px 0; }
  .pp-sell h1 { font-size: 34px; }
  .pp-price { font-size: 38px; }
  .pp-trust { grid-template-columns: 1fr; }
  .pp-section-head h2 { font-size: 30px; }
  .buy-band h2 { font-size: 32px; }

  .bundles { padding: 60px 20px; }
  .bundles h1 { font-size: 40px; }
  .bundles-stack { width: 100%; max-width: 420px; }
  .bundles-form { flex-direction: column; gap: 10px; }
  .bundles-form button { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer-inner { padding: 40px 24px 28px; }

  .static-page { padding: 40px 24px 60px; }
  .static-page h1 { font-size: 40px; }
  .thanks-page h1 { font-size: 40px; }
}

@media (max-width: 480px) {
  .site-brand-logo { display: none; }
  .site-brand-mark { display: block; }

  .paper-big { width: 150px; height: 210px; padding: 14px 12px; }
  .paper-big .ph-h { font-size: 15px; }
  .paper-cal { width: 140px; height: 190px; left: 140px; }
  .paper-bar { width: 160px; height: 130px; top: 210px; padding: 14px; }
  .paper-bar .ph-h { font-size: 16px; }
  .cat-grid { grid-template-columns: 1fr; }
  .pp-thumbs { grid-template-columns: repeat(4, 1fr); }
}

/* shop page — jump chips */
.shop-jump {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.shop-jump .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  transition: all 0.15s;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.shop-jump .chip:hover {
  border-color: var(--grape);
  color: var(--grape);
  transform: translateY(-1px);
}
.shop-jump .chip-n {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  padding: 3px 7px;
  background: var(--cream);
  border-radius: 999px;
  color: var(--mute);
  letter-spacing: 0.1em;
}
.shop-jump .chip:hover .chip-n {
  background: var(--lav-2);
  color: var(--grape);
}
@media (max-width: 768px) {
  .cat-toolbar .shop-jump { width: 100%; }
}

/* ---- Hero conversion block (ad-test relaunch 2026-04-27) ---- */
.pp-launch-eyebrow {
  display: inline-block;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b3275a;
  background: #fde9ef;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.pp-price-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.pp-price-old {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  color: var(--ink-3, #9b8db4);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.pp-refund {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(151, 196, 175, 0.12);
  border-left: 3px solid #6ea88f;
  border-radius: 6px;
  color: var(--ink, #2a1f3d);
}
.pp-refund svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  color: #4f8a72;
  display: inline-block;
}
.pp-refund p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Founder note section */
.pp-founder {
  background: linear-gradient(180deg, #fdf8f1 0%, #fbf0e7 100%);
  padding: 56px 24px;
  margin: 32px 0;
}
.pp-founder-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pp-founder-eyebrow {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grape, #7b4ad1);
  margin-bottom: 18px;
}
.pp-founder-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink, #2a1f3d);
  margin: 0 0 18px;
}
.pp-founder-sig {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--grape, #7b4ad1);
}

@media (max-width: 720px) {
  .pp-founder { padding: 40px 18px; }
  .pp-founder-quote { font-size: 19px; }
  .pp-price-old { font-size: 20px; }
}
