/* ================================================================
   MENVI EYEWEAR — Premium Minimalist Edition
   Identity: Black + White + Gray · Bodoni/Playfair + Montserrat
================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ============ TOKENS ============ */
:root {
  --black:     #0a0a0a;
  --black-2:   #1a1a1a;
  --black-3:   #2a2a2a;
  --white:     #ffffff;
  --off-white: #fafafa;
  --gray-50:   #f5f5f5;
  --gray-100:  #e8e8e8;
  --gray-200:  #d4d4d4;
  --gray-300:  #a3a3a3;
  --gray-400:  #737373;
  --gray-500:  #525252;
  --gray-600:  #404040;
  --border:    rgba(0,0,0,.08);
  --border-2:  rgba(0,0,0,.14);
  --border-light: rgba(255,255,255,.14);
  --max:       1280px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,.04);
  --shadow:    0 8px 30px rgba(0,0,0,.08);
  --shadow-md: 0 20px 50px rgba(0,0,0,.12);

  --font-serif:  'Playfair Display', 'Bodoni Moda', Georgia, serif;
  --font-bodoni: 'Bodoni Moda', 'Playfair Display', 'Didot', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;
  --font-mono:   'Questrial', system-ui, sans-serif;

  /* Premium accent — champagne gold (subtle) */
  --gold:        #c9a86a;
  --gold-soft:   #d9bf8a;
  --gold-deep:   #a98c54;
}

/* ============ FILM GRAIN TEXTURE (premium "analog" feel) ============ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: grainShift 8s steps(8) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-5%,-10%); }
  20%  { transform: translate(-15%,5%); }
  30%  { transform: translate(7%,-25%); }
  40%  { transform: translate(-5%,25%); }
  50%  { transform: translate(-15%,10%); }
  60%  { transform: translate(15%,0%); }
  70%  { transform: translate(0,15%); }
  80%  { transform: translate(3%,35%); }
  90%  { transform: translate(-10%,10%); }
  100% { transform: translate(0,0); }
}

/* ============ TYPOGRAPHY HELPERS ============ */
.section-title, h1, h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, transparent, #c9a86a, #d9bf8a, #c9a86a, transparent);
  z-index: 200;
  transition: width .15s ease-out;
  box-shadow: 0 0 18px rgba(201,168,106,.6);
}

/* ============ LOADER · PREMIUM ANIMATION ============ */
.loader {
  position: fixed; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--white);
  z-index: 9999;
  transition: opacity 1s cubic-bezier(.7,0,.3,1), visibility 1s, transform 1.1s cubic-bezier(.7,0,.3,1);
  overflow: hidden;
  padding: 60px 24px;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
}

/* Subtle radial vignette + sweep */
.loader::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,.06) 100%),
    linear-gradient(90deg, transparent, rgba(0,0,0,.04), transparent);
  background-size: 100% 100%, 200% 100%;
  background-position: center, -100% 0;
  animation: loaderSweep 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes loaderSweep {
  0%, 100% { background-position: center, -100% 0; }
  50%      { background-position: center, 200% 0; }
}

