:root {
  --ink: #17372f;
  --ink-soft: #3f5f55;
  --paper: #f8f4ed;
  --mist: #deede6;
  --mint: #a6cdb9;
  --gold: #dfbf79;
  --coral: #ba6a55;
  --white: #ffffff;
  --line: #ded6c9;
  --shadow: 0 18px 42px rgba(23, 55, 47, 0.12);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(248, 244, 237, 0.94);
  border-bottom: 1px solid rgba(222, 214, 201, 0.86);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
  background: var(--mist);
  border-radius: var(--radius);
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero,
.page-hero,
.section {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  min-height: calc(100vh - 73px);
  padding: clamp(48px, 8vw, 86px) 0;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.product-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-text,
.page-hero p,
.feature-copy p,
.narrow-text {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.proof-row,
.card-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.card-badge-row {
  margin: 0 0 14px;
}

.proof-pill,
.card-badge,
.rating-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid rgba(23, 55, 47, 0.13);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-pill.light {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-badge,
.rating-badge {
  color: var(--coral);
  background: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 rgba(23, 55, 47, 0);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.button:hover,
.text-link:hover,
.link-panel a:hover {
  transform: translateY(-1px);
}

.button.primary:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 24px rgba(23, 55, 47, 0.14);
}

.button.secondary:hover {
  background: var(--white);
  box-shadow: 0 10px 22px rgba(23, 55, 47, 0.08);
}

.hero-media {
  position: relative;
  padding: 16px;
  background: linear-gradient(135deg, var(--mist), var(--gold));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-media:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(23, 55, 47, 0.16);
}

.hero-media img,
.feature-image,
.product-card img,
.shop-card img {
  border-radius: var(--radius);
}

.section {
  padding: clamp(42px, 7vw, 78px) 0;
}

.page-hero {
  padding: clamp(52px, 8vw, 96px) 0 26px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 720px;
}

.freebie-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 32px;
  align-items: center;
}

.category-list,
.link-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-list a,
.link-panel a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px;
  font-weight: 800;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-list a:hover,
.link-panel a:hover {
  border-color: rgba(186, 106, 85, 0.5);
  box-shadow: 0 12px 26px rgba(23, 55, 47, 0.09);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: clamp(32px, 5vw, 54px);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.resource-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: 28px;
  align-items: center;
  padding: clamp(32px, 5vw, 54px);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.feature-visual {
  display: grid;
  gap: 16px;
}

.feature-visual img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(23, 55, 47, 0.1);
}

.benefit-list li {
  padding: 14px 16px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 55, 47, 0.12);
  border-radius: var(--radius);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--ink-soft);
}

.product-grid,
.shop-grid,
.resource-grid,
.trust-strip,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
}

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

.product-card,
.shop-card,
.resource-grid article,
.trust-strip article,
.step-grid article,
.story-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 55, 47, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover,
.shop-card:hover,
.resource-grid article:hover,
.trust-strip article:hover,
.step-grid article:hover {
  border-color: rgba(186, 106, 85, 0.42);
  box-shadow: 0 18px 38px rgba(23, 55, 47, 0.1);
  transform: translateY(-2px);
}

.product-card {
  overflow: hidden;
}

.product-card div,
.shop-card div,
.resource-grid article,
.trust-strip article,
.step-grid article,
.story-note {
  padding: 20px;
}

.product-card p,
.shop-card p,
.resource-grid p,
.trust-strip p,
.step-grid p,
.legal-copy p,
.split-story p {
  color: var(--ink-soft);
}

.trust-strip span,
.status-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip p {
  margin-bottom: 0;
  font-weight: 700;
}

.social-proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 55, 47, 0.07);
}

.social-proof-panel p {
  color: var(--ink-soft);
}

.testimonial-card,
.inline-testimonial {
  margin: 0;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial-card blockquote,
.inline-testimonial blockquote {
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

.inline-testimonial {
  margin: 16px 0 0;
}

.inline-testimonial blockquote {
  font-size: 0.98rem;
}

.testimonial-card figcaption,
.inline-testimonial figcaption {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.mini-proof-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.mini-proof-list.light {
  color: var(--mist);
}

.how-it-works {
  border-top: 1px solid var(--line);
}

.step-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
}

.step-grid p {
  margin-bottom: 0;
}

.shop-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
}

.shop-card.highlight {
  grid-column: 1 / -1;
}

.shop-card.text-only {
  grid-template-columns: 1fr;
}

.shop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 55, 47, 0.07);
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.product-gallery figcaption {
  padding: 14px 16px;
  color: var(--ink-soft);
  font-weight: 800;
}

.download-note {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.signup-note {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.detail-grid,
.recommendation-panel,
.purchase-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.info-card,
.value-card,
.notice-panel,
.recommendation-panel {
  padding: clamp(28px, 5vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 55, 47, 0.07);
}

.detail-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.price-line {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.price-line span {
  display: inline-flex;
  margin-left: 6px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.value-card .detail-list {
  margin: 18px 0;
}

.full-width {
  width: 100%;
}

.notice-panel {
  background: var(--mist);
}

.recommendation-panel {
  background: var(--ink);
}

.recommendation-panel h2,
.recommendation-panel h3,
.recommendation-panel p {
  color: var(--paper);
}

.recommendation-panel .eyebrow {
  color: var(--gold);
}

.recommendation-panel img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.recommendation-panel .button.primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.recommendation-panel .button.secondary {
  color: var(--paper);
  border-color: var(--paper);
}

.recommendation-panel .button.secondary:hover {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--coral);
  font-weight: 800;
  text-decoration: none;
}

.library-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(30px, 5vw, 48px);
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.library-callout p,
.library-callout .eyebrow {
  color: var(--mist);
}

.library-callout .button.primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.whole-home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(30px, 5vw, 48px);
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.whole-home-cta h2,
.whole-home-cta h3,
.whole-home-cta p,
.whole-home-cta .eyebrow {
  color: var(--paper);
}

.whole-home-cta .eyebrow {
  color: var(--gold);
}

.whole-home-cta p {
  max-width: 720px;
}

.whole-home-cta .button.primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signup-form,
.mailer-lite-form {
  display: grid;
  gap: 10px;
}

.signup-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.mailer-lite-form {
  width: 100%;
  min-height: 130px;
  padding: 18px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
}

.mailer-lite-form .ml-embedded {
  width: 100%;
}

.signup-form input {
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.signup-form input:disabled,
.signup-form button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.locked {
  position: relative;
}

.locked::after {
  content: "Locked";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 9px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.legal-copy {
  max-width: 820px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 48px);
  color: var(--paper);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .feature-band,
  .resource-feature,
  .freebie-hero,
  .detail-grid,
  .purchase-summary,
  .recommendation-panel,
  .split-story,
  .social-proof-panel,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid,
  .shop-grid,
  .resource-grid,
  .product-gallery,
  .trust-strip,
  .step-grid,
  .category-list,
  .link-panel {
    grid-template-columns: 1fr;
  }

  .shop-card,
  .shop-card.highlight {
    grid-template-columns: 1fr;
  }

  .shop-card img {
    height: auto;
  }

  .library-callout,
  .whole-home-cta,
  .newsletter-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .signup-form {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
