@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Nunito+Sans:wght@300;400;600;700&display=swap');

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

:root {
  --sage: #7A9E7E;
  --sage-dark: #4D6E50;
  --sage-pale: #EDF3ED;
  --lavender: #A594C6;
  --lavender-light: #EDE8F5;
  --cream: #FAF8F4;
  --warm-white: #FFFEFB;
  --earth: #8B7355;
  --earth-light: #C4AD8D;
  --text: #3B3B35;
  --text-light: #6D6D60;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

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

/* ---- HEADER ---- */
header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--sage-pale);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }


.nav-links { display: flex; gap: 0.2rem; align-items: center; }

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
  background: var(--sage-pale);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }

/* ---- HERO ---- */
.hero {
  text-align: center;
  padding: 5.5rem 2rem 4.5rem;
  background: linear-gradient(175deg, var(--sage-pale) 0%, var(--cream) 60%, var(--lavender-light) 100%);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero .btn {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.2s;
}

.hero .btn:hover { background: var(--sage-dark); transform: translateY(-1px); }

/* ---- SECTIONS ---- */
section { padding: 4.5rem 0; }
section.alt { background: var(--warm-white); }

section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}

.section-intro {
  font-size: 1.02rem;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

p { margin-bottom: 1rem; }

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

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

.card {
  background: var(--warm-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sage-pale);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(77, 110, 80, 0.08);
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.4rem; }
.card-body p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0; }

/* ---- PRODUCT CARDS ---- */
.product-card {
  background: var(--warm-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sage-pale);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(77, 110, 80, 0.08);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.product-card .card-body { padding: 1.5rem; }

.product-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sage);
  margin-top: 0.5rem;
}

.product-card .volume {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

/* ---- FEATURE ROW ---- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-row img {
  width: 100%;
  border-radius: 16px;
  height: 340px;
  object-fit: cover;
}

/* ---- BENEFITS LIST ---- */
.benefit-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg { width: 22px; height: 22px; }

.benefit-item h3 { margin-bottom: 0.2rem; font-size: 1.1rem; }
.benefit-item p { margin-bottom: 0; font-size: 0.92rem; color: var(--text-light); }

/* ---- ARTICLE ---- */
.article-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

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

.article-hero .overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem 2rem 2.5rem;
  background: linear-gradient(transparent, rgba(59, 59, 53, 0.82));
}

.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.article-hero .byline {
  color: var(--sage-pale);
  font-size: 0.9rem;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.article-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.article-content p { font-size: 1.02rem; }

.article-content blockquote {
  border-left: 3px solid var(--sage);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--sage-pale);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--sage-dark);
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* ---- CTA ---- */
.cta-banner {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.cta-banner p { color: var(--sage-pale); max-width: 500px; margin: 0 auto 1.5rem; }

.cta-banner .btn {
  display: inline-block;
  background: var(--earth-light);
  color: var(--sage-dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
}

.cta-banner .btn:hover { background: var(--white); }

/* ---- FOOTER ---- */
footer {
  background: var(--sage-dark);
  color: var(--sage-pale);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-col p { font-size: 0.85rem; margin-bottom: 0.3rem; }

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

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .hero h1 { font-size: 2.1rem; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .article-hero { height: 280px; }
  .article-hero h1 { font-size: 1.7rem; }
  .footer-inner { flex-direction: column; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--sage-pale);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 1rem; }
  .nav-toggle { display: block; }
  header nav { position: relative; }
}
