/* ═══════════════════════════════════════════
   CHAMPANILLO — BURGERS & TAPAS
   Design System v2.0 — Premium Restaurant Web
   Inspired by Goiko · Vicio · Foster's · König
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --wine: #8B1A2B;
  --wine-dark: #5C0E1A;
  --wine-light: #A82040;
  --wine-glow: rgba(139, 26, 43, .35);
  --gold: #D4A534;
  --gold-light: #F0C95E;
  --gold-dim: rgba(212, 165, 52, .15);
  --gold-glow: rgba(212, 165, 52, .3);
  --cream: #FFF8F0;
  --dark: #080808;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --dark4: #222222;
  --white: #FFFFFF;
  --gray: #9CA3AF;
  --border: rgba(255, 255, 255, .06);
  --border-hover: rgba(212, 165, 52, .25);
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 8px 32px rgba(0,0,0,.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.5);
  --shadow-gold: 0 8px 32px rgba(212, 165, 52, .25);
  --shadow-wine: 0 8px 32px rgba(139, 26, 43, .3);
  --container: 1320px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100% }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block }
a { text-decoration: none; color: inherit }
button { font-family: inherit; cursor: pointer; border: none }
::-webkit-scrollbar { width: 5px }
::-webkit-scrollbar-track { background: var(--dark) }
::-webkit-scrollbar-thumb { background: var(--wine); border-radius: 3px }
::selection { background: var(--wine); color: var(--white) }

/* ── UTILITIES ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px) }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0) }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; background: var(--dark); z-index: 10000;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 32px;
}
.loader-logo { width: 180px; filter: brightness(0) invert(1); opacity: 0 }
.loader-bar { width: 220px; height: 2px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden }
.loader-fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--wine), var(--gold)); border-radius: 2px }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; padding: 0 clamp(20px, 4vw, 60px);
  transition: all .4s var(--ease);
}
#nav.scrolled {
  background: rgba(8, 8, 8, .88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.3);
}
.nav-inner { width: 100%; max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between }
.nav-logo { height: 38px; transition: all .3s var(--ease); filter: brightness(0) invert(1) }
.nav-logo:hover { filter: brightness(0) invert(1) drop-shadow(0 0 16px var(--gold-glow)); transform: scale(1.05) }
.nav-links { display: flex; gap: 28px; align-items: center }
.nav-links a {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); transition: all .3s; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--gold); transition: all .3s var(--ease); transform: translateX(-50%);
}
.nav-links a:hover { color: var(--white) }
.nav-links a:hover::after { width: 100% }
.nav-cta { display: flex; gap: 10px; align-items: center }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  transition: all .35s var(--ease); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--dark) }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-gold) }
.btn-wine { background: var(--wine); color: var(--white) }
.btn-wine:hover { background: var(--wine-light); transform: translateY(-3px); box-shadow: var(--shadow-wine) }
.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,.2); color: var(--white) }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px) }
.btn-lg { padding: 16px 36px; font-size: 14px }

/* ── HAMBURGER ── */
#hamburger { display: none; background: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001 }
#hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all .3s var(--ease); border-radius: 1px }
#hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px) }
#hamburger.open span:nth-child(2) { opacity: 0 }
#hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px) }

/* ── MOBILE MENU ── */
#mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(8,8,8,.97); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity .4s; backdrop-filter: blur(30px);
}
#mobile-menu.open { opacity: 1; pointer-events: all }
#mobile-menu a { font-family: var(--font-display); font-size: 32px; color: rgba(255,255,255,.7); letter-spacing: 3px; transition: all .3s }
#mobile-menu a:hover { color: var(--gold) }

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; overflow: hidden }
#hero-canvas { position: absolute; inset: 0; z-index: 0; opacity: .3 }
.hero-media { position: absolute; inset: 0 }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.3) brightness(.7) }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,8,8,.2) 0%, rgba(8,8,8,.5) 40%, rgba(8,8,8,.95) 100%);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,8,8,.7) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 860px }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-pill);
  background: var(--gold-dim); border: 1px solid var(--gold-glow);
  color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite; display: inline-block;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1) } 50% { opacity: .4; transform: scale(1.5) } }

