﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal:   #1A1A1A;
  --sage:       #B8C9A0;
  --sage-bg:    #E8F0DA;
  --sage-btn:   #C9D9B4;
  --sage-dark:  #4A6741;
  --gold:       #D4820A;
  --cream:      #FAF9F7;
  --warm:       #F2EFE9;
  --green-dark: #2D4A28;
  --grey-btn:   #ECEAE6;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-light: #8A8A8A;
  --border:     #E5E2DC;
  --font-display: 'Bodoni Moda', 'Didot', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); overflow-x: hidden; }

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: #F5BC69;
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}
.announce::before,
.announce::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.announce::before { left: 0; background: linear-gradient(to right, #F5BC69, transparent); }
.announce::after  { right: 0; background: linear-gradient(to left, #F5BC69, transparent); }
.announce-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: announceScroll 28s linear infinite;
  width: max-content;
}
.announce:hover .announce-track {
  animation-play-state: paused;
}
.announce-item {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #7A3F00;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 0 28px;
}
.announce-item svg { flex-shrink: 0; }
.announce-dot {
  color: rgba(122,63,0,0.4);
  font-size: 7px;
  flex-shrink: 0;
}
@keyframes announceScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  padding: 0 48px;
  height: 88px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 72px;
  width: auto;
  filter: none;
  mix-blend-mode: multiply;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #E6941C; }
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.nav-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}
.nav-icon:hover { color: #E6941C; }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #E6941C;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  color: white;
  display: flex; align-items: center; justify-content: center;
}
.btn-nav-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--charcoal);
  padding: 10px 22px;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s;
}
.btn-nav-cta:hover { background: #E6941C; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 72px - 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
}
.hero-social-proof {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 5.5vw, 82px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--charcoal);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 380px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  opacity: 0;
  animation: fadeUp 1s ease 0.65s forwards;
}
.btn-pill-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: #F5BC69;
  padding: 17px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid #F5BC69;
}
.btn-pill-primary:hover {
  background: #E6941C;
  border-color: #E6941C;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(230,148,28,0.3);
}
.btn-pill-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--grey-btn);
  padding: 17px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.btn-pill-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-number {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1;
}
.trust-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Hero right — full bleed image */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  animation: imgReveal 1.1s ease 0.3s forwards;
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.badge-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E6941C;
}
.badge-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.badge-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ── MARQUEE ── */
.marquee-section {
  background: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 36px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 36px;
}
.marquee-item::after { content: '·'; color: var(--sage); font-size: 14px; }

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
}
.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #E6941C;
  margin-bottom: 20px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}
.section-title em { font-style: italic; font-weight: 500; }
.phil-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin: 28px 0;
}
.phil-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.phil-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.phil-card:hover {
  border-color: #F5BC69;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.phil-card:first-child {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.phil-card:first-child .pc-number { color: rgba(255,255,255,0.08); }
.phil-card:first-child .pc-title { color: #F5BC69; }
.phil-card:first-child .pc-body { color: rgba(255,255,255,0.6); }
.phil-card:nth-child(2) {
  background: #FEF0D6;
  border-color: #FEF0D6;
}
.phil-card:nth-child(2) .pc-number { color: rgba(230,148,28,0.12); }
.phil-card:nth-child(2) .pc-title { color: #7A3F00; }
.phil-card:nth-child(2) .pc-body { color: #A05A10; }
.pc-number { display: none; }
.pc-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pc-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── PRODUCT SECTION ── */
.product-section {
  padding: 120px 80px;
  background: var(--white);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.view-all {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 3px;
  transition: gap 0.2s, color 0.2s;
}
.view-all:hover { color: var(--sage-dark); border-color: var(--sage-dark); }
.product-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--warm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.product-card.featured { grid-row: span 2; }
.product-card-inner {
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.product-card.featured .product-card-inner { min-height: 620px; }
.product-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.04) translateY(-6px); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.1) 70%, transparent 100%);
}
.product-info { position: relative; z-index: 2; }
.product-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F5BC69;
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.product-card.featured .product-name { font-size: 36px; }
.product-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  background: #F5BC69;
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  transition: all 0.25s;
}
.product-cta:hover { background: #E6941C; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.coming-soon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--border);
  min-height: 300px;
  gap: 12px;
}
.coming-icon { font-size: 28px; opacity: 0.25; }
.coming-text {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── INGREDIENTS ── */
.ingredients-section {
  background: #F5F0E8;
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}
.ing-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 600;
  color: rgba(45,45,45,0.08);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -8px;
}
.ing-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.ing-header .section-label { text-align: center; display: block; }
.ing-header .section-title { color: var(--charcoal); }
.ing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}
.ing-item {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: default;
  aspect-ratio: 1/2;
  width: 100%;
  min-height: 360px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ing-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.ing-item-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.ing-item:hover .ing-item-bg { transform: scale(1.04); }
.ing-item-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, #FEF3E2 0%, #FAE8C4 100%);
}
.ing-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  z-index: 1;
}
.ing-item-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64px;
  padding: 20px 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to left, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.ing-emoji {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}
