/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #f8f6f1;
  --bg-2:        #eef5ee;
  --bg-3:        #ffffff;
  --ink:         #1a2e1f;
  --ink-soft:    #2d4a35;
  --ink-mute:    #6b7f6e;
  --green:       #2a6640;
  --green-2:     #1e4f30;
  --green-light: #4a9060;
  --gold:        #c9a84c;
  --gold-2:      #e2c16b;
  --gold-3:      #f0d48a;
  --cream:       #faf7f0;
  --glass:       rgba(255,255,255,0.55);
  --glass-2:     rgba(255,255,255,0.35);
  --glass-dark:  rgba(26,46,31,0.75);
  --line:        rgba(42,102,64,0.15);
  --shadow:      0 8px 40px rgba(26,46,31,0.12);
  --shadow-lg:   0 24px 80px rgba(26,46,31,0.18);

  --sans:    'Inter', sans-serif;
  --serif:   'Italiana', serif;
  --cormo:   'Cormorant Garamond', serif;

  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-soft:   cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);

  --nav-h: 72px;
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1200px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; }
ul { list-style: none; padding: 0; }
address { font-style: normal; }
::selection { background: var(--gold); color: var(--green-2); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--green); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 100px;
  font-size: .9rem; font-weight: 500; letter-spacing: .01em;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(42,102,64,.3);
}
.btn-primary:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42,102,64,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-ghost:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* =============================================================
   5. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background .4s var(--ease-soft), backdrop-filter .4s, box-shadow .4s;
}
.nav.is-scrolled {
  background: rgba(248,246,241,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(26,46,31,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding-inline: 1.5rem;
  max-width: var(--container); margin-inline: auto;
}
.nav-logo {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--serif); font-size: 1.5rem; color: var(--green);
}
.nav-logo-icon { color: var(--gold); font-size: 1rem; }
.nav-links {
  display: none;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1.5px; background: var(--gold);
  transition: right .3s var(--ease-out);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.btn-cart {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--green);
  transition: background .2s;
}
.btn-cart:hover { background: var(--bg-2); }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px;
  background: var(--gold); color: var(--green-2);
  border-radius: 50%; font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform .3s var(--ease-bounce);
}
.cart-count.is-visible { transform: scale(1); }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 36px; padding: 6px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--green);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: rgba(248,246,241,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--line);
  transform: translateY(-100%); opacity: 0;
  transition: transform .35s var(--ease-out), opacity .35s;
  pointer-events: none;
}
.nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-menu li { border-bottom: 1px solid var(--line); }
.nav-menu a {
  display: block; padding: .85rem 0;
  font-weight: 500; color: var(--ink-soft);
  transition: color .2s;
}
.nav-menu a:hover { color: var(--green); }

/* =============================================================
   6. Hero Section
   ============================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}

/* Animated mesh gradient */
.hero-mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(42,102,64,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(201,168,76,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 10%, rgba(74,144,96,.15) 0%, transparent 55%);
  filter: blur(60px) saturate(130%);
  animation: meshDrift 20s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
@keyframes meshDrift {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.1) rotate(3deg) translate(2%, -2%); }
  100% { transform: scale(1.05) rotate(-2deg) translate(-1%, 3%); }
}

/* Grain texture */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .04;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

/* Hero photo */
.hero-img-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: saturate(0.6) brightness(0.55);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,31,0.72) 0%,
    rgba(30,79,48,0.55) 40%,
    rgba(0,0,0,0.35) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 680px;
  padding-inline: 1.5rem;
  animation: heroIn .9s var(--ease-out) .2s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--serif); font-size: clamp(3.6rem, 9vw, 7.5rem);
  line-height: .95; letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic; color: var(--gold-2);
  font-family: var(--cormo); font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.6;
  color: rgba(250,247,240,.8);
  max-width: 44ch; margin-bottom: 2rem;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem;
}
.hero-actions .btn-ghost {
  color: var(--cream); border-color: rgba(250,247,240,.4);
}
.hero-actions .btn-ghost:hover { background: rgba(250,247,240,.12); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,247,240,.2);
}
.hero-stat {
  display: flex; flex-direction: column;
}
.hero-stat > :first-child, .hero-stat > :nth-child(2) {
  display: inline;
}
.hero-stat-num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--gold-2);
  line-height: 1;
}
.hero-stat > span:not(.hero-stat-num) {
  font-family: var(--serif); font-size: 1.8rem; color: var(--gold-2); line-height: 1;
}
.hero-stat p { font-size: .75rem; color: rgba(250,247,240,.6); margin-top: .2rem; }

