/* ═══════════════════════════════════════════════════
   CHIC & TONIC — Premium Stylesheet
   v2026.06.08
════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────────── */
:root {
  --black:      #000000;
  --black-2:    #0a0a0a;
  --black-3:    #111111;
  --black-4:    #1a1a1a;
  --yellow:     #f8cb0a;
  --yellow-2:   #e8bb00;
  --yellow-dark:#b89000;
  --white:      #ffffff;
  --grey-1:     #f5f5f5;
  --grey-2:     #e0e0e0;
  --grey-3:     #aaaaaa;
  --grey-4:     #555555;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-expo:   cubic-bezier(0.19, 1, 0.22, 1);

  --nav-h:       90px;
  --container:   1240px;
  --section-pad: 120px;
}

/* ─── SKIP TO CONTENT — Accessibility + SEO ─────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 99999;
  background: var(--yellow);
  color: var(--black);
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 0 3px 3px;
  text-decoration: none;
  transition: top 0.2s;
  outline: 3px solid transparent;
}
.skip-link:focus {
  top: 0;
  outline-color: var(--black);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ─── DEFENSIVE: split+reveal conflict ──────────── */
.reveal[data-split] { opacity: 1; transform: none; }

/* ─── CONTAINER ─────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
.section-kicker {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--yellow); }
.italic { font-style: italic; }
.accent { color: var(--yellow); }

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.28s var(--ease-out), color 0.28s var(--ease-out), transform 0.22s var(--ease-out), box-shadow 0.28s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--white);
  box-shadow: 0 10px 40px rgba(248,203,10,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}
.btn-accent {
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
}
.btn-accent:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(248,203,10,0.25);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  gap: 0.75rem;
}
.btn-wa:hover {
  background: #1da851;
  box-shadow: 0 10px 40px rgba(37,211,102,0.3);
}
.btn-large {
  padding: 1.1rem 2.4rem;
  font-size: 0.78rem;
}

/* ─── SECTION BASE ───────────────────────────────── */
.section-dark    { background: var(--black-2); }
.section-black   { background: var(--black); }
.section-pure-black { background: #000; }

/* ─── REVEAL ANIMATIONS ──────────────────────────── */
.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-fade  { transform: translateY(20px); }

.reveal-up.is-visible,
.reveal-fade.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* ─── SPLASH LOADER ──────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashSafety 0.01s 4.5s forwards;
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease-out);
}

/* Inner wrapper — centrado absoluto */
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Logo wrapper — controla el glow */
.splash-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashLogoIn 1.2s var(--ease-expo) 0.2s both;
}

/* Glow dorado muy sutil detrás del logo */
.splash-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    ellipse at center,
    rgba(248, 203, 10, 0.12) 0%,
    rgba(248, 203, 10, 0.04) 45%,
    transparent 72%
  );
  border-radius: 50%;
  animation: splashGlowPulse 2.4s ease-in-out 0.8s infinite;
  pointer-events: none;
}

/* Imagen del logo */
.splash-logo-img {
  display: block;
  width: auto;
  height: clamp(110px, 18vw, 200px);
  object-fit: contain;
  /* El fondo negro del PNG desaparece sobre el splash negro */
  mix-blend-mode: screen;
  filter: brightness(1.08) contrast(1.02);
  /* La animación ya la hereda del wrapper */
}

/* Barra de progreso */
.splash-bar {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  opacity: 0;
  animation: splashBarAppear 0.4s ease 0.9s forwards;
}
.splash-bar-fill {
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(248, 203, 10, 0.6),
    var(--yellow)
  );
  width: 0;
  animation: splashFill 2s var(--ease-expo) 1s forwards;
}

/* ── Keyframes del Splash ── */

/* Fade in + scale up muy sutil — sensación premium */
@keyframes splashLogoIn {
  0%   { opacity: 0; transform: scale(0.94); }
  60%  { opacity: 1; transform: scale(1.015); }
  100% { opacity: 1; transform: scale(1); }
}

/* Glow pulsante mientras carga */
@keyframes splashGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* Barra aparece con retardo */
@keyframes splashBarAppear {
  to { opacity: 1; }
}

/* Barra se llena */
@keyframes splashFill { to { width: 100%; } }