.hero-title {
  font-family: var(--font-display); font-size: clamp(72px, 15vw, 170px);
  line-height: .82; letter-spacing: 4px; margin-bottom: 20px;
}
.hero-title .gold { color: var(--gold); display: inline-block }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.6);
  font-weight: 300; margin-bottom: 44px; line-height: 1.7; max-width: 560px; margin-inline: auto;
}
.hero-sub strong { color: var(--gold); font-weight: 700 }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.3); font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), transparent); animation: scrollLine 2s infinite }
@keyframes scrollLine { 0% { opacity: 1; height: 40px } 100% { opacity: 0; height: 0; margin-top: 40px } }

/* ── MARQUEE ── */
.marquee {
  overflow: hidden; padding: 20px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--dark);
}
.marquee-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content }
.marquee-item {
  font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 32px);
  color: rgba(255,255,255,.08); letter-spacing: 4px; white-space: nowrap;
  display: flex; align-items: center; gap: 20px;
  transition: color .3s;
}
.marquee-item:hover { color: rgba(255,255,255,.2) }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wine) }
@keyframes marquee { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

/* ── SECTIONS BASE ── */
section { padding: clamp(80px, 12vw, 140px) 0 }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-label::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); border-radius: 1px }
.section-title {
  font-family: var(--font-display); font-size: clamp(42px, 8vw, 88px);
  letter-spacing: 2px; line-height: .92; margin-bottom: 16px;
}
.section-desc {
  font-size: clamp(15px, 1.4vw, 17px); color: rgba(255,255,255,.5);
  max-width: 520px; line-height: 1.8;
}

/* ── BEST SELLERS ── */
#bestsellers { background: var(--dark) }
.bs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px }
.bs-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--dark2); border: 1px solid var(--border);
  transition: all .5s var(--ease); cursor: pointer;
}
.bs-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}
.bs-card-img { position: relative; height: 260px; overflow: hidden }
.bs-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease) }
.bs-card:hover .bs-card-img img { transform: scale(1.06) }
.bs-card-shine {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 50%);
  opacity: 0; transition: opacity .5s;
}
.bs-card:hover .bs-card-shine { opacity: 1 }
.bs-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.badge-best { background: var(--gold); color: var(--dark) }
.badge-new { background: var(--wine); color: var(--white) }
.badge-veggie { background: #16A34A; color: var(--white) }
.bs-card-body { padding: 24px 24px 28px }
.bs-card-name { font-family: var(--font-display); font-size: 28px; letter-spacing: 1.5px; margin-bottom: 8px }
.bs-card-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 20px; min-height: 42px }
.bs-card-footer { display: flex; align-items: center; justify-content: space-between }
.bs-card-price { font-family: var(--font-display); font-size: 30px; color: var(--gold) }
.bs-card-cta {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--wine); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; transition: all .3s var(--ease-bounce);
}
.bs-card:hover .bs-card-cta { background: var(--gold); color: var(--dark); transform: scale(1.15) rotate(90deg) }

/* ── CARTA ── */
#carta { background: var(--dark2) }
.carta-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 44px 0 40px }
.carta-tab {
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.4);
  border: 1px solid transparent; transition: all .3s var(--ease); cursor: pointer;
}
.carta-tab.active, .carta-tab:hover { background: rgba(139,26,43,.15); color: var(--white); border-color: rgba(139,26,43,.3) }
.carta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 12px }
.carta-item {
  display: flex; gap: 16px; padding: 18px 20px;
  border-radius: 14px; background: rgba(255,255,255,.02);
  border: 1px solid var(--border); transition: all .3s var(--ease);
}
.carta-item:hover { background: rgba(255,255,255,.05); border-color: var(--border-hover) }
.carta-item-info { flex: 1; min-width: 0 }
.carta-item-name { font-weight: 700; font-size: 14px; margin-bottom: 3px }
.carta-item-desc { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.carta-item-price { font-family: var(--font-display); font-size: 24px; color: var(--gold); white-space: nowrap; align-self: center }

/* ── ABOUT ── */
#nosotros { background: var(--dark); position: relative; overflow: hidden }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 52px }
.about-text p { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px }
.about-text strong { color: var(--gold); font-weight: 700 }
.about-text em { color: var(--white); font-style: normal; font-weight: 600 }
.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4 }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease) }
.about-img:hover img { transform: scale(1.04) }
.about-img::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(212,165,52,.15); border-radius: var(--radius-lg); pointer-events: none;
}
.about-img .float-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2;
  padding: 20px 24px; border-radius: var(--radius);
  background: rgba(8,8,8,.85); backdrop-filter: blur(16px); border: 1px solid var(--border);
}
.float-badge-row { display: flex; justify-content: space-around; text-align: center }
.stat-num { font-family: var(--font-display); font-size: 36px; color: var(--gold); line-height: 1 }
.stat-label { font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px }

/* ── LOCALES ── */
#locales { background: var(--dark2) }
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 20px; margin-top: 52px }
.loc-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.02); border: 1px solid var(--border);
  transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.loc-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--wine)); transition: height .5s var(--ease);
}
.loc-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md) }
.loc-card:hover::before { height: 100% }
.loc-name { font-family: var(--font-display); font-size: 26px; letter-spacing: 1.5px; margin-bottom: 14px }
.loc-address { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 16px }
.loc-hours { display: flex; flex-direction: column; gap: 3px; font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 20px; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border) }
.loc-hours span { display: flex; justify-content: space-between }
.loc-hours strong { color: rgba(255,255,255,.65) }
.loc-actions { display: flex; gap: 8px }
.loc-btn {
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  transition: all .3s; display: inline-flex; align-items: center; gap: 6px;
}
.loc-btn-map { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-glow) }
.loc-btn-map:hover { background: var(--gold); color: var(--dark) }
.loc-btn-call { background: rgba(255,255,255,.05); color: rgba(255,255,255,.6); border: 1px solid var(--border) }
.loc-btn-call:hover { background: rgba(255,255,255,.1); color: var(--white) }

/* ── DELIVERY CTA ── */
#delivery {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 50%, #7A1B35 100%);
  position: relative; overflow: hidden; text-align: center;
}
#delivery::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,165,52,.12) 0%, transparent 60%);
}
#delivery::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(255,255,255,.05) 0%, transparent 50%);
}
.delivery-inner { position: relative; z-index: 1 }
.delivery-title { font-family: var(--font-display); font-size: clamp(52px, 11vw, 110px); letter-spacing: 4px; line-height: .88; margin-bottom: 16px }
.delivery-sub { font-size: clamp(15px, 1.8vw, 19px); color: rgba(255,255,255,.65); margin-bottom: 44px; max-width: 500px; margin-inline: auto }
.delivery-platforms { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap }
.platform-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: var(--radius);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  font-size: 15px; font-weight: 700; color: var(--white); transition: all .35s var(--ease);
}
.platform-btn:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3) }
.platform-icon { font-size: 24px }

/* ── GALERÍA ── */
#galeria { background: var(--dark); overflow: hidden }
.gallery-scroll {
  display: flex; gap: 14px; overflow-x: auto; padding: 0 clamp(20px,5vw,60px) 16px;
  scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; margin-top: 48px;
  cursor: grab;
}
.gallery-scroll::-webkit-scrollbar { display: none }
.gallery-scroll:active { cursor: grabbing }
.gallery-item { flex: 0 0 320px; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; scroll-snap-align: start; position: relative }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease) }
.gallery-item:hover img { transform: scale(1.08) }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,8,8,.6) 100%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.gallery-item:hover::after { opacity: 1 }

/* ── TRABAJA ── */
#trabaja { background: var(--dark2) }
.trabaja-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 52px }
.trabaja-perks { display: flex; flex-direction: column; gap: 16px }
.perk {
  display: flex; gap: 16px; padding: 20px;
  border-radius: var(--radius); background: rgba(255,255,255,.02);
  border: 1px solid var(--border); transition: all .35s var(--ease);
}
.perk:hover { border-color: var(--border-hover); background: rgba(255,255,255,.04) }
.perk-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(139,26,43,.15); display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.perk-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px }
.perk-text p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.5 }

/* ── CONTACTO ── */
#contacto { background: var(--dark) }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 52px }
.contact-form { display: flex; flex-direction: column; gap: 16px }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 6px }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: var(--white); font-size: 14px; font-family: var(--font-body); outline: none;
  transition: all .3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group textarea { resize: vertical; min-height: 120px }
