/* =============================================================
   Auxoc — styles.css
   Archetype: Editorial Dark Warm (Chocolate Edition)
   v20260521
   ============================================================= */

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  --bg:        #0F0804;
  --bg-2:      #170D08;
  --bg-card:   #1D1209;
  --bg-card-2: #221409;
  --cream:     #F2EBDA;
  --cream-2:   #D5C9B8;
  --cream-3:   #8A7D6C;
  --gold:      #C9A55B;
  --gold-2:    #E8C47A;
  --gold-glow: rgba(201, 165, 91, 0.18);
  --terra:     #8B2E1E;
  --line:      rgba(242, 235, 218, 0.10);
  --line-gold: rgba(201, 165, 91, 0.20);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-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);

  --gutter:  clamp(1.25rem, 5vw, 5rem);
  --max-w:   1240px;
  --nav-h:   72px;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; object-fit: cover; }
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, h5 { text-wrap: balance; line-height: 1.08; font-family: var(--serif); font-weight: 700; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .5rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 99999; border-radius: 6px; font-size: .875rem; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.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: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   4. TYPOGRAPHY
   ============================================================= */
.display {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.gold { color: var(--gold); }
.italic { font-style: italic; }

/* =============================================================
   5. COMPONENTS — BUTTONS
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 2rem;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 3px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s, border-color .25s, color .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-2);
  box-shadow: 0 12px 40px rgba(201,165,91,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--line-gold);
  color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,165,91,.08);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  font-weight: 600;
  gap: .6rem;
}
.btn-wa:hover {
  background: #1EBE5A;
  box-shadow: 0 12px 40px rgba(37,211,102,.30);
}

.btn-ig {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ig:hover { border-color: var(--cream-3); }

/* =============================================================
   5b. COMPONENTS — BADGE/PILL
   ============================================================= */
.badge {
  display: inline-block;
  padding: .2rem .7rem;
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  border-radius: 2px;
}
.badge-ghost {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg);
  font-weight: 700;
}

/* =============================================================
   6a. CURSOR (desktop only — hidden via CSS, shown via JS)
   ============================================================= */
.cursor-wrap {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
}
.cursor-wrap.is-ready .cursor-dot,
.cursor-wrap.is-ready .cursor-ring { opacity: 1; }
.cursor-dot {
  position: absolute; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
}
.cursor-ring {
  position: absolute; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,165,91,.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s, width .35s var(--ease-out), height .35s var(--ease-out), border-color .3s;
}
.cursor-wrap.is-hovering .cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(201,165,91,.85);
}
@media (hover: none) {
  .cursor-wrap { display: none; }
}

/* =============================================================
   6b. NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding-inline: var(--gutter);
  gap: 2rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease-soft), border-color .4s;
}
.nav.scrolled {
  background: rgba(15,8,4,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
}

.nav-logo {
  display: flex; align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
}
.nav-logo-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  align-self: flex-end;
  margin-bottom: .35rem;
  flex-shrink: 0;
}

.nav-menu {
  display: flex; align-items: center;
  gap: 2rem;
  margin-inline-start: auto;
}
.nav-link {
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream-2);
  position: relative;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.nav-social {
  display: flex; align-items: center; gap: 1rem;
}
.nav-social a {
  color: var(--cream-2);
  transition: color .25s;
}
.nav-social a:hover { color: var(--gold); }
.nav-social svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  margin-inline-start: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s, width .3s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================================
   6c. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,8,4,.70) 0%, rgba(15,8,4,.40) 40%, rgba(15,8,4,.80) 100%),
    linear-gradient(to right, rgba(15,8,4,.75) 0%, rgba(15,8,4,.0) 60%);
}

.hero-mesh {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 15% 85%, rgba(201,165,91,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(139,46,30,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 55% 50%, rgba(201,165,91,.08) 0%, transparent 70%);
  filter: blur(60px);
  animation: meshDrift 22s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: scale(1) translate(0, 0); opacity: 1; }
  33%  { transform: scale(1.08) translate(2%, 3%); opacity: .85; }
  66%  { transform: scale(.95) translate(-1%, 2%); opacity: .95; }
  100% { transform: scale(1.04) translate(1.5%, -2%); opacity: 1; }
}

.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; opacity: 0.038; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-inner {
  position: relative; z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 6rem 5rem;
}

.hero-content { max-width: 760px; text-align: center; margin-inline: auto; }

.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero-logo-wrap {
  margin: 0.5rem 0 1.5rem;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  max-width: clamp(260px, 42vw, 520px);
  height: auto;
  width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  display: block;
  margin-inline: auto;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--cream-2);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-desc {
  font-size: .9375rem;
  color: var(--cream-2);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 2.5rem;
  margin-inline: auto;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }

.hero-product-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-product {
  width: min(380px, 85%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(1.05) saturate(1.1);
  box-shadow:
    0 40px 80px rgba(0,0,0,.55),
    0 0 60px var(--gold-glow);
  transform: translateY(-10px);
  animation: productFloat 6s ease-in-out infinite;
}
@keyframes productFloat {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(6px); }
}
.hero-product-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(ellipse at center, rgba(201,165,91,.15) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  animation: productFloat 6s ease-in-out infinite;
}

/* =============================================================
   6d. FEATURES SECTION
   ============================================================= */