/* Responsive */
@media (max-width: 768px) {
  .splash-logo-img { height: clamp(110px, 30vw, 150px); }
  .splash-bar { width: 140px; }
}

/* ─── NAVIGATION ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.is-scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.nav-logo:hover {
  opacity: 0.85;
  transform: scale(1.02);
}
.nav-logo-img {
  display: block;
  width: auto;
  height: 68px;
  object-fit: contain;
  object-position: left center;
  /* black background blends into dark navbar */
  mix-blend-mode: screen;
  filter: brightness(1.05);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--yellow);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.25s, transform 0.22s !important;
}
.nav-cta:hover { background: var(--white) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  padding: 2rem clamp(1.25rem, 5vw, 2.5rem) 2.5rem;
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile a:hover { color: var(--yellow); padding-left: 0.5rem; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%),
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  padding-top: var(--nav-h);
  padding-bottom: 4rem;
}
.hero-kicker {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.hero-title-line {
  display: block;
}
.hero-title-line.italic { font-style: italic; }
.hero-title-line.accent { color: var(--yellow); }
.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}
.hero-scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Hero line reveal */
.hero-title-line {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.hero-title-line.is-visible { opacity: 1; transform: none; }

/* ─── FILOSOFÍA ──────────────────────────────────── */
.filosofia {
  padding-block: var(--section-pad);
}
.filosofia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.filosofia-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.filosofia-img img {
  transition: transform 0.8s var(--ease-out);
}
.filosofia-img:hover img { transform: scale(1.04); }
.filosofia-img-label {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--yellow);
  color: var(--black);
  padding: 1.2rem 1.5rem;
  text-align: center;
  border-radius: 2px;
}
.filosofia-img-label span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.filosofia-img-label strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.1rem;
}
.filosofia-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.filosofia-title em { font-style: italic; color: var(--yellow); }
.filosofia-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 44ch;
}
.filosofia-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

/* ─── EXPERIENCIAS ───────────────────────────────── */
.experiencias { padding-block: var(--section-pad); }
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-kicker { justify-content: center; display: block; text-align: center; }
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.exp-card { position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; }
.exp-card .exp-card-media { aspect-ratio: 4/3; }
.exp-card-media { overflow: hidden; }
.exp-card-media img { transition: transform 0.7s var(--ease-out); }
.exp-card:hover .exp-card-media img { transform: scale(1.06); }
.exp-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  transform: translateY(0);
  transition: transform 0.5s var(--ease-out);
}
.exp-card:hover .exp-card-content { transform: translateY(-4px); }
.exp-card-num {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.5rem;
}
.exp-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.exp-card-content p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.exp-card-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  transition: letter-spacing 0.3s;
}
.exp-card-link:hover { letter-spacing: 0.2em; }

/* ─── SERVICIOS ──────────────────────────────────── */
.servicios { padding-block: var(--section-pad); }