/* Bottle illustration */
.hero-product {
  position: absolute; right: 6%; bottom: 8%; z-index: 2;
  animation: bottleFloat 5s ease-in-out infinite;
  display: none;
}
@keyframes bottleFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-18px) rotate(2deg); }
}
.product-bottle {
  position: relative; display: flex; flex-direction: column; align-items: center;
}
.bottle-cap {
  width: 42px; height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 2px 6px rgba(255,255,255,.3), 0 4px 12px rgba(0,0,0,.2);
}
.bottle-body {
  width: 100px; height: 200px;
  background: linear-gradient(160deg, #2e7a50 0%, #1a4f30 60%, #0f3020 100%);
  border-radius: 14px;
  position: relative; overflow: hidden;
  box-shadow: inset -12px 0 24px rgba(0,0,0,.25), inset 6px 0 12px rgba(255,255,255,.08), 0 24px 60px rgba(0,0,0,.35);
}
.bottle-label {
  position: absolute; inset: 20% 15%;
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.bottle-brand {
  font-family: var(--serif); font-size: 1.1rem; color: var(--green); font-weight: 700;
}
.bottle-line { font-size: .6rem; color: var(--ink-mute); text-align: center; }
.bottle-shine {
  position: absolute; top: 0; left: 18%; width: 18%; bottom: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.18), transparent 60%);
  border-radius: 4px;
}
.bottle-shadow {
  width: 80px; height: 16px;
  background: radial-gradient(ellipse, rgba(0,0,0,.3), transparent 70%);
  margin-top: .5rem; filter: blur(4px);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 2;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,247,240,.5);
  animation: scrollFade 2s ease-in-out 1.5s infinite alternate;
}
@keyframes scrollFade { to { opacity: .2; } }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(250,247,240,.4), transparent);
}

/* =============================================================
   7. Marquee
   ============================================================= */
.marquee-wrap {
  overflow: hidden; padding: 1rem 0;
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-track {
  display: flex; gap: 1.8rem; width: max-content;
  animation: marqueeScroll 28s linear infinite;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(250,247,240,.7);
}
.marquee-track .dot { color: var(--gold); }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* =============================================================
   8. Section commons
   ============================================================= */
.section-header {
  text-align: center; margin-bottom: 3.5rem;
}
.section-eyebrow {
  font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.section-eyebrow::before,
.section-eyebrow::after { content: '✦'; font-size: .6rem; }
.section-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--ink);
}
.section-title em {
  font-style: italic; color: var(--green);
  font-family: var(--cormo);
}
.section-desc {
  font-size: 1rem; color: var(--ink-mute);
  max-width: 52ch; margin: 1rem auto 0; line-height: 1.7;
}
.section-header.is-light .section-title { color: var(--cream); }
.section-header.is-light .section-desc { color: rgba(250,247,240,.75); }
.section-header.is-light .section-desc.is-light { color: rgba(250,247,240,.75); }

/* =============================================================
   9. Productos
   ============================================================= */
.section-productos {
  padding: 7rem 0 5rem;
}

/* Filter tabs */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-top: 2rem;
}
.filter-tab {
  padding: .45rem 1.2rem;
  border-radius: 100px;
  font-size: .83rem; font-weight: 500;
  color: var(--ink-mute);
  border: 1.5px solid var(--line);
  transition: all .25s var(--ease-out);
}
.filter-tab:hover { border-color: var(--green); color: var(--green); }
.filter-tab.is-active {
  background: var(--green); color: var(--cream);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(42,102,64,.25);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Product card */
.product-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  display: flex; flex-direction: column;
}
@supports not (backdrop-filter: blur(20px)) {
  .product-card { background: rgba(255,255,255,.85); }
}
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.product-card.is-hidden { display: none; }

