/* More Lessons Less Planning — storefront stylesheet
   Palette: canvas #F4F5F3, card #FFFFFF, ink #2E3A46, ink-soft #5C6B77,
   blue #6B8CAE, blue-deep #43648C, sage #A7C4B0, sage-bg #EAF0EC,
   green #3D8B78, coral #E8735A, line #E3E6E1, footer #2E3A46.
   Fonts: Fraunces (headings) + Karla (body). Zero JS. */

:root {
  --canvas: #F4F5F3;
  --card: #FFFFFF;
  --ink: #2E3A46;
  --ink-soft: #5C6B77;
  --blue: #6B8CAE;
  --blue-deep: #43648C;
  --sage: #A7C4B0;
  --sage-bg: #EAF0EC;
  --sage-ink: #28443A;
  --green: #3D8B78;
  --coral: #E8735A;
  --line: #E3E6E1;
  --footer: #2E3A46;
  --footer-text: #C7CFD6;
  --navy: #1B2A4A;
  --teal: #2A9D8F;
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  font-family: 'Karla', 'Segoe UI', system-ui, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 650;
  margin: 0;
}

a { color: var(--blue-deep); }
a:hover { color: #2E4A6B; }

img { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.site-nav {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
  font-weight: 650;
  color: var(--ink);
  text-decoration: none;
}
.brand span { color: var(--green); }
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-cta {
  text-decoration: none;
  background: var(--green);
  color: var(--card) !important;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 9px;
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 60px 24px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.hero-copy { flex: 1 1 420px; max-width: 640px; }
.badge {
  display: inline-block;
  background: var(--sage);
  color: var(--sage-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-size: 40px;
  line-height: 1.15;
}
.hero-copy .accent { color: var(--blue-deep); }
.hero-sub {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  flex-wrap: wrap;
}
.btn-primary {
  text-decoration: none;
  background: var(--green);
  color: var(--card);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 24px;
  border-radius: 10px;
  display: inline-block;
}
.btn-secondary {
  text-decoration: none;
  background: var(--blue-deep);
  color: var(--card);
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 18px;
  border-radius: 9px;
  display: inline-block;
}
.text-link { font-weight: 700; font-size: 15px; }

.hero-art {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 0 0 auto;
}
.hero-art img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(27, 42, 74, 0.18);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 20px 24px;
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue-deep);
  flex-wrap: wrap;
  text-align: center;
}

/* ---------- Sections ---------- */
.section {
  padding: 56px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.section h2 { font-size: 28px; }

/* ---------- Line cards ---------- */
.line-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.line-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}
.line-card-bar {
  width: 38px;
  height: 6px;
  border-radius: 3px;
  background: var(--blue-deep);
}
.line-card h3 { font-size: 18px; }
.line-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.line-card .text-link { font-size: 13.5px; margin-top: 4px; }

/* ---------- Verification band ---------- */
.verify-band {
  background: var(--sage-bg);
  padding: 52px 24px;
}
.verify-band-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.verify-band h2 { font-size: 26px; max-width: 32ch; }
.verify-band .lede { font-size: 15.5px; color: var(--ink-soft); max-width: 72ch; line-height: 1.6; }
.verify-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.verify-step {
  background: var(--card);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.step-label { font-weight: 700; color: var(--green); font-size: 13px; }
.verify-step .step-title { font-weight: 700; font-size: 15.5px; }
.verify-step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

/* ---------- Product cards / grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
}
.product-card.is-bundle { border: 2px solid var(--green); }
.product-card-cover {
  height: 160px;
  overflow: hidden;
  background: var(--navy);
}
.product-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body {
  padding: 16px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.kicker.best-value { color: var(--green); }
.product-card h3 { font-size: 17px; }
.product-card .blurb { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.price { font-weight: 700; font-size: 15.5px; margin-top: 2px; }
.price .save-note { color: var(--ink-soft); font-weight: 400; font-size: 12.5px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 18px 24px 0 24px;
  max-width: 1180px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--ink-soft);
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-deep); }

/* ---------- Product page ---------- */
.product-main {
  display: flex;
  gap: 44px;
  padding: 24px 24px 52px 24px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.product-media { flex: 1 1 440px; max-width: 520px; display: flex; flex-direction: column; gap: 12px; }
.product-cover {
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
}
.product-cover img { width: 100%; height: auto; }
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.thumb {
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  background: var(--card);
}
.thumb img { width: 100%; height: 80px; object-fit: cover; }

.buy-panel { flex: 1 1 380px; display: flex; flex-direction: column; gap: 12px; }
.buy-panel h1 { font-size: 30px; line-height: 1.15; }
.buy-panel .lede { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; max-width: 52ch; }

.whats-inside {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.whats-inside-title { font-weight: 700; font-size: 14.5px; }
.whats-inside ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.whats-inside li { font-size: 14px; color: var(--ink-soft); padding-left: 16px; position: relative; }
.whats-inside li::before { content: "—"; position: absolute; left: 0; }

.buy-row { display: flex; align-items: center; gap: 18px; margin-top: 4px; flex-wrap: wrap; }
.price-big { font-size: 28px; font-weight: 700; font-family: 'Fraunces', Georgia, serif; }
.btn-buy {
  text-decoration: none;
  background: var(--green);
  color: var(--card);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  display: inline-block;
}
.buy-placeholder {
  display: inline-block;
  background: var(--line);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: 10px;
}
.delivery-note { font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; max-width: 52ch; }

.verify-chip {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--sage-bg);
  border-radius: 10px;
  padding: 11px 15px;
  max-width: 480px;
}
.verify-chip-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.verify-chip span { font-size: 13px; color: var(--sage-ink); font-weight: 500; }
.verify-chip a { color: var(--sage-ink); }

.product-lower {
  display: flex;
  gap: 44px;
  padding: 0 24px 56px 24px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.description { flex: 2 1 480px; max-width: 720px; }
.description h2 { font-size: 22px; margin-bottom: 12px; }
.description p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 12px 0; }
.description ul { margin: 0 0 12px 20px; }
.description li { font-size: 15px; color: var(--ink-soft); line-height: 1.6; list-style: disc; }

.bundle-cross {
  flex: 1 1 320px;
  max-width: 360px;
  align-self: flex-start;
  background: var(--card);
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bundle-cross .kicker { color: var(--green); }
.bundle-cross h3 { font-size: 17px; }
.bundle-cross p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.bundle-cross a { align-self: flex-start; margin-top: 4px; }

/* ---------- Hub page ---------- */
.hub-hero {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 44px 24px;
}
.hub-hero-inner { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.hub-hero h1 { font-size: 34px; }
.hub-hero .lede { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; max-width: 68ch; }
.unit-chips { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.chip {
  text-decoration: none;
  background: var(--sage-bg);
  color: var(--sage-ink);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 999px;
}
.chip.is-active { background: var(--green); color: var(--card); }

.bundle-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--blue-deep);
  padding: 22px 24px;
  flex-wrap: wrap;
}
.bundle-promo-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bundle-promo-copy .headline { color: var(--card); font-weight: 700; font-size: 16px; font-family: 'Fraunces', Georgia, serif; }
.bundle-promo-copy .sub { color: #D4DEEA; font-size: 13.5px; }
.bundle-promo .btn-secondary { background: var(--card); color: var(--blue-deep); }

.unit-group { margin-bottom: 36px; }
.unit-group h2 { font-size: 22px; }
.unit-count { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Blog ---------- */
.blog-article {
  display: flex;
  justify-content: center;
  padding: 48px 24px;
}
.blog-article-inner { max-width: 720px; display: flex; flex-direction: column; gap: 16px; }
.blog-article h1 { font-size: 32px; line-height: 1.15; }
.blog-meta { font-size: 13px; color: var(--ink-soft); }
.blog-body { font-size: 16px; line-height: 1.75; color: #3E4B57; display: flex; flex-direction: column; gap: 15px; }
.blog-body h2 { font-size: 21px; margin-top: 6px; }
.blog-body p { margin: 0; }
.blog-body ul { margin-left: 20px; }
.blog-body li { list-style: disc; margin-bottom: 6px; }

.blog-callout {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--card);
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 8px 0;
  flex-wrap: wrap;
}
.blog-callout img { width: 100px; border-radius: 8px; flex-shrink: 0; }
.blog-callout-copy .kicker { color: var(--green); }

.author-box {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--sage-bg);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 10px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  flex-shrink: 0;
}
.author-box p { font-size: 13.5px; color: var(--sage-ink); line-height: 1.55; margin: 0; }

.blog-index-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}
.blog-index-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blog-index-item h2 { font-size: 19px; }
.blog-index-item p { font-size: 14px; color: var(--ink-soft); margin: 0; }

.empty-state {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  max-width: 640px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.empty-state p { margin: 0 0 12px 0; }
.empty-state p:last-child { margin-bottom: 0; }

/* ---------- Generic static page ---------- */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 52px 24px 64px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-content h1 { font-size: 32px; }
.page-content h2 { font-size: 21px; margin-top: 8px; }
.page-content p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; margin: 0; }
.page-content ul { margin-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.page-content li { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; list-style: disc; }

/* ---------- 404 ---------- */
.not-found {
  max-width: 640px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}
.not-found h1 { font-size: 34px; margin-bottom: 12px; }
.not-found p { font-size: 15.5px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer);
  color: var(--footer-text);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 14px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 40ch;
}
.footer-brand .name { font-family: 'Fraunces', Georgia, serif; font-size: 18px; color: var(--card); }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col .col-title { color: var(--card); font-weight: 700; }
.footer-col a { color: var(--footer-text); text-decoration: none; }
.footer-col a:hover { color: var(--card); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { flex-direction: column; align-items: flex-start; padding: 44px 20px; }
  .hero-copy { flex: 1 1 auto; }
  .hero-art { order: -1; }
  .line-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .verify-grid { grid-template-columns: 1fr; }
  .product-main { flex-direction: column; }
  .product-media, .buy-panel { flex: 1 1 auto; max-width: none; }
  .product-lower { flex-direction: column; }
  .description, .bundle-cross { flex: 1 1 auto; max-width: none; }
  .thumb-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 560px) {
  .line-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; font-size: 14px; }
  .hero-copy h1 { font-size: 30px; }
}