/* Decorative corner brackets */
.loader-corner {
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--black);
  opacity: 0;
  animation: cornerFade 1.2s cubic-bezier(.2,.6,.2,1) .2s forwards;
}
.loader-corner-tl { top: 32px; left: 32px; border-right: none; border-bottom: none; }
.loader-corner-tr { top: 32px; right: 32px; border-left: none; border-bottom: none; }
.loader-corner-bl { bottom: 32px; left: 32px; border-right: none; border-top: none; }
.loader-corner-br { bottom: 32px; right: 32px; border-left: none; border-top: none; }
@keyframes cornerFade {
  from { opacity: 0; transform: scale(.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* Top + bottom labels */
.loader-top-label,
.loader-bottom-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gray-400);
  opacity: 0;
  animation: labelFade 1.2s ease-out .6s forwards;
}
.loader-top-label    { top: 72px; }
.loader-bottom-label { bottom: 72px; }
@keyframes labelFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo wrapper */
.loader-logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Mask reveal for logo */
.loader-logo-mask {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.loader-logo-mask::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--white);
  transform-origin: left;
  animation: maskReveal 1.4s cubic-bezier(.7,0,.3,1) .3s forwards;
}
@keyframes maskReveal {
  0%   { transform: scaleX(1); transform-origin: left; }
  50%  { transform: scaleX(0); transform-origin: left; }
  51%  { transform: scaleX(0); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

.loader-img {
  width: 340px;
  aspect-ratio: 3 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: logoEnter 1.6s cubic-bezier(.2,.6,.2,1) forwards,
             logoBreathe 4s ease-in-out 2s infinite;
  opacity: 0;
  transform: scale(.94);
}
@keyframes logoEnter {
  0%   { opacity: 0; transform: scale(.94); filter: blur(8px); }
  60%  { opacity: 1; transform: scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes logoBreathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
  50%      { transform: scale(1.015); filter: drop-shadow(0 0 24px rgba(0,0,0,.06)); }
}

/* Shimmer sweep across the logo */
.loader-shimmer {
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent);
  pointer-events: none;
  animation: shimmerSweep 2.4s ease-in-out 1.6s infinite;
  z-index: 3;
}
@keyframes shimmerSweep {
  0%   { left: -60%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

/* Decorative line under logo */
.loader-line {
  width: 0;
  height: 1px;
  background: var(--black);
  animation: lineGrow 1.2s cubic-bezier(.2,.6,.2,1) 1.4s forwards;
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 100px; }
}

/* Tagline */
.loader-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  animation: tagFade 1s cubic-bezier(.2,.6,.2,1) 1.6s forwards;
}
@keyframes tagFade {
  to { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.loader-progress {
  position: absolute;
  bottom: 120px;
  display: flex; align-items: center;
  gap: 16px;
  opacity: 0;
  animation: progressFade .8s ease-out 1.2s forwards;
}
@keyframes progressFade {
  to { opacity: 1; }
}
.loader-bar {
  width: 240px; height: 1px;
  background: var(--gray-100);
  overflow: hidden;
  position: relative;
}
.loader-bar-fill {
  position: absolute;
  top: 0; left: 0;
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--black) 0%, #444 50%, var(--black) 100%);
  animation: barFill 2.4s cubic-bezier(.6,0,.4,1) forwards;
}
@keyframes barFill {
  0%   { width: 0%; }
  100% { width: 100%; }
}
.loader-counter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--black);
  min-width: 30px;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 520px) {
  .loader-corner { width: 28px; height: 28px; }
  .loader-corner-tl, .loader-corner-tr { top: 20px; }
  .loader-corner-tl, .loader-corner-bl { left: 20px; }
  .loader-corner-tr, .loader-corner-br { right: 20px; }
  .loader-corner-bl, .loader-corner-br { bottom: 20px; }
  .loader-top-label    { top: 50px; font-size: 8px; letter-spacing: 0.4em; }
  .loader-bottom-label { bottom: 50px; font-size: 8px; letter-spacing: 0.4em; }
  .loader-img { width: 240px; aspect-ratio: 3 / 1; }
  .loader-progress { bottom: 90px; }
  .loader-bar { width: 180px; }
  .loader-tagline { font-size: 12px; }
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 42px; left: 0; right: 0; z-index: 100;
  padding: 8px 0;
  transition: top .35s, background .35s, padding .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.nav.scrolled {
  top: 0;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 6px 0;
}
/* Light/dark text states */
.nav .nav-links a,
.nav .logo-img {
  color: var(--white);
}
.nav .nav-links a {
  color: rgba(255,255,255,.85);
}
.nav .nav-links a::after {
  background: var(--white);
}
.nav.scrolled .nav-links a {
  color: var(--gray-600);
}
.nav.scrolled .nav-links a::after {
  background: var(--black);
}
/* Logo filter swap: white at top, black when scrolled */
.nav .logo-img {
  filter: brightness(0) invert(1);
  transition: filter .35s;
}
.nav.scrolled .logo-img {
  filter: brightness(0);
}
/* Nav CTA inverts too */
.nav .nav-cta {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.nav .nav-cta:hover {
  background: transparent;
  color: var(--white);
}
.nav.scrolled .nav-cta {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.nav.scrolled .nav-cta:hover {
  background: transparent;
  color: var(--black);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo {
  display: inline-flex; align-items: center;
  transition: opacity .3s;
}
.logo:hover { opacity: .7; }
.logo-img {
  width: 110px;
  aspect-ratio: 3 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
  margin-left: auto; margin-right: 32px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-600);
  transition: color .25s;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width .3s;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all .3s;
  border: 1px solid var(--black);
}
.nav-cta:hover {
  background: transparent;
  color: var(--black);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  align-items: center;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform .3s, opacity .3s, background .3s;
}
.nav.scrolled .nav-burger span { background: var(--black); }

/* ============ SIDE STRIPE ============ */
.side-stripe {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  z-index: 50;
  pointer-events: none;
}
.side-stripe-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gray-300);
  text-transform: uppercase;
}

/* ============ SIDE INDICATOR ============ */
.side-indicator {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  z-index: 50;
  pointer-events: none;
  font-family: var(--font-mono);
  transition: opacity .4s;
}
.side-num {
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.05em;
}
.side-divider {
  width: 1px; height: 40px;
  background: var(--gray-200);
}
.side-total {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.1em;
}
.side-label {
  margin-top: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: transparent;
  color: var(--black);
}
.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}
.btn-full { width: 100%; }

.btn-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  padding: 4px 0;
  border-bottom: 1px solid var(--black);
  transition: gap .3s, color .3s;
}
.btn-link svg { width: 14px; height: 14px; }
.btn-link:hover { gap: 14px; }

/* ============ SECTION HEAD ============ */
.section-head {
  margin-bottom: 48px;
  position: relative;
}
.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.section-head[data-num]::before {
  content: attr(data-num);
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
}
.section-head[data-num]::after {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 22px; height: 1px;
  background: var(--gold);
}
.section-head.center[data-num]::before {
  padding-left: 0;
  text-align: center;
}
.section-head.center[data-num]::after { display: none; }
.section-head.center[data-num]::before {
  margin-left: auto; margin-right: auto;
}
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  position: relative;
  padding-left: 36px;
}
.kicker::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-head.center .kicker { padding-left: 0; }
.section-head.center .kicker::before {
  position: static;
  display: block;
  margin: 0 auto 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--black);
  margin-bottom: 20px;
}
.section-title-light { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.75;
  max-width: 680px;
}
.section-sub em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.section-head.center .section-sub { margin: 0 auto; }
.section-sub-light { color: rgba(255,255,255,.7); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

/* ============ MARQUEE TICKER ============ */
.marquee {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 105;
  height: 42px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.marquee.hidden {
  transform: translateY(-100%);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.marquee-dot {
  color: var(--gold);
  font-size: 10px;
  transform: rotate(0deg);
  animation: marqueeRotate 6s linear infinite;
  display: inline-block;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRotate {
  to { transform: rotate(360deg); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 135px 48px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.65);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.7) 100%);
  z-index: 2;
}
.hero-watermark { display: none; }
.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--max);
  width: 100%;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-flex; align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  margin: 0 0 18px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.05);
  max-width: calc(100% - 24px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.5);
  animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