.features {
  padding-block: 6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.features-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-gold);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}
.feature-desc {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.75;
}

/* =============================================================
   6e. PRODUCTS SECTION
   ============================================================= */
.products {
  padding-block: 7rem;
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-header .eyebrow { margin-bottom: .75rem; }
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
}
.section-desc {
  font-size: .9375rem;
  color: var(--cream-3);
  max-width: 50ch;
  margin-top: .75rem;
  line-height: 1.75;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-gold);
  box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 0 0 1px var(--line-gold), 0 0 40px var(--gold-glow);
}

.card-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out), filter .5s;
}
.product-card:hover .card-img {
  transform: scale(1.07);
  filter: saturate(1.15) brightness(1.06);
}
.card-category {
  position: absolute; top: 1rem; left: 1rem;
}

.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-name {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: .35rem;
}
.card-tagline {
  font-size: .8125rem;
  color: var(--cream-3);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.card-desc {
  flex: 1;
  font-size: .8125rem;
  color: var(--cream-3);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.card-flavors {
  font-size: .75rem;
  color: var(--cream-3);
}
.card-flavors strong { color: var(--gold); font-weight: 600; }
.card-link {
  font-size: .8125rem;
  color: var(--gold);
  font-weight: 500;
  display: flex; align-items: center; gap: .3rem;
  transition: gap .25s var(--ease-out);
}
.card-link:hover { gap: .6rem; }

/* =============================================================
   6f. SPOTLIGHT — EL ALMA DE ANDALUCÍA
   ============================================================= */
.spotlight {
  padding-block: 7rem;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.spotlight-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: .18;
}
.spotlight-bg img { width: 100%; height: 100%; object-fit: cover; }

.spotlight-halo {
  position: absolute; z-index: 1;
  inset: -40% -10%;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,165,91,.14) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.spotlight-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.spotlight-label {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.25rem;
}
.spotlight-label-line {
  width: 28px; height: 1px;
  background: var(--gold);
}
.spotlight-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.spotlight-title em { color: var(--gold); }
.spotlight-body {
  font-size: .9375rem;
  color: var(--cream-3);
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.spotlight-img-wrap {
  position: relative;
}
.spotlight-img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(1.1) brightness(1.05);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.spotlight-img-accent {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 80px; height: 80px;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
}

/* =============================================================
   6g. STATS
   ============================================================= */
.stats {
  padding-block: 5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .75rem;
  color: var(--cream-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: .5rem;
  display: block;
}

/* =============================================================
   6h. TESTIMONIALS
   ============================================================= */
.testimonials {
  padding-block: 7rem;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.testimonials-bg-wrap {
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
}
.testimonials-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.13;
  will-change: transform;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
}
.testimonial-stars {
  display: flex; gap: .25rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: .75rem;
}
.testimonial-text {
  font-size: .9375rem;
  color: var(--cream-2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: .8125rem;
  color: var(--cream-3);
  font-weight: 500;
}

.ig-cta {
  text-align: center;
  margin-top: 3rem;
}
.ig-cta a {
  font-size: .875rem;
  color: var(--cream-3);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: color .25s;
}
.ig-cta a:hover { color: var(--gold); }

/* =============================================================
   6i. ORDER CTA SECTION
   ============================================================= */
.order-cta {
  padding-block: 7rem;
  padding-inline: 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.order-cta-halo {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,165,91,.15) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.order-cta > * { position: relative; z-index: 1; }
.order-cta .eyebrow { margin-bottom: 1rem; display: block; text-align: center; }
.order-cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.order-cta-desc {
  font-size: .9375rem;
  color: var(--cream-3);
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.order-cta-actions {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1rem;
}
.order-cta-note {
  margin-top: 1.5rem;
  font-size: .8125rem;
  color: var(--cream-3);
}
.order-cta-note a { color: var(--gold); }

/* =============================================================
   6j. FOOTER
   ============================================================= */
.footer {
  background: #F0EDE8;
  color: #2A1F17;
  padding-block: 3rem 2.5rem;
  border-top: none;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
  .footer-legal-col,
  .footer-contact-col { flex: 1; }
  .footer-brand-col { flex: 1; display: flex; flex-direction: column; align-items: center; }
}
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  list-style: none;
}
.footer-legal-links a {
  font-size: .875rem;
  color: #2A1F17;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(42,31,23,.35);
  transition: color .2s;
}
.footer-legal-links a:hover { color: #8B2E1E; }

.footer-contact-heading {
  font-weight: 600;
  font-size: .9375rem;
  color: #2A1F17;
  margin-bottom: .65rem;
}
.footer-contact-line {
  font-size: .875rem;
  color: #4A3A2E;
  margin-bottom: .25rem;
}
.footer-contact-line a { color: inherit; transition: color .2s; }
.footer-contact-line a:hover { color: #8B2E1E; }
.footer-contact-social {
  display: flex;
  gap: .85rem;
  margin-top: .85rem;
  align-items: center;
}
.footer-contact-social a { color: #2A1F17; transition: color .2s; }
.footer-contact-social a:hover { color: #8B2E1E; }
.footer-contact-social svg { width: 22px; height: 22px; display: block; }

.footer-logo-img {
  max-height: 52px;
  max-width: 200px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}
.footer-copy {
  font-size: .7rem;
  color: #6B5A4E;
  line-height: 1.7;
  text-align: center;
  max-width: 28ch;
  margin: 0 auto;
}

/* =============================================================
   7. EFFECTS — REVEALS & ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal[data-split] { opacity: 1; transform: none; }  /* defensive */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* Hero entrance */
.hero-entrance {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.hero-entrance.entered {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   8. PAGE HEADER (inner pages)
   ============================================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 100%, rgba(201,165,91,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow { margin-bottom: .75rem; }
.page-hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--cream);
}
.page-hero-desc {
  font-size: .9375rem;
  color: var(--cream-3);
  max-width: 50ch;
  margin-top: .75rem;
  line-height: 1.75;
}

/* =============================================================
   8b. PRECIOS — PRICING CARDS
   ============================================================= */
.precios-section { padding-block: 6rem; }
.precios-section + .precios-section { padding-top: 0; }

.pricing-category-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 1rem;
}
.pricing-category-name {
  font-size: 1.5rem;
  color: var(--cream);
}
.pricing-category-count {
  font-size: .75rem;
  color: var(--cream-3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: border-color .4s var(--ease-out), box-shadow .4s var(--ease-out), transform .4s var(--ease-out);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--line-gold);
  box-shadow: 0 16px 60px rgba(0,0,0,.35), 0 0 30px var(--gold-glow);
  transform: translateY(-4px);
}
.pricing-card-badge {
  position: absolute; top: 1rem; right: 1rem;
  z-index: 2;
}
.pricing-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pricing-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out), filter .5s;
}
.pricing-card:hover .pricing-card-img {
  transform: scale(1.05);
  filter: saturate(1.12);
}
.pricing-card-body {
  padding: 1.5rem;
  display: flex; flex-direction: column;
  gap: .75rem;
}
.pricing-card-category { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.pricing-card-name { font-size: 1.25rem; color: var(--cream); }
.pricing-card-desc { font-size: .875rem; color: var(--cream-3); line-height: 1.7; }
.pricing-card-note { font-size: .8125rem; color: var(--cream-2); font-weight: 500; }
.pricing-card-detail {
  font-size: .75rem;
  color: var(--cream-3);
  border-top: 1px solid var(--line);
  padding-top: .75rem;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.pricing-card-detail span {
  background: rgba(242,235,218,.06);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: .2rem .6rem;
}
.pricing-card-cta {
  margin-top: .25rem;
}

.precios-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 5rem;
  text-align: center;
}
.precios-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.precios-cta-desc {
  font-size: .9375rem;
  color: var(--cream-3);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.precios-cta-btns {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem;
}

/* =============================================================
   8c. GALLERY PAGE
   ============================================================= */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-block: 4rem;
}
.galeria-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-card);
}
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out), filter .5s;
}
.galeria-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) brightness(1.05);
}

/* =============================================================
   8d. CONTACT PAGE
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 4rem;
}
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .3s;
}
.contact-info-item:hover { border-color: var(--line-gold); }
.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--line-gold);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cream-3); margin-bottom: .25rem; }
.contact-info-value { font-size: .9375rem; color: var(--cream); }

/* =============================================================
   9. RESPONSIVE — MOBILE FIRST
   ============================================================= */
@media (min-width: 540px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 720px) {
  .features-inner { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-inner { grid-template-columns: 1fr 1fr; }
  .spotlight-img-wrap { order: 2; }
  .spotlight-content { order: 1; }
  .hero-inner { grid-template-columns: 1fr; justify-items: center; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: flex !important; }
  .nav-toggle { display: none !important; }
}

@media (min-width: 1280px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 959px) {
  .nav-menu {
    display: none;
    position: fixed; inset: 0; top: var(--nav-h);
    background: rgba(15,8,4,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 899;
  }
  .nav-menu.is-open { display: flex; }
  .nav-link {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
  }
  .nav-toggle { display: flex; }
  .nav-social { margin-inline-start: auto; }
}

/* =============================================================
   GDPR COOKIE BANNER
   ============================================================= */
#gdpr-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(12, 6, 2, 0.97);
  border-top: 1px solid rgba(201, 165, 91, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1rem 0;
}
#gdpr-bar.gdpr-in { transform: translateY(0); }
.gdpr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gdpr-copy {
  flex: 1;
  min-width: 240px;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(242, 235, 218, 0.6);
  line-height: 1.65;
  margin: 0;
}
.gdpr-copy strong { color: var(--cream); font-weight: 600; }
.gdpr-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.gdpr-link:hover { color: var(--cream); }
.gdpr-btns { display: flex; gap: 0.55rem; flex-shrink: 0; }
.gdpr-btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.gdpr-btn-solid {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.gdpr-btn-solid:hover { background: #d4b06a; border-color: #d4b06a; }
.gdpr-btn-ghost {
  background: transparent;
  color: var(--cream-2);
  border: 1px solid rgba(242, 235, 218, 0.2);
}
.gdpr-btn-ghost:hover { border-color: rgba(242, 235, 218, 0.5); color: var(--cream); }
@media (max-width: 520px) {
  .gdpr-inner { gap: 0.75rem; }
  .gdpr-btns { width: 100%; }
  .gdpr-btn { flex: 1; text-align: center; padding: 0.65rem; }
}

/* Mobile nav: opaque background when menu is open (JS adds .menu-open) */
.nav.menu-open,
.nav:has(.nav-menu.is-open) {
  background: var(--bg) !important;
  backdrop-filter: none !important;
  border-color: var(--line) !important;
}
body:has(.nav-menu.is-open) {
  overflow: hidden;
}

/* =============================================================
   LA ESENCIA DE AUXOC — 2×2 grid
   ============================================================= */
.esencia {
  padding-block: 6rem;
  background: var(--bg-2);
}
.esencia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 720px) {
  .esencia-grid { gap: 1.75rem; }
}
.esencia-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .35s, box-shadow .35s, transform .35s var(--ease-out);
}
.esencia-item:hover {
  border-color: var(--line-gold);
  box-shadow: 0 8px 32px rgba(201,165,91,.10);
  transform: translateY(-4px);
}
.esencia-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.esencia-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-soft);
}
.esencia-item:hover .esencia-img-wrap img { transform: scale(1.06); }
.esencia-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,8,4,.75) 0%, transparent 55%);
}
.esencia-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
@media (min-width: 720px) {
  .esencia-body { padding: 1.5rem 1.75rem 1.75rem; }
}
.esencia-title {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--cream);
  margin-bottom: .5rem;
}
.esencia-desc {
  font-size: clamp(.75rem, 1.3vw, .875rem);
  color: var(--cream-3);
  line-height: 1.7;
}

/* =============================================================
   10. VIEW TRANSITIONS (multi-page)
   ============================================================= */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .55s;
  animation-timing-function: var(--ease-out);
}
::view-transition-old(root) { animation-name: vtFadeOut; }
::view-transition-new(root) { animation-name: vtFadeIn; }
@keyframes vtFadeOut { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vtFadeIn { from { opacity: 0; transform: translateY(10px); } }

/* =============================================================
   11. REDUCED MOTION — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .hero-product { animation: none; transform: none; }
  .hero-product-glow { animation: none; }
  .hero-eyebrow-dot { animation: none; }
  @keyframes meshDrift { 0%, 100% { } }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 800;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.40);
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,.55);
}
.wa-float svg { width: 26px; height: 26px; }
