/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,700;0,900;1,700;1,900&display=swap');

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F9F7F2; color: #111; line-height: 1.5;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Variables ─── */
:root {
  --pink: #FF007A;
  --cream: #F9F7F2;
  --cocoa: #111111;
}

/* ─── Animations ─── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(48px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(-56px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeIn   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes scaleIn  { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }
@keyframes ticker   { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.anim         { opacity: 0; }
.anim.visible { animation: fadeUp   0.75s cubic-bezier(.22,1,.36,1) forwards; }
.anim-left    { opacity: 0; }
.anim-left.visible  { animation: fadeLeft 0.8s  cubic-bezier(.22,1,.36,1) forwards; }
.anim-right   { opacity: 0; }
.anim-right.visible { animation: fadeIn  0.95s  cubic-bezier(.22,1,.36,1) forwards; }
.anim-scale   { opacity: 0; }
.anim-scale.visible { animation: scaleIn 0.65s  cubic-bezier(.22,1,.36,1) forwards; }
.d1 { animation-delay: 0.1s !important; }
.d2 { animation-delay: 0.2s !important; }
.d3 { animation-delay: 0.3s !important; }
.d4 { animation-delay: 0.4s !important; }

/* ─── Layout Helpers ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ═══════════════════════════
   NAVBAR
═══════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(249,247,242,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17,17,17,0.08);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 80px; display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.nav-logo-mark { position: relative; }
.nav-logo-lrp {
  font-size: 2.1rem; font-weight: 900; font-style: italic;
  letter-spacing: -0.05em; line-height: 1;
  transform: skewX(-12deg); display: block; transition: color 0.2s;
}
.nav-logo:hover .nav-logo-lrp { color: var(--pink); }
.nav-logo-sun {
  position: absolute; top: -9px; right: -11px;
  width: 18px; height: 18px; transition: color 0.2s;
}
.nav-logo:hover .nav-logo-sun { color: var(--pink); }
.nav-logo-text {
  border-left: 2px solid #111; padding-left: 12px;
  display: flex; flex-direction: column;
}
.nav-logo-text span:first-child { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.3em; line-height: 1; }
.nav-logo-text span:last-child  { font-size: 9px;  font-weight: 500; text-transform: uppercase; letter-spacing: 0.4em; opacity: 0.5; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em;
  transition: color 0.2s; padding: 4px 0;
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--pink); border-bottom-color: var(--pink); }
.nav-cta {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 28px; background: #111; color: #F9F7F2;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--pink); transform: translateY(-1px); }
.hamburger { display: none; padding: 4px; transition: color 0.2s; }
.hamburger:hover { color: var(--pink); }
.mobile-menu {
  display: none; flex-direction: column; align-items: center; gap: 28px;
  padding: 36px 32px; border-top: 1px solid rgba(17,17,17,0.08);
  background: var(--cream); position: absolute; width: 100%; top: 80px; left: 0;
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 1.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.03em; transition: color 0.2s;
}
.mobile-link:hover { color: var(--pink); }
.mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--pink); color: white; width: 100%; max-width: 320px;
  padding: 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  transition: opacity 0.2s;
}
.mobile-cta:hover { opacity: 0.88; }

/* ─── Pages ─── */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════
   TICKER TAPE
═══════════════════════════ */
.ticker {
  background: var(--pink); color: white; overflow: hidden;
  padding: 12px 0; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; animation: ticker 22s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 0 32px; font-size: 11px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.2em;
}
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); }

/* ═══════════════════════════
   HOME — HERO
═══════════════════════════ */
#home { padding-top: 80px; }
.hero {
  position: relative; min-height: calc(100vh - 80px);
  display: flex; align-items: center; overflow: hidden; padding: 60px 0;
}
.hero-bg-shape {
  position: absolute; top: 0; right: -48px; width: 52%; height: 100%;
  background: var(--pink); transform: skewX(-8deg); z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 52px; height: 3px; background: var(--pink); flex-shrink: 0; }