/* ============ LENS FLARE ============ */
.lens-flare {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.lens-flare span {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  animation: lensDrift 14s ease-in-out infinite;
}
.lens-flare-1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #f5d28e, transparent 70%);
  top: 12%; left: 15%;
}
.lens-flare-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,.5), transparent 70%);
  bottom: 18%; right: 12%;
  animation-delay: -4s;
}
.lens-flare-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(150,180,255,.4), transparent 70%);
  top: 50%; left: 60%;
  animation-delay: -8s;
}
@keyframes lensDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.15); }
  66%      { transform: translate(-30px,40px) scale(.9); }
}

/* ============ FLOATING GLASSES SVG ============ */
.float-glasses {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,.15);
  pointer-events: none;
}
.float-glasses-1 {
  width: 140px;
  top: 15%; left: 10%;
  animation: glassFloat 10s ease-in-out infinite;
}
.float-glasses-2 {
  width: 180px;
  bottom: 18%; left: 7%;
  animation: glassFloat 12s ease-in-out infinite -3s;
  color: rgba(245,210,142,.18);
}
.float-glasses-3 {
  width: 160px;
  top: 22%; right: 8%;
  animation: glassFloat 11s ease-in-out infinite -6s;
  transform: rotate(15deg);
}
@keyframes glassFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-30px) rotate(8deg); }
}

/* ============ ANIMATED EYE ============ */
.hero-eye {
  position: absolute;
  top: 50%; right: -180px;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
  opacity: .08;
}
.hero-eye-pair {
  display: flex;
  gap: 24px;
}
.hero-eye-socket {
  width: 120px; height: 80px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0,0,0,.2);
}
.hero-eye-pupil {
  width: 36px; height: 36px;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .12s ease-out;
}
.hero-eye-pupil::after {
  content: '';
  position: absolute;
  top: 6px; left: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
}
.hero-eye-lid {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: #d4a574;
  transform-origin: top;
  transform: scaleY(0);
  animation: blink 6s ease-in-out infinite;
}
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(0); }
  95%           { transform: scaleY(1); }
}

/* Hero trust signals */
.hero-trust {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hero-trust-stars {
  color: #f5d28e;
  font-size: 13px;
  letter-spacing: 0.15em;
}

/* Pulse animation for CTA buttons */
.btn-pulse {
  position: relative;
  box-shadow: 0 0 0 0 rgba(255,255,255,.45);
  animation: btnPulse 2.6s ease-in-out infinite;
}
.btn-dark.btn-pulse {
  animation-name: btnPulseDark;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.45); }
  50%      { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
@keyframes btnPulseDark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,.35); }
  50%      { box-shadow: 0 0 0 14px rgba(0,0,0,0); }
}

/* Floating decorative product images */
.hero-float {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: heroFloat 8s ease-in-out infinite;
}
.hero-float img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(0.3) brightness(0.95);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.hero-float-1 {
  width: 180px; height: 240px;
  top: 18%; left: 8%;
  transform: rotate(-8deg);
  animation-delay: .8s;
}
.hero-float-2 {
  width: 200px; height: 260px;
  bottom: 18%; right: 8%;
  transform: rotate(7deg);
  animation-delay: 1.4s;
}
@keyframes heroFloat {
  0%   { opacity: 0; transform: translateY(40px) rotate(var(--r, -8deg)); }
  15%  { opacity: .9; transform: translateY(0) rotate(var(--r, -8deg)); }
  50%  { transform: translateY(-14px) rotate(var(--r, -8deg)); }
  100% { opacity: .9; transform: translateY(0) rotate(var(--r, -8deg)); }
}
.hero-float-1 { --r: -8deg; }
.hero-float-2 { --r: 7deg; }
.hero-title {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-logo-img {
  width: clamp(280px, 45vw, 560px);
  aspect-ratio: 3 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) invert(1) drop-shadow(0 4px 30px rgba(0,0,0,.4));
}
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 300;
}
.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 0 auto 28px;
  font-weight: 300;
  line-height: 1.6;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--white));
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  to { top: 100%; }
}

/* ============ DIVIDER GLASSES ============ */
.divider-glasses {
  display: flex; align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 48px;
  background: var(--white);
  max-width: var(--max);
  margin: 0 auto;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black), transparent);
  opacity: .15;
}
.divider-icon {
  width: 80px;
  color: var(--black);
  opacity: .6;
  animation: glassFloat 6s ease-in-out infinite;
}