/* Animación propia para las tarjetas — no depende del IntersectionObserver */
@keyframes srvFadeUp {
  from { opacity: 0; transform: translateY(38px); }
  to   { opacity: 1; transform: translateY(0); }
}
.servicios .servicio-card {
  animation: srvFadeUp 0.65s var(--ease-out) both;
}
.servicios .servicio-card:nth-child(1) { animation-delay: 0.05s; }
.servicios .servicio-card:nth-child(2) { animation-delay: 0.12s; }
.servicios .servicio-card:nth-child(3) { animation-delay: 0.19s; }
.servicios .servicio-card:nth-child(4) { animation-delay: 0.26s; }
.servicios .servicio-card:nth-child(5) { animation-delay: 0.33s; }
.servicios .servicio-card:nth-child(6) { animation-delay: 0.40s; }
.servicios .servicio-card:nth-child(7) { animation-delay: 0.47s; }
.servicios .servicio-card:nth-child(8) { animation-delay: 0.54s; }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.servicio-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 2.75rem 1.75rem 2.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}
.servicio-card:hover {
  transform: translateY(-7px);
  border-color: rgba(248,203,10,0.35);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(248,203,10,0.08);
}
/* Línea dorada inferior */
.servicio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--yellow);
  transform: translateX(-50%);
  transition: width 0.5s var(--ease-out);
}
.servicio-card:hover::after { width: 60%; }
/* Ícono circular */
.servicio-icon {
  width: 80px; height: 80px;
  border: 1.5px solid rgba(248,203,10,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--yellow);
  transition: background 0.45s var(--ease-out), transform 0.45s var(--ease-out), border-color 0.45s;
}
.servicio-card:hover .servicio-icon {
  background: rgba(248,203,10,0.07);
  transform: scale(1.08);
  border-color: var(--yellow);
}
.servicio-icon svg { width: 28px; height: 28px; }
.servicio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
/* Descripción oculta, aparece en hover */
.servicio-card:not(.servicio-card-cta) p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out) 0.06s, transform 0.4s var(--ease-out) 0.06s;
}
.servicio-card:not(.servicio-card-cta):hover p {
  opacity: 1;
  transform: translateY(0);
}
/* Tarjeta CTA */
.servicio-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
}
.servicio-card-cta:hover {
  box-shadow: 0 28px 70px rgba(248,203,10,0.25) !important;
}
.servicio-card-cta::after { display: none; }
.servicio-cta-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.35;
  opacity: 1 !important;
  transform: none !important;
}
.servicio-card-cta .btn-primary {
  background: var(--black);
  color: var(--yellow);
}
.servicio-card-cta .btn-primary:hover {
  background: var(--black-4);
  color: var(--white);
}

.kicker-light { color: var(--yellow); }

/* ─── BEST SELLERS (Catering / Mixología) ───────── */
.bestsellers { padding-block: var(--section-pad); }
.bestsellers-intro {
  max-width: 56ch;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.bestsellers-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0 3.5rem;
}
.bestsellers-mixologia .bestsellers-grid { grid-template-columns: 1fr 1fr 2fr; }

@keyframes bsFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bs-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  animation: bsFadeUp 0.65s var(--ease-out) both;
}
.bs-card:nth-child(1) { animation-delay: 0.05s; }
.bs-card:nth-child(2) { animation-delay: 0.15s; }
.bs-card:nth-child(3) { animation-delay: 0.25s; }
.bs-card:nth-child(4) { animation-delay: 0.35s; }

.bs-card-media { width: 100%; height: 100%; overflow: hidden; }
.bs-card .bs-card-media { aspect-ratio: 4/3; }
.bs-card-featured { grid-row: 1 / 3; }
.bs-card-featured .bs-card-media { aspect-ratio: 3/4; }
.bestsellers-catering .bs-card:nth-child(4) { grid-column: 2 / 4; }
.bestsellers-catering .bs-card:nth-child(4) .bs-card-media { aspect-ratio: 16/6; }
.bestsellers-mixologia .bs-card:nth-child(1) { grid-column: 1; }
.bestsellers-mixologia .bs-card:nth-child(1) .bs-card-media { aspect-ratio: 16/6; }
.bestsellers-mixologia .bs-card:nth-child(3) { grid-row: 1 / 3; grid-column: 3; }
.bestsellers-mixologia .bs-card:nth-child(3) .bs-card-media { aspect-ratio: 3/4; }

.bs-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transition: transform 0.8s var(--ease-out), filter 0.6s ease;
}
.bs-card:hover .bs-card-media img {
  transform: scale(1.07);
  filter: brightness(1.02);
}
.bs-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.05) 100%);
  transition: background 0.5s ease;
}
.bestsellers-mixologia .bs-card-media img { filter: brightness(0.8) saturate(1.05); }
.bestsellers-mixologia .bs-card:hover .bs-card-media img { filter: brightness(0.92) saturate(1.1); }
.bestsellers-mixologia .bs-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(10,8,4,0.45) 55%, rgba(0,0,0,0.1) 100%);
}
.bestsellers-mixologia .bs-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 30% 20%, rgba(248,203,10,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.bestsellers-mixologia .bs-card:hover::before { opacity: 1; }

.bs-card-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.75rem 1.5rem;
  z-index: 2;
}
.bs-card-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.bs-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0;
  transition: transform 0.45s var(--ease-out);
}
.bs-card-featured .bs-card-content h3 { font-size: 1.7rem; }
.bs-card-content p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s ease 0.05s, margin-top 0.5s var(--ease-out);
}
.bs-card:hover .bs-card-content p {
  max-height: 6rem;
  opacity: 1;
  margin-top: 0.5rem;
}
.bs-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.5s var(--ease-out);
  z-index: 2;
}
.bs-card:hover::after { width: 100%; }

