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

:root {
  --green: #2d6a4f;
  --green-light: #b7e4c7;
  --green-pale: #f0f9f4;
  --green-dark: #1b4332;
  --lime: #95d5b2;
  --orange: #e76f51;
  --cream: #fffbf5;
  --dark: #212529;
  --gray: #495057;
  --gray-light: #adb5bd;
  --white: #ffffff;
  --radius: 12px;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 1rem 2rem;
  border-bottom: 2px solid var(--green-light);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--green);
}

/* Page Hero (inner pages) */
.page-hero-green {
  background: var(--green-dark);
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.page-hero-green h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero-green p {
  color: var(--lime);
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: 4rem 2rem 5rem;
  background: linear-gradient(160deg, var(--cream) 0%, var(--green-pale) 100%);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text > p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  margin-right: 1rem;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  color: var(--green);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--green);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

.hero-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(45, 106, 79, 0.15);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Supplies */
.supplies {
  padding: 6rem 0;
}

.supplies h2,
.recipes h2,
.quick-guide h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  max-width: 600px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-img {
  position: relative;
}

.product-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.product-info p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
}

/* Recipes */
.recipes {
  background: var(--green-pale);
  padding: 6rem 0;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.recipe-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  border: 1px solid #e9ecef;
  transition: transform 0.2s;
}

.recipe-card:hover {
  transform: translateY(-3px);
}

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

.recipe-body {
  padding: 1.5rem;
}

.recipe-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.tag {
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tag-beginner {
  background: var(--green-light);
  color: var(--green-dark);
}

.tag-intermediate {
  background: #ffeaa7;
  color: #6c5b1e;
}

.time {
  font-size: 0.8rem;
  color: var(--gray-light);
}

.recipe-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.recipe-body > p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.ingredients {
  list-style: none;
  border-top: 1px solid #f1f3f5;
  padding-top: 0.8rem;
}

.ingredients li {
  font-size: 0.82rem;
  color: var(--gray);
  padding: 0.25rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.ingredients li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Quick Guide */
.quick-guide {
  padding: 6rem 0;
}

.guide-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}

.guide-text > p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.guide-link {
  margin-top: 2rem;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.step-marker {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.step h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--gray);
}

.guide-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(45, 106, 79, 0.1);
}

/* Newsletter */
.newsletter {
  background: var(--green-dark);
  padding: 4rem 2rem;
  text-align: center;
}

.newsletter h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter .btn-primary {
  background: var(--lime);
  color: var(--green-dark);
}

.newsletter .btn-primary:hover {
  background: var(--white);
}

/* About page */
.about-story {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-text-block h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}

.about-text-block p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-img-block img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Values */
.about-values {
  padding: 5rem 0;
  background: var(--green-pale);
}

.about-values h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 2rem;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-box {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border-top: 4px solid var(--green);
}

.value-box h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.value-box p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Numbers */
.about-numbers {
  padding: 4rem 0;
}

.numbers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.big-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.num-label {
  font-size: 0.85rem;
  color: var(--gray);
}

/* FAQ */
.about-faq {
  padding: 5rem 0;
  background: var(--cream);
  border-top: 1px solid var(--green-light);
}

.about-faq h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 750px;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Guide article page */
.guide-article {
  padding: 4rem 0 5rem;
}

.guide-intro {
  margin-bottom: 3rem;
}

.guide-lede {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.8;
  border-left: 4px solid var(--green);
  padding-left: 1.5rem;
}

.guide-article h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.guide-article p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.guide-article a {
  color: var(--green);
  text-decoration: underline;
}

.supply-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
  background: var(--green-pale);
  padding: 2rem;
  border-radius: var(--radius);
}

.checklist-col h3 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
}

.checklist-col ul {
  list-style: none;
}

.checklist-col li {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.checklist-col li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.supply-note {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 2rem;
}

.guide-img-wide {
  margin: 2rem 0;
}

.guide-img-wide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.numbered-steps {
  margin: 1.5rem 0 2rem;
}

.guide-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.guide-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.guide-step h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.guide-step p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

.trouble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.trouble-card {
  background: var(--green-pale);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.trouble-card h3 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.trouble-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.guide-cta-box {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--green-dark);
  border-radius: var(--radius);
  text-align: center;
}

.guide-cta-box h2 {
  color: var(--white);
  margin-top: 0;
}

.guide-cta-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Starter kits page */
.kits-featured {
  padding: 5rem 0;
}

.kit-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.kit-spotlight-img {
  position: relative;
}

.kit-spotlight-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

.kit-spotlight-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.kit-spotlight-text > p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.kit-includes {
  list-style: none;
  margin-bottom: 1.5rem;
}

.kit-includes li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray);
}

.kit-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.price-large {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 0.3rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--gray-light);
}

.kits-grid-section {
  padding: 5rem 0;
  background: var(--green-pale);
}

.kits-grid-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

/* Shipping info */
.shipping-info {
  padding: 5rem 0;
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.shipping-box {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e9ecef;
}

.shipping-box h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.shipping-box p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--gray-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--lime);
  font-size: 1.1rem;
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-links a {
  display: block;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recipe-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-row {
    grid-template-columns: 1fr;
  }
  .numbers-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .shipping-grid {
    grid-template-columns: 1fr;
  }
  .kit-spotlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 750px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-img img {
    height: 350px;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .guide-layout {
    grid-template-columns: 1fr;
  }
  .guide-img {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .recipe-card {
    grid-template-columns: 1fr;
  }
  .recipe-img img {
    height: 180px;
  }
  .nav-menu {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .supply-checklist {
    grid-template-columns: 1fr;
  }
  .trouble-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-green h1 {
    font-size: 1.8rem;
  }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