/* ============ SNELLEN EYE CHART ============ */
.snellen {
  background: var(--off-white);
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.snellen-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  font-family: var(--font-bodoni);
  text-align: center;
  position: relative;
}
.snellen-row {
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 14px;
  font-feature-settings: "ss01";
}
.snellen-row-1 { font-size: clamp(64px, 9vw, 130px); }
.snellen-row-2 { font-size: clamp(48px, 6.5vw, 92px); }
.snellen-row-3 { font-size: clamp(36px, 5vw, 70px); }
.snellen-row-4 { font-size: clamp(28px, 4vw, 54px); }
.snellen-row-5 { font-size: clamp(22px, 3vw, 40px); }
.snellen-row-6 { font-size: clamp(16px, 2.2vw, 30px); }
.snellen-row {
  opacity: 0;
  transform: translateY(20px);
  animation: snellenReveal .7s cubic-bezier(.2,.6,.2,1) forwards;
}
.snellen-row-1 { animation-delay: .05s; }
.snellen-row-2 { animation-delay: .15s; }
.snellen-row-3 { animation-delay: .25s; }
.snellen-row-4 { animation-delay: .35s; }
.snellen-row-5 { animation-delay: .45s; }
.snellen-row-6 { animation-delay: .55s; }
@keyframes snellenReveal {
  to { opacity: 1; transform: translateY(0); }
}
.snellen-aside {
  position: absolute;
  bottom: 0; right: 48px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.snellen-num {
  display: block;
  font-family: var(--font-bodoni);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

/* ============ STATS SECTION ============ */
.stats {
  background: var(--white);
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: 'MENVI';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-bodoni);
  font-size: clamp(160px, 22vw, 320px);
  font-weight: 500;
  color: rgba(0,0,0,.025);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.stat {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}
.stat::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: var(--gray-100);
}
.stat:last-child::after { display: none; }
.stat-num {
  font-family: var(--font-bodoni);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  line-height: 1;
  color: var(--black);
  display: inline-flex;
  align-items: flex-start;
  letter-spacing: -0.02em;
}
.stat-num i {
  font-style: normal;
  font-size: 0.45em;
  color: var(--gray-400);
  margin-left: 4px;
  margin-top: 0.2em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 16px;
}

/* ============ SPEC STRIP ============ */
.spec-strip {
  background: var(--black);
  color: var(--white);
  padding: 28px 0;
}
.spec-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.spec {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 0 12px;
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 24px;
}
.spec:first-child { border-left: none; padding-left: 12px; }
.spec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.spec-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.spec-value i {
  font-style: italic;
  font-family: var(--font-serif);
  color: rgba(255,255,255,.7);
}
.spec-value-link {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color .3s;
  text-transform: none;
}
.spec-value-link:hover { color: var(--gray-300); }

/* ============ INTRO ============ */
.intro {
  padding: 100px 0 90px;
  background: var(--white);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.pilar-card {
  padding: 48px 36px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.pilar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.pilar-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.pilar-card:hover::before { transform: scaleX(1); }
.pilar-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.pilar-line {
  width: 32px; height: 1px;
  background: var(--black);
  margin-bottom: 24px;
}
.pilar-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.pilar-text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ============ PASOS · 3 STEPS ============ */
.pasos {
  background: var(--off-white);
  padding: 120px 0 110px;
  position: relative;
}
.pasos-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 50px 0 60px;
}
.paso {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.paso:hover {
  border-color: var(--black);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.paso-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-bodoni);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50%;
}
.paso-icon {
  width: 56px; height: 56px;
  margin: 24px auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
}
.paso-icon svg {
  width: 100%; height: 100%;
}
.paso-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}
.paso-text {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}
.paso-arrow {
  font-family: var(--font-bodoni);
  font-size: 30px;
  color: var(--gray-300);
  font-weight: 300;
}
.pasos-cta {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.pasos-trust {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 0;
  background: var(--black);
}
.cta-banner-wrap {
  position: relative;
  min-height: 460px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  z-index: 1;
}
.cta-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) brightness(0.45);
  animation: heroZoom 15s ease-in-out infinite alternate;
}
.cta-banner-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.6), rgba(0,0,0,.3));
  z-index: 2;
}
.cta-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 720px;
  padding: 80px 32px;
}
.cta-banner-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #f5d28e;
  padding: 8px 18px;
  border: 1px solid rgba(245,210,142,.5);
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  background: rgba(245,210,142,.08);
}
.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.cta-banner-title em {
  font-style: italic;
  color: #f5d28e;
}
.cta-banner-text {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-banner-text strong {
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cta-banner-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}

/* ============ FRASE DESTACADA ============ */
.frase-destacada {
  padding: 90px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.frase-destacada::before,
.frase-destacada::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.frase-destacada::before { top: 0; height: 60px; }
.frase-destacada::after  { bottom: 0; height: 60px; }
.frase-quote {
  display: block;
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 1;
  color: rgba(255,255,255,.15);
  margin-bottom: 24px;
}
.frase-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.4;
  max-width: 960px;
  margin: 0 auto 32px;
  letter-spacing: 0.01em;
}
.frase-text em {
  font-style: italic;
  color: var(--white);
}
.frase-author {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ============ SERVICIOS ============ */
.servicios {
  padding: 100px 0 90px;
  background: var(--off-white);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.svc-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  min-height: 280px;
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.svc-card-img {
  flex: 0 0 45%;
  overflow: hidden;
  position: relative;
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform .8s ease, filter .5s;
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.08);
  filter: grayscale(0);
}
.svc-card-body {
  flex: 1;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.svc-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.svc-card-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.25;
}
.svc-card-text {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 22px;
  line-height: 1.7;
}
.svc-card-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--black);
  transition: letter-spacing .3s;
}
.svc-card:hover .svc-card-link {
  letter-spacing: 0.4em;
}

/* ============ MISIÓN / VISIÓN ============ */
.mision-vision {
  background: var(--white);
  padding: 90px 0;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.mv-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mv-line {
  height: 1px;
  background: var(--black);
  width: 100%;
}
.mv-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.01em;
  margin: 0;
}
.mv-text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin: 0;
}

/* ============ PROPUESTA ============ */
.propuesta {
  padding: 0;
  background: var(--white);
}
.propuesta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.propuesta-img {
  position: relative;
  overflow: hidden;
}
.propuesta-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}
.propuesta-tag {
  position: absolute;
  top: 40px; left: 40px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,.95);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--black);
}
.propuesta-tag .dot {
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% { opacity: .3; }
}
.propuesta-content {
  padding: 100px 80px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.propuesta-content .section-title {
  margin-bottom: 28px;
}
.propuesta-content .plus {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gray-400);
  font-weight: 300;
  margin: 0 6px;
}
.propuesta-text {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}
.propuesta-list {
  list-style: none;
  margin-bottom: 40px;
}
.propuesta-list li {
  display: flex; align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}
.propuesta-list li:last-child { border-bottom: none; }
.propuesta-list svg {
  width: 18px; height: 18px;
  color: var(--black);
  flex-shrink: 0;
}

