:root {
  --bg: #f6f3ee;
  --card: #ffffff;
  --text: #263128;
  --muted: #6e7a6c;
  --accent: #7b9a73;
  --accent-dark: #5f7d58;
  --line: #e6e1d8;
  --soft: #edf3ea;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 18px;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.topbar {
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 999;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.logo-img {
  height: 110px;
  width: auto;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover,
.nav a.active {
  color: var(--accent-dark);
}

.hero {
  padding: 72px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 16px;
}
.hero-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 620px;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent-dark); color: #fff; }
.btn-primary:hover { background: #4e6848; }
.btn-secondary {
  background: transparent;
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}
.btn-secondary:hover { background: #eef4eb; }
.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-card {
  background: linear-gradient(135deg, #dfeadb, #f4eee4);
  border-radius: 28px;
  min-height: 420px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
}
.hero-card::before {
  width: 220px;
  height: 220px;
  top: -50px;
  right: -30px;
}
.hero-card::after {
  width: 160px;
  height: 160px;
  bottom: 40px;
  left: -40px;
}
.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: rgba(255,255,255,0.75);
  color: var(--accent-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
  width: fit-content;
}
.hero-card h2 {
  position: relative;
  z-index: 2;
  font-size: 1.85rem;
  margin-bottom: 12px;
}
.hero-card p,
.hero-card ul {
  position: relative;
  z-index: 2;
  color: #445043;
}
.hero-list {
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 420px;
}
.hero-list li {
  padding-left: 1.2rem;
  position: relative;
}
.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.section {
  padding: 42px 0 20px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: 2rem;
}
.section-head p {
  color: var(--muted);
  max-width: 700px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.product-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #dde5d9;
}
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-tag,
.aff-badge {
  position: absolute;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  z-index: 3;
}
.product-tag {
  left: 14px;
  background: rgba(255,255,255,0.94);
  color: var(--accent-dark);
}
.aff-badge {
  right: 14px;
  background: rgba(38,49,40,0.9);
  color: #fff;
}
.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 55%);
  pointer-events: none;
}
.overlay-btn {
  border: 0;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  pointer-events: auto;
}
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.product-body p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.96rem;
}
.product-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.product-price {
  color: var(--accent-dark);
  font-weight: 700;
}
.product-link {
  background: var(--accent-dark);
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}
.product-link:hover { background: #4f6849; }

.about-home-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8f5ef 0%, #fcfaf6 100%);
}
.about-home-wrap { max-width: 1180px; margin: 0 auto; }
.about-home-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.about-home-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7f60;
  font-weight: 600;
}
.about-home-intro h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #2f2a21;
}
.about-home-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6a6257;
  max-width: 700px;
  margin: 0 auto;
}
.brand-story {
  .premium-brand {
  padding: 110px 20px 85px;
  background: linear-gradient(to bottom, #f7f4ee 0%, #f5f2eb 100%);
}

.premium-brand-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.premium-brand-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 42px;
}

.brand-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c866f;
}

.premium-brand-title {
  margin: 0 0 18px;
  font-size: 3.35rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #243424;
  max-width: 720px;
}

.premium-brand-lead {
  margin: 0;
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.95;
  color: #4f5b4f;
}

.brand-side-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(74, 95, 74, 0.08);
  border-radius: 22px;
  padding: 28px 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(4px);
}

.side-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b866f;
}

.brand-side-box p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #596559;
}

.premium-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 34px;
}

.premium-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(74, 95, 74, 0.08);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.035);
}

.premium-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.35;
  color: #243424;
}

.premium-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.85;
  color: #5c685c;
}

.premium-growth-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 34px;
  background: linear-gradient(135deg, #edf2e8 0%, #e8eee2 100%);
  border: 1px solid rgba(74, 95, 74, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.03);
}

.growth-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #77826c;
}

.premium-growth-copy h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #243424;
}

.premium-growth-copy p {
  margin: 0;
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.85;
  color: #556255;
}

.premium-growth-action {
  flex-shrink: 0;
}

.btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  min-width: 190px;
  border-radius: 999px;
  background: #708a67;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 10px 22px rgba(112, 138, 103, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn.btn-primary:hover {
  background: #627c5a;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(112, 138, 103, 0.26);
}

@media (max-width: 980px) {
  .premium-brand-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .premium-brand-title {
    font-size: 2.5rem;
  }

  .premium-brand-grid {
    grid-template-columns: 1fr;
  }

  .premium-growth-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
.growth-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #eef3ea;
  border: 1px solid rgba(80, 98, 80, 0.08);
  border-radius: 22px;
  padding: 30px 32px;
}

.growth-copy h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #233223;
}

.growth-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #556154;
  max-width: 700px;
}

.growth-action {
  flex-shrink: 0;
}
.premium-brand .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  min-width: 190px;
  border-radius: 999px;
  background: #708a67;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 10px 22px rgba(112, 138, 103, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.premium-brand .btn.btn-primary:hover {
  background: #627c5a;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(112, 138, 103, 0.26);
}
}