.bestsellers-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 2.5rem 3rem;
}
.bestsellers-cta-text h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.bestsellers-cta-text p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.6;
}

/* ─── COLABORACIONES ─────────────────────────────── */
.colaboraciones { padding-block: var(--section-pad); overflow: hidden; }
.colaboraciones-intro {
  max-width: 56ch;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.colaboraciones-count {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  text-align: center;
}
.marquee-frame {
  margin-top: 3.5rem;
  padding-block: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left  { left: 0;  background: linear-gradient(to right, var(--black) 0%, transparent 100%); }
.marquee-fade-right { right: 0; background: linear-gradient(to left,  var(--black) 0%, transparent 100%); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 48s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-logo {
  flex-shrink: 0;
  width: 150px;
  height: 90px;
  margin: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6) contrast(0.9);
  opacity: 0.45;
  transition: filter 0.5s var(--ease-out), opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.marquee-logo:hover img {
  filter: grayscale(0) brightness(1) contrast(1);
  opacity: 1;
  transform: scale(1.08);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}
@media (max-width: 1024px) {
  .marquee-logo { width: 120px; height: 72px; margin: 0 1.25rem; }
  .marquee-fade { width: 80px; }
}
@media (max-width: 768px) {
  .marquee-logo { width: 96px; height: 60px; margin: 0 1rem; }
  .marquee-fade { width: 50px; }
  .marquee-track { animation-duration: 36s; }
}

/* ─── CTA FINAL ──────────────────────────────────── */
.cta-final {
  position: relative;
  padding-block: var(--section-pad);
  background: var(--black);
  text-align: center;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(248,203,10,0.08), transparent 60%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-final-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  margin: 1rem 0 1.25rem;
  line-height: 1.15;
}
.cta-final-text {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-final-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── PROCESO ────────────────────────────────────── */
.proceso { padding-block: var(--section-pad); }
.proceso-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.proceso-step {
  padding: 0 1.5rem 0 0;
  position: relative;
}
.proceso-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.2rem;
  right: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  transform-origin: left;
  transition: background 0.6s;
}
.proceso-step.is-visible:not(:last-child)::after {
  background: rgba(248,203,10,0.3);
}
.proceso-step-line {
  display: none;
}
.proceso-step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 1rem;
}
.proceso-step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.proceso-step-content p {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ─── GALERÍA ────────────────────────────────────── */
.galeria { padding-block: var(--section-pad); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
  margin-top: 3.5rem;
}
.galeria-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.galeria-item-wide { grid-column: span 2; }
.galeria-item-tall { grid-row: span 2; }
.galeria-item img {
  transition: transform 0.6s var(--ease-out);
}
.galeria-item:hover img { transform: scale(1.06); }
.galeria-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.galeria-item:hover .galeria-item-overlay { opacity: 1; }
.galeria-item-overlay span {
  width: 48px; height: 48px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  transform: scale(0.8);
  transition: transform 0.35s var(--ease-out);
}
.galeria-item:hover .galeria-item-overlay span { transform: scale(1); }

/* ─── LIGHTBOX ───────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, transform 0.2s;
  font-size: 1.4rem;
  z-index: 1;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--yellow); transform: scale(1.15); }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.6rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.15); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox-next:hover { transform: translateY(-50%) scale(1.15); }
.lightbox-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── FAQ ────────────────────────────────────────── */
.faq { padding-block: var(--section-pad); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.faq-title { font-size: clamp(2rem, 4vw, 3rem); }
.faq-cta { margin-top: 2.5rem; }
.faq-list { padding-top: 0.5rem; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.25s;
}
.faq-question:hover { color: var(--yellow); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  padding-bottom: 1.4rem;
}
.faq-answer p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* ─── CONTACTO ───────────────────────────────────── */
.contacto { padding-block: var(--section-pad); }
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  margin-bottom: 4rem;
}
.contacto-title { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 2.5rem; }
.contacto-data { margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contacto-dato { display: flex; flex-direction: column; gap: 0.3rem; }
.contacto-dato-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.contacto-dato-value {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.contacto-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #25D366;
  transition: color 0.2s;
}
.contacto-wa-link:hover { color: #1da851; }

/* Form */
.contacto-form-wrap {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2.5rem;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-field:last-of-type { margin-bottom: 0; }
.form-field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 300;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
}
.form-field select { cursor: pointer; }
.form-field select option { background: #111; color: var(--white); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(248,203,10,0.04);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; justify-content: center; margin-top: 1.5rem; }
.form-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* Mapa */
.contacto-mapa {}
.mapa-wrap {
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.25rem;
}
.mapa-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.mapa-label-icon { font-size: 1.1rem; }
.mapa-label strong { color: var(--white); display: block; margin-bottom: 0.2rem; font-size: 0.85rem; }
.mapa-label span { display: block; }

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 4rem 2.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-logo-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.footer-logo-link:hover {
  opacity: 0.8;
  transform: scale(1.02);
}
.footer-logo-img {
  display: block;
  width: auto;
  height: clamp(90px, 10vw, 130px);
  object-fit: contain;
  object-position: left center;
  /* fondo negro del PNG invisible sobre el footer negro */
  mix-blend-mode: screen;
  filter: brightness(1.05);
}
.footer-tagline {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin-top: 0;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}
.footer-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--yellow); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s, transform 0.25s;
}
.footer-social-link:hover { color: var(--yellow); transform: translateX(-4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}

/* ─── CUSTOM CURSOR ──────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  top: -3px; left: -3px;
}
.cursor-ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(248,203,10,0.5);
  border-radius: 50%;
  top: -18px; left: -18px;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), top 0.3s var(--ease-out), left 0.3s var(--ease-out), border-color 0.3s;
}
.cursor.is-hovered .cursor-ring {
  width: 56px; height: 56px;
  top: -28px; left: -28px;
  border-color: var(--yellow);
}

/* ─── PARTICLES ──────────────────────────────────── */
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-200px) scale(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1200px) {
  .servicios-grid { grid-template-columns: repeat(3, 1fr); }
  .experiencias-grid { grid-template-columns: 1fr 1fr; }
  .bestsellers-grid, .bestsellers-mixologia .bestsellers-grid { grid-template-columns: 1fr 1fr; }
  .bs-card-featured { grid-row: auto; grid-column: span 2; }
  .bs-card-featured .bs-card-media { aspect-ratio: 16/7; }
  .bestsellers-catering .bs-card:nth-child(4) { grid-column: span 2; }
  .bestsellers-mixologia .bs-card:nth-child(1) { grid-column: span 2; }
  .bestsellers-mixologia .bs-card:nth-child(3) { grid-row: auto; grid-column: span 2; }
  .bestsellers-cta { padding: 2rem; }
}
@media (max-width: 1024px) {
  :root { --section-pad: 80px; --nav-h: 70px; }
  .nav-logo-img { height: 54px; }
  .filosofia-inner { grid-template-columns: 1fr; gap: 3rem; }
  .filosofia-img { max-width: 500px; }
  .filosofia-img-label { right: 0; }
  .proceso-timeline { grid-template-columns: 1fr; gap: 2.5rem; }
  .proceso-step:not(:last-child)::after { display: none; }
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .footer-logo-img { height: 100px; }
  .footer-social { grid-column: span 2; flex-direction: row; justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; --nav-h: 60px; }
  .nav-logo-img { height: 44px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .experiencias-grid { grid-template-columns: 1fr; gap: 1rem; }
  .exp-card-large .exp-card-media, .exp-card .exp-card-media { aspect-ratio: 16/9; }
  .exp-card-content { transform: none; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .galeria-item-wide { grid-column: span 2; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .bestsellers-grid, .bestsellers-mixologia .bestsellers-grid { grid-template-columns: 1fr; gap: 1rem; }
  .bs-card-featured { grid-column: auto; }
  .bs-card-featured .bs-card-media,
  .bs-card .bs-card-media { aspect-ratio: 4/3; }
  .bestsellers-catering .bs-card:nth-child(4),
  .bestsellers-mixologia .bs-card:nth-child(1),
  .bestsellers-mixologia .bs-card:nth-child(3) { grid-column: auto; grid-row: auto; }
  .bestsellers-cta { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .cta-final-actions { flex-direction: column; width: 100%; }
  .cta-final-actions .btn { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo-wrap { align-items: center; }
  .footer-logo-link { display: inline-block; }
  .footer-logo-img { height: 85px; }
  .footer-social { grid-column: auto; flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .galeria-item-wide { grid-column: span 2; }
  .galeria-item-tall { grid-row: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .filosofia-stats { gap: 1.5rem; }
}

/* ─── HOVER: only on devices with pointer ────────── */
@media (hover: none) {
  .exp-card-content { transform: none; }
  .cursor { display: none; }
}

/* ═══════════════════════════════════════════════════
   NAVBAR — DROPDOWN EMPRESAS
════════════════════════════════════════════════════ */
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.2rem;
  transition: transform 0.3s var(--ease-out);
}
.nav-has-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0.28s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.08);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.7rem 1.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s, padding-left 0.2s, background 0.2s;
}
.nav-dropdown a:hover {
  color: var(--white);
  padding-left: 1.9rem;
  background: rgba(255,255,255,0.04);
}
.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.5rem 1.5rem;
}
.nav-dropdown-cta {
  color: var(--yellow) !important;
  font-weight: 600 !important;
}
.nav-dropdown-cta:hover {
  color: var(--yellow) !important;
  background: rgba(248,203,10,0.08) !important;
}

/* Mobile Empresas submenu */
.nav-mobile-parent { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile-section {
  display: block;
  padding: 0.8rem 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}
.nav-mobile-sub {
  padding-bottom: 0.5rem;
}
.nav-mobile-sub li { border: none; }
.nav-mobile-sub a {
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.nav-mobile-sub a:hover { color: var(--white); padding-left: 1.5rem; }

/* ═══════════════════════════════════════════════════
   SERVICIOS — TARJETA EMPRESAS
════════════════════════════════════════════════════ */
.servicio-card-empresas {
  border: 1px solid rgba(248,203,10,0.2);
  position: relative;
  overflow: hidden;
}
.servicio-card-empresas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(248,203,10,0.06), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s;
}
.servicio-card-empresas:hover::before { opacity: 1; }
.servicio-empresas-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s;
}
.servicio-card-empresas:hover .servicio-empresas-link {
  opacity: 1;
  transform: translateY(0);
}
.servicio-empresas-link:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   MODAL — PROPUESTA
════════════════════════════════════════════════════ */
.proposal-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.proposal-modal[hidden] { display: none; }
.proposal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.proposal-modal-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  width: 100%;
  max-width: 840px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3.5rem 3rem 3rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  animation: modalIn 0.38s var(--ease-out) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.proposal-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.proposal-modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: rotate(90deg);
}
.proposal-modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.proposal-modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin: 0.75rem 0 0.8rem;
}
.proposal-modal-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.proposal-modal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.proposal-option {
  text-align: left;
  background: var(--black-4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.proposal-option:hover {
  border-color: rgba(248,203,10,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.proposal-option-img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proposal-option-img--social {
  background: linear-gradient(135deg, #1a1008 0%, #2d1f00 50%, #1a0f00 100%);
}
.proposal-option-img--corp {
  background: linear-gradient(135deg, #080d14 0%, #0d1826 50%, #060b12 100%);
}
.proposal-option-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(248,203,10,0.1), transparent 70%);
}
.proposal-option-icon {
  position: relative;
  width: 56px; height: 56px;
  color: var(--yellow);
  opacity: 0.7;
}
.proposal-option-body {
  padding: 1.5rem;
}
.proposal-option-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.proposal-option-list {
  list-style: none;
  margin-bottom: 1.4rem;
}
.proposal-option-list li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  letter-spacing: 0.04em;
}
.proposal-option-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.65rem;
}
.proposal-option-cta {
  pointer-events: none;
  width: 100%;
  justify-content: center;
}

@media (max-width: 600px) {
  .proposal-modal-card { padding: 2.5rem 1.5rem 2rem; }
  .proposal-modal-options { grid-template-columns: 1fr; }
  .proposal-option-img { height: 130px; }
}