/* ============ PRODUCTOS ============ */
.productos {
  padding: 100px 0 90px;
  background: var(--off-white);
}
.productos-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.prod-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.prod-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.prod-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform .8s ease, filter .5s;
}
.prod-card:hover .prod-card-img img {
  transform: scale(1.06);
  filter: grayscale(0);
}
.prod-card-badge {
  position: absolute;
  top: 24px; right: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black);
}
.prod-card-body {
  padding: 36px 32px 32px;
}
.prod-card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.prod-card-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ============ LOOKBOOK EDITORIAL ============ */
.lookbook {
  background: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.lookbook-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.lookbook .section-head[data-num]::before {
  content: 'EDITORIAL';
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 50px);
  gap: 16px;
  margin-top: 60px;
}
.lb-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.lb-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35);
  transition: transform .9s cubic-bezier(.2,.6,.2,1), filter .6s;
}
.lb-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0);
}
.lb-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7));
}
.lb-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  color: var(--white);
}
.lb-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.lb-caption h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.lb-item-1 {
  grid-column: 1 / span 5;
  grid-row: 1 / span 8;
}
.lb-item-2 {
  grid-column: 6 / span 4;
  grid-row: 1 / span 6;
}
.lb-item-3 {
  grid-column: 6 / span 7;
  grid-row: 9 / span 4;
}
.lb-text {
  grid-column: 10 / span 3;
  grid-row: 1 / span 6;
  background: var(--off-white);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
}
.lb-text-num {
  font-family: var(--font-bodoni);
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  color: var(--black);
}
.lb-text-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-600);
  margin: 24px 0;
}

/* ============ MAGNETIC BUTTON ============ */
.btn-magnetic {
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.6,.2,1), background .35s, color .35s, border-color .35s;
}
.btn-magnetic svg {
  width: 16px; height: 16px;
  transition: transform .35s;
}
.btn-magnetic:hover svg {
  transform: translateX(4px);
}

/* ============ VALORES ============ */
.valores {
  padding: 100px 0 90px;
  background: var(--white);
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.valor {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--border);
  transition: all .4s;
}
.valor:hover {
  background: var(--off-white);
  border-color: var(--black);
  transform: translateY(-4px);
}
.valor-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
}
.valor-icon svg {
  width: 100%; height: 100%;
}
.valor h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.valor p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============ TESTIMONIOS ============ */
.testimonios {
  padding: 100px 0 90px;
  background: var(--off-white);
}
.testimonios-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.test-card {
  background: var(--white);
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: all .4s;
  position: relative;
}
.test-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 28px;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--gray-100);
}
.test-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.test-stars {
  color: var(--black);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.test-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}
.test-author {
  display: flex; align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.test-author b {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  color: var(--black);
}
.test-author span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ============ GALERIA ============ */
.galeria {
  padding: 100px 0 90px;
  background: var(--white);
}
.galeria-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  margin-top: 60px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gal-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: transform .8s ease, filter .5s;
}
.gal-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0);
}
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5));
  opacity: .8;
  transition: opacity .4s;
}
.gal-item:hover::after { opacity: 1; }
.gal-item-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
}

/* ============ MARCAS ============ */
.marcas {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.marcas-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 32px;
}
.marcas-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.marcas-list {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}
.marcas-list .brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  transition: color .3s, transform .3s;
  cursor: default;
}
.marcas-list .brand:hover {
  color: var(--black);
  transform: translateY(-2px);
}

/* ============ MEDIOS DE PAGO ============ */
.pagos {
  background: var(--white);
  padding: 48px 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pagos-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 28px;
}
.pagos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 32px;
}
.pago-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  opacity: 0.75;
  transition: opacity .25s;
}
.pago-item:hover { opacity: 1; }
.pago-item svg { height: 28px; width: auto; display: block; }
.pago-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}
@media (max-width: 860px) {
  .pagos { padding: 36px 0 32px; }
  .pagos-track { gap: 18px 24px; }
  .pago-item svg { height: 22px; }
  .pago-sep { height: 22px; }
}

/* ============ CONTACTO ============ */
.contacto {
  padding: 100px 0 90px;
  background: var(--white);
}
.contacto-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  margin-top: 60px;
}
.contacto-info {
  display: flex; flex-direction: column;
  gap: 24px;
  align-content: flex-start;
}
.contacto-item {
  display: flex; align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: all .3s;
}
.contacto-item:hover {
  background: var(--white);
  border-color: var(--black);
}
.contacto-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--black);
  color: var(--black);
}
.contacto-icon svg {
  width: 22px; height: 22px;
}
.contacto-item small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.contacto-item b {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
  letter-spacing: 0.01em;
}

.contacto-form {
  padding: 48px 44px;
  background: var(--black);
  color: var(--white);
}
.contacto-form h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.field {
  position: relative;
  margin-bottom: 24px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-row .field { margin-bottom: 0; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: border-color .3s;
  font-family: var(--font-sans);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--white);
}
.field select option {
  background: var(--black);
  color: var(--white);
}
.field label {
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  pointer-events: none;
  transition: all .3s;
  font-weight: 300;
}
.field label.floating,
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:valid + label,
.field select:focus + label {
  top: -8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* Extra space above fields that have a select with floating label
   so the label doesn't collide with the previous row's input */
.contacto-form .field-row + .field,
.contacto-form .field:has(select) {
  margin-top: 28px;
}
/* Reorder so label always sits above select with its own breathing room */
.contacto-form .field:has(select) {
  padding-top: 4px;
}
.contacto-form .field:has(select) label.floating {
  top: -14px;
}
.contacto-form .btn-dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  margin-top: 12px;
}
.contacto-form .btn-dark:hover {
  background: transparent;
  color: var(--white);
}

