/* ============================================
   KUSTA'S KITCHEN — STYLES
   Editorial. Premium. Rooted.
   ============================================ */

/* -------------------------------------------
   0. CUSTOM PROPERTIES
   ------------------------------------------- */
:root {
  /* --- Official brand palette (Brand Guideline 2026) --- */
  --charcoal: #1A1A1A;
  --green: #3A4A28;        /* Olive / Forest Green — signature brand colour */
  --green-deep: #2E3A20;   /* darker olive for gradients/hovers */
  --bone: #F5EBDD;         /* Cream / Bone — primary canvas */
  --harvest: #A89B8C;      /* Harvest dust */
  --honey: #D9A441;        /* Golden honey */
  --terracotta: #C8702E;   /* Terracotta */
  --hibiscus: #6F0103;     /* Hibiscus (deep red) */
  --whatsapp: #25D366;

  /* --- Semantic tokens mapped onto the palette --- */
  --black: #1A1A1A;                 /* text + charcoal surfaces */
  --white: #FBF5EA;                 /* lightest warm tone (cards, light sections) */
  --cream: #F5EBDD;                 /* brand bone canvas */
  --cream-dark: #ECE0CE;            /* deeper cream for dividers */
  --warm-gray: #A89B8C;             /* harvest dust for muted labels */
  --mid-gray: #6E6357;              /* warm mid grey for body-secondary text */

  /* Product-accent aliases remapped to brand palette (used across sections) */
  --baobab: #D9A441;                /* -> golden honey */
  --moringa: #3A4A28;               /* -> forest green */
  --sorghum: #A89B8C;               /* -> harvest dust */
  --chilli: #C8702E;                /* -> terracotta */
  --turmeric: #C8702E;              /* -> terracotta */

  --font-heading: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;
  --space-3xl: 12rem;

  --container-max: 1320px;
  --container-narrow: 900px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration: 0.6s;
  --duration-slow: 1s;

  --header-h: 72px;
}

/* -------------------------------------------
   1. RESET & BASE
   ------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--cream);
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--duration) var(--ease-out); }
a:hover { opacity: 0.7; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; border: none; outline: none; background: none; }
::selection { background: var(--black); color: var(--white); }

/* -------------------------------------------
   2. GRAIN OVERLAY
   ------------------------------------------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* -------------------------------------------
   3. UTILITIES
   ------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
}
.eyebrow--light { color: rgba(250, 248, 245, 0.6); }

/* -------------------------------------------
   4. HEADER / NAVIGATION
   ------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(245, 235, 221, 0.9);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.nav-logo img { height: 36px; width: auto; transition: filter var(--duration) var(--ease-out); }
.site-header:not(.is-scrolled) .nav-logo img { filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--black);
  transition: color var(--duration) var(--ease-out), opacity var(--duration) var(--ease-out);
}
.site-header:not(.is-scrolled) .nav-link { color: var(--white); }
.nav-link:hover { opacity: 0.6; }
.nav-link--cta {
  padding: 0.5rem 1.4rem; border: 1px solid var(--green); border-radius: 6px; color: var(--green);
  transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out);
}
.site-header:not(.is-scrolled) .nav-link--cta { border-color: var(--white); color: var(--white); }
.nav-link--cta:hover { background: var(--green); color: var(--bone); opacity: 1; }
.site-header:not(.is-scrolled) .nav-link--cta:hover { background: var(--white); color: var(--green); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 32px; height: 32px; z-index: 1001;
}
.nav-toggle__bar {
  display: block; width: 100%; height: 1.5px; background: var(--black);
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
  transform-origin: center;
}
.site-header:not(.is-scrolled) .nav-toggle__bar { background: var(--white); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s var(--ease-out);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav__links { text-align: center; }
.mobile-nav__link {
  display: block; font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 3.2rem); font-weight: 400; color: var(--white);
  padding: 0.5rem 0; opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobile-nav.is-open .mobile-nav__link { opacity: 1; transform: translateY(0); }
.mobile-nav.is-open .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(2) { transition-delay: 0.16s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(3) { transition-delay: 0.22s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(4) { transition-delay: 0.28s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(5) { transition-delay: 0.34s; }
.mobile-nav__link:hover { opacity: 0.5; }
.mobile-nav__link--cta {
  margin-top: 1rem; font-size: clamp(1.1rem, 3vw, 1.4rem); font-family: var(--font-body);
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.8rem 2rem; border: 1px solid rgba(250, 248, 245, 0.3); border-radius: 8px;
  display: inline-block;
}

/* -------------------------------------------
   5. HERO
   ------------------------------------------- */
.hero {
  position: relative; height: 100vh; min-height: 620px; max-height: 1100px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--black);
}
.hero__media { position: absolute; inset: 0; z-index: 1; }
.hero__fallback { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 90% 70% at 50% 55%, rgba(26,26,26,0.48) 0%, rgba(26,26,26,0.16) 100%),
    linear-gradient(180deg, rgba(26,26,26,0.6) 0%, rgba(46,58,32,0.34) 42%, rgba(46,58,32,0.5) 72%, rgba(30,38,22,0.86) 100%);
}
.hero__content {
  position: relative; z-index: 3; text-align: center; color: var(--white);
  padding: 0 var(--container-pad); max-width: 760px;
  text-shadow: 0 2px 28px rgba(26, 26, 26, 0.55);
}
.hero__logo {
  width: clamp(160px, 22vw, 240px); height: auto; margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1) drop-shadow(0 2px 20px rgba(0,0,0,0.4));
  animation: heroFadeDown 1.2s var(--ease-out) 0.2s both;
}
.hero__tagline {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.9; margin-bottom: 1.2rem;
  animation: heroFadeUp 1.2s var(--ease-out) 0.5s both;
}
.hero__subtitle {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 400; font-style: italic; line-height: 1.4; margin-bottom: 0.8rem;
  animation: heroFadeUp 1.2s var(--ease-out) 0.7s both;
}
.hero__subline {
  font-family: var(--font-body); font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 400; letter-spacing: 0.02em; opacity: 0.9; margin-bottom: 2.4rem;
  animation: heroFadeUp 1.2s var(--ease-out) 0.85s both;
}
.hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: heroFadeUp 1.2s var(--ease-out) 1s both;
}
.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--white); display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.5;
  animation: heroFadeUp 1.2s var(--ease-out) 1.3s both, scrollBounce 2.5s ease-in-out 2.5s infinite;
}
@keyframes heroFadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* -------------------------------------------
   6. BUTTONS
   ------------------------------------------- */
.btn {
  display: inline-block; font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 8px;
  transition: all var(--duration) var(--ease-out); position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: currentColor; opacity: 0; transition: opacity var(--duration) var(--ease-out); }
.btn:hover::after { opacity: 0.08; }
.btn:hover { opacity: 1; }
.btn--primary { background: var(--white); color: var(--black); }
.btn--primary:hover { background: var(--cream); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(250, 248, 245, 0.45); }
.btn--outline:hover { border-color: var(--white); background: rgba(250, 248, 245, 0.08); }
/* Brand-green CTA (in-content actions) */
.btn--dark { background: var(--green); color: var(--bone); }
.btn--dark:hover { background: var(--green-deep); }

/* -------------------------------------------
   7. TRUST STRIP
   ------------------------------------------- */
.trust { background: var(--cream); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--container-max); margin: 0 auto; }
.trust__item { text-align: center; padding: clamp(2.5rem, 5vw, 4rem) var(--container-pad); position: relative; }
.trust__item + .trust__item::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(26, 26, 26, 0.08);
}
.trust__stat {
  display: block; font-family: var(--font-heading); font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; color: var(--black); margin-bottom: 0.4rem;
}
.trust__label {
  display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray);
}

/* -------------------------------------------
   8. TESTIMONIALS
   ------------------------------------------- */
.testi { padding: var(--space-2xl) 0; background: var(--white); text-align: center; }
.testi .eyebrow { display: block; }
.testi__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: var(--space-lg); text-align: left;
}
.testi__card {
  padding: 2rem 1.8rem; background: var(--cream); border-radius: 16px;
  display: flex; flex-direction: column; gap: 1.2rem; position: relative;
}
.testi__card::before {
  content: '\201C'; font-family: var(--font-heading); font-size: 4rem; line-height: 0.7;
  color: var(--baobab); opacity: 0.5;
}
.testi__card blockquote {
  font-family: var(--font-heading); font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400; line-height: 1.55; color: var(--black); flex: 1;
}
.testi__card figcaption { display: flex; flex-direction: column; gap: 0.1rem; }
.testi__name { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--black); }
.testi__from { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-gray); }

/* -------------------------------------------
   9. OUR STORY
   ------------------------------------------- */
.story { background: var(--white); padding: var(--space-3xl) 0; }
.story__split {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.story__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.12);
}
.story__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; transition: transform 1.2s var(--ease-out); }
.story__image:hover img { transform: scale(1.03); }
.story__name {
  position: absolute; left: 0; bottom: 0; right: 0; z-index: 2;
  padding: 3.5rem 1.6rem 1.4rem; color: var(--white);
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 500; line-height: 1.1;
  background: linear-gradient(180deg, transparent, rgba(26,26,26,0.82));
}
.story__name em {
  display: block; font-family: var(--font-body); font-style: normal; font-size: 0.62rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--baobab); margin-top: 0.4rem;
}
.story__content { max-width: 560px; }
.story__heading {
  font-family: var(--font-heading); font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; color: var(--black); margin-bottom: var(--space-md);
}
.story__lead {
  font-family: var(--font-heading); font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 400; font-style: italic; line-height: 1.5; color: var(--black); margin-bottom: var(--space-md);
}
.story__text p { font-size: 0.95rem; line-height: 1.85; color: var(--mid-gray); margin-bottom: 1rem; }
.story__text p:last-child { margin-bottom: 0; }
.story__quote {
  margin-top: var(--space-md); padding: var(--space-md) 0; border-top: 1px solid rgba(26, 26, 26, 0.1);
  font-family: var(--font-heading); font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 400; font-style: italic; line-height: 1.6; color: var(--black);
}
.story__cta { align-self: flex-start; margin-top: var(--space-sm); }

/* -------------------------------------------
   10. WHAT SETS US APART
   ------------------------------------------- */
.apart { padding: var(--space-2xl) 0 var(--space-3xl); background: var(--cream); }
.apart__heading {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; letter-spacing: -0.02em; margin-bottom: var(--space-xl);
}
.apart__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(26, 26, 26, 0.06); }
.apart__item { padding: clamp(2rem, 4vw, 3.5rem); background: var(--cream); }
.apart__number {
  display: block; font-family: var(--font-heading); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1; margin-bottom: 1rem; letter-spacing: -0.02em; opacity: 0.7;
}
.apart__title {
  font-family: var(--font-body); font-size: clamp(0.85rem, 1.2vw, 1rem); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.8rem; color: var(--black);
}
.apart__desc {
  font-family: var(--font-heading); font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400; line-height: 1.65; color: var(--mid-gray); max-width: 420px;
}

/* -------------------------------------------
   11. INGREDIENT MARQUEE
   ------------------------------------------- */
.marquee { overflow: hidden; background: var(--green); padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.marquee__track {
  display: flex; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center;
  width: max-content; animation: marqueeScroll 45s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__word {
  font-family: var(--font-heading); font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400; font-style: italic; color: rgba(245, 235, 221, 0.5); white-space: nowrap; user-select: none;
}
.marquee__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--honey); opacity: 0.7; flex-shrink: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------------------------------
   12. INNOVATION & TRADITION
   ------------------------------------------- */
.vision { position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vision__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.vision__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(46,58,32,0.72), rgba(30,38,22,0.84)); }
.vision__content { position: relative; z-index: 3; text-align: center; max-width: 720px; padding: var(--space-3xl) var(--container-pad); color: var(--white); }
.vision__heading { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; letter-spacing: -0.02em; margin-bottom: var(--space-md); }
.vision__text { font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 400; line-height: 1.7; color: rgba(250, 248, 245, 0.85); margin-bottom: var(--space-md); }
.vision__kicker { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--baobab); }

/* -------------------------------------------
   13. OUR PRODUCTS
   ------------------------------------------- */
.range { padding: var(--space-2xl) 0 var(--space-3xl); background: var(--black); color: var(--white); }
.range__header { text-align: center; margin-bottom: var(--space-lg); }
.range__title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; letter-spacing: -0.02em; }
.range__subtitle { font-size: 0.9rem; color: rgba(250, 248, 245, 0.5); margin-top: 0.6rem; max-width: 540px; margin-left: auto; margin-right: auto; }

.range__tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.4rem; margin-bottom: var(--space-xl); padding: 0 var(--container-pad); }
.range__tab {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(250, 248, 245, 0.4); padding: 0.6rem 1.2rem;
  border: 1px solid rgba(250, 248, 245, 0.1); border-radius: 100px;
  transition: all var(--duration) var(--ease-out); white-space: nowrap;
}
.range__tab:hover { color: rgba(250, 248, 245, 0.7); border-color: rgba(250, 248, 245, 0.25); }
.range__tab.is-active { color: var(--black); border-color: var(--white); background: var(--white); }

.range__category { display: none; padding: 0 var(--container-pad); }
.range__category.is-visible { display: block; animation: panelFadeIn 0.5s var(--ease-out); }
@keyframes panelFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.range__scroll { max-width: var(--container-max); margin: 0 auto; overflow-x: auto; overflow-y: visible; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 1rem; }
.range__scroll::-webkit-scrollbar { display: none; }
.range__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; align-items: stretch; }

/* Product Card (pcard) */
.pcard {
  display: flex; flex-direction: column;
  background: rgba(250, 248, 245, 0.04); border: 1px solid rgba(250, 248, 245, 0.08);
  border-radius: 16px; overflow: hidden;
  transition: border-color var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.pcard:hover { border-color: rgba(250, 248, 245, 0.18); transform: translateY(-4px); }
.pcard__media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: linear-gradient(135deg, rgba(250,248,245,0.05), rgba(250,248,245,0.1));
}
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__badge {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--black);
  background: var(--baobab); padding: 0.35rem 0.7rem; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.pcard__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.pcard__diet { display: flex; flex-wrap: wrap; gap: 0.3rem; min-height: 0.8rem; }
.diet {
  font-size: 0.56rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.22rem 0.5rem; border: 1px solid rgba(217, 164, 65, 0.45); color: var(--baobab);
  border-radius: 100px;
}
.pcard__name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; margin-top: 0.1rem; }
.pcard__sub { display: block; font-family: var(--font-heading); font-style: italic; font-size: 0.9rem; font-weight: 400; color: var(--warm-gray); margin-top: 0.1rem; }
.pcard__benefit { font-size: 0.85rem; line-height: 1.55; color: rgba(250, 248, 245, 0.72); }
.pcard__use { font-size: 0.78rem; line-height: 1.5; color: rgba(250, 248, 245, 0.5); }
.pcard__use span {
  display: block; font-family: var(--font-body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--baobab); margin-bottom: 0.2rem;
}
.pcard__note { font-size: 0.72rem; color: rgba(250, 248, 245, 0.42); font-style: italic; }
.pcard__meta { display: flex; align-items: baseline; gap: 0.5rem; margin-top: auto; padding-top: 0.4rem; }
.pcard__price { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 500; color: var(--white); }
.pcard__size { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--warm-gray); }
.pcard__ing { border-top: 1px solid rgba(250, 248, 245, 0.1); }
.pcard__ing summary {
  list-style: none; cursor: pointer; padding: 0.7rem 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250, 248, 245, 0.6);
}
.pcard__ing summary::-webkit-details-marker { display: none; }
.pcard__ing summary::after { content: '+'; font-size: 1rem; line-height: 1; color: var(--baobab); transition: transform 0.3s var(--ease-out); }
.pcard__ing[open] summary::after { transform: rotate(45deg); }
.pcard__ing p { font-size: 0.78rem; line-height: 1.6; color: rgba(250, 248, 245, 0.55); padding-bottom: 0.8rem; }
.pcard__cta {
  display: block; text-align: center; margin-top: 0.4rem;
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); padding: 0.75rem 1rem; border: 1px solid rgba(250, 248, 245, 0.25); border-radius: 8px;
  transition: background var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out), color var(--duration) var(--ease-out);
}
.pcard__cta:hover { background: var(--whatsapp); border-color: var(--whatsapp); color: #fff; opacity: 1; }

/* -------------------------------------------
   14. CORPORATE
   ------------------------------------------- */
.corp { background: var(--cream); padding-bottom: var(--space-3xl); }
.corp__intro {
  background: var(--black); color: var(--white); text-align: center;
  padding: var(--space-2xl) 0; position: relative; overflow: hidden;
}
.corp__intro::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 25% 40%, rgba(217,164,65,0.12), transparent 55%),
              radial-gradient(ellipse at 78% 60%, rgba(90,110,60,0.16), transparent 55%);
}
.corp__intro > .container { position: relative; }
.corp__heading { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: var(--space-md); }
.corp__sub { font-family: var(--font-body); font-size: clamp(0.72rem, 1.3vw, 0.85rem); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--baobab); margin-bottom: var(--space-md); }
.corp__lead { max-width: 620px; margin: 0 auto var(--space-lg); font-size: 1rem; line-height: 1.8; color: rgba(250, 248, 245, 0.75); }

.corp__events { padding-top: var(--space-2xl); }
.corp__events-title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; margin-bottom: var(--space-lg); letter-spacing: -0.01em; }
.events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.event { background: var(--white); border-radius: 16px; overflow: hidden; }
.event__media { aspect-ratio: 4 / 3; overflow: hidden; }
.event__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.event:hover .event__media img { transform: scale(1.04); }
.event figcaption { padding: 1.1rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.25rem; }
.event__name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 500; color: var(--black); line-height: 1.2; }
.event__meta { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-gray); }

/* Lead form */
.lead {
  margin-top: var(--space-2xl); background: var(--white); border-radius: 20px;
  padding: clamp(1.8rem, 4vw, 3.5rem); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--space-xl);
  box-shadow: 0 12px 50px rgba(26, 26, 26, 0.06);
}
.lead__intro h3 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.01em; }
.lead__intro p { font-size: 0.92rem; line-height: 1.75; color: var(--mid-gray); }
.lead__intro a { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }
.lead__form { display: flex; flex-direction: column; gap: 1rem; }
.lead__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field span { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); }
.field span em { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--warm-gray); font-weight: 400; }
.field input, .field textarea {
  border: 1px solid rgba(26, 26, 26, 0.15); border-radius: 8px; padding: 0.75rem 0.9rem;
  font-size: 0.9rem; color: var(--black); background: var(--cream); transition: border-color var(--duration) var(--ease-out);
}
.field input:focus, .field textarea:focus { border-color: var(--black); }
.field textarea { resize: vertical; }
.lead__form .btn { align-self: flex-start; margin-top: 0.4rem; }

/* -------------------------------------------
   15. PRESS / RECOGNITION
   ------------------------------------------- */
.press { padding: var(--space-2xl) 0; background: var(--white); }
.press .eyebrow { display: block; text-align: center; }
.press__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; margin-top: var(--space-md); }
.press__title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; margin-bottom: var(--space-md); letter-spacing: -0.01em; }
.press__list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: var(--space-md); }
.press__list li { display: flex; flex-direction: column; gap: 0.15rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(26, 26, 26, 0.08); }
.press__list li:last-child { border-bottom: none; }
.press__list strong { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--black); }
.press__list span { font-size: 0.8rem; color: var(--warm-gray); }
.press__media { font-size: 0.88rem; line-height: 1.7; color: var(--mid-gray); }
.press__media a { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }
.press__figs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.press__fig { border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--cream); }
.press__fig img { width: 100%; height: 100%; object-fit: cover; }
.press__cert {
  margin-top: var(--space-xl); text-align: center; max-width: 720px; margin-left: auto; margin-right: auto;
  font-family: var(--font-heading); font-style: italic; font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6; color: var(--mid-gray);
  padding-top: var(--space-lg); border-top: 1px solid rgba(26, 26, 26, 0.08);
}

