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

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

:root {
  --gold: #B8963E;
  --gold-light: #D4B665;
  --gold-pale: #EDE0C0;
  --gold-dark: #8A6F2E;
  --olive: #6B7F3A;
  --olive-light: #8FA04E;
  --cream: #FAF7F0;
  --cream-warm: #F5F0E3;
  --dark: #111111;
  --dark-warm: #1C1A15;
  --dark-mid: #2A2720;
  --text: #2C2C2C;
  --text-soft: #6B6B6B;
  --text-muted: #9A9A9A;
  --white: #FFFFFF;
  --border: rgba(184,150,62,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.1);
  --shadow-gold: 0 12px 40px rgba(184,150,62,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ─── ICONS (SVG inline) ─── */
.icon-svg {
  width: 28px; height: 28px; stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.icon-svg.sm { width: 20px; height: 20px; }
.icon-svg.lg { width: 36px; height: 36px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: all 0.5s var(--ease);
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--dark); text-decoration: none;
  letter-spacing: -0.5px;
  transition: all 0.3s var(--ease);
}
.nav-logo .dot { 
  display: inline-block; width: 6px; height: 6px; 
  background: var(--olive); border-radius: 50%; 
  margin-left: 2px; vertical-align: super; font-size: 0;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-soft);
  font-weight: 400; font-size: 0.88rem;
  letter-spacing: 0.3px; transition: all 0.3s var(--ease);
}
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  background: var(--dark) !important; color: var(--white) !important;
  padding: 10px 28px !important; border-radius: 6px;
  font-weight: 500 !important; letter-spacing: 0.5px !important;
  font-size: 0.82rem !important; text-transform: uppercase;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { width: 22px; height: 1.5px; background: var(--dark); transition: all 0.3s var(--ease); display: block; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--cream);
  padding-top: 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, rgba(184,150,62,0.04), rgba(184,150,62,0.08));
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold-dark); margin-bottom: 24px;
}
.hero-label .line { width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--dark); margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic; color: var(--gold-dark);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem; color: var(--text-soft);
  margin-bottom: 40px; max-width: 460px; line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--dark); color: var(--white);
  padding: 15px 36px; border-radius: 6px; border: none;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-ghost {
  background: none; color: var(--text); padding: 15px 24px;
  border: none; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: all 0.3s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { color: var(--gold-dark); }
.btn-ghost .arrow { transition: transform 0.3s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; max-width: 540px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-tag {
  position: absolute; background: var(--white);
  padding: 14px 22px; border-radius: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 10px;
  animation: gentleFloat 4s ease-in-out infinite;
}
.hero-tag.t1 { top: 12%; right: -16px; animation-delay: 0s; }
.hero-tag.t2 { bottom: 18%; left: -20px; animation-delay: 2s; }
.hero-tag .tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--olive); flex-shrink: 0;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── SECTION LAYOUT ─── */
section { padding: 120px 0; }

.section-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold-dark); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow .line { width: 28px; height: 1px; background: var(--gold); }

.section-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--dark); margin-bottom: 16px;
  font-weight: 500; max-width: 580px;
}
.section-heading em { font-style: italic; color: var(--gold-dark); font-weight: 400; }

.section-desc {
  font-size: 1rem; color: var(--text-soft);
  max-width: 520px; line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── ABOUT / BENEFITS ─── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 72px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.about-card {
  background: var(--white); padding: 44px 32px;
  text-align: center; transition: all 0.5s var(--ease);
}
.about-card:hover { background: var(--cream); }
.about-icon {
  width: 48px; height: 48px; margin: 0 auto 20px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.about-icon svg {
  width: 22px; height: 22px; stroke: var(--gold-dark);
  fill: none; stroke-width: 1.5;
}
.about-card h3 {
  font-size: 1.1rem; margin-bottom: 10px;
  color: var(--dark); font-weight: 600;
}
.about-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; }

/* ─── FEATURES (Why) ─── */
.features { background: var(--dark-warm); color: var(--white); overflow: hidden; }
.features .section-eyebrow { color: var(--gold-light); }
.features .section-eyebrow .line { background: var(--gold-light); }
.features .section-heading { color: var(--white); }
.features .section-heading em { color: var(--gold-light); }
.features .section-desc { color: rgba(255,255,255,0.5); }

.features-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 72px;
}
.feat-card {
  padding: 40px; border-radius: var(--radius);
  border: 1px solid rgba(184,150,62,0.1);
  background: rgba(255,255,255,0.03);
  transition: all 0.5s var(--ease);
}
.feat-card:hover {
  border-color: rgba(184,150,62,0.25);
  background: rgba(255,255,255,0.05);
}

