/* ===== CSS VARIABLES ===== */
:root {
  --crimson:    #650c06;
  --crimson-d:  #4a0804;
  --crimson-l:  #8f110a;
  --gold:       #C9962A;
  --gold-l:     #E8B840;
  --amber:      #D4A017;
  --cream:      #FDF8F0;
  --warm-white: #FFFDF8;
  --text-dark:  #1C1008;
  --text-mid:   #4A2E1A;
  --text-light: #7A5533;
  --teal:       #0d977e;
  --teal-d:     #0a7a66;
  --teal-l:     #00a494;
  --green:      #5B7A2E;
  --blue-gray:  #3A6B85;
  --sage:       #4A6741;

  /* gradient */
  --grad-teal: linear-gradient(135deg, #0d977e 0%, #00a494 100%);

  /* product colors */
  --col-jamaica:   #650c06;
  --col-manzanilla:#D4960A;
  --col-menta:     #0d977e;
  --col-cola:      #3A6B85;
  --col-zacate:    #5B7A2E;
  --col-laurel:    #4A6741;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(28,16,8,0.10);
  --shadow-lg: 0 12px 48px rgba(28,16,8,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(255,255,255,0.75); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-sub { margin-top: 16px; color: var(--text-light); font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(101,12,6,0.12), transparent); margin: 80px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-l));
  color: #fff;
  border-color: transparent;
}
.btn--primary:hover { background: linear-gradient(135deg, var(--crimson-d), var(--crimson)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(101,12,6,0.35); }

/* Hero override: make Ver Productos look like ghost btn */
.hero .btn--primary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}
.hero .btn--primary:hover { background: rgba(255,255,255,0.18); border-color: #fff; box-shadow: none; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.75);
  border-width: 2px;
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; transform: translateY(-2px); }
.btn--wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn--wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn--teal {
  background: var(--grad-teal);
  color: #fff;
  border-color: transparent;
}
.btn--teal:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,151,126,0.35); }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,253,248,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(101,12,6,0.08);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(28,16,8,0.12); }
.nav__inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; gap: 32px;
}
.nav__logo img { height: 44px; width: auto; object-fit: contain; }
.nav__links { display: flex; gap: 32px; margin-left: auto; }
.nav__links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  position: relative; padding-bottom: 2px;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--crimson);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--crimson); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__whatsapp {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px;
  background: #25D366;
  color: #fff; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  transition: var(--transition);
}
.nav__whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.nav__mobile {
  display: none; flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(101,12,6,0.08);
  background: var(--warm-white);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 0; font-size: 1rem; font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(101,12,6,0.06);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--crimson); }
.nav__mobile .mobile-wa { color: #1ebe5d; font-weight: 600; border: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--crimson-d) 0%, var(--crimson) 45%, var(--crimson-l) 70%, #6a0d07 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__leaves { position: absolute; inset: 0; pointer-events: none; }
.leaf { position: absolute; border-radius: 50% 0 50% 0; opacity: 0.06; background: #fff; }
.leaf--1 { width: 600px; height: 600px; top: -100px; right: -100px; transform: rotate(30deg); }
.leaf--2 { width: 400px; height: 400px; bottom: -80px; right: 200px; transform: rotate(-20deg); opacity: 0.04; }
.leaf--3 { width: 300px; height: 300px; top: 200px; left: -80px; transform: rotate(60deg); opacity: 0.05; }

.hero__content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 80px 24px;
  margin: 0 auto; text-align: center;
  animation: fadeUp 0.9s ease both;
}
.hero__eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 16px;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800; color: #fff;
  line-height: 1.05; margin-bottom: 24px;
}
.hero__title em { color: var(--gold-l); font-style: italic; }
.hero__sub {
  color: rgba(255,255,255,0.8); font-size: 1.1rem;
  max-width: 520px; margin: 0 auto 40px;
  font-weight: 300; line-height: 1.7;
}
.hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.hero__scroll span {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  margin: 0 auto;
}