/* -------------------------------------------
   16. FAQ
   ------------------------------------------- */
.faq { padding: var(--space-2xl) 0; background: var(--cream); }
.faq__head { text-align: center; margin-bottom: var(--space-lg); }
.faq__head .eyebrow { display: block; }
.faq__heading { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; letter-spacing: -0.02em; }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid rgba(26, 26, 26, 0.12); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.4rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-heading); font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 500; color: var(--black);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: var(--baobab); transition: transform 0.3s var(--ease-out); }
.faq__icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__answer { padding: 0 0 1.5rem; }
.faq__answer p { font-size: 0.95rem; line-height: 1.8; color: var(--mid-gray); max-width: 680px; }
.faq__answer a { color: var(--black); text-decoration: underline; text-underline-offset: 2px; }

/* -------------------------------------------
   17. COMMITMENT
   ------------------------------------------- */
.commitment { padding: var(--space-3xl) 0; background: var(--green); position: relative; }
.commitment__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.commitment__kicker { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--honey); margin-bottom: var(--space-md); }
.commitment__text { font-family: var(--font-heading); font-size: clamp(1.3rem, 2.8vw, 2.1rem); font-weight: 400; line-height: 1.65; font-style: italic; color: var(--bone); }

/* -------------------------------------------
   17b. CONTACT
   ------------------------------------------- */
.contact { background: var(--black); color: var(--white); padding: var(--space-2xl) 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.contact .eyebrow { color: rgba(250, 248, 245, 0.6); display: block; }
.contact__heading { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: var(--space-md); }
.contact__lead { font-size: 1rem; line-height: 1.8; color: rgba(250, 248, 245, 0.7); max-width: 460px; margin-bottom: var(--space-lg); }
.contact__details { display: flex; flex-direction: column; }
.contact__item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(250, 248, 245, 0.1); color: var(--white); }
.contact__item:first-child { padding-top: 0; }
.contact__ico { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(250, 248, 245, 0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--baobab); transition: border-color var(--duration) var(--ease-out); }
.contact__ico svg { width: 18px; height: 18px; }
.contact__item:hover:not(.contact__item--static) { opacity: 1; }
.contact__item:hover:not(.contact__item--static) .contact__ico { border-color: var(--baobab); }
.contact__item > span:last-child { display: flex; flex-direction: column; font-size: 0.98rem; }
.contact__item strong { font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 0.15rem; }
.contact__item--static { cursor: default; }
.contact__socials { display: flex; gap: 0.8rem; margin-top: var(--space-md); }
.contact__socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(250, 248, 245, 0.2); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background var(--duration) var(--ease-out), color var(--duration) var(--ease-out); }
.contact__socials a:hover { background: var(--white); color: var(--black); opacity: 1; }
.contact__socials svg { width: 18px; height: 18px; }

/* -------------------------------------------
   18. FOOTER
   ------------------------------------------- */