@media (max-width: 900px) {
  .brand-title {
    font-size: 2.3rem;
  }

  .brand-subtitle {
    font-size: 1.15rem;
  }

  .brand-pillars {
    grid-template-columns: 1fr;
  }

  .growth-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.about-home-card {
  background: #ffffff;
  border: 1px solid rgba(85, 106, 77, 0.12);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(40, 35, 28, 0.05);
}
.about-home-card h3,
.about-home-future h3,
.newsletter-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: #2f2a21;
}
.about-home-card p,
.about-home-future p,
.newsletter-card p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #6a6257;
}
.about-home-future {
  background: #edf3ea;
  border: 1px solid rgba(85, 106, 77, 0.1);
  border-radius: 24px;
  padding: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.about-home-close {
  margin-top: 14px;
  font-weight: 500;
  color: #4f6147;
}

.guides-section {
  padding: 70px 0 30px;
}
.guides-wrap {
  display: grid;
  gap: 24px;
}
.guide-feature {
  background: linear-gradient(135deg, #f7f2e9, #edf3ea);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 0 auto;
}
.guide-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-dark);
}
.guide-feature h3,
.guide-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #2f2a21;
}
.guide-feature p,
.guide-card p {
  color: #625c52;
  font-size: 0.98rem;
  line-height: 1.75;
}
.guide-feature h4,
.guide-card h4 {
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--text);
}
.guides-grid-3,
.guides-grid-2 {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
.guides-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}
.guides-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 740px;
  margin: 0 auto;
}
.guide-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.guide-card p:last-of-type { margin-bottom: 18px; }
.guide-read-time {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
}
.guide-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-weight: 700;
}
.guides-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
  padding-top: 4px;
}
.blog-cta {
  text-align: center;
  padding-top: 8px;
}

.newsletter-section {
  padding: 18px 0 26px;
}
.newsletter-card {
  background: linear-gradient(135deg, #edf3ea, #f7f2e9);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.newsletter-card p {
  max-width: 720px;
  margin: 0 auto 18px;
}
.newsletter-embed {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e6e1d8;
}
.newsletter-embed iframe {
  display: block;
  width: 100%;
  min-height: 305px;
  border: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.disclosure { padding: 30px 0 10px; }
.disclosure-box {
  background: #f0f4ee;
  border: 1px solid #dfe7dc;
  border-radius: 18px;
  padding: 18px 20px;
  color: #4e5e4d;
  font-size: 0.94rem;
}

.footer {
  padding: 36px 0 50px;
  color: var(--muted);
  font-size: 0.93rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.page-hero {
  padding: 68px 0 28px;
}
.page-hero-panel {
  background: linear-gradient(135deg, #f7f2e9, #edf3ea);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.page-kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-hero p {
  max-width: 760px;
  color: #5f665c;
  font-size: 1.02rem;
}
.blog-grid {
  padding: 10px 0 30px;
}
.blog-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.article-shell {
  padding: 58px 0 34px;
}
.article-layout {
  max-width: 920px;
  margin: 0 auto;
}
.article-meta {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.article-pill {
  background: var(--soft);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}
.article-header {
  margin-bottom: 28px;
}
.article-header h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 14px;
}
.article-header p {
  font-size: 1.08rem;
  color: #5f665c;
  max-width: 760px;
}
.article-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 38px;
}
.article-body h2 {
  font-size: 1.7rem;
  margin: 28px 0 10px;
  color: #2f2a21;
}
.article-body h3 {
  font-size: 1.08rem;
  margin: 18px 0 6px;
  color: var(--text);
}
.article-body p {
  color: #5f665c;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.article-body ul {
  padding-left: 1.2rem;
  color: #5f665c;
  margin-bottom: 14px;
}
.article-body li { margin-bottom: 8px; }
.article-footer-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.breadcrumbs a { color: var(--accent-dark); }

@media (max-width: 1100px) {
  .guides-grid-3, .blog-grid-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 800px;
    margin: 0 auto;
  }
  .guides-grid-2 { max-width: 760px; }
}
@media (max-width: 980px) {
  .hero-grid, .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .about-home-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .topbar-inner, .hero-grid, .products-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .topbar-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
    min-height: auto;
  }
  .nav { justify-content: center; }
  .hero { padding-top: 42px; }
  .hero-card { min-height: 320px; }
  .section-head h2, .about-home-intro h2 { font-size: 1.7rem; }
  .about-home-section { padding: 60px 16px; }
  .about-home-card, .about-home-future, .newsletter-card,
  .guide-feature, .guide-card, .page-hero-panel, .article-body { padding: 22px; }
  .guides-grid-3, .guides-grid-2, .blog-grid-wrap {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .guide-feature h3, .guide-card h3 { font-size: 1.28rem; }
}
@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.2rem; }
  .logo-img { height: 60px; }
}
.guides-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.guides-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-dark);
}

.guides-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #2f2a21;
}

.guides-subtext {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}
.routine-buttons {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.routine-btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Primary = main conversion */
.routine-btn.primary {
  background-color: #6f8f6b; /* sage green */
  color: white;
}
.brand-title {
  color: #2f3e2f;
}

.routine-btn.primary:hover {
  background-color: #5a7856;
  transform: translateY(-1px);
}

/* Secondary = softer option */
.routine-btn.secondary {
  background-color: #f3f5f2;
  color: #4a5c48;
  border: 1px solid #d9e1d6;
}

.routine-btn.secondary:hover {
  background-color: #e7eee4;
}
.routine-box {
  background: #f4f7f3;
  border: 1px solid #dfe6dc;
  border-radius: 12px;
  padding: 18px;
  margin-top: 18px;
}

.routine-title {
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #2f3e2d;
}

.routine-subtext {
  font-size: 13px;
  color: #5c6d5a;
  margin: 0 0 12px 0;
}