/* ============================================================
   DESINCOFFEE — Main Stylesheet
   ============================================================ */

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

/* ── Design Tokens ── */
:root {
  --espresso:     #1C0F08;
  --roast:        #2C1810;
  --caramel:      #C87941;
  --caramel-light:#E8A64A;
  --latte:        #8B6347;
  --cream:        #FAF7F2;
  --warm-white:   #FFF8F0;
  --gold:         #E8A64A;
  --border:       #E8D5B7;
  --text-main:    #2C1810;
  --text-muted:   #6B5344;
  --text-dim:     #9E7B65;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(44,24,16,0.08);
  --shadow-md:  0 4px 20px rgba(44,24,16,0.12);
  --shadow-lg:  0 12px 40px rgba(44,24,16,0.16);
  --shadow-caramel: 0 8px 24px rgba(200,121,65,0.28);
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

/* Logo */
.logo { text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--roast);
  letter-spacing: -0.02em;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--roast); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: var(--caramel);
  border-radius: 2px;
}

/* Header CTA */
.btn-header { white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--roast);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-menu.open {
  display: flex;
  max-height: 400px;
  padding: 1.5rem;
  gap: 1rem;
}
.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--roast);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mt-lg { margin-top: 0.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  line-height: 1.2;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-full { width: 100%; display: block; }

.btn-primary {
  background: var(--caramel);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--caramel-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-caramel);
}

.btn-secondary {
  background: transparent;
  color: var(--roast);
  border: 1.5px solid var(--caramel);
}
.btn-secondary:hover {
  background: var(--warm-white);
  transform: translateY(-2px);
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF3E0;
  color: #8B4513;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--border);
}
.badge-product {
  background: #FFF3E0;
  color: #8B4513;
  border-color: var(--caramel);
  margin-bottom: 1.25rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--warm-white); }
.section-cream { background: var(--cream); }
.section-dark {
  background: var(--espresso);
}
.section-caramel {
  background: var(--caramel);
}

.section-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.75rem;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-light { color: rgba(255,255,255,0.75); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--roast);
  margin-bottom: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Dark / caramel section overrides */
.text-cream { color: var(--cream) !important; }
.text-cream-muted { color: rgba(250,247,242,0.75) !important; }
.text-white { color: #fff !important; }
.text-white-muted { color: rgba(255,255,255,0.8) !important; }
.text-center { text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(200,121,65,0.07) 0%, transparent 70%);
  padding: 5rem 0 4rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--roast);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: italic;
  color: var(--caramel);
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
}

.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.trust-item strong { color: var(--roast); }
.trust-sep { opacity: 0.4; }

/* Hero image */
.hero-image-wrap { display: flex; justify-content: center; align-items: center; }
.hero-image-placeholder {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: transparent;
}
.hero-product-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px; height: 48px;
  background: #FFF3E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--roast);
  margin-bottom: 0.5rem;
}
.feature-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   INGREDIENTS — editorial full-width rows
   ============================================================ */
.ing-section {
  background: var(--cream);
}

.ing-row {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}
.ing-row-alt {
  grid-template-columns: 58% 42%;
}
.ing-row-alt .ing-text { order: 2; }
.ing-row-alt .ing-img  { order: 1; }

.ing-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 5%;
}
.ing-row-alt .ing-text {
  padding: 4rem 5% 4rem 4rem;
}

.ing-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.5rem;
}
.ing-num {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--roast);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.ing-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
}

.ing-img {
  overflow: hidden;
  position: relative;
}
.ing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ing-row:hover .ing-img img {
  transform: scale(1.03);
}

/* ── Flavor with results section ── */
.flavor-section {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 560px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}
.flavor-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 5%;
}
.flavor-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--roast);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.flavor-title em {
  font-style: italic;
  color: var(--caramel);
}
.flavor-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 420px;
}
.flavor-img {
  overflow: hidden;
}
.flavor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.flavor-section:hover .flavor-img img {
  transform: scale(1.03);
}

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 1rem;
}
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.25);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.stat-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

/* Gallery */
.product-gallery { display: flex; flex-direction: column; gap: 1rem; }