.hero-eyebrow span { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.45em; color: var(--pink); }
.hero-h1 {
  font-size: clamp(80px, 12vw, 164px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.05em; line-height: 0.78;
  margin-bottom: 36px;
}
.hero-tagline {
  font-size: 1.4rem; font-weight: 900; text-transform: uppercase;
  font-style: italic; border-left: 4px solid var(--pink); padding-left: 20px;
  margin-bottom: 14px; line-height: 1;
}
.hero-sub {
  font-size: 1.05rem; font-weight: 500; color: rgba(17,17,17,0.62);
  max-width: 340px; margin-bottom: 44px; line-height: 1.65;
}
.hero-sub em { color: var(--pink); font-weight: 900; font-style: italic; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: #111; color: #F9F7F2; padding: 20px 40px;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--pink); transform: translateY(-2px); }
.btn-pink {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--pink); color: white; padding: 20px 40px;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 16px 36px rgba(255,0,122,0.28);
}
.btn-pink:hover { background: #111; transform: translateY(-2px); }

/* Hero Product Card */
.hero-card-wrap { display: flex; justify-content: center; }
.hero-card {
  width: 100%; max-width: 380px; aspect-ratio: 3/4;
  background: var(--pink); padding: 32px; position: relative; overflow: hidden;
  box-shadow: 44px 44px 0 rgba(0,0,0,0.1);
}
.hero-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; mix-blend-mode: overlay; opacity: 0.3; filter: grayscale(1);
}
.hero-card-wm {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-90deg);
  font-size: clamp(60px, 12vw, 110px); font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.04em; opacity: 0.07; white-space: nowrap; color: white; pointer-events: none;
}
.hero-card-inner {
  border: 2px solid rgba(255,255,255,0.22); height: 100%;
  padding: 28px; display: flex; flex-direction: column;
  justify-content: space-between; align-items: center; text-align: center;
  position: relative; z-index: 1;
}
.hero-card-top { }
.hero-card-eyebrow { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.45em; color: white; display: block; margin-bottom: 10px; }
.hero-card-name { font-size: clamp(48px, 8vw, 76px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; line-height: 0.82; color: white; }
.hero-card-badge { background: #111; color: white; padding: 9px 18px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; display: inline-block; margin-bottom: 10px; }
.hero-card-flavor { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.85); font-weight: 600; line-height: 2.1; }

/* ─── Trust Section ─── */
.section-trust { padding: 120px 0; background: var(--cocoa); color: var(--cream); text-align: center; overflow: hidden; }
.section-trust h2 { font-size: clamp(36px, 7vw, 84px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.04em; margin-bottom: 36px; }
.section-trust p { font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 300; max-width: 760px; margin: 0 auto 64px; color: rgba(249,247,242,0.72); line-height: 1.8; }
.trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; max-width: 700px; margin: 0 auto; }
.trust-icon { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.trust-icon-circle { width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(249,247,242,0.18); display: flex; align-items: center; justify-content: center; color: var(--pink); }
.trust-icon span { font-size: 9px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.2em; max-width: 100px; text-align: center; }

/* ─── Benefits Section ─── */
.section-benefits { padding: 120px 0; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.benefit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bcard { border-radius: 24px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; }
.bcard-sm  { height: 240px; }
.bcard-lg  { height: 300px; }
.bcard-pale  { background: rgba(255,0,122,0.09); border: 2px solid rgba(255,0,122,0.18); align-items: center; justify-content: center; }
.bcard-dark  { background: #111; color: white; }
.bcard-pink  { background: var(--pink); color: white; }
.bcard-ghost { border: 2px solid rgba(17,17,17,0.1); align-items: center; justify-content: center; }
.bcard-label { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; }
.bcard-xl    { font-size: 3.2rem; font-weight: 900; font-style: italic; text-transform: uppercase; line-height: 1; }
.bcard-ghost-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(17,17,17,0.32); }
.col-offset { padding-top: 52px; }
.benefit-text h2 { font-size: clamp(32px, 5vw, 64px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1.02; margin-bottom: 24px; }
.benefit-text p { font-size: 1.05rem; color: rgba(17,17,17,0.62); line-height: 1.75; margin-bottom: 36px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.checklist li { display: flex; align-items: center; gap: 12px; }
.check-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--pink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.checklist span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; border-bottom: 2px solid var(--pink); padding-bottom: 4px; transition: color 0.2s; }
.text-link:hover { color: var(--pink); }

/* ═══════════════════════════
   PRODUCT PAGE
═══════════════════════════ */
#product { padding: 120px 0 80px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 96px; }
.product-img-hero {
  aspect-ratio: 3/4; background: var(--pink); position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 28px 56px rgba(0,0,0,0.14);
}
.product-img-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: overlay; opacity: 0.4; filter: grayscale(1); }
.product-img-content {
  position: relative; z-index: 2; color: white; text-align: center;
  width: 100%; height: 100%; display: flex; flex-direction: column;
  justify-content: space-between; padding: 60px 32px;
}
.product-img-content .eyebrow { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5em; display: block; margin-bottom: 16px; }
.product-img-name { font-size: clamp(56px, 10vw, 108px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; line-height: 0.8; }
.product-img-badge { background: #111; color: white; padding: 14px 32px; display: inline-block; font-size: 15px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; font-style: italic; margin: 0 auto; }
.brand-icons { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 14px; }
.brand-icon { aspect-ratio: 1; background: rgba(255,0,122,0.08); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px; text-align: center; transition: background 0.2s; }
.brand-icon:hover { background: var(--pink); }
.brand-icon:hover svg { color: white !important; }
.brand-icon svg { margin-bottom: 4px; color: var(--pink); }
.brand-icon span { font-size: 7px; font-weight: 900; text-transform: uppercase; line-height: 1.3; }

/* Product Specs */
.spec-header { border-bottom: 8px solid #111; padding-bottom: 32px; margin-bottom: 28px; }
.spec-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.diamond { width: 26px; height: 26px; background: var(--pink); transform: rotate(45deg); flex-shrink: 0; }
.spec-badge { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.4em; }
.spec-name { font-size: clamp(48px, 7vw, 96px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1; margin-bottom: 14px; }
.spec-flavor { font-size: 1.4rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; color: var(--pink); font-style: italic; line-height: 1; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-bottom: 2px solid #111; padding-bottom: 24px; margin-bottom: 28px; }
.spec-item span:first-child { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(17,17,17,0.38); display: block; margin-bottom: 4px; }
.spec-item span:last-child { font-size: 1.1rem; font-weight: 900; }
.macro-row { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid rgba(17,17,17,0.1); padding-bottom: 18px; margin-bottom: 24px; }
.macro-big { font-size: 2.6rem; font-weight: 900; font-style: italic; text-transform: uppercase; line-height: 1; }
.macro-label { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; color: var(--pink); }
.macro-right { text-align: right; }
.macro-right span:first-child { font-size: 1.5rem; font-weight: 900; display: block; line-height: 1; }
.macro-right span:last-child { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(17,17,17,0.4); }
.spec-desc { font-size: 1rem; line-height: 1.75; font-weight: 500; margin-bottom: 32px; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.price-row span:first-child { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; }
.price-row span:last-child { font-size: 1.5rem; font-weight: 900; }

/* Nutrition Panel */
.nutrition-section { background: #111; color: #F9F7F2; padding: 64px; }
.nutrition-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 52px; }
.nutr-left h2 { font-size: 2.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; font-style: italic; border-left: 4px solid var(--pink); padding-left: 20px; margin-bottom: 32px; }
.nutr-item { margin-bottom: 28px; }
.nutr-item .nutr-tag { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(249,247,242,0.38); display: block; margin-bottom: 6px; }
.nutr-item p { font-size: 1.05rem; font-weight: 900; text-transform: uppercase; font-style: italic; margin-bottom: 4px; }
.nutr-item small { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(249,247,242,0.44); }
.facts-panel { background: #F9F7F2; color: #111; padding: 40px; }
.facts-title { border-bottom: 4px solid #111; padding-bottom: 8px; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; }
.facts-title h3 { font-size: 2.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; }
.facts-title span { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }
.facts-cal { border-bottom: 2px solid #111; padding-bottom: 8px; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; }
.facts-cal span:first-child { font-size: 14px; font-weight: 900; }
.facts-cal span:last-child { font-size: 2rem; font-weight: 900; }
.facts-row { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(17,17,17,0.15); padding: 6px 0; font-size: 12px; }
.facts-row span:first-child { font-weight: 700; text-transform: uppercase; }
.facts-row span:last-child { font-weight: 900; }
.facts-row.indent { padding-left: 16px; }
.facts-row.indent span:first-child { font-weight: 400; }
.facts-ingredients { font-size: 8px; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 20px; opacity: 0.38; font-weight: 700; line-height: 1.9; }

/* ═══════════════════════════
   ABOUT PAGE
═══════════════════════════ */
#about { padding: 120px 0 80px; }
.about-hero { margin-bottom: 80px; }
.about-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.about-eyebrow-lrp { font-size: 2rem; font-weight: 900; font-style: italic; transform: skewX(-12deg); display: inline-block; }
.about-eyebrow-line { width: 48px; height: 3px; background: var(--pink); flex-shrink: 0; }
.about-eyebrow-tag { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5em; color: rgba(17,17,17,0.32); }
.about-h1 { font-size: clamp(48px, 10vw, 140px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.05em; line-height: 0.82; }
.about-h1 em { color: var(--pink); font-style: italic; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 96px; }
.about-text { display: flex; flex-direction: column; gap: 24px; font-size: 1.12rem; line-height: 1.78; color: rgba(17,17,17,0.72); }
.about-text .bold { font-weight: 700; color: #111; }
.about-img-wrap { position: relative; }
.about-img { aspect-ratio: 4/5; background: var(--pink); overflow: hidden; box-shadow: 0 32px 64px rgba(0,0,0,0.18); position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); mix-blend-mode: multiply; opacity: 0.55; display: block; }
.quote-card { background: var(--cream); border: 2px solid #111; padding: 28px; border-radius: 20px; margin-top: 24px; max-width: 340px; box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
.quote-icon { color: var(--pink); margin-bottom: 14px; }
.quote-card p { font-style: italic; font-size: 0.95rem; line-height: 1.6; margin-bottom: 14px; }
.quote-card cite { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; font-style: normal; }

/* Vision */
.vision-section { background: var(--pink); color: white; border-radius: 56px; padding: 80px 56px; text-align: center; }
.vision-section h2 { font-size: clamp(28px, 5vw, 56px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.04em; margin-bottom: 52px; }
.vision-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.vision-item h3 { font-size: 1.4rem; font-weight: 900; text-transform: uppercase; font-style: italic; margin-bottom: 14px; }
.vision-item p { font-size: 0.95rem; color: rgba(255,255,255,0.78); line-height: 1.68; }

/* ═══════════════════════════
   ORDER / CTA
═══════════════════════════ */
#order { padding: 120px 0; background: #111; color: var(--cream); text-align: center; }
.order-tag { display: inline-block; background: var(--pink); color: white; padding: 8px 20px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 24px; }
#order h2 { font-size: clamp(36px, 6vw, 76px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1; margin-bottom: 20px; }
.order-sub { font-size: 1.1rem; color: rgba(249,247,242,0.6); line-height: 1.72; margin-bottom: 12px; }
.order-price { font-size: 2.4rem; font-weight: 900; color: var(--pink); margin-bottom: 10px; }
.order-shipping { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(249,247,242,0.36); margin-bottom: 44px; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
#footer { background: #111; color: var(--cream); padding: 80px 0 40px; border-top: 1px solid rgba(249,247,242,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 72px; }
.footer-brand { cursor: pointer; }
.footer-brand-name span:first-child { display: block; font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1; }
.footer-brand-name span:last-child  { display: block; font-size: 2rem; font-weight: 300; text-transform: uppercase; letter-spacing: 0.18em; line-height: 1; }
.footer-tagline { color: rgba(249,247,242,0.48); line-height: 1.7; max-width: 380px; font-size: 0.9rem; margin-top: 18px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--pink); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a { color: rgba(249,247,242,0.68); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--pink); }
.footer-socials { display: flex; gap: 20px; margin-bottom: 28px; }
.footer-social { color: rgba(249,247,242,0.6); transition: color 0.2s; }
.footer-social:hover { color: var(--pink); }
.footer-copy { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(249,247,242,0.28); }
.footer-watermark { border-top: 1px solid rgba(249,247,242,0.07); padding-top: 32px; text-align: center; overflow: hidden; }
.footer-watermark span { font-size: clamp(52px, 14vw, 190px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1; opacity: 0.04; display: block; user-select: none; }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 960px) {
  .hero-bg-shape { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card-wrap { order: -1; }
  .hero-card { max-width: 280px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .nutrition-grid { grid-template-columns: 1fr; }
  .nutrition-section { padding: 40px 24px; }
  .about-content { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .trust-icons { gap: 32px; }
  .vision-section { border-radius: 32px; padding: 56px 28px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .benefit-cards { grid-template-columns: 1fr; }
  .col-offset { padding-top: 0; }
  .bcard-sm, .bcard-lg { height: 200px; }
  .brand-icons { grid-template-columns: repeat(5,1fr); }
}
