:root {
  --sage: #7f9d7a;
  --sage-dark: #405f48;
  --sage-soft: #edf4ec;
  --cream: #faf7ef;
  --paper: #fffdf8;
  --terracotta: #c8755b;
  --clay: #e6b19f;
  --sky: #d8e6ed;
  --ink: #26312a;
  --muted: #69746b;
  --line: #e4dfd2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(50, 62, 52, .11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 52px);
  background: rgba(255, 253, 248, .9);
  border-bottom: 1px solid rgba(228, 223, 210, .78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--sage-dark);
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--sage-dark);
  background: var(--sage-soft);
  border: 1px solid rgba(127, 157, 122, .22);
  border-radius: var(--radius);
}

.brand-mark svg,
.cart-button svg,
.button svg,
.icon-button svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: .96rem;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--sage-dark);
}

.cart-button,
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--sage-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.cart-button {
  position: relative;
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 89;
  display: none;
  background: rgba(24, 54, 47, .28);
  border: 0;
  cursor: pointer;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(430px, 100%);
  height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  color: var(--ink);
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 45px rgba(50, 62, 52, .16);
  transform: translateX(100%);
  transition: transform .2s ease;
}

.cart-open .cart-panel {
  transform: translateX(0);
}

.cart-open .cart-overlay {
  display: block;
}

.cart-panel-header,
.cart-line,
.cart-line-actions,
.cart-summary div,
.cart-actions {
  display: flex;
  gap: 14px;
}

.cart-panel-header {
  align-items: start;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-panel-header h2 {
  color: var(--sage-dark);
  font-size: 2.2rem;
}

.cart-close,
.cart-line-actions button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--sage-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 12px;
  overflow: auto;
}

.cart-line,
.cart-empty {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-line {
  align-items: start;
  justify-content: space-between;
}

.cart-line h3,
.cart-empty h3 {
  color: var(--sage-dark);
  font-size: 1.15rem;
}

.cart-line p,
.cart-empty p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cart-line-actions {
  align-items: center;
  flex-shrink: 0;
}

.cart-line-actions span {
  color: var(--sage-dark);
  font-weight: 850;
}

.cart-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--sage-soft);
  border: 1px solid rgba(127, 157, 122, .28);
  border-radius: var(--radius);
}

.cart-summary div {
  align-items: baseline;
  justify-content: space-between;
}

.cart-summary span {
  color: var(--sage-dark);
  font-weight: 800;
}

.cart-summary strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.cart-summary p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.cart-actions {
  margin-top: auto;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-actions .button,
.cart-actions .text-link {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 150px clamp(18px, 6vw, 76px) 68px;
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(19, 31, 23, .72), rgba(19, 31, 23, .42) 43%, rgba(19, 31, 23, .06));
}

.hero-content {
  max-width: 820px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c0a6;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 8.5vw, 6.8rem);
  font-weight: 600;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.1rem);
  font-weight: 600;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover,
.icon-button:hover,
.cart-button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.hero .button.primary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .5);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.pain-points {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}

.point-grid p {
  min-height: 86px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 800;
  text-align: center;
}

.intro,
.shop-section,
.articles,
.philosophy,
.newsletter {
  padding: clamp(70px, 10vw, 120px) 0;
}