.product-main-img {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Gallery images — only active one visible */
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery-img.active {
  opacity: 1;
  pointer-events: auto;
}

.product-thumbs { display: flex; gap: 0.75rem; margin-top: 0.25rem; }
.product-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}
.product-thumb.active, .product-thumb:hover {
  border-color: var(--caramel);
  box-shadow: 0 0 0 2px rgba(200,121,65,0.2);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}
.rating-score { font-weight: 700; color: var(--roast); }
.rating-count { color: var(--text-muted); }

/* Product info */
.product-info { padding-top: 0.5rem; }
.product-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--roast);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.product-weight { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.product-desc { margin-bottom: 1.5rem; }
.product-desc p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.875rem;
}

.product-ingredients-list { margin-bottom: 2rem; }
.product-ingredients-list h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--roast);
  margin-bottom: 0.875rem;
}
.product-ingredients-list ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.product-ingredients-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.check { color: var(--caramel); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Product buy block */
.product-buy {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.product-price-row { display: flex; align-items: baseline; gap: 0.75rem; }
.product-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--roast);
  letter-spacing: -0.03em;
}
.product-price-note { font-size: 0.875rem; color: var(--text-muted); }

.qty-row { display: flex; align-items: center; gap: 1rem; }
.qty-label { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.qty-control { display: flex; align-items: center; gap: 0.875rem; }
.qty-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--caramel);
  color: #fff;
  border: none;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, transform 0.15s;
}
.qty-btn:hover { background: var(--caramel-light); transform: scale(1.1); }
.qty-value { font-size: 1.125rem; font-weight: 700; color: var(--roast); min-width: 1.5rem; text-align: center; }

.trust-row { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.trust-badge {
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 10px;
}

.product-disclaimer {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.product-disclaimer p { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.active { box-shadow: var(--shadow-sm); }

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--roast);
  gap: 1rem;
  background: #fff;
  transition: background 0.2s;
}
.faq-item.active .faq-question { background: var(--warm-white); }
.faq-question:hover { background: var(--warm-white); }

.faq-icon {
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--caramel);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--warm-white);
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.625rem; }
.footer-logo-icon { font-size: 1.4rem; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-tagline { font-size: 0.9rem; color: rgba(250,247,242,0.65); margin-bottom: 1.25rem; }

.footer-socials { display: flex; gap: 0.875rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,0.65);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--caramel); color: var(--caramel); }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(250,247,242,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--caramel); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { font-size: 0.9375rem; color: rgba(250,247,242,0.7); }
.footer-contact a { color: rgba(250,247,242,0.7); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--caramel); }

.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.payment-icon {
  background: rgba(255,255,255,0.08);
  color: rgba(250,247,242,0.65);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom { text-align: center; font-size: 0.8125rem; color: rgba(250,247,242,0.4); }

/* ============================================================
   FORMS (contact, cart shared)
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--roast); }
.form-input {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--roast);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px rgba(200,121,65,0.12);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--roast);
  margin: 2.5rem 0 1rem;
}
.legal-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--roast); margin: 1.5rem 0 0.5rem; }
.legal-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { color: var(--text-muted); line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.375rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

/* Scroll reveal (JS adds .visible) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .ing-text { padding: 3rem 2.5rem 3rem 3%; }
  .ing-row-alt .ing-text { padding: 3rem 3% 3rem 2.5rem; }
  .flavor-text { padding: 3rem 2.5rem 3rem 3%; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .hero-image-wrap { order: -1; }
  .hero-image-placeholder { max-width: 320px; margin: 0 auto; }

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

  .product-showcase { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }

  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Editorial ingredient rows → stacked on mobile */
  .ing-row,
  .ing-row-alt,
  .flavor-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ing-row-alt .ing-text { order: 2; }
  .ing-row-alt .ing-img  { order: 1; }
  .ing-text,
  .ing-row-alt .ing-text,
  .flavor-text {
    padding: 2.5rem 1.5rem;
  }
  .ing-img,
  .flavor-img {
    height: 55vw;
    min-height: 260px;
    max-height: 420px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .trust-sep { display: none; }
}