/* Product visual area — real product photo */
.product-visual {
  height: 220px;
  background: linear-gradient(145deg, #f0f7f2 0%, #e4f0e8 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(42,102,64,.08);
}
.product-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,.08), transparent 70%);
  pointer-events: none;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform .5s var(--ease-out);
}
.product-card:hover .product-img {
  transform: scale(1.07);
}

/* Product info */
.product-info {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; flex: 1;
}
.product-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 100px;
  background: rgba(201,168,76,.15); color: var(--gold);
  align-self: flex-start; margin-bottom: .7rem;
  border: 1px solid rgba(201,168,76,.3);
}
.product-tag.is-new  { background: rgba(42,102,64,.12); color: var(--green); border-color: rgba(42,102,64,.25); }
.product-tag.is-premium { background: rgba(201,168,76,.2); color: #8a6a00; border-color: rgba(201,168,76,.4); }
.product-tag.is-especial { background: rgba(74,144,96,.15); color: var(--green-light); border-color: rgba(74,144,96,.3); }
.product-name {
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
  margin-bottom: .5rem;
}
.product-desc {
  font-size: .88rem; color: var(--ink-mute); line-height: 1.55;
  flex: 1; margin-bottom: 1.2rem;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem;
}
.product-price {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--green);
}
.btn-add {
  display: flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem;
  background: var(--green); color: var(--cream);
  border-radius: 100px; font-size: .82rem; font-weight: 500;
  transition: background .2s, transform .25s var(--ease-out), box-shadow .25s;
  box-shadow: 0 4px 14px rgba(42,102,64,.25);
}
.btn-add:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,102,64,.35);
}
.btn-add.is-added {
  background: var(--gold); color: var(--green-2);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1; transform: translateY(0);
}

/* =============================================================
   10. Ingredientes
   ============================================================= */
.section-ingredientes {
  position: relative; padding: 7rem 0;
  isolation: isolate;
}
.ing-bg-img {
  position: absolute; inset: 0; z-index: -1;
}
.ing-bg-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.7) brightness(.35);
}
.ing-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,46,31,.9) 0%, rgba(15,35,20,.85) 100%);
}
.section-ingredientes .section-header { position: relative; z-index: 1; }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
  position: relative; z-index: 1;
}
.ing-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform .35s var(--ease-out), background .3s;
}
.ing-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.14);
}
.ing-icon {
  font-size: 2.8rem; margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.ing-name {
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold-2);
  margin-bottom: .6rem;
}
.ing-benefit { font-size: .9rem; color: rgba(250,247,240,.75); line-height: 1.6; }

/* =============================================================
   11. Nosotros
   ============================================================= */
.section-nosotros { padding: 7rem 0; }
.nos-grid {
  display: grid; gap: 4rem; align-items: center;
}
.nos-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5;
}
.nos-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-soft);
}
.nos-img-wrap:hover img { transform: scale(1.04); }
.nos-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  display: flex; flex-direction: column; align-items: center;
  color: var(--cream);
}
.nos-badge-num {
  font-family: var(--serif); font-size: 2.2rem; color: var(--gold-2); line-height: 1;
}
.nos-badge-text { font-size: .72rem; text-align: center; opacity: .8; margin-top: .2rem; }

.nos-title { margin-bottom: 1.4rem; }
.nos-p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; font-size: .97rem; }