.intro-layout,
.philosophy-layout,
.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.intro-copy p,
.philosophy p,
.newsletter p,
.feature-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.featured-product {
  padding: clamp(70px, 10vw, 118px) 0;
  background: linear-gradient(180deg, var(--sage-soft), #f7fbf6);
}

.product-feature-layout {
  display: grid;
  grid-template-columns: minmax(290px, .96fr) minmax(0, 1.04fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.printable-stack {
  position: relative;
  min-height: 470px;
}

.printable-page {
  position: absolute;
  width: min(76%, 360px);
  min-height: 430px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.printable-page span,
.product-meta,
.article-card p {
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.printable-page h3 {
  margin-top: 10px;
  color: var(--sage-dark);
  font-size: 2rem;
}

.page-one {
  left: 4%;
  top: 14px;
  z-index: 3;
}

.page-two {
  right: 4%;
  top: 46px;
  z-index: 2;
  transform: rotate(5deg);
}

.page-three {
  left: 21%;
  bottom: 4px;
  z-index: 1;
  transform: rotate(-6deg);
}

.line {
  height: 12px;
  margin-top: 22px;
  background: var(--sage-soft);
  border-radius: 999px;
}

.line.wide {
  width: 84%;
}

.line.short {
  width: 56%;
}

.habit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.habit-row i {
  width: 24px;
  height: 24px;
  border: 2px solid var(--sage);
  border-radius: 6px;
}

.habit-row p {
  margin: 0;
  color: var(--muted);
}

.mood-dots {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.mood-dots i,
.mini-grid i {
  display: block;
  background: var(--sky);
  border: 1px solid #c6d8df;
  border-radius: var(--radius);
}

.mood-dots i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-grid i {
  min-height: 78px;
}

.feature-copy {
  max-width: 620px;
}

.signup-form {
  margin-top: 26px;
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-size: .9rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.form-row input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.form-row input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(127, 157, 122, .15);
}

.form-note {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--sage-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 760px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-tabs button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.filter-tabs button.active {
  color: var(--sage-dark);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(64, 95, 72, .08);
}

.product-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 18px;
}

.product-card,
.article-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(50, 62, 52, .06);
}

.product-card.hidden {
  display: none;
}

.product-visual {
  min-height: 190px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.product-visual::before,
.product-visual::after {
  content: "";
  display: block;
}

.product-visual.bundle {
  background:
    linear-gradient(135deg, transparent 52%, rgba(200, 117, 91, .14) 52%),
    linear-gradient(180deg, #ffffff, #eff6ed);
  position: relative;
}

.product-visual.bundle::before {
  position: absolute;
  left: 28px;
  top: 30px;
  width: 96px;
  height: 126px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 34px 10px 0 -4px #ffffff, 34px 10px 0 -3px var(--line), 68px 22px 0 -8px #fffaf0, 68px 22px 0 -7px var(--line);
}

.product-visual.restaurant {
  background:
    radial-gradient(circle at 20% 32%, #d8e6ed 0 26px, transparent 27px),
    radial-gradient(circle at 72% 62%, #e6b19f 0 34px, transparent 35px),
    linear-gradient(180deg, #fff, #faf7ef);
}

.product-visual.journal {
  background:
    linear-gradient(90deg, rgba(127, 157, 122, .18) 0 12px, transparent 12px),
    repeating-linear-gradient(180deg, #fffdf8 0 34px, #ece7d8 35px, #fffdf8 36px);
}

.product-visual.routine {
  background:
    linear-gradient(90deg, transparent 49%, rgba(64, 95, 72, .16) 50%, transparent 51%),
    linear-gradient(180deg, transparent 49%, rgba(64, 95, 72, .16) 50%, transparent 51%),
    #fffdf8;
  background-size: 82px 82px;
}

.product-body {
  min-width: 0;
  padding: 20px;
}

.product-card h2,
.product-card h3 {
  font-size: 1.55rem;
  line-height: 1.12;
  overflow-wrap: break-word;
}

.product-body p {
  color: var(--muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.product-footer strong {
  color: var(--sage-dark);
  font-size: 1.35rem;
}

.age-pack-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.featured-age-bundle {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
  margin-bottom: 46px;
  border-color: rgba(64, 95, 72, .38);
  box-shadow: 0 18px 42px rgba(50, 62, 52, .1);
}

.featured-age-bundle > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: #f5f8f3;
  border-right: 1px solid var(--line);
}

.featured-age-bundle .product-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px);
}

.featured-age-bundle h2 {
  margin-top: 14px;
}

.compact-list {
  margin: 18px 0 4px;
}

.bundle-savings {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.age-pack-heading {
  margin-bottom: 22px;
}

.age-pack-preview {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #f5f8f3;
  border-bottom: 1px solid var(--line);
}

.articles {
  background: var(--cream);
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card {
  min-height: 270px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.article-card span {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--sage-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.page-hero {
  padding: 132px 0 64px;
  background:
    radial-gradient(circle at 82% 22%, rgba(216, 230, 237, .9) 0 112px, transparent 114px),
    linear-gradient(180deg, var(--sage-soft), var(--paper));
  border-bottom: 1px solid var(--line);
}

.page-hero.narrow .section-inner {
  max-width: 860px;
}

.page-hero h1 {
  max-width: 980px;
  color: var(--sage-dark);
  font-size: clamp(2.75rem, 7vw, 5.8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.utility-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.utility-nav a {
  min-height: 40px;
  padding: 8px 13px;
  color: var(--sage-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.resource-section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.resource-section.alt {
  background: var(--cream);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 18px;
}

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(50, 62, 52, .06);
}

.resource-card .eyebrow {
  margin-bottom: 10px;
}

.printable-preview {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 18px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(29, 42, 36, .08);
}

.preview-board-link {
  display: block;
  max-width: 780px;
  margin: 0 auto;
}

.preview-board {
  display: block;
  width: 100%;
  height: auto;
  background: #f5f8f3;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(29, 42, 36, .1);
}

.product-preview-section {
  padding: clamp(50px, 7vw, 82px) 0;
  background: var(--white);
}

.product-preview-copy {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.product-preview-copy p {
  color: var(--muted);
}

.preview-note {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}

.save-for-later {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.save-for-later img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 640px) {
  .save-for-later {
    grid-template-columns: minmax(0, 1fr);
  }

  .save-for-later img {
    max-width: 260px;
  }
}

.product-preview-link {
  display: block;
  overflow: hidden;
  background: #f5f8f3;
  border-bottom: 1px solid var(--line);
}

.product-preview-thumb {
  display: block;
  width: 100%;
  height: auto;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.preview-item {
  margin: 0;
}

.preview-item figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .9rem;
}

.resource-card h2,
.resource-card h3 {
  color: var(--sage-dark);
  font-size: 2rem;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.save-for-later h2 {
  font-size: 2.75rem;
  line-height: 1.06;
}

.resource-card p {
  color: var(--muted);
}

.resource-card .button,
.resource-card .text-link {
  margin-top: auto;
}

.longform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(30px, 6vw, 76px);
  padding: clamp(56px, 8vw, 96px) 0;
}

.article-body {
  max-width: 780px;
}

.article-body h2 {
  margin-top: 42px;
  color: var(--sage-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.article-body h3 {
  margin-top: 28px;
  color: var(--sage-dark);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 1.07rem;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.takeaway {
  padding: 20px;
  margin: 32px 0;
  background: var(--sage-soft);
  border: 1px solid rgba(127, 157, 122, .28);
  border-radius: var(--radius);
}

.sidebar-box {
  position: sticky;
  top: 96px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(50, 62, 52, .06);
}

.sidebar-box p {
  color: var(--muted);
}

.printable-sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.preview-sheet {
  min-height: 220px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview-sheet h3 {
  color: var(--sage-dark);
}

.preview-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.preview-lines i {
  display: block;
  height: 12px;
  background: var(--sage-soft);
  border-radius: 999px;
}

.newsletter-panel {
  max-width: 760px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.seo-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  padding: 14px 16px;
  color: var(--sage-dark);
  background: rgba(127, 157, 122, .1);
  border: 1px solid rgba(127, 157, 122, .22);
  border-radius: var(--radius);
  font-weight: 800;
}

.philosophy-layout {
  align-items: center;
}

.disclaimer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}

.newsletter {
  background: var(--sage-dark);
  color: var(--white);
}

.newsletter .eyebrow {
  color: #e8b8a1;
}

.newsletter p {
  color: rgba(255, 255, 255, .78);
}

.newsletter .form-row input {
  background: rgba(255, 255, 255, .96);
}

.newsletter .button.primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.promo-band {
  background: #18362f;
  color: #f7fbf3;
  padding: 14px 0;
}

.promo-band .section-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.promo-band p {
  margin: 0;
}

.offer-grid {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr .85fr;
}

.page-hero .button.secondary {
  color: var(--sage-dark);
  background: var(--white);
  border-color: var(--line);
}

.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(29, 42, 36, .08);
  padding: 28px;
}

.offer-card .printable-preview {
  height: auto;
  max-height: 360px;
  object-fit: contain;
}

.price-row {
  align-items: baseline;
  display: flex;
  gap: 12px;
  margin: 18px 0;
}

.price-row strong {
  color: var(--ink);
  font-size: 2.5rem;
  letter-spacing: 0;
  line-height: 1;
}

.price-row span {
  color: var(--muted);
}

.price-row .original-price {
  text-decoration: line-through;
}

.feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 22px 0;
  padding: 0;
}

.feature-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}

.bonus-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bonus-grid article,
.faq-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.bonus-grid h3,
.faq-grid h3 {
  margin-top: 0;
}

.faq-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.comparison-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.3fr .85fr .85fr;
}

.comparison-row > * {
  border-bottom: 1px solid var(--line);
  padding: 14px;
}

.comparison-row:last-child > * {
  border-bottom: 0;
}

.comparison-row strong {
  background: var(--paper);
}

.tool-callout {
  background: #f7fbf3;
  border: 1px solid #d7e6ce;
  border-radius: 8px;
  padding: 20px;
}

.article-list {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
}

.article-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.article-list a {
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 440px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
}

@media (max-width: 980px) {
  .featured-age-bundle {
    grid-template-columns: 1fr;
  }

  .featured-age-bundle > img {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links {
    display: none;
  }

  .point-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-layout,
  .product-feature-layout,
  .philosophy-layout,
  .newsletter-layout,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-card h2,
  .resource-card h3 {
    font-size: 1.8rem;
  }

  .resource-grid,
  .preview-grid,
  .longform {
    grid-template-columns: 1fr;
  }

  .sidebar-box {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
  }

  .brand {
    font-size: .95rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 86svh;
    padding: 118px 18px 54px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(19, 31, 23, .54), rgba(19, 31, 23, .84));
  }

  .hero-actions,
  .form-row,
  .footer-layout,
  .section-heading,
  .promo-band .section-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .form-row {
    width: 100%;
  }

  .form-row {
    display: flex;
  }

  .point-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .article-grid,
  .resource-grid,
  .printable-sheet-grid,
  .bonus-grid,
  .faq-grid,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .age-pack-preview {
    height: 440px;
  }

  .product-card h2,
  .product-card h3,
  .resource-card h2,
  .resource-card h3 {
    font-size: 1.55rem;
  }

  .save-for-later h2 {
    font-size: 2.15rem;
  }

  .filter-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .printable-stack {
    min-height: 380px;
  }

  .printable-page {
    width: 82%;
    min-height: 330px;
    padding: 22px;
  }

  .page-two {
    right: 0;
  }

  .page-three {
    left: 14%;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