/* ===== STRIP ===== */
.strip { background: var(--gold); overflow: hidden; }
.strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; padding: 16px 24px; flex-wrap: wrap;
}
.strip__inner span {
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em; color: #fff;
}
.strip__inner span.sep { opacity: 0.5; }

/* ===== FEATURED PRODUCTS ===== */
.featured { padding: 100px 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.product-card {
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card__img {
  position: relative; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.product-card__circle {
  position: absolute; width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}
.product-card__icon { position: relative; z-index: 1; width: 80px; height: 80px; }
.product-card__body { padding: 24px; background: #fff; flex: 1; }
.product-card__tag {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.product-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px;
}
.product-card__body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.55; }
.product-card__link { display: inline-block; margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--crimson); }

.product-card--jamaica .product-card__img    { background: linear-gradient(135deg, #4a0804, #650c06); }
.product-card--manzanilla .product-card__img { background: linear-gradient(135deg, var(--col-manzanilla), #C89020); }
.product-card--menta .product-card__img      { background: linear-gradient(135deg, #0d977e, #00a494); }
.product-card--cola .product-card__img       { background: linear-gradient(135deg, var(--col-cola), #2A5570); }
.product-card--zacate .product-card__img     { background: linear-gradient(135deg, var(--col-zacate), #3D5E20); }
.product-card--laurel .product-card__img     { background: linear-gradient(135deg, var(--col-laurel), #344D2E); }

.featured__cta { text-align: center; margin-top: 52px; }

/* ===== WHY US ===== */
.why { position: relative; padding: 100px 0; overflow: hidden; }
.why__bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #063d31 0%, #085c48 40%, #0a7060 100%);
}
.why__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.18);
}
.why__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: #fff; margin-bottom: 20px; line-height: 1.2;
}
.why__text > p { color: rgba(255,255,255,0.92); font-size: 1rem; margin-bottom: 32px; }
.why__list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why__list li { display: flex; gap: 16px; align-items: flex-start; }
.why__icon { font-size: 1.6rem; flex-shrink: 0; }
.why__list strong { display: block; font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.why__list span { font-size: 0.88rem; color: rgba(255,255,255,0.88); }

.why__card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px; backdrop-filter: blur(8px); padding: 40px;
}
.why__deco-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--gold); opacity: 0.25; margin-bottom: 24px; }
.why__quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-style: italic;
  color: rgba(255,255,255,0.92); line-height: 1.5; margin-bottom: 36px;
}
.why__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15);
}
.why__stats div { text-align: center; }
.why__stats strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold-l); }
.why__stats span { font-size: 0.72rem; color: rgba(255,255,255,0.65); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* ===== PREP ===== */
.prep { padding: 100px 0; background: var(--cream); }
.prep__steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; position: relative; }
.prep__step { flex: 1; text-align: center; padding: 0 32px; }
.prep__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 800;
  color: rgba(101,12,6,0.25);
  line-height: 1; margin-bottom: 8px;
}
.prep__icon { font-size: 2.4rem; margin-bottom: 16px; }
.prep__step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px;
}
.prep__step p { font-size: 0.9rem; color: var(--text-light); }
.prep__connector {
  width: 80px; flex-shrink: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,150,42,0.3));
  margin-top: 70px;
}

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 90px 24px; text-align: center; overflow: hidden; }
.cta-banner__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d2a3d 0%, #103650 40%, #0e4060 70%, #0b2e50 100%);
}
.cta-banner__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: 16px;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(160deg, #063d31 0%, #052e25 55%, #041f1a 100%);
  padding: 64px 0 0;
  border-top: 3px solid var(--gold);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; margin: 16px 0 24px; }
.footer__logo {
  height: 48px;
  width: auto;
  /* Logo is now transparent PNG - colors show on dark bg perfectly */
}
.footer__wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; background: #25D366; color: #fff;
  border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  transition: var(--transition);
}
.footer__wa:hover { background: #1ebe5d; }
.footer__col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; color: var(--gold-l); margin-bottom: 20px;
}
.footer__col a, .footer__col span {
  display: block; color: rgba(255,255,255,0.55);
  font-size: 0.88rem; margin-bottom: 10px; transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold-l); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; }