.site-footer { padding: var(--space-2xl) 0 var(--space-lg); background: var(--cream-dark); color: var(--black); position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(26, 26, 26, 0.08); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 0.8fr 1.1fr 1.2fr; gap: var(--space-xl); padding-bottom: var(--space-xl); border-bottom: 1px solid rgba(26, 26, 26, 0.08); }
.footer__logo { width: 130px; height: auto; margin-bottom: 1rem; }
.footer__tagline { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 0.8rem; }
.footer__mission { font-size: 0.9rem; line-height: 1.7; color: var(--mid-gray); max-width: 320px; }
.footer__heading { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; color: var(--black); }
.footer__nav ul, .footer__contact ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a, .footer__contact a, .footer__loc { font-size: 0.9rem; color: var(--mid-gray); display: flex; align-items: center; gap: 0.5rem; }
.footer__contact svg, .footer__loc svg { width: 16px; height: 16px; opacity: 0.5; }
.footer__newsletter p { font-size: 0.85rem; line-height: 1.7; color: var(--mid-gray); margin-bottom: 1rem; }
.footer__corp-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); }
.footer__corp-link svg { width: 15px; height: 15px; transition: transform var(--duration) var(--ease-out); }
.footer__corp-link:hover svg { transform: translateX(4px); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-lg); flex-wrap: wrap; gap: 1rem; }
.footer__social { display: flex; gap: 1.2rem; }
.footer__social a { color: var(--mid-gray); transition: color var(--duration) var(--ease-out); }
.footer__social a:hover { color: var(--black); opacity: 1; }
.footer__social svg { width: 18px; height: 18px; }
.footer__copy, .footer__credit { font-size: 0.75rem; color: var(--warm-gray); }
.footer__credit a { color: var(--mid-gray); text-decoration: underline; text-underline-offset: 2px; }
.footer__disclaimer { margin-top: var(--space-md); font-size: 0.68rem; line-height: 1.6; color: var(--warm-gray); text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

/* -------------------------------------------
   19. WHATSAPP FLOAT
   ------------------------------------------- */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  display: inline-flex; align-items: center; gap: 0.6rem;
  height: 56px; padding: 0 1.2rem 0 0.9rem;
  background: var(--whatsapp); color: #fff; border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.whatsapp-float:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float__label { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }

/* -------------------------------------------
   20. REVEAL ANIMATIONS
   ------------------------------------------- */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out); }
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-up[style*="--delay: 1"], .reveal-left[style*="--delay: 1"] { transition-delay: 0.1s; }
.reveal-up[style*="--delay: 2"], .reveal-left[style*="--delay: 2"] { transition-delay: 0.2s; }
.reveal-up[style*="--delay: 3"], .reveal-left[style*="--delay: 3"] { transition-delay: 0.3s; }

/* -------------------------------------------
   21. RESPONSIVE
   ------------------------------------------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .testi__grid { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
  .story__split { grid-template-columns: 1fr; gap: var(--space-lg); }
  .story__image { width: 100%; max-width: 440px; margin: 0 auto; }
  .story__name { padding: 2.5rem 1.4rem 1.3rem; }
  .story__content { max-width: none; }
  .apart__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3)::before { display: none; }
  .events__grid { grid-template-columns: 1fr 1fr; }
  .lead { grid-template-columns: 1fr; gap: var(--space-lg); }
  .press__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 768px) {
  :root { --space-2xl: 5rem; --space-3xl: 7rem; }
  .hero__scroll-hint { display: none; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item { padding: 2rem var(--container-pad); }
  .trust__item:nth-child(3)::before { display: none; }
  .apart__heading { font-size: 1.8rem; }
  .vision { min-height: 55vh; }
  .events__grid { grid-template-columns: 1fr; }
  .lead__row { grid-template-columns: 1fr; }
  .press__figs { grid-template-columns: 1fr 1fr; }

  /* Horizontal scroll product grid */
  .range__grid { grid-template-columns: none; display: flex; gap: 1rem; }
  .range__scroll { padding-left: var(--container-pad); padding-right: var(--container-pad); margin: 0; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .pcard { min-width: 280px; max-width: 300px; flex-shrink: 0; scroll-snap-align: start; }
  .range__tabs { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap; padding-bottom: 0.5rem; }
  .range__tabs::-webkit-scrollbar { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__social { justify-content: center; }
}

@media (max-width: 480px) {
  :root { --space-2xl: 4rem; --space-3xl: 5.5rem; }
  .hero { min-height: 100svh; }
  .hero__logo { width: 150px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__stat { font-size: 1.8rem; }
  .story__image { max-width: 360px; }
  .story__heading { font-size: 1.9rem; }
  .apart__item { padding: 1.5rem; }
  .apart__number { font-size: 2rem; }
  .vision { min-height: 48vh; }
  .press__figs { grid-template-columns: 1fr; }
  .pcard { min-width: 260px; }
  .whatsapp-float__label { display: none; }
  .whatsapp-float { padding: 0; width: 56px; justify-content: center; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-left { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

@media (prefers-contrast: high) {
  .diet { border-color: var(--baobab); color: var(--baobab); }
  .apart__number { opacity: 1; }
}
