/* ================================================================
   HOME — styles for index.html only
================================================================ */

section { padding: 96px 6%; }

/* ── Hero Video ── */
.hero {
  position: relative;
  width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,28,5,0.62) 0%, rgba(20,10,3,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: calc(80px + 56px) 8% 0;
  max-width: 860px;
  animation: fadeUp .9s .2s both;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero-muted { color: rgba(255,255,255,.55); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-proof {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.7);
  margin-bottom: 36px;
}
.hero-proof strong { color: #fff; }
.hero-proof-stars { color: #ffd270; font-size: 1rem; letter-spacing: .04em; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-hero-solid {
  display: inline-block;
  background: #fff; color: #1a1208;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-hero-solid:hover { background: rgba(255,255,255,.88); transform: translateY(-2px); }
.btn-hero-glass {
  display: inline-block;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  text-decoration: none; color: #fff;
  transition: transform .15s;
}
.btn-hero-glass:hover { transform: translateY(-2px); }

/* ── Hero Marquee Strip ── */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  background: rgba(10,28,6,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 13px 0;
}
.hero-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.hero-marquee-track span {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding: 0 30px;
}
.hero-marquee-track .hero-marquee-dot {
  color: rgba(255,255,255,.22);
  font-size: .55rem;
  padding: 0;
}

@keyframes fadeUp    { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes stockPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Trust bar ── */
.trust-bar {
  background: var(--green); padding: 13px 0;
  overflow: hidden; position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 1; pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, var(--green), transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(to left, var(--green), transparent); }

.trust-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.trust-bar:hover .trust-track { animation-play-state: paused; }

.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-size: .83rem; font-weight: 500;
  letter-spacing: .04em; white-space: nowrap;
  padding: 0 32px;
}
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.22); }
.trust-item svg { flex-shrink: 0; }

/* ── Story ── */
.story {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.story-img-wrap { position: relative; }
.story-img-wrap img {
  width: 100%; border-radius: 20px; object-fit: contain;
  aspect-ratio: 3/4; box-shadow: var(--shadow); background: #fdf6ec;
}
.story-badge-img {
  position: absolute; bottom: -20px; right: -20px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; font-weight: 700;
  font-size: .75rem; line-height: 1.3;
  box-shadow: 0 8px 28px rgba(232,137,12,.4); padding: 12px;
}
.story-badge-img span { font-size: 1.8rem; font-family: 'Playfair Display', serif; }
.story-content .section-sub { max-width: 100%; margin-bottom: 16px; }
.story-stats {
  display: flex; gap: 0; margin-top: 24px;
  border-top: 1px solid #e8e0d4; padding-top: 20px;
}
.stat { text-align: center; flex: 1; position: relative; }
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%; bottom: 10%;
  width: 1px; background: #e8e0d4;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--green); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .78rem; color: #6b5741; font-weight: 500; line-height: 1.5; }

/* ── Features / Why Us ── */
.features { background: var(--cream); text-align: center; }
.features-header { margin-bottom: 36px; }
.features-header .section-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.feature-card {
  background: var(--white); border-radius: 20px; padding: 36px 24px;
  text-align: center; box-shadow: 0 2px 16px rgba(61,43,31,.07);
  border: 1px solid rgba(61,43,31,.05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(61,43,31,.12);
  border-color: rgba(232,137,12,.22);
}

/* Left-aligned override for products header */
.products-header .section-title { text-align: left; }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  font-weight: 600; color: var(--brown); margin-bottom: 10px;
}
.feature-card p { font-size: .88rem; color: #6b5741; line-height: 1.65; }

/* ── Products ── */
.products { background: #faf7f2; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 16px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.product-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(61,43,31,.06);
  border: 1px solid rgba(61,43,31,.07);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-color: rgba(45,106,31,.15);
}
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #faf7f2; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 18px; box-sizing: border-box; transition: transform .5s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--green); color: #fff;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.product-tag.coming { background: var(--gold); }
.product-info { padding: 20px 22px 24px; }
.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--brown); margin-bottom: 6px;
}
.product-origin { font-size: .78rem; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.product-desc { font-size: .85rem; color: #6b5741; line-height: 1.6; margin-bottom: 18px; }
.product-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 8px;
  align-items: center;
}
.sub-toggle { grid-column: 1 / -1; margin-bottom: 0; }
.product-price .current { font-size: 1.25rem; font-weight: 700; color: var(--brown); }
.product-price .original { font-size: .85rem; color: #aaa; text-decoration: line-through; margin-left: 6px; }
.product-price .save { font-size: .72rem; color: var(--green); font-weight: 600; display: block; }
.btn-add {
  background: var(--green); color: #fff; border: none;
  padding: 10px 20px; border-radius: 50px;
  font-size: .85rem; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 14px rgba(45,106,31,.3);
}
.btn-add:hover {
  background: var(--green2); transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(45,106,31,.45);
}
.btn-add.added { background: var(--gold) !important; }
.product-card.coming-soon { opacity: .7; }
.product-card.coming-soon .btn-add { background: #bbb; cursor: not-allowed; }

/* Stock urgency */
.stock-urgency {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: #c0392b;
  margin: 4px 0 6px;
}
.stock-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #c0392b;
  animation: stockPulse 1.6s ease-in-out infinite; flex-shrink: 0;
}

/* Subscription toggle */
.sub-toggle {
  display: flex; gap: 0; margin-bottom: 12px;
  border-radius: 50px; overflow: hidden;
  border: 1.5px solid #ddd; width: fit-content;
}
.sub-toggle input[type="radio"] { display: none; }
.sub-toggle label {
  padding: 7px 14px; font-size: .75rem; font-weight: 600;
  cursor: pointer; color: #666; transition: all .2s; white-space: nowrap;
}
.sub-toggle input:checked + label { background: var(--green); color: #fff; }
.sub-save-badge {
  display: inline-block; background: #e8f5e2; color: var(--green);
  font-size: .68rem; font-weight: 700; padding: 2px 8px;
  border-radius: 50px; margin-left: 6px;
}

/* Countdown banner */
.countdown-banner {
  background: linear-gradient(90deg, #1a3f10 0%, #2D6A1F 50%, #1a3f10 100%);
  color: #fff; text-align: center; padding: 15px 5%;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  border-bottom: 2px solid rgba(232,137,12,.28);
}
.countdown-banner .cb-text { font-size: .88rem; font-weight: 500; opacity: .9; }
.countdown-banner .cb-label {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(232,137,12,.22); color: #ffd270;
  border: 1px solid rgba(232,137,12,.4);
  padding: 4px 12px; border-radius: 50px;
}
.countdown-timer { display: flex; align-items: center; gap: 6px; }
.countdown-timer .ct-block {
  background: rgba(255,255,255,.15); border-radius: 8px;
  padding: 6px 12px; text-align: center; min-width: 48px;
}
.countdown-timer .ct-num { font-size: 1.3rem; font-weight: 700; line-height: 1; display: block; }
.countdown-timer .ct-lbl { font-size: .6rem; text-transform: uppercase; letter-spacing: .06em; opacity: .75; }
.countdown-timer .ct-sep { font-size: 1.2rem; font-weight: 700; opacity: .6; }

/* Bundle banner */
.bundle-banner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  background: linear-gradient(135deg, #edf9e6 0%, #ddf2d4 50%, #edf9e6 100%);
  border: 1px solid #b4dca0; border-radius: 16px;
  padding: 22px 32px; margin: 24px auto 0; max-width: 1100px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 20px rgba(45,106,31,.08);
}
.bundle-left { display: flex; flex-direction: column; gap: 6px; }
.bundle-badge {
  display: inline-block; background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 50px; width: fit-content;
}
.bundle-left h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #1a3d10; margin: 0; }
.bundle-left p  { font-size: .9rem; color: #3d6b2e; margin: 0; }
.bundle-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; border: none;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s, transform .15s; white-space: nowrap;
}
.bundle-btn:hover { background: var(--green2); transform: translateY(-1px); }
.bundle-btn:active { transform: translateY(0); }

/* Comparison table */
.compare { background: var(--cream2); }
.compare-header { text-align: center; margin-bottom: 32px; }
.compare-header .section-sub { margin: 0 auto; }
.table-wrap { overflow-x: auto; }
table {
  width: 100%; border-collapse: collapse; font-size: .9rem;
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
}
thead tr { background: var(--green); color: #fff; }
thead th {
  padding: 18px 24px; text-align: left;
  font-weight: 600; letter-spacing: .04em;
}
thead th:first-child { border-radius: 16px 0 0 0; }
thead th:last-child  { border-radius: 0 16px 0 0; }
tbody tr { background: var(--white); border-bottom: 1px solid #f0e8d8; }
tbody tr:nth-child(even) { background: #fdfaf4; }
tbody td { padding: 16px 24px; color: var(--text); }
tbody td:not(:first-child) { text-align: center; }
.check { color: var(--green); font-size: 1.1rem; }
.cross { color: #d94f4f; font-size: 1.1rem; }
.highlight-col { background: rgba(232,137,12,.08) !important; font-weight: 600; color: var(--green) !important; }

/* Reviews */
.reviews { background: var(--white); text-align: center; }
.reviews-header { margin-bottom: 32px; }
.stars-overall {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 6px; font-size: 1.5rem;
}
.rating-text { font-size: 1.05rem; color: #6b5741; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; text-align: left;
}
.review-card {
  background: #fff; border-radius: 16px; padding: 28px 26px;
  border: 1px solid rgba(61,43,31,.07);
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(61,43,31,.06);
}
.review-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 8rem; line-height: .75;
  color: var(--green); opacity: .07;
  position: absolute; top: 8px; left: 14px;
  pointer-events: none; user-select: none;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-color: rgba(61,43,31,.12);
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 8px; }
.review-text { font-size: .92rem; color: var(--text); line-height: 1.65; margin-bottom: 12px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .88rem; color: var(--brown); }
.reviewer-loc  { font-size: .76rem; color: #8b7355; }

/* FAQ */
.faq { background: #faf7f2; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(61,43,31,.07);
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(61,43,31,.06);
  transition: box-shadow .25s, border-color .25s;
}
.faq-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); border-color: rgba(45,106,31,.15); }
.faq-item.open { border-color: rgba(45,106,31,.2); box-shadow: 0 6px 24px rgba(45,106,31,.08); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif; font-size: .97rem; font-weight: 600;
  color: var(--brown); text-align: left;
}
.faq-question .icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: #f5f0e8; border: 1.5px solid #d4c4a8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: var(--green);
  transition: background .2s, border-color .2s, transform .3s;
}
.faq-item.open .faq-question .icon {
  background: var(--green); color: #fff;
  border-color: var(--green); transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p {
  padding: 0 22px 18px;
  font-size: .9rem; color: #6b5741; line-height: 1.7;
}

/* Blog teaser */
.blog-teaser { background: #fff; }
.blog-teaser-header { text-align: center; margin-bottom: 56px; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.blog-card--featured { grid-row: 1 / 3; }

.blog-card {
  background: #fff; border: 1px solid rgba(61,43,31,.07); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .28s, transform .28s, border-color .28s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(61,43,31,.06);
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-4px);
  border-color: rgba(61,43,31,.12);
}

/* Card image banners */
.blog-card-img {
  height: 180px; display: flex; align-items: flex-end;
  padding: 20px 24px; position: relative; overflow: hidden;
}
.blog-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 60%);
  pointer-events: none; z-index: 1;
}
.blog-card--featured .blog-card-img { height: 240px; }
.blog-card-img > * { position: relative; z-index: 2; }
.blog-card-img--health  {
  background: linear-gradient(145deg, #0f2e07 0%, #1a4a0e 35%, #2D6A1F 70%, #3e8c2a 100%);
}
.blog-card-img--recipe  {
  background: linear-gradient(145deg, #4a2600 0%, #7a4500 35%, #c47c1a 70%, #e8a030 100%);
}
.blog-card-img--story   {
  background: linear-gradient(145deg, #1f0b03 0%, #3d1f0a 35%, #7a3e18 70%, #a85e2e 100%);
}

.blog-img-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,.22); user-select: none;
  position: absolute; bottom: 16px; right: 20px; text-align: right;
  z-index: 0;
}
.blog-card--featured .blog-img-text { font-size: 4.2rem; }
.blog-img-text span { font-size: .42em; font-family: 'Inter', sans-serif; font-weight: 500; display: block; margin-top: 6px; letter-spacing: .08em; }

.blog-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.blog-tag {
  display: inline-block; background: #edf7ed; color: var(--green);
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 3px 10px; border-radius: 50px;
}
.blog-tag--recipe { background: #fef3e2; color: #b86a00; }
.blog-tag--story  { background: #f5ece4; color: #8b4513; }
.blog-date { font-size: .75rem; color: #bbb; font-weight: 500; }
.blog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.42; margin: 0; }
.blog-card--featured .blog-card-body h3 { font-size: 1.25rem; }
.blog-card-body h3 a { color: var(--brown); text-decoration: none; transition: color .2s; }
.blog-card-body h3 a:hover { color: var(--green); }
.blog-card-body p { font-size: .85rem; color: #666; line-height: 1.6; margin: 0; flex: 1; }
.blog-read-link {
  font-size: .82rem; font-weight: 600; color: var(--green);
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
  margin-top: 4px; transition: gap .2s, color .2s;
}
.blog-read-link:hover { color: var(--green2); gap: 9px; }
.blog-cta { text-align: center; margin-top: 28px; }

/* Newsletter */
.newsletter {
  background: linear-gradient(150deg, #1a3f10 0%, var(--green) 50%, #3d8a28 100%);
  text-align: center; padding: 60px 5%;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; pointer-events: none;
  width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: -220px; right: -80px;
}
.newsletter::after {
  content: ''; position: absolute; pointer-events: none;
  width: 360px; height: 360px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  bottom: -140px; left: -60px;
}
.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.newsletter p { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 20px; position: relative; z-index: 1; }
.newsletter .section-label { position: relative; z-index: 1; }
.newsletter-form { position: relative; z-index: 1; }
.newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
  border-radius: 50px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.newsletter-form input {
  flex: 1; padding: 16px 24px; border: none;
  font-size: .95rem; font-family: 'Inter', sans-serif;
  outline: none; background: #fff; color: var(--text);
}
.newsletter-form button {
  background: var(--gold); color: #fff; border: none;
  padding: 16px 28px; font-size: .95rem; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background .2s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold2); }

/* Cart overlay + drawer */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1999;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 95vw;
  background: var(--white); z-index: 2000;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px; border-bottom: 1px solid #ede3d0;
}
.cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--brown); }
.cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #888; line-height: 1; transition: color .2s; }
.cart-close:hover { color: var(--brown); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 14px; color: #a08060;
}
.cart-empty svg { opacity: .35; }
.cart-empty p { font-size: .95rem; }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid #f0e8d8;
}
.cart-item img { width: 68px; height: 68px; object-fit: cover; border-radius: 12px; flex-shrink: 0; border: 1px solid #eee; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: .9rem; color: var(--brown); margin-bottom: 4px; }
.cart-item-desc { font-size: .76rem; color: #8b7355; margin-bottom: 8px; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-weight: 700; font-size: .95rem; color: var(--green); }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid #d4c4a8; background: none; cursor: pointer;
  font-size: .95rem; display: flex; align-items: center; justify-content: center;
  color: var(--brown); transition: background .2s, border-color .2s;
}
.qty-btn:hover { background: var(--cream2); border-color: var(--green); }
.qty-num { font-size: .9rem; font-weight: 600; min-width: 18px; text-align: center; color: var(--brown); }
.cart-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 1rem; transition: color .2s; padding: 4px; }
.cart-item-remove:hover { color: #d94f4f; }
.cart-footer { padding: 20px 24px 28px; border-top: 1px solid #ede3d0; background: var(--cream); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-size: .9rem; color: #6b5741; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cart-total span:first-child { font-weight: 600; font-size: 1rem; color: var(--brown); }
.cart-total span:last-child { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--green); }
.free-shipping-bar { margin-bottom: 16px; }
.free-shipping-bar p { font-size: .75rem; color: #8b7355; margin-bottom: 6px; }
.shipping-track { height: 5px; background: #e0d5c5; border-radius: 50px; overflow: hidden; }
.shipping-fill { height: 100%; background: var(--green); border-radius: 50px; transition: width .4s; }
.btn-checkout {
  width: 100%; background: var(--green); color: #fff; border: none;
  padding: 16px; border-radius: 50px; font-size: 1rem; font-weight: 600;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(45,106,31,.35);
}
.btn-checkout:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(45,106,31,.45); }
.btn-checkout:disabled { background: #bbb; cursor: not-allowed; transform: none; box-shadow: none; }
.razorpay-note {
  text-align: center; font-size: .72rem; color: #a08060;
  margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px;
}
.cart-email-wrap { margin-bottom: 12px; }
.cart-email-label {
  display: block; font-size: .75rem; font-weight: 600;
  color: #666; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em;
}
.cart-email-input {
  width: 100%; border: 1.5px solid #e0d5c8; border-radius: 8px;
  padding: 10px 14px; font-size: .9rem; font-family: 'Inter', sans-serif;
  outline: none; box-sizing: border-box; color: #333; transition: border-color .2s;
}
.cart-email-input:focus { border-color: var(--green); }

/* Sticky Add to Cart */
.sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: #fff; border-top: 1px solid #e5ddd5;
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.34,1.2,.64,1);
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-product { display: flex; align-items: center; gap: 12px; }
.sticky-atc-product img { border-radius: 8px; object-fit: cover; width: 44px; height: 44px; }
.sticky-atc-name { font-weight: 600; font-size: .9rem; color: var(--brown); }
.sticky-atc-price { font-size: .85rem; color: var(--green); font-weight: 700; }
.sticky-atc-price s { color: #aaa; font-weight: 400; font-size: .8rem; margin-left: 4px; }
.sticky-atc-btn {
  background: var(--green); color: #fff; border: none;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: .9rem; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: background .2s; white-space: nowrap;
}
.sticky-atc-btn:hover { background: var(--green2); }

/* ════════════════════════════════════════════
   WHY MITTIECO — BENTO GRID
   ════════════════════════════════════════════ */
.why-diff { background: #fff; }
.wd-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }

.bento-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 16px;
  margin-bottom: 16px;
}
.bento-large {
  grid-row: 1 / 4;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background: #0f2e08;
  box-shadow: 0 4px 24px rgba(15,46,8,.2);
}
.bento-large img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .38;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.bento-large:hover img { transform: scale(1.04); }
.bento-large::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,25,5,.92) 0%, rgba(8,25,5,.4) 55%, transparent 100%);
  pointer-events: none;
}
.bento-large-content {
  position: relative; z-index: 1;
  padding: 36px 32px;
  color: #fff;
}
.bento-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #b8e6a0;
  background: rgba(45,106,31,.4); border: 1px solid rgba(80,160,50,.5);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 16px;
}
.bento-large h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  line-height: 1.25; margin-bottom: 12px;
}
.bento-large p {
  font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.65; margin-bottom: 28px;
}
.bento-large-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.bls-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 800; color: #ffd270; }
.bls-lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.65); }

.bento-sm {
  background: #fff; border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(61,43,31,.06);
  border: 1px solid rgba(61,43,31,.07);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.bento-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-color: rgba(45,106,31,.18);
}
.bento-sm-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, #edf7ed 0%, #d0edca 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.bento-sm h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 0; }
.bento-sm p { font-size: .84rem; color: #6b5040; line-height: 1.65; flex: 1; margin: 0; }
.bento-link {
  font-size: .82rem; font-weight: 600; color: var(--green);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.bento-link::after { content: '→'; }
.bento-link:hover { text-decoration: underline; gap: 7px; }

.wd-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.wd-stat {
  background: #fff;
  border-radius: 16px;
  padding: 24px 18px; text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(61,43,31,.06);
  border: 1px solid rgba(61,43,31,.07);
  transition: transform .25s, box-shadow .25s;
}
.wd-stat:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.wd-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--green); margin-bottom: 6px;
}
.wd-lbl { font-size: .78rem; color: #6b5040; line-height: 1.45; }


/* ════════════════════════════════════════════
   OUR PEOPLE
   ════════════════════════════════════════════ */
.our-people { background: #0d1f07; }
.our-people .people-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.our-people .section-label { color: var(--gold); opacity: 1; }
.our-people .section-title { color: #f5efe8; }
.our-people .section-sub { color: rgba(245,239,232,.65); }

.people-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px; overflow: hidden;
}
.people-panel {
  position: relative; overflow: hidden;
}
.people-panel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.people-panel:hover img { transform: scale(1.05); }
.people-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,15,3,.9) 0%, rgba(5,15,3,.4) 55%, transparent 100%);
  pointer-events: none;
}
.people-panel-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 36px; z-index: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.panel-role {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); display: block;
}
.people-panel h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: #f5efe8; line-height: 1.25; margin: 0;
}
.people-panel p {
  font-size: .85rem; color: rgba(245,239,232,.78); line-height: 1.7; margin: 0;
}
.panel-facts {
  list-style: none; padding: 0; margin: 2px 0 0;
  display: flex; flex-direction: column; gap: 6px;
}
.panel-facts li {
  font-size: .8rem; color: rgba(245,239,232,.75);
  padding-left: 16px; position: relative; line-height: 1.4;
}
.panel-facts li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.panel-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: .95rem; color: rgba(245,239,232,.88); line-height: 1.75;
  border-left: 2px solid var(--gold); padding-left: 14px; margin: 2px 0 0;
}
.panel-stats {
  display: flex; gap: 28px; margin-top: 6px;
}
.panel-stats div { display: flex; flex-direction: column; }
.panel-stats strong { font-size: 1.25rem; color: var(--gold); font-weight: 700; line-height: 1.1; }
.panel-stats span { font-size: .68rem; color: rgba(245,239,232,.55); text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }

/* ════════════════════════════════════════════
   PROOF — REVIEWS + MINI COMPARE
   ════════════════════════════════════════════ */
.proof { background: #fff; }
.proof-header { text-align: center; margin-bottom: 56px; }

.mini-compare {
  background: #fff; border-radius: 16px;
  padding: 32px 36px; margin-top: 56px;
  max-width: 620px; margin-inline: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(61,43,31,.06);
  border: 1px solid rgba(61,43,31,.07);
}
.mc-title {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
  color: var(--dark); text-align: center; margin-bottom: 24px;
}
.mc-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  padding: 11px 0; border-bottom: 1px solid #f0ece4;
  font-size: .88rem; align-items: center; gap: 8px;
}
.mc-row:last-child { border-bottom: none; }
.mc-header { font-weight: 700; color: #8a6a50; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.mc-our { color: var(--green); font-weight: 600; text-align: center; font-size: .85rem; }
.mc-them { color: #b08060; text-align: center; font-size: .85rem; }
.mc-row > span:first-child { color: var(--dark); }

/* ════════════════════════════════════════════════════════════
   FUTURISTIC 3D OVERRIDES — dark sections, glow, tilt, depth
   ════════════════════════════════════════════════════════════ */

/* ── 3D Reveal per section ── */
.why-diff .reveal,
.products .reveal,
.proof .reveal {
  transform: perspective(900px) rotateX(20deg) translateY(40px) scale(0.97);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.why-diff .reveal.visible,
.products .reveal.visible,
.proof .reveal.visible {
  transform: perspective(900px) rotateX(0deg) translateY(0) scale(1);
}
.our-people .reveal {
  transform: perspective(900px) rotateX(14deg) translateY(28px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.our-people .reveal.visible {
  transform: perspective(900px) rotateX(0deg) translateY(0);
}

/* Card stagger delays */
.bento-sm:nth-child(2) { transition-delay: .08s; }
.bento-sm:nth-child(3) { transition-delay: .16s; }
.bento-sm:nth-child(4) { transition-delay: .24s; }
.product-card:nth-child(2) { transition-delay: .1s; }
.product-card:nth-child(3) { transition-delay: .2s; }
.product-card:nth-child(4) { transition-delay: .3s; }
.review-card:nth-child(2) { transition-delay: .1s; }
.review-card:nth-child(3) { transition-delay: .2s; }
.wd-stat:nth-child(2) { transition-delay: .08s; }
.wd-stat:nth-child(3) { transition-delay: .16s; }
.wd-stat:nth-child(4) { transition-delay: .24s; }

/* ── WHY CHOOSE US — Dark Galaxy ── */
.why-diff {
  background: radial-gradient(ellipse 160% 80% at 50% -10%, #091d05 0%, #020501 75%);
  position: relative; overflow: hidden;
}
.why-diff::before {
  content: '';
  position: absolute; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,31,.12) 0%, transparent 65%);
  top: -250px; left: 50%; transform: translateX(-50%);
}
.why-diff::after {
  content: '';
  position: absolute; pointer-events: none;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,137,12,.05) 0%, transparent 65%);
  bottom: -150px; right: -100px;
}
.why-diff .wd-header .section-label { color: #7dba5e; }
.why-diff .section-title { color: #f0ebe3; }
.why-diff .section-sub { color: rgba(240,235,227,.52); }

.bento-sm {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 40px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
  transition: box-shadow .4s, border-color .4s;
}
.bento-sm:hover {
  border-color: rgba(80,160,50,.38);
  box-shadow: 0 0 0 1px rgba(80,160,50,.12), 0 24px 64px rgba(0,0,0,.65), 0 0 48px rgba(45,106,31,.18), inset 0 1px 0 rgba(255,255,255,.07);
}
.bento-sm h3 { color: #f0ebe3; }
.bento-sm p { color: rgba(240,235,227,.52); }
.bento-sm-icon {
  background: linear-gradient(135deg, rgba(45,106,31,.22) 0%, rgba(80,160,50,.12) 100%);
  border: 1px solid rgba(80,160,50,.18);
  box-shadow: 0 0 18px rgba(45,106,31,.18);
}
.bento-link { color: #7dba5e; }
.bento-link:hover { color: #a0d484; }
.bento-large {
  box-shadow: 0 0 0 1px rgba(80,160,50,.12), 0 20px 64px rgba(0,0,0,.65), 0 0 60px rgba(45,106,31,.1);
}
.wd-stat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 36px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.04);
  transition: box-shadow .4s, border-color .4s;
}
.wd-stat:hover {
  border-color: rgba(80,160,50,.3);
  box-shadow: 0 0 32px rgba(45,106,31,.18), 0 16px 48px rgba(0,0,0,.55);
}
.wd-num { color: #ffd270; text-shadow: 0 0 24px rgba(255,210,112,.45); }
.wd-lbl { color: rgba(240,235,227,.45); }

/* ── PRODUCTS — Dark Forest ── */
.products {
  background: radial-gradient(ellipse 200% 70% at 20% 110%, #091d05 0%, #020501 65%);
  position: relative; overflow: hidden;
}
.products::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 85% 40%, rgba(45,106,31,.07) 0%, transparent 70%);
}
.products .section-label { color: #7dba5e; }
.products .section-title { color: #f0ebe3; }
.products .products-header .btn-primary { background: rgba(45,106,31,.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); border: 1px solid rgba(80,160,50,.3); }
.products .products-header .btn-primary:hover { background: var(--green); }

.product-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 40px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.05);
  transition: box-shadow .45s cubic-bezier(.16,1,.3,1), border-color .45s;
}
.product-card:hover {
  border-color: rgba(80,160,50,.35);
  box-shadow: 0 0 0 1px rgba(80,160,50,.1), 0 32px 80px rgba(0,0,0,.65), 0 0 60px rgba(45,106,31,.18), inset 0 1px 0 rgba(255,255,255,.07);
}
.product-img-wrap { background: rgba(10,20,7,.7); }
.product-info h3 { color: #f0ebe3; }
.product-origin { color: #7dba5e; }
.product-desc { color: rgba(240,235,227,.5); }
.product-price .current { color: #ffd270; text-shadow: 0 0 16px rgba(255,210,112,.35); }
.product-price .original { color: rgba(255,255,255,.28); }
.product-price .save { color: #7dba5e; }
.sub-toggle { border-color: rgba(255,255,255,.1); }
.sub-toggle label { color: rgba(255,255,255,.45); }
.sub-toggle input:checked + label { background: rgba(45,106,31,.75); border-color: transparent; }
.sub-save-badge { background: rgba(45,106,31,.22); color: #7dba5e; border: 1px solid rgba(80,160,50,.2); }
.stock-urgency { color: #ff8080; }
.stock-dot { background: #ff8080; }
.product-card.coming-soon { opacity: .55; }
.product-card.coming-soon .btn-add { background: rgba(255,255,255,.08); cursor: not-allowed; }
.bundle-banner {
  background: linear-gradient(135deg, rgba(45,106,31,.14) 0%, rgba(15,40,8,.5) 100%);
  border: 1px solid rgba(80,160,50,.18);
  box-shadow: 0 0 48px rgba(45,106,31,.1), 0 12px 40px rgba(0,0,0,.5);
}
.bundle-left h3 { color: #f0ebe3; }
.bundle-left p { color: rgba(240,235,227,.6); }


/* ── OUR PEOPLE — Deeper Dark ── */
.our-people {
  background: #040a03;
  position: relative; overflow: hidden;
}
.our-people::before {
  content: '';
  position: absolute; pointer-events: none;
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,31,.09) 0%, transparent 65%);
  bottom: -400px; right: -300px;
}
.people-panel {
  position: relative; overflow: hidden;
  transition: box-shadow .5s;
}
.people-panel:hover {
  box-shadow: inset 0 0 80px rgba(45,106,31,.15);
}

/* ── CUSTOMER LOVE — Dark Cosmos ── */
.proof {
  background: radial-gradient(ellipse 160% 70% at 50% 110%, #0b1c06 0%, #020401 70%);
  position: relative; overflow: hidden;
}
.proof::before {
  content: '';
  position: absolute; pointer-events: none;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,137,12,.06) 0%, transparent 65%);
  top: -200px; right: -100px;
}
.proof .section-label { color: #ffd270; opacity: 1; }
.proof .section-title { color: #f0ebe3; }
.proof .stars-overall { color: var(--gold); filter: drop-shadow(0 0 10px rgba(255,210,112,.5)); }
.proof .rating-text { color: rgba(240,235,227,.5); }
.review-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 36px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04);
  transition: box-shadow .45s cubic-bezier(.16,1,.3,1), border-color .45s;
}
.review-card:hover {
  border-color: rgba(232,137,12,.28);
  box-shadow: 0 0 40px rgba(232,137,12,.1), 0 24px 64px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.06);
}
.review-card::before { color: var(--gold); opacity: .04; }
.review-card--featured {
  border-color: rgba(232,137,12,.18) !important;
  box-shadow: 0 0 0 1px rgba(232,137,12,.07), 0 16px 56px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05) !important;
}
.review-stars { color: var(--gold); filter: drop-shadow(0 0 6px rgba(255,210,112,.45)); }
.review-text { color: rgba(240,235,227,.78); }
.reviewer-name { color: #f0ebe3; }
.reviewer-loc { color: rgba(240,235,227,.42); }
.reviewer-avatar { background: rgba(45,106,31,.45); border: 1px solid rgba(80,160,50,.25); color: #a0d484; }
.verified-badge { color: #7dba5e; font-size: .72rem; font-weight: 600; margin-left: auto; flex-shrink: 0; }
.mini-compare {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 56px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04);
}
.mc-title { color: #f0ebe3; }
.mc-row { border-color: rgba(255,255,255,.06); }
.mc-row > span:first-child { color: rgba(240,235,227,.75); }
.mc-our { color: #7dba5e; }
.mc-them { color: rgba(240,235,227,.3); }
.mc-header { color: rgba(240,235,227,.38); }

/* ── FAQ — Dark ── */
.faq { background: #020401; }
.faq .section-label { color: #7dba5e; }
.faq .section-title { color: #f0ebe3; }
.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.faq-item:hover { border-color: rgba(80,160,50,.22); box-shadow: 0 0 24px rgba(45,106,31,.1), 0 8px 32px rgba(0,0,0,.5); }
.faq-item.open { border-color: rgba(80,160,50,.28); box-shadow: 0 0 32px rgba(45,106,31,.12), 0 8px 32px rgba(0,0,0,.5); }
.faq-question { color: #f0ebe3; }
.faq-question .icon { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: #7dba5e; }
.faq-item.open .faq-question .icon { background: rgba(45,106,31,.55); border-color: rgba(80,160,50,.35); color: #fff; }
.faq-answer p { color: rgba(240,235,227,.52); }

/* ── Blog Teaser — Dark ── */
.blog-teaser { background: #020401; }
.blog-teaser .section-label { color: #7dba5e; }
.blog-teaser .section-title { color: #f0ebe3; }
.blog-teaser .section-sub { color: rgba(240,235,227,.5); }
.blog-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.blog-card:hover {
  border-color: rgba(80,160,50,.25);
  box-shadow: 0 0 30px rgba(45,106,31,.1), 0 16px 48px rgba(0,0,0,.6);
}
.blog-card-body h3 a { color: #f0ebe3; }
.blog-card-body p { color: rgba(240,235,227,.5); }
.blog-date { color: rgba(240,235,227,.3); }
.blog-cta .btn-outline-dark { border-color: rgba(80,160,50,.35); color: #7dba5e; }
.blog-cta .btn-outline-dark:hover { background: rgba(45,106,31,.3); color: #a0d484; }

/* ── Ambient keyframes ── */
@keyframes ambientGlow {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}
@keyframes scanLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

/* ── Responsive home ── */
@media (max-width: 900px) {
  /* Hero */
  .hero-content { padding: calc(80px + 40px) 5% 0; }

  /* Bento — collapse to single column on tablet */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-row: auto; min-height: 340px; }

  /* Story */
  .story { grid-template-columns: 1fr; gap: 36px; }
  .story-img-wrap img { aspect-ratio: 4/3; }
  .story-badge-img { width: 100px; height: 100px; right: 8px; bottom: -16px; }

  /* Blog & Newsletter — class-level padding must be overridden explicitly */
  .blog-teaser { padding: 64px 5%; }
  .newsletter { padding: 64px 5%; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-row: auto; }
  .blog-card--featured .blog-card-img { height: 180px; }
}

@media (max-width: 640px) {
  section { padding: 56px 4%; }

  /* Hero */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-content { padding: calc(70px + 32px) 4% 0; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); letter-spacing: -0.02em; }
  .hero-desc { font-size: .92rem; }
  .hero-btns { gap: 10px; }
  .btn-hero-solid, .btn-hero-glass { padding: 12px 24px; font-size: .88rem; }

  /* Bento */
  .wd-stats { grid-template-columns: repeat(2, 1fr); }
  .bento-large { min-height: 280px; }

  /* Our People */
  .people-panel-content { padding: 28px 24px; gap: 8px; }
  .people-panel h3 { font-size: 1.25rem; }
  .mini-compare { margin-top: 36px; }
  .mc-row { grid-template-columns: 1.4fr 1fr 1fr; font-size: .76rem; }

  /* Story */
  .story-stats { gap: 0; }
  .stat-num { font-size: 1.9rem; }

  /* Sub-toggle: full width, smaller labels */
  .sub-toggle { width: 100%; }
  .sub-toggle label {
    flex: 1; text-align: center;
    padding: 7px 6px; font-size: .7rem;
  }
  .sub-save-badge { margin-left: 3px; padding: 1px 5px; font-size: .62rem; }

  /* Products header: stack vertically on mobile */
  .products-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }

  /* Product footer: stack price then full-width button */
  .product-footer { grid-template-columns: 1fr; gap: 10px; }
  .product-price { order: 2; }
  .btn-add { order: 3; width: 100%; padding: 13px; font-size: .9rem; }

  /* Bundle */
  .bundle-banner { padding: 20px; flex-direction: column; align-items: stretch; }
  .bundle-btn { width: 100%; justify-content: center; }

  /* Newsletter form: stack input above button */
  .newsletter-form {
    flex-direction: column;
    border-radius: 16px;
    max-width: 100%;
  }
  .newsletter-form input {
    border-radius: 12px 12px 0 0;
    padding: 15px 20px;
    font-size: .9rem;
  }
  .newsletter-form button {
    border-radius: 0 0 12px 12px;
    padding: 14px 20px;
    font-size: .9rem;
  }

  /* Blog cards */
  .blog-card-img { height: 130px; }
  .blog-img-text { font-size: 1.8rem; }
  .blog-card-body { padding: 16px 18px 18px; gap: 8px; }

  /* Sticky ATC */
  .sticky-atc { padding: 10px 14px; gap: 10px; }
  .sticky-atc-name { font-size: .8rem; }
  .sticky-atc-price { font-size: .8rem; }
  .sticky-atc-btn { padding: 10px 18px; font-size: .82rem; }

  /* Blog & Newsletter on mobile */
  .blog-teaser { padding: 36px 4%; }
  .newsletter { padding: 36px 4%; }

  /* Hero proof pill — prevent overflow on narrow screens */
  .hero-proof { font-size: .78rem; padding: 8px 14px; gap: 7px; flex-wrap: wrap; }

  /* Popup */
  .ep-banner { padding: 28px 20px 22px; }
  .ep-banner h2 { font-size: 1.35rem; }
  .ep-body { padding: 20px 20px 18px; }
  .ep-form { flex-direction: column; }

  /* Bento */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-row: auto; min-height: 320px; }
  .wd-stats { grid-template-columns: repeat(2, 1fr); }

  /* Our People */
  .people-split { grid-template-columns: 1fr; }
  .people-panel { min-height: 420px; }
  .people-panel-content { padding: 28px 20px; }

  /* Proof */
  .mini-compare { padding: 24px 20px; }
  .mc-row { font-size: .8rem; }
}

/* ── Hero social proof pill ── */
.hero-proof {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.13); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.28); border-radius: 50px;
  padding: 9px 20px; margin-bottom: 28px;
  color: rgba(255,255,255,.92); font-size: .84rem;
  animation: fadeUp .7s .7s both;
}
.hero-proof-stars { font-size: .75rem; letter-spacing: 1px; }
.hero-proof strong { color: #ffd270; }

/* ── Impact Stats ── */
.impact-stats {
  background: linear-gradient(135deg, #132e0a 0%, #1e4810 50%, #132e0a 100%);
  padding: 36px 5%;
  border-bottom: 2px solid rgba(232,137,12,.18);
}
.impact-grid {
  display: flex; align-items: center; justify-content: center;
  max-width: 920px; margin: 0 auto; flex-wrap: wrap;
}
.impact-item {
  flex: 1; min-width: 160px; text-align: center;
  padding: 12px 20px; position: relative;
}
.impact-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px; background: rgba(255,255,255,.15);
}
.impact-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700; color: #ffd270;
  line-height: 1; display: block; margin-bottom: 6px;
  letter-spacing: -.02em;
}
.impact-label {
  font-size: .8rem; color: rgba(255,255,255,.72);
  font-weight: 500; line-height: 1.5; text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Certifications ── */
.certifications { background: var(--cream); text-align: center; }
.cert-header { margin-bottom: 36px; }
.cert-header .section-sub { margin: 0 auto; }
.certifications .section-title { position: relative; padding-bottom: 22px; }
.certifications .section-title::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 52px; height: 3px; background: var(--gold); border-radius: 2px;
}
.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.cert-card {
  background: var(--white); border-radius: 20px;
  padding: 26px 20px 22px;
  border: 1px solid rgba(61,43,31,.06);
  box-shadow: 0 2px 16px rgba(61,43,31,.06);
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.cert-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(61,43,31,.13); }
.cert-icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.cert-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--brown); margin-bottom: 8px;
}
.cert-card p { font-size: .83rem; color: #6b5741; line-height: 1.6; margin-bottom: 12px; }
.cert-badge {
  display: inline-block; background: #edf7ed; color: var(--green);
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
}

/* ── Guarantee bar ── */
.guarantee-bar {
  background: var(--white);
  border-top: 1px solid #ede3d0; border-bottom: 1px solid #ede3d0;
  padding: 22px 5%;
}
.guarantee-inner {
  display: flex; align-items: center;
  max-width: 1100px; margin: 0 auto; flex-wrap: wrap;
}
.guarantee-item {
  display: flex; align-items: flex-start; gap: 14px;
  flex: 1; min-width: 200px; padding: 8px 20px;
}
.guarantee-divider {
  width: 1px; align-self: stretch; min-height: 60px;
  background: #e8e0d4; flex-shrink: 0;
}
.guarantee-icon { font-size: 1.9rem; flex-shrink: 0; margin-top: 1px; }
.guarantee-item strong {
  display: block; font-size: .9rem;
  color: var(--brown); margin-bottom: 4px; font-weight: 700;
}
.guarantee-item p { font-size: .8rem; color: #8b7355; line-height: 1.5; margin: 0; }

/* ── Verified review badge ── */
.reviewer { align-items: center; }
.verified-badge {
  margin-left: auto; flex-shrink: 0;
  font-size: .68rem; font-weight: 700; color: var(--green);
  background: #edf7ed; padding: 3px 10px; border-radius: 50px;
  white-space: nowrap;
}

/* ── Science ── */
.science { background: var(--cream2); text-align: center; }
.science-header { margin-bottom: 36px; }
.science-header .section-sub { margin: 0 auto; }
.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 28px;
}
.science-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(61,43,31,.07);
  box-shadow: 0 2px 16px rgba(61,43,31,.06);
  transition: transform .3s, box-shadow .3s;
}
.science-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(61,43,31,.11); }
.science-stat {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--green); line-height: 1; margin-bottom: 10px;
}
.science-stat--gold  { color: var(--gold); }
.science-stat--brown { color: var(--brown); }
.science-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--brown); margin-bottom: 8px;
}
.science-card p { font-size: .88rem; color: #6b5741; line-height: 1.7; }
.science-gi-note {
  display: flex; align-items: flex-start; gap: 20px;
  background: linear-gradient(135deg, #1a3f10 0%, var(--green) 100%);
  border-radius: 20px; padding: 24px 32px;
  text-align: left; max-width: 1100px; margin: 0 auto;
}
.science-gi-icon { font-size: 2.4rem; flex-shrink: 0; margin-top: 2px; }
.science-gi-note strong {
  display: block; font-size: 1.05rem; font-weight: 700;
  color: #ffd270; margin-bottom: 10px;
}
.science-gi-note p { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.75; margin: 0; }

.science .section-title { padding-bottom: 22px; }

@media (max-width: 900px) {
  /* Impact */
  .impact-item { min-width: 140px; padding: 16px 20px; }
  .impact-num { font-size: 2.4rem; }
  /* Certifications */
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  /* Guarantee */
  .guarantee-item { min-width: 180px; padding: 12px 18px; }
  /* Science */
  .science-grid { grid-template-columns: 1fr; max-width: 520px; }
  .science-gi-note { flex-direction: column; gap: 14px; }
}
@media (max-width: 640px) {
  /* Impact */
  .impact-item:not(:last-child)::after { display: none; }
  .impact-item { min-width: 45%; padding: 16px 12px; }
  .impact-num { font-size: 2rem; }
  /* Certifications */
  .cert-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  /* Guarantee */
  .guarantee-divider { display: none; }
  .guarantee-item { min-width: 100%; padding: 12px 0; border-bottom: 1px solid #f0e8d8; }
  .guarantee-item:last-child { border-bottom: none; }
  /* Science */
  .science-gi-note { padding: 24px 20px; }
}

/* ── Why Mittieco ── */
.why-mittieco { background: var(--cream2); }
.wm-header { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.wm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wm-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
  transition: transform .2s, box-shadow .2s;
}
.wm-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(61,43,31,.15); }
.wm-icon { font-size: 2.6rem; margin-bottom: 14px; line-height: 1; }
.wm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.wm-card p { font-size: .88rem; color: #6b5741; line-height: 1.65; }

/* ── Meet Our Farmers ── */
.farmers { background: var(--white); }
.farmers-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}
.farmers-text { flex: 1; }
.farmers-facts {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.farmers-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--brown);
}
.ff-icon { font-size: 1.2rem; flex-shrink: 0; }
.farmers-img { flex: 0 0 420px; }
.farmers-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(61,43,31,.12);
}
.farmers-img-placeholder {
  background: var(--cream2);
  border: 2px dashed var(--border);
  border-radius: 20px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #a08060;
  font-size: .88rem;
  text-align: center;
}
.farmers-img-placeholder span { font-size: 3rem; }

/* ── Why Kandhamal ── */
.kandhamal { background: var(--cream); }
.kandhamal-header { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.kandhamal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.kandhamal-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 22px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.kandhamal-card:hover { transform: translateY(-4px); }
.kandhamal-icon { font-size: 2.4rem; margin-bottom: 14px; line-height: 1; }
.kandhamal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.kandhamal-card p { font-size: .88rem; color: #6b5741; line-height: 1.65; }

/* ── Forest Wellness ── */
.forest-wellness {
  background: linear-gradient(135deg, #0d2e08 0%, #1a5210 60%, #0f3a18 100%);
  color: var(--white);
}
.fw-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.fw-inner .section-title { color: var(--white); margin-bottom: 20px; }
.fw-inner p {
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: .97rem;
}
.fw-inner strong { color: #ffd270; }
.fw-pillars {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.fw-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fw-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.fw-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ── Recipes ── */
.recipes { background: var(--cream2); }
.recipes-header { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.recipe-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.recipe-card:hover { transform: translateY(-4px); }
.recipe-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.recipe-body { padding: 22px 20px 24px; }
.recipe-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.recipe-body p { font-size: .86rem; color: #6b5741; line-height: 1.6; margin-bottom: 12px; }
.recipe-link {
  color: var(--green);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
}
.recipe-link:hover { text-decoration: underline; }
.recipe-coming { font-size: .8rem; color: #bbb; font-style: italic; }

/* ── Founder Story ── */
.founder { background: var(--white); }
.founder-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}
.founder-img { flex: 0 0 360px; }
.founder-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(61,43,31,.12);
}
.founder-img-placeholder {
  background: var(--cream2);
  border: 2px dashed var(--border);
  border-radius: 20px;
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #a08060;
  font-size: .88rem;
  text-align: center;
}
.founder-img-placeholder span { font-size: 3rem; }
.founder-text { flex: 1; }
.founder-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0 12px;
  line-height: 1.7;
}
.founder-sig { font-size: .88rem; color: #6b5741; font-weight: 600; margin-bottom: 28px; }
.founder-facts {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.founder-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-fact strong { font-size: 1.4rem; color: var(--green); font-weight: 700; }
.founder-fact span { font-size: .78rem; color: #6b5741; text-transform: uppercase; letter-spacing: .07em; }

/* ── Responsive — new sections ── */
@media (max-width: 900px) {
  .wm-grid { grid-template-columns: repeat(2, 1fr); }
  .kandhamal-grid { grid-template-columns: repeat(2, 1fr); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .farmers-inner { flex-direction: column; gap: 32px; }
  .farmers-img { flex: none; width: 100%; }
  .farmers-img-placeholder { height: 280px; }
  .farmers-photo { height: 280px; }
  .founder-inner { flex-direction: column; gap: 32px; }
  .founder-img { flex: none; width: 100%; }
  .founder-img-placeholder { height: 280px; }
  .founder-photo { height: 280px; }
  .fw-pillars { gap: 24px; }
}
@media (max-width: 640px) {
  .wm-grid { grid-template-columns: 1fr; }
  .kandhamal-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .fw-pillars { gap: 20px; }
  .founder-facts { gap: 20px; }
}
@media (max-width: 400px) {
  .recipes-grid { grid-template-columns: 1fr; }
}

/* Very small screens */
@media (max-width: 380px) {
  .sticky-atc-product img { width: 36px; height: 36px; }
  .sticky-atc-name { font-size: .75rem; }
  .sticky-atc-btn { padding: 9px 14px; font-size: .78rem; }
  .nav-cart-btn { padding: 7px 12px; font-size: .78rem; }
  .countdown-timer .ct-sep { display: none; }
}

/* ================================================================
   EDITORIAL TYPOGRAPHY — BLUE TOKAI INSPIRED
   Cream palette kept. Improvements: spacing, label rhythm, reviews.
================================================================ */

/* ── Section spacing — generous, luxurious ── */
section { padding: 80px 6%; }
.hero { padding: 0; }
.blog-teaser { padding: 80px 6% !important; }

/* ── Section labels — editorial micro-caps ── */
.section-label {
  font-size: .62rem !important;
  letter-spacing: .22em !important;
  font-weight: 600 !important;
}

/* ── FAQ — keep horizontal padding, refine answer line-height ── */
.faq-answer p { line-height: 1.75; }

/* ── Reviews — Playfair italic for warmth ── */
.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.72;
}
.review-card--featured {
  border-color: rgba(232,137,12,.3);
  background: linear-gradient(160deg, #fffdf7 0%, #fffcf2 100%);
  border-top: 3px solid var(--gold);
}
.review-card--featured .review-text { font-size: 1.06rem; }

/* ── People — full-bleed panels break out of section padding ── */
.our-people .people-split { margin-left: -6%; margin-right: -6%; }

/* ── Responsive ── */
@media (max-width: 900px) {
  section { padding: 60px 5%; }
  .blog-teaser { padding: 60px 5% !important; }
  .our-people .people-split { margin-left: -5%; margin-right: -5%; }
}
@media (max-width: 640px) {
  section { padding: 48px 4%; }
  .blog-teaser { padding: 48px 4% !important; }
  .our-people .people-split { margin-left: -4%; margin-right: -4%; }
}