.ing-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}
.ing-benefit {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}
.ing-number { display: none; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 80px;
  background: var(--white);
}
.test-header {
  text-align: center;
  margin-bottom: 60px;
}
.test-main-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 20px;
}
.test-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.test-stars-global {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}
.test-source-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.test-card-featured {
  margin-top: -20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.test-avatar-wrap {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}
.test-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F5BC69;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
}
.test-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-top: 44px;
  margin-bottom: 28px;
  text-align: center;
}
.test-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.test-stars {
  color: var(--charcoal);
  font-size: 16px;
  letter-spacing: 3px;
}
.test-name {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-mid);
}
.test-name strong {
  color: var(--charcoal);
  font-weight: 600;
}
.test-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.test-cta-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: #F5BC69;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid #F5BC69;
}
.test-cta-btn:hover {
  background: #E6941C;
  border-color: #E6941C;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,148,28,0.3);
}

/* ── HOW IT WORKS ── */
.how-section { padding: 120px 80px; background: var(--white); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 60px;
}
.how-step {
  padding: 48px 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: border-top-color 0.3s, transform 0.3s;
}
.how-step:hover { border-top-color: var(--sage); transform: translateY(-3px); }
.how-step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(26,26,26,0.07);
  line-height: 1;
  margin-bottom: 24px;
}
.how-step-icon { font-size: 26px; margin-bottom: 16px; display: block; }
.how-step-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.how-step-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ── CTA ── */
.cta-section {
  background: #F5F0E8;
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #E6941C;
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.cta-title em { font-style: italic; font-weight: 500; }
.cta-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 44px;
}
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-right { display: flex; flex-direction: column; gap: 3px; }
.cta-feature {
  background: var(--white);
  border: 1px solid rgba(212,130,10,0.15);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  transition: border-color 0.25s, transform 0.25s;
  border-radius: 4px;
  margin-bottom: 3px;
  flex-direction: column;
}
.cta-feature:hover {
  border-color: #F5BC69;
  transform: translateX(4px);
}
.cf-icon { font-size: 22px; flex-shrink: 0; }
.cf-text { display: flex; flex-direction: column; gap: 4px; }
.cf-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 4px;
  padding-bottom: 4px;
  position: relative;
}
.cf-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #F5BC69;
  border-radius: 1px;
}
.cf-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 72px 80px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo img { height: 48px; width: auto; filter: invert(1); mix-blend-mode: screen; margin-bottom: 16px; display: block; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  line-height: 1.55;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--sage-btn);
  border-color: var(--sage-btn);
  color: var(--charcoal);
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage-btn); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}
.footer-made {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.2);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--sage-dark);
  z-index: 99999;
  transition: width 0.1s;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes imgReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── HERO CAROUSEL ── */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.carousel-dots {
  position: absolute;
  bottom: 100px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.dot.active {
  background: var(--white);
  height: 20px;
  border-radius: 3px;
}
.dot:hover { background: rgba(255,255,255,0.8); }

/* ── IMAGE STRIP CAROUSEL ── */
.image-strip {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.image-strip::before,
.image-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.image-strip::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.image-strip::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.strip-track {
  display: flex;
  gap: 4px;
  animation: stripScroll 38s linear infinite;
  width: max-content;
  padding: 12px 0;
}
.image-strip:hover .strip-track {
  animation-play-state: paused;
}
.strip-item {
  width: 265px;
  height: 265px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  position: relative;
}
.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.strip-item:hover img { transform: scale(1.06); }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── PRODUCT IMAGE HOVER SWAP ── */
.product-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-img-primary,
.prod-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.45s ease;
}
.prod-img-hover {
  opacity: 0;
}
.product-card:hover .prod-img-primary {
  opacity: 0;
}
.product-card:hover .prod-img-hover {
  opacity: 1;
}


/* ── HOW STEP CART ── */
.how-step-cart-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.cart-btn-how {
  width: 90px;
  height: 90px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.06);
  transition: all .25s ease;
}
.cart-btn-how:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.08);
  background: #F5BC69;
}