.nos-values {
  margin: 2rem 0;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.nos-values li {
  display: flex; gap: 1rem; align-items: flex-start;
}
.nos-val-icon { color: var(--gold); font-size: .9rem; margin-top: .2rem; flex-shrink: 0; }
.nos-values strong { display: block; font-size: .95rem; color: var(--ink); margin-bottom: .2rem; }
.nos-values p { font-size: .88rem; color: var(--ink-mute); }

/* =============================================================
   12. Social / Community Manager
   ============================================================= */
.section-social {
  position: relative; padding: 7rem 0;
  isolation: isolate;
}
.social-bg {
  position: absolute; inset: 0; z-index: -1;
}
.social-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.5) brightness(.3);
}
.social-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,46,31,.95) 0%, rgba(15,30,20,.88) 100%);
}
.section-social .section-header { position: relative; z-index: 1; }
.section-social .section-title { color: var(--cream); }
.section-social .section-desc { color: rgba(250,247,240,.7); }

.social-grid {
  display: grid; gap: 1.5rem;
  position: relative; z-index: 1;
}

/* CM Card */
.cm-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  color: var(--cream);
}
.cm-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2); margin-bottom: 1.2rem;
}
.cm-card h3 {
  font-family: var(--serif); font-size: 1.6rem; color: var(--gold-2);
  margin-bottom: .8rem;
}
.cm-card p {
  font-size: .92rem; color: rgba(250,247,240,.75); line-height: 1.7;
  margin-bottom: 1.5rem;
}
.cm-roles { display: flex; flex-direction: column; gap: .5rem; }
.cm-roles li {
  font-size: .85rem; color: rgba(250,247,240,.65);
  display: flex; align-items: center; gap: .5rem;
}
.cm-roles li::before { content: '✦'; color: var(--gold); font-size: .6rem; }

/* Social Networks */
.social-networks {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.social-networks h3 {
  font-family: var(--serif); font-size: 1.4rem; color: var(--cream);
  margin-bottom: 1.2rem;
}
.social-cards { display: flex; flex-direction: column; gap: .75rem; }
.social-net-card {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  transition: background .25s, transform .25s var(--ease-out);
}
.social-net-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateX(4px);
}
.sn-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sn-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.sn-fb { background: #1877f2; color: #fff; }
.sn-tk { background: #000; color: #fff; }
.sn-yt { background: #ff0000; color: #fff; }
.sn-info { flex: 1; }
.sn-info strong { display: block; font-size: .9rem; color: var(--cream); }
.sn-info span { font-size: .78rem; color: rgba(250,247,240,.5); }
.sn-followers { font-size: .75rem; color: var(--gold-2); font-weight: 500; }

/* Digital strategy */
.digital-strategy {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  color: var(--cream);
}
.digital-strategy h3 {
  font-family: var(--serif); font-size: 1.4rem; color: var(--gold-2);
  margin-bottom: 1.5rem;
}
.strategy-items { display: flex; flex-direction: column; gap: 1.5rem; }
.strategy-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.strategy-num {
  font-family: var(--serif); font-size: 2rem; color: rgba(201,168,76,.3);
  line-height: 1; flex-shrink: 0; width: 2.5rem;
}
.strategy-item strong { display: block; color: var(--cream); font-size: .95rem; margin-bottom: .3rem; }
.strategy-item p { font-size: .86rem; color: rgba(250,247,240,.6); line-height: 1.6; }

/* =============================================================
   13. CTA / Newsletter
   ============================================================= */
.section-cta {
  position: relative; padding: 7rem 0;
  overflow: hidden;
}
.cta-mesh {
  position: absolute; inset: -30%;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(42,102,64,.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(201,168,76,.15), transparent 60%);
  filter: blur(60px); animation: meshDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cta-title {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: .8rem;
}
.cta-title em { color: var(--green); font-style: italic; font-family: var(--cormo); }
.cta-sub { color: var(--ink-mute); margin-bottom: 2rem; }

.cta-form { width: 100%; max-width: 480px; }
.form-group {
  display: flex; gap: .5rem;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: .4rem .4rem .4rem 1.2rem;
  box-shadow: var(--shadow);
}
.form-group input {
  flex: 1; border: 0; background: transparent; outline: 0;
  font-size: .93rem; color: var(--ink);
  min-width: 0;
}
.form-group input::placeholder { color: var(--ink-mute); }
.form-group .btn { padding: .65rem 1.4rem; font-size: .88rem; }
.form-note { font-size: .75rem; color: var(--ink-mute); margin-top: .75rem; }
.form-success {
  display: none; align-items: center; justify-content: center;
  gap: .5rem; color: var(--green); font-weight: 500;
  margin-top: 1rem;
}
.form-success.is-visible { display: flex; }

/* =============================================================
   14. Footer
   ============================================================= */
.footer {
  background: var(--green-2);
  color: rgba(250,247,240,.75);
  padding-top: 5rem;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  font-family: var(--serif); font-size: 1.8rem;
  color: var(--cream); margin-bottom: .6rem;
}
.footer-tagline { font-size: .87rem; line-height: 1.65; margin-bottom: 1.2rem; }
.footer-social {
  display: flex; gap: .75rem;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,240,.6);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social a:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,.1);
}
.footer-nav h4 {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a {
  font-size: .88rem; transition: color .2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-contact h4 {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 1rem;
}
.footer-contact p { font-size: .88rem; margin-bottom: .5rem; }
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  padding: 1.2rem 0;
  background: rgba(0,0,0,.15);
}
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: space-between; align-items: center;
  font-size: .78rem; opacity: .6;
}
.footer-credits a { text-decoration: underline; opacity: .7; }

/* =============================================================
   15. Cart Panel
   ============================================================= */
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--cream);
  z-index: 200;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
  box-shadow: -8px 0 60px rgba(26,46,31,.15);
}
.cart-panel.is-open { transform: translateX(0); }
.cart-backdrop {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(26,46,31,.45);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-title {
  font-family: var(--serif); font-size: 1.5rem; color: var(--ink);
}
.cart-close {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  transition: background .2s, color .2s;
}
.cart-close:hover { background: var(--bg-2); color: var(--ink); }

.cart-items {
  flex: 1; overflow-y: auto; padding: 1rem 1.5rem;
}
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: .75rem;
  color: var(--ink-mute); text-align: center;
}
.cart-empty svg { opacity: .35; }
.cart-empty p { font-size: .95rem; }