/* ============ CIERRE ============ */
.cierre {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}
.cierre-frase {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.cierre-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  max-width: 1000px;
  margin: 0 auto 48px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

/* ============ FOOTER ============ */
.footer {
  background: #050505;
  color: var(--white);
  padding: 80px 0 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col-brand {
  max-width: 380px;
}
.logo-footer {
  margin-bottom: 24px;
}
.logo-img-footer {
  width: 180px;
  aspect-ratio: 3 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) invert(1);
}
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 12px;
}
.footer-tag em {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 6px 0;
  transition: color .3s, padding-left .3s;
}
.footer-col a:hover {
  color: var(--white);
  padding-left: 6px;
}
.social {
  display: flex; gap: 10px;
  margin-bottom: 16px;
}
.social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 0;
  transition: all .3s;
}
.social a:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  padding-left: 0;
}
.footer-handle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.5);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 48px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  box-shadow: 0 12px 32px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 40px rgba(37,211,102,.55);
}
.wa-float svg {
  width: 32px; height: 32px;
  position: relative; z-index: 2;
}
.wa-float-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: 1;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-float-tooltip {
  position: absolute;
  right: 72px;
  background: var(--black);
  color: var(--white);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  border-radius: 4px;
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--black);
}
.wa-float:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============ MOBILE STICKY CTA ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px;
  gap: 10px;
  z-index: 95;
  box-shadow: 0 -10px 30px rgba(0,0,0,.08);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.2,.6,.2,1);
}
.mobile-cta.visible {
  transform: translateY(0);
}
.mobile-cta-wa {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0;
  border-radius: 8px;
}
.mobile-cta-wa svg { width: 26px; height: 26px; }
.mobile-cta-main {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 0 18px;
  height: 50px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background .3s;
}
.mobile-cta-main svg { width: 16px; height: 16px; }
.mobile-cta-main:hover {
  background: #1a1a1a;
}

/* ============ 3D TILT CARDS ============ */
.prod-card, .svc-card, .pilar-card, .test-card, .paso, .lb-item {
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}
.tilt-inner {
  transition: transform .35s cubic-bezier(.2,.6,.2,1);
  transform-style: preserve-3d;
}

/* Premium gradient sheen on hover */
.prod-card::before,
.svc-card::before,
.lb-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 80%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  z-index: 4;
  pointer-events: none;
  transition: left .9s cubic-bezier(.2,.6,.2,1);
}
.prod-card:hover::before,
.svc-card:hover::before,
.lb-item:hover::before {
  left: 130%;
}

/* Glass morphism on key elements */
.contacto-item, .paso {
  position: relative;
  overflow: hidden;
}
.paso::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--black), #f5d28e, var(--black));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s ease;
}
.paso:hover::before {
  transform: scaleX(1);
}

/* Section number floating decoration */
.section-head[data-num]::before {
  display: inline-block;
}

/* Glow effect on hero brand image */
.hero-logo-img {
  animation: heroGlow 4s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { filter: brightness(0) invert(1) drop-shadow(0 4px 30px rgba(0,0,0,.4)) drop-shadow(0 0 20px rgba(255,255,255,.2)); }
  to   { filter: brightness(0) invert(1) drop-shadow(0 4px 30px rgba(0,0,0,.4)) drop-shadow(0 0 60px rgba(255,255,255,.5)); }
}

/* Animated underline on links */
.nav-links a::after,
.kicker::before {
  transition: width .4s cubic-bezier(.2,.6,.2,1);
}

/* Premium image reveal */
.prod-card-img, .svc-card-img, .lb-item, .gal-item {
  position: relative;
  overflow: hidden;
}
.prod-card-img::after,
.svc-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(.7,0,.3,1);
  z-index: 3;
}
.in .prod-card-img::after,
.in .svc-card-img::after,
.prod-card.in .prod-card-img::after,
.svc-card.in .svc-card-img::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* Premium scroll-triggered text reveal */
.split-text {
  display: inline-block;
  overflow: hidden;
}
.split-char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.in .split-char,
.split-text.in .split-char {
  transform: translateY(0);
}

/* ============ PREMIUM TEXT REVEAL ============ */
.split-line {
  display: block;
  overflow: hidden;
  line-height: 1.15;
}
.split-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.6,.2,1);
  will-change: transform;
}
.split-line.in > span { transform: translateY(0); }

.section-title.split-title {
  display: block;
}
.section-title.split-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.section-title.split-title .word > span {
  display: inline-block;
  transform: translateY(110%) skewY(6deg);
  transition: transform .9s cubic-bezier(.2,.6,.2,1);
  transition-delay: var(--d, 0s);
  will-change: transform;
}
.section-title.split-title.in .word > span {
  transform: translateY(0) skewY(0);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(.2,.6,.2,1), transform 1.1s cubic-bezier(.2,.6,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ PREMIUM HOVER LIFT ============ */
.prod-card, .svc-card, .pilar-card, .test-card {
  transition: transform .55s cubic-bezier(.2,.6,.2,1),
              box-shadow .55s cubic-bezier(.2,.6,.2,1),
              border-color .4s;
}
.prod-card:hover, .svc-card:hover, .pilar-card:hover, .test-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.18),
              0 18px 30px -10px rgba(201,168,106,.06);
}

/* ============ GOLD ACCENTS · subtle premium touches ============ */
.test-stars,
.hero-trust-stars { color: var(--gold) !important; }
.hero-badge-dot { background: #4ade80; box-shadow: 0 0 12px rgba(74,222,128,.5); }
.btn-link { border-bottom-color: var(--gold); color: var(--black); }
.btn-link:hover { color: var(--gold-deep); }
.prod-card-badge { color: var(--gold-deep); border: 1px solid var(--gold); }

/* Underline animation under nav links — gold accent */
.nav-links a::after { background: var(--gold) !important; }

/* CTA banner gold elements stay */
.cta-banner-title em { color: var(--gold-soft) !important; }
.cta-banner-kicker {
  color: var(--gold-soft) !important;
  border-color: rgba(201,168,106,.5) !important;
  background: rgba(201,168,106,.08) !important;
}

/* ============ PREMIUM CHIP / TAG ============ */
.tag-premium {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: rgba(201,168,106,.06);
}
.tag-premium::before {
  content: '✦';
  color: var(--gold);
  font-size: 9px;
  animation: marqueeRotate 8s linear infinite;
}

/* ============ ELEGANT SECTION DIVIDER · drawn line ============ */
section + section {
  position: relative;
}
section + section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  opacity: 0;
}
section.in + section::before,
section + section.divider-in::before {
  width: 80px;
  opacity: .5;
  transition: width 1.2s cubic-bezier(.2,.6,.2,1), opacity 1.2s;
}