.form-group select { appearance: none; cursor: pointer }
.form-group select option { background: var(--dark2); color: var(--white) }
.contact-info { display: flex; flex-direction: column; gap: 20px }
.contact-block {
  padding: 24px; border-radius: var(--radius);
  background: rgba(255,255,255,.02); border: 1px solid var(--border);
}
.contact-block h4 { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; margin-bottom: 10px; color: var(--gold) }
.contact-block p, .contact-block a { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6 }
.contact-block a:hover { color: var(--gold) }
.social-links { display: flex; gap: 10px; margin-top: 14px }
.social-link {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all .3s;
}
.social-link:hover { background: var(--wine); border-color: var(--wine); transform: translateY(-3px) }

/* ── FOOTER ── */
#footer { padding: 64px 0 20px; background: var(--dark2); border-top: 1px solid var(--border) }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px }
.footer-brand { max-width: 300px }
.footer-brand-name { font-family: var(--font-display); font-size: 26px; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7 }
.footer-col h5 { font-family: var(--font-display); font-size: 16px; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 16px }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.4); padding: 3px 0; transition: all .3s }
.footer-col a:hover { color: var(--white); padding-left: 4px }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,.25) }
.footer-surper { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,.25) }
.footer-surper a { color: var(--gold); font-weight: 700 }
.footer-surper a:hover { text-decoration: underline }

/* ── VIDEO HERO ── */
.hero-video { position: absolute; inset: 0; overflow: hidden }
.hero-video video { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.3) brightness(.65) }

/* ── PROMO BANNER ── */
#promo { background: var(--dark); overflow: hidden; padding: clamp(60px, 8vw, 100px) 0 }
.promo-inner { position: relative; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px) }
.promo-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 60%, #9B2335 100%);
  padding: clamp(40px, 6vw, 80px); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.promo-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212,165,52,.15) 0%, transparent 60%);
}
.promo-text { position: relative; z-index: 1 }
.promo-text h3 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); letter-spacing: 2px; line-height: .9; margin-bottom: 16px }
.promo-text p { font-size: clamp(14px, 1.5vw, 18px); color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 28px }
.promo-img { position: relative; z-index: 1; border-radius: var(--radius); overflow: hidden }
.promo-img img { width: 100%; height: auto; border-radius: var(--radius) }

/* ── #CHAMPALOVER CLUB ── */
#champalover { background: var(--dark2); overflow: hidden }
.champalover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 52px }
.champalover-card {
  padding: 48px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212,165,52,.08) 0%, rgba(139,26,43,.08) 100%);
  border: 1px solid var(--gold-glow); position: relative; overflow: hidden;
}
.champalover-card::before {
  content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(212,165,52,.06) 0%, transparent 70%);
}
.champalover-perks { display: flex; flex-direction: column; gap: 20px; margin-top: 28px }
.champalover-perk {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.5;
}
.champalover-perk-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px }
.champalover-img { position: relative; border-radius: var(--radius-lg); overflow: hidden }
.champalover-img img { width: 100%; height: auto; border-radius: var(--radius-lg) }

/* ── LOC CARD IMAGE ── */
.loc-card-img { height: 200px; margin: -32px -32px 24px; overflow: hidden }
.loc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease) }
.loc-card:hover .loc-card-img img { transform: scale(1.05) }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none }
  .nav-cta .btn-outline { display: none }
  #hamburger { display: flex }
  #mobile-menu { display: flex }
  .about-grid, .trabaja-grid, .contact-grid, .champalover-grid { grid-template-columns: 1fr }
  .footer-top { grid-template-columns: 1fr 1fr }
  .bs-grid { grid-template-columns: repeat(2, 1fr) }
  .about-img { order: -1 }
  .promo-card { grid-template-columns: 1fr }
  .champalover-img { order: -1 }
}
@media (max-width: 768px) {
  .bs-grid, .carta-grid, .loc-grid { grid-template-columns: 1fr }
  .footer-top { grid-template-columns: 1fr }
  .gallery-item { flex: 0 0 280px }
  .delivery-platforms { flex-direction: column; align-items: center }
  .form-row { grid-template-columns: 1fr }
  .float-badge-row { gap: 16px }
}
@media (max-width: 480px) {
  :root { --nav-h: 60px }
  .hero-ctas { flex-direction: column; align-items: stretch }
  .btn { justify-content: center }
  .hero-title { font-size: clamp(52px, 14vw, 80px) }
}