.feat-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.feat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; font-weight: 500;
  color: var(--gold-light);
  width: 32px; height: 32px;
  border: 1px solid rgba(184,150,62,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feat-card h3 {
  font-size: 1.15rem; color: var(--gold-pale);
  font-weight: 600;
}
.feat-card ul { list-style: none; }
.feat-card li {
  padding: 8px 0; color: rgba(255,255,255,0.65);
  font-size: 0.92rem; display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.6;
}
.feat-check {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px;
  stroke: var(--olive-light); fill: none; stroke-width: 2;
}

/* ─── NUTRITION ─── */
.nutrition {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nutrition-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 72px;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.nutri-cell {
  text-align: center; padding: 48px 24px;
  background: var(--white);
  border-right: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.nutri-cell:last-child { border-right: none; }
.nutri-cell:hover { background: var(--cream-warm); }
.nutri-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600;
  color: var(--dark); line-height: 1;
  margin-bottom: 8px;
}
.nutri-unit { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.5px; }

/* ─── GALLERY ─── */
.gallery { background: var(--white); }
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
  margin-top: 72px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.2) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:first-child { grid-row: span 2; }

/* ─── AUDIENCE ─── */
.audience { background: var(--cream); }
.audience-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 72px;
}
.aud-card {
  background: var(--white); padding: 40px 28px;
  border-radius: var(--radius); text-align: left;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  position: relative;
}
.aud-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.aud-icon {
  width: 44px; height: 44px; margin-bottom: 24px;
  background: var(--cream); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.aud-icon svg {
  width: 22px; height: 22px; stroke: var(--gold-dark);
  fill: none; stroke-width: 1.5;
}
.aud-card h3 {
  font-size: 1.1rem; margin-bottom: 10px;
  color: var(--dark); font-weight: 600;
}
.aud-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; }

/* ─── PACKAGING ─── */
.packaging { background: var(--white); }
.pack-row {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-top: 72px;
}
.pack-item {
  padding: 36px 40px; border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center; min-width: 170px;
  transition: all 0.4s var(--ease);
  background: var(--white);
}
.pack-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pack-weight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--dark);
}
.pack-use {
  font-size: 0.78rem; color: var(--text-muted);
  margin-top: 6px; letter-spacing: 0.3px;
}

/* ─── CTA ─── */
.cta {
  background: var(--dark-warm); text-align: center;
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,62,0.08), transparent 70%);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white); margin-bottom: 16px;
  font-weight: 500;
}
.cta h2 em { font-style: italic; color: var(--gold-light); }
.cta p { color: rgba(255,255,255,0.5); font-size: 1rem; margin-bottom: 40px; }
.cta .btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  padding: 16px 40px; border-radius: 6px; border: none;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s var(--ease);
}
.cta .btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.cta .btn-gold svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── FOOTER ─── */
.footer { background: var(--dark); color: rgba(255,255,255,0.45); padding: 72px 0 32px; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px; margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white); font-size: 1.5rem; margin-bottom: 14px;
  font-weight: 600;
}
.footer-brand .dot { color: var(--olive-light); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; }

.footer h4 {
  font-family: 'Inter', sans-serif; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold-pale); margin-bottom: 20px; font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 0.88rem; transition: all 0.3s var(--ease);
}
.footer a:hover { color: var(--gold-light); }

.footer-line {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px; text-align: center;
  font-size: 0.78rem; letter-spacing: 0.3px;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 9999; display: none;
  align-items: center; justify-content: center; cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 88%; max-height: 88vh;
  border-radius: 8px; object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-close svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: flex; justify-content: center; }
  .hero-visual img { max-width: 420px; }
  .hero-tag { display: none; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .features-layout { grid-template-columns: 1fr; }
  .nutrition-strip { grid-template-columns: repeat(2, 1fr); }
  .nutri-cell:nth-child(2) { border-right: none; }
  .nutri-cell:nth-child(1), .nutri-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px; }
  .gallery-item:first-child { grid-row: span 1; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--white); flex-direction: column;
    padding: 24px 28px; gap: 18px;
    box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(3, 260px); }
  .gallery-item:first-child { grid-row: span 1; }
  .nutrition-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .pack-row { flex-direction: column; align-items: stretch; }
  .pack-item { min-width: unset; }
  .nutrition-strip { grid-template-columns: 1fr; }
  .nutri-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .nutri-cell:last-child { border-bottom: none; }
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--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; }