/* ============ RESPONSIVE ============ */
/* ============ RESPONSIVE · TABLET ============ */
@media (max-width: 1100px) {
  .nav-links { gap: 24px; }
  .pilares-grid, .prod-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .side-stripe, .side-indicator { display: none; }
}

/* ============ RESPONSIVE · MOBILE ============ */
@media (max-width: 860px) {
  /* === MARQUEE === */
  .marquee {
    padding: 8px 0;
    height: 32px;
  }
  .marquee-item {
    font-size: 9px;
    letter-spacing: 0.25em;
  }
  .marquee-track { gap: 18px; }

  /* === NAVBAR === */
  .nav {
    top: 32px;
    padding: 5px 0;
  }
  .nav.scrolled { padding: 5px 0; }
  .nav-inner {
    padding: 0 18px;
    gap: 12px;
  }
  .logo-img { width: 78px; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,10,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%);
    transition: transform .4s cubic-bezier(.2,.6,.2,1);
    margin: 0;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    color: rgba(255,255,255,.85) !important;
    font-size: 13px;
    padding: 6px 0;
  }
  .nav.scrolled .nav-links a { color: rgba(255,255,255,.85) !important; }
  .nav-burger { display: flex; }
  .nav-burger span { background: var(--white); }
  .nav.scrolled .nav-burger span { background: var(--black); }
  /* Compact AGENDAR CITA button on mobile — grouped with burger on the right */
  .nav-cta {
    padding: 7px 12px;
    font-size: 8.5px;
    letter-spacing: 0.12em;
    gap: 4px;
    margin-left: auto;
    margin-right: 10px;
    flex-shrink: 0;
  }
  .nav-inner {
    justify-content: flex-start;
    gap: 8px;
  }
  /* Logo in navbar — full image visible (no aggressive crop) */
  .nav .logo-img {
    aspect-ratio: auto;
    object-fit: contain;
    width: 120px;
    height: 48px;
  }

  /* === HERO === */
  .hero {
    padding: 95px 20px 50px;
    min-height: 0;
  }
  .hero-badge {
    font-size: 8.5px;
    letter-spacing: 0.25em;
    padding: 7px 14px;
    margin: 0 0 20px;
    gap: 8px;
  }
  .hero-badge-dot { width: 7px; height: 7px; }
  .hero-logo-img {
    width: clamp(220px, 75vw, 320px);
  }
  .hero-sub {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .hero-desc {
    font-size: 13px;
    line-height: 1.55;
    margin: 0 auto 22px;
    padding: 0 4px;
  }
  .hero-actions {
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .hero-trust {
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }
  .hero-trust-stars { font-size: 12px; }
  .hero-scroll { display: none; }

  /* === GENERAL SECTION PADDINGS === */
  .intro, .servicios, .productos, .testimonios, .galeria, .contacto, .stats {
    padding: 60px 0;
  }
  .stats { padding: 50px 0; }

  /* === CONTAINERS === */
  .container,
  .productos-wrap,
  .testimonios-wrap,
  .galeria-wrap,
  .contacto-wrap {
    padding: 0 20px;
  }

  /* === SECTION HEADS === */
  .section-head {
    margin-bottom: 36px;
  }
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .section-sub {
    font-size: 14px;
    line-height: 1.55;
  }
  .kicker {
    font-size: 10px;
    letter-spacing: 0.32em;
    padding-left: 28px;
  }
  .kicker::before { width: 18px; }
  .section-head[data-num]::before {
    font-size: 10px;
    letter-spacing: 0.4em;
    margin-bottom: 14px;
  }

  /* === STATS === */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .stat { padding: 14px 6px; }
  .stat::after { display: none; }
  .stat-num { font-size: clamp(36px, 11vw, 56px); }
  .stat-label { font-size: 9.5px; letter-spacing: 0.22em; margin-top: 10px; }

  /* === HORIZONTAL SCROLL CARDS === */
  .h-scroll {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 6px 20px 20px;
    margin: 0 -20px;
    scroll-padding: 20px;
  }
  .h-scroll::-webkit-scrollbar { display: none; }
  .h-scroll > * {
    flex: 0 0 80%;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .h-scroll::after { content: ''; flex: 0 0 6px; }

  /* h-scroll-pair: 2 cards per view */
  .h-scroll-pair { gap: 10px; }
  .h-scroll-pair > * {
    flex: 0 0 calc(50% - 12px);
    max-width: 200px;
  }
  .h-scroll-pair .pilar-card { padding: 22px 18px; }
  .h-scroll-pair .pilar-title { font-size: 20px; }
  .h-scroll-pair .pilar-text { font-size: 12px; line-height: 1.55; }
  .h-scroll-pair .pilar-num { font-size: 10px; margin-bottom: 12px; letter-spacing: 0.32em; }
  .h-scroll-pair .pilar-line { margin-bottom: 16px; }

  /* Scroll hint label */
  .section-head + .h-scroll { position: relative; }
  .section-head::after {
    content: '← Desliza →';
    display: block;
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--gray-300);
    text-transform: uppercase;
  }
  .section-head.center::after { text-align: center; }

  /* === SERVICES CARDS === */
  .svc-card { flex-direction: column; min-height: 0; }
  .svc-card-img {
    flex: 0 0 auto;
    height: 180px;
    width: 100%;
  }
  .svc-card-body { padding: 22px 20px; }
  .svc-card-title { font-size: 22px; }
  .svc-card-text { font-size: 13px; margin-bottom: 16px; }
  .svc-card-num { font-size: 10px; margin-bottom: 12px; }

  /* === MISIÓN / VISIÓN === */
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mision-vision { padding: 60px 0; }

  /* === PROPUESTA SPLIT === */
  .propuesta-wrap {
    display: block;
  }
  .propuesta-img {
    width: 100%;
    height: 320px;
    min-height: 0;
  }
  .propuesta-content {
    padding: 50px 20px;
  }
  .propuesta-text { font-size: 14px; }
  .propuesta-list li { font-size: 13px; padding: 12px 0; }

  /* === PRODUCT CARDS === */
  .prod-card-img { height: 240px; }
  .prod-card-body { padding: 26px 22px 24px; }
  .prod-card-title { font-size: 22px; }
  .prod-card-text { font-size: 13px; margin-bottom: 20px; }

  /* === GALLERY === */
  .gal-grid {
    grid-template-columns: none;
    grid-auto-rows: auto;
  }
  .h-scroll.gal-grid > .gal-item {
    height: 220px;
    aspect-ratio: auto;
  }
  .h-scroll.gal-grid > .gal-item.wide {
    flex: 0 0 calc(100% - 24px);
    max-width: 320px;
    height: 260px;
  }
  .gal-item-tag { font-size: 9px; padding: 5px 10px; bottom: 14px; left: 14px; }

  /* === TESTIMONIALS === */
  .test-card { padding: 32px 24px; }
  .test-text { font-size: 14px; line-height: 1.6; }
  .test-card::before { font-size: 60px; }
  .test-avatar { width: 38px; height: 38px; font-size: 11px; }

  /* === CTA BANNER === */
  .cta-banner-wrap { min-height: 360px; }
  .cta-banner-content { padding: 60px 20px; }
  .cta-banner-title { font-size: clamp(28px, 8vw, 40px); }
  .cta-banner-text { font-size: 14px; margin-bottom: 28px; }
  .cta-banner-kicker { font-size: 9px; padding: 6px 14px; margin-bottom: 20px; }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .cta-banner-actions .btn { width: 100%; }

  /* === CONTACTO === */
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contacto-item { padding: 18px; gap: 14px; }
  .contacto-icon { width: 38px; height: 38px; }
  .contacto-icon svg { width: 18px; height: 18px; }
  .contacto-item small { font-size: 9px; letter-spacing: 0.28em; }
  .contacto-item b { font-size: 14px; }
  .contacto-form { padding: 30px 22px; }
  .contacto-form h3 { font-size: 24px; margin-bottom: 24px; }

  /* === FOOTER === */
  .footer { padding: 50px 0 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px 40px;
  }
  .footer-col-brand { max-width: none; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }
  .logo-img-footer { width: 140px; }

  /* === FLOATING WHATSAPP === */
  .wa-float {
    bottom: 86px;
    right: 16px;
    width: 50px; height: 50px;
  }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-float-tooltip { display: none; }
  .wa-float-pulse { animation-duration: 2.6s; }

  /* === MOBILE STICKY CTA === */
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }

  /* === BUTTONS === */
  .btn { padding: 14px 24px; font-size: 11px; }

  /* === FORM === */
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin-bottom: 20px; }
  .field-row .field:last-child { margin-bottom: 0; }
  .contacto-form .field-row + .field,
  .contacto-form .field:has(select) { margin-top: 20px; }
}