/* ── HOW TIMELINE ── */
.how-section { padding: 120px 80px; background: var(--white); }
.how-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}
.how-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.how-tl-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 28px;
}
.how-tl-line { display: none; }
.how-tl-line-left { display: none; }
.how-tl-line-right { display: none; }
.how-tl-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}
.how-tl-step:hover .how-tl-icon {
  background: var(--white);
  border-color: var(--charcoal);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: scale(1.08);
}
.how-tl-icon-last { border-color: var(--charcoal); }
.how-tl-num { display: none; }
.how-tl-title {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.1;
}
.how-tl-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════
   MOBILE / RESPONSIVE — overrides only, desktop untouched
   ══════════════════════════════════════════════════════ */
@media (max-width: 860px) {

  /* ── ANNOUNCE BAR ── */
  .announce-item { padding: 0 18px; font-size: 10px; }

  /* ── NAV ── */
  nav {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    height: auto;
    padding: 14px 20px;
  }
  .nav-logo { order: 1; }
  .nav-logo img { height: 46px; }
  .nav-right { order: 2; margin-left: auto; gap: 12px; }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  /* ── HERO ── */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 24px 40px; }
  .hero-title { font-size: clamp(38px, 10vw, 54px); margin-bottom: 20px; }
  .hero-subtitle { max-width: 100%; margin-bottom: 32px; }
  .hero-buttons { max-width: 100%; width: 100%; }
  .hero-buttons .btn-pill-primary,
  .hero-buttons .btn-pill-secondary { width: 100%; padding: 16px 28px; }
  .hero-trust { gap: 24px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; }
  .hero-right { height: 420px; }
  .hero-badge { left: 16px; bottom: 16px; padding: 12px 16px; max-width: calc(100% - 32px); }
  .badge-text { font-size: 15px; }
  .carousel-dots { bottom: 16px; right: 16px; }

  /* ── MARQUEE ── */
  .marquee-item { font-size: 9px; padding: 0 20px; gap: 20px; }

  /* ── PHILOSOPHY ── */
  .philosophy {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
  }
  .phil-cards { grid-template-columns: 1fr 1fr; gap: 3px; }
  .phil-card { padding: 28px 20px; }

  /* ── PRODUCT SECTION ── */
  .product-section { padding: 64px 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 36px; }
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card.featured { grid-row: auto; }
  .product-card-inner { min-height: 340px; padding: 24px; }
  .product-card.featured .product-card-inner { min-height: 420px; }
  .product-card.featured .product-name { font-size: 30px; }

  /* ── IMAGE STRIP ── */
  .strip-item { width: 180px; height: 180px; }
  .image-strip::before, .image-strip::after { width: 40px; }

  /* ── INGREDIENTS ── */
  .ingredients-section { padding: 64px 20px; }
  .ing-header { margin-bottom: 40px; }
  .ing-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ing-item { aspect-ratio: 3/4; min-height: 220px; }
  .ing-item-overlay { background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); }
  .ing-item-content {
    top: auto; right: 0; left: 0; bottom: 0; width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
    background: none;
    gap: 4px;
  }
  .ing-name,
  .ing-benefit {
    writing-mode: horizontal-tb;
    transform: none;
    white-space: normal;
  }
  .ing-name { font-size: 15px; }
  .ing-benefit { font-size: 10px; line-height: 1.3; }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 64px 24px; }
  .test-main-title { font-size: clamp(34px, 10vw, 52px); }
  .test-grid { grid-template-columns: 1fr; gap: 56px; max-width: 420px; margin: 0 auto; }
  .test-card-featured { margin-top: 0; }
  .test-card { padding: 32px 22px 26px; }

  /* ── HOW IT WORKS ── */
  .how-section { padding: 64px 24px; }
  .how-timeline { grid-template-columns: 1fr; gap: 48px; margin-top: 48px; }

  /* ── CTA ── */
  .cta-section { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
  .cta-title { font-size: clamp(32px, 10vw, 44px); }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn-pill-primary,
  .cta-buttons .btn-pill-secondary { width: 100%; }

  /* ── FOOTER ── */
  footer { padding: 56px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