/* Cart item */
.cart-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-thumb {
  width: 56px; height: 80px; border-radius: 8px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: .7rem;
  color: rgba(255,255,255,.8);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .9rem; font-weight: 500; color: var(--ink); margin-bottom: .2rem; }
.cart-item-price { font-size: .88rem; color: var(--green); }
.cart-item-qty {
  display: flex; align-items: center; gap: .4rem; margin-top: .5rem;
}
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ink);
  transition: background .2s, border-color .2s;
}
.qty-btn:hover { background: var(--bg-2); border-color: var(--green); }
.qty-num { font-size: .9rem; font-weight: 500; color: var(--ink); min-width: 20px; text-align: center; }
.cart-item-remove {
  color: var(--ink-mute); font-size: .75rem;
  padding: .2rem .4rem; border-radius: 4px;
  transition: color .2s, background .2s;
}
.cart-item-remove:hover { color: #cc3333; background: rgba(204,51,51,.07); }

.cart-footer {
  padding: 1.2rem 1.5rem 1.8rem;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-footer[aria-hidden="true"] { display: none; }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  font-size: .95rem; color: var(--ink);
}
.cart-total strong {
  font-family: var(--serif); font-size: 1.4rem; color: var(--green);
}
.cart-note {
  font-size: .75rem; color: var(--ink-mute); text-align: center; margin-top: .8rem;
}

/* =============================================================
   16. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-product { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .nos-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (min-width: 960px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(4, 1fr); }
  .social-grid { grid-template-columns: 1fr 1fr 1fr; }
  .nos-grid { grid-template-columns: 5fr 6fr; gap: 6rem; }
}

@media (min-width: 1280px) {
  .hero-content { padding-inline: 0; }
  .hero-content { margin-left: 0; }
}

/* =============================================================
   17. Reduced motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .marquee-track { animation: none; }
  .hero-product { animation: none; }
  .hero-scroll-hint { animation: none; }
}