.footer__bottom .dev-credit { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer__bottom .dev-credit a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer__bottom .dev-credit a:hover { color: var(--teal-l); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; min-height: 380px;
  display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
}
.page-hero--products { background: linear-gradient(145deg, #1a0503 0%, #3a0907 45%, #650c06 80%, #4a0d09 100%); }
.page-hero--nosotros { background: linear-gradient(145deg, #1a0503 0%, #3a0907 45%, #650c06 80%, #4a0d09 100%); }
.page-hero--contact  { background: linear-gradient(135deg, #0a7a66, #00a494); }
.page-hero--policy   { background: linear-gradient(145deg, #1a0503 0%, #3a0907 45%, #650c06 80%, #4a0d09 100%); }
.page-hero--distrib  { background: linear-gradient(135deg, #0a7a66, #00a494); }

/* + cross pattern overlay — same as hero, applied to all page headers */
.page-hero--products::after,
.page-hero--nosotros::after,
.page-hero--contact::after,
.page-hero--policy::after,
.page-hero--distrib::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; z-index: 1; }

.page-hero__content {
  position: relative; z-index: 1;
  max-width: 1180px; width: 100%;
  margin: 0 auto; padding: 64px 24px; text-align: center;
}
.page-hero__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.page-hero__content p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ===== PRODUCTS PAGE ===== */
.products-page { padding: 80px 0 60px; }
.product-detail { display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: center; margin-bottom: 0; }
.product-detail--reverse { direction: rtl; }
.product-detail--reverse > * { direction: ltr; }
.product-detail__visual {
  position: relative; border-radius: 28px; height: 460px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-detail__visual--jamaica    { background: linear-gradient(145deg, var(--crimson-d), var(--crimson-l)); }
.product-detail__visual--manzanilla { background: linear-gradient(145deg, #C08010, #D4960A, #C89020); }
.product-detail__visual--menta      { background: linear-gradient(145deg, #0a7a66, #0d977e, #00a494); }
.product-detail__visual--cola       { background: linear-gradient(145deg, #2A5570, #3A6B85); }
.product-detail__visual--zacate     { background: linear-gradient(145deg, #3D5E20, #5B7A2E); }
.product-detail__visual--laurel     { background: linear-gradient(145deg, #344D2E, #4A6741); }

.product-detail__badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; z-index: 2;
}
.herb-circle {
  width: 220px; height: 220px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}
.herb-circle svg { width: 140px; height: 140px; }

.product-detail__category { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.product-detail__info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; line-height: 1.1;
}
.product-detail__desc { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.product-detail__prep { background: var(--cream); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 16px; }
.product-detail__prep h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--crimson); margin-bottom: 6px; }
.product-detail__prep p { font-size: 0.9rem; color: var(--text-mid); }
.product-detail__rec { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.product-detail__sizes { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.size-badge {
  padding: 5px 14px;
  background: rgba(101,12,6,0.08); border: 1px solid rgba(101,12,6,0.18);
  border-radius: 20px; font-size: 0.8rem; font-weight: 600; color: var(--crimson);
}

/* ===== NOSOTROS ===== */
.story { padding: 100px 0; }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story__card-stack { position: relative; height: 380px; }
.story__card { position: absolute; background: #fff; border-radius: 20px; padding: 32px; box-shadow: var(--shadow-lg); }
.story__card--1 { top: 0; left: 0; right: 40px; background: var(--crimson); color: #fff; }
.story__card--1 .story__icon-big { font-size: 2.4rem; margin-bottom: 16px; }
.story__card--1 p { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.6; }
.story__card--2 { bottom: 0; right: 0; left: 40px; background: #fff; display: flex; flex-direction: column; gap: 4px; }
.story__badge-cr { font-size: 0.85rem; color: var(--text-light); }
.story__card--2 strong { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-dark); }
.story__card--2 span { font-size: 0.88rem; color: var(--text-light); }
.story__text p { color: var(--text-light); line-height: 1.75; margin-bottom: 18px; font-size: 1rem; }
.story__text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--text-dark); margin-bottom: 20px; line-height: 1.2; }

.values { position: relative; padding: 100px 0; }
.values__bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #063d31 0%, #085c48 40%, #0a7060 100%);
}
.values__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.22);
}
.values .container { position: relative; z-index: 1; }
.values .section-head h2 { color: #fff; }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius); padding: 32px;
  backdrop-filter: blur(6px);
  transition: transform var(--transition), background var(--transition);
}
.value-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.2); }
.value-card__icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: rgba(255,255,255,0.90); line-height: 1.65; }

.certs { padding: 90px 0; background: var(--cream); }
.certs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card { background: #fff; border-radius: var(--radius); padding: 36px; text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(101,12,6,0.06); transition: transform var(--transition); }
.cert-card:hover { transform: translateY(-4px); }
.cert-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.cert-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; }
.cert-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact { padding: 90px 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__channels h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.contact__channels > p { color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.contact__channel-list { display: flex; flex-direction: column; gap: 12px; }
.channel-card { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: var(--radius-sm); padding: 18px 20px; border: 1px solid rgba(101,12,6,0.08); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.channel-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,16,8,0.12); }
.channel-card--wa { border-color: rgba(37,211,102,0.3); }
.channel-card__icon { font-size: 1.4rem; flex-shrink: 0; color: #25D366; }
.channel-card__info { flex: 1; }
.channel-card__info strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.channel-card__info span { font-size: 0.82rem; color: var(--text-light); }
.channel-card__arrow { color: var(--text-light); font-size: 1.1rem; }

.contact__form-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid rgba(101,12,6,0.06); }
.contact__form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.contact__form-card > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; }
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1.5px solid rgba(101,12,6,0.12); border-radius: var(--radius-sm); font-family: 'Jost', sans-serif; font-size: 0.92rem; color: var(--text-dark); background: var(--cream); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: -4px; }

/* ===== FAQ ===== */
.faq { padding: 90px 0; background: var(--cream); }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq__item { border-bottom: 1px solid rgba(101,12,6,0.1); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; background: none; border: none; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 500; color: var(--text-dark); text-align: left; gap: 16px; transition: color var(--transition); }
.faq__q:hover { color: var(--crimson); }
.faq__icon { font-size: 1.3rem; flex-shrink: 0; color: var(--crimson); transition: transform var(--transition); font-weight: 300; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 0 20px; }
.faq__item.open .faq__a { display: block; }
.faq__a p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ===== POLICY PAGES ===== */
.policy-content { padding: 80px 0; }
.policy-content .container { max-width: 820px; }
.policy-content h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--text-dark); margin: 40px 0 12px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }
.policy-content ul { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; padding-left: 24px; }
.policy-content ul li { margin-bottom: 8px; }
.policy-content .policy-box { background: var(--cream); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 24px; margin: 24px 0; }
.policy-content .policy-box p { margin-bottom: 0; color: var(--text-mid); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail { grid-template-columns: 1fr; gap: 36px; }
  .product-detail--reverse { direction: ltr; }
  .product-detail__visual { height: 320px; }
  .story__grid { grid-template-columns: 1fr; }
  .story__card-stack { height: 280px; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .certs__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links, .nav__whatsapp { display: none; }
  .nav__hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .prep__steps { flex-direction: column; align-items: center; gap: 32px; }
  .prep__connector { display: none; }
  .values__grid { grid-template-columns: 1fr; }
  .certs__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .story__card-stack { display: none; }
  .story__grid { grid-template-columns: 1fr; }
  .strip__inner span.sep { display: none; }
  .hero__btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .product-detail__visual { height: 260px; }
  .contact__form-card { padding: 24px; }
  .why__stats { grid-template-columns: 1fr; gap: 8px; }
}