/* ============ RESPONSIVE · SMALL MOBILE ============ */
@media (max-width: 420px) {
  .hero { padding: 90px 16px 40px; }
  .hero-logo-img { width: clamp(200px, 72vw, 280px); }
  .hero-badge { font-size: 8px; padding: 6px 12px; letter-spacing: 0.2em; }
  .hero-sub { font-size: 15px; }
  .hero-desc { font-size: 12.5px; }
  .container,
  .productos-wrap,
  .testimonios-wrap,
  .galeria-wrap,
  .contacto-wrap { padding: 0 16px; }
  .stats-grid { gap: 24px 12px; }
  .stat-num { font-size: clamp(32px, 12vw, 48px); }
  .stat-label { font-size: 9px; letter-spacing: 0.18em; }
  .h-scroll { padding: 6px 16px 18px; margin: 0 -16px; }
  .h-scroll > * { flex: 0 0 82%; max-width: 280px; }
  .h-scroll-pair > * { flex: 0 0 calc(50% - 10px); max-width: 180px; }
  .h-scroll-pair .pilar-card { padding: 20px 16px; }
  .h-scroll-pair .pilar-title { font-size: 18px; }
  .section-title { font-size: clamp(1.4rem, 7vw, 2rem); }
  .footer-inner { padding: 0 16px 36px; }
  .footer-bottom { padding: 18px 16px; }
  .mobile-cta-main { font-size: 10px; padding: 0 12px; letter-spacing: 0.15em; gap: 6px; }
  .mobile-cta-wa { width: 46px; height: 46px; }
  .mobile-cta-wa svg { width: 22px; height: 22px; }
  .mobile-cta { padding: 10px; gap: 8px; }
  .wa-float { bottom: 76px; width: 46px; height: 46px; }
  .wa-float svg { width: 24px; height: 24px; }
  .nav .logo-img { width: 108px; height: 43px; }
  .nav-cta {
    padding: 6px 10px;
    font-size: 8px;
    letter-spacing: 0.08em;
    margin-right: 8px;
  }
  .marquee-item { font-size: 8px; letter-spacing: 0.2em; }
  .marquee-track { gap: 14px; }
  .propuesta-img { height: 260px; }
  .propuesta-content { padding: 40px 16px; }
  .contacto-form { padding: 24px 18px; }
  .cta-banner-content { padding: 50px 16px; }
}
