/* ============================================================
   MACHADO'S GRILL & GOURMET — Premium Steakhouse
   Stylesheet · Mobile-first · Dark "ground fire" system
   ============================================================ */

/* ----- 1. DESIGN TOKENS ----- */
:root {
  /* Colors */
  --bg-primary:    #0A0A0A;
  --bg-surface:    #141414;
  --bg-elevated:   #1C1814;
  --bg-card:       #18130F;
  --bg-deep:       #060606;

  --accent-brasa:  #E25822;
  --accent-fuego:  #FF6B1A;
  --accent-oro:    #D4A24C;
  --accent-oro-h:  #F4C770;

  --text-primary:  #F5F1EA;
  --text-soft:     #DCD3C5;
  --text-muted:    #A9A096;
  --text-dim:      #6E6358;

  --line:          rgba(212, 162, 76, 0.16);
  --line-strong:   rgba(212, 162, 76, 0.36);
  --line-bright:   rgba(244, 199, 112, 0.5);

  --wa-green:      #25D366;
  --wa-green-d:    #128C7E;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg:     0 24px 48px rgba(0,0,0,0.6);
  --shadow-glow:   0 0 40px rgba(226, 88, 34, 0.35);
  --shadow-glow-s: 0 0 24px rgba(226, 88, 34, 0.25);

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 100px;

  /* Spacing */
  --sp-section: clamp(64px, 9vw, 120px);

  /* Type */
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ----- 2. RESET & BASE ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

/* Subtle film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
  background-color: var(--bg-surface);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

ul, ol { list-style: none; }

input, textarea, select, button {
  font: inherit;
}

/* Hide number input spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Focus visible (a11y) */
:focus-visible {
  outline: 2px solid var(--accent-oro);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--accent-brasa);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  z-index: 200;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 8px;
}

/* ----- 3. TYPOGRAPHY ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text-primary);
  font-weight: 400;
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.italic-gold {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-oro);
  text-transform: lowercase;
  letter-spacing: 0;
}

.gold { color: var(--accent-oro); }
.brasa { color: var(--accent-brasa); }
.text-soft { color: var(--text-soft); }
.text-muted { color: var(--text-muted); }

/* ----- 4. LAYOUT PRIMITIVES ----- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

section {
  position: relative;
  padding: var(--sp-section) 0;
  z-index: 2;
}

.section-kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent-oro);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-kicker::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--accent-oro);
  flex-shrink: 0;
}

.section-kicker.center { justify-content: center; }
.section-kicker.center::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--accent-oro);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 20px;
}

.section-sub {
  max-width: 640px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 56px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ----- 5. BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
  user-select: none;
}

.btn i { font-size: 16px; line-height: 1; }

.btn-brasa {
  background: linear-gradient(135deg, var(--accent-brasa), var(--accent-fuego));
  color: #fff;
  box-shadow: 0 8px 24px rgba(226, 88, 34, 0.35);
}

.btn-brasa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-fuego), #FF8642);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-brasa > * { position: relative; z-index: 1; }

.btn-brasa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(226, 88, 34, 0.55);
}

.btn-brasa:hover::before { opacity: 1; }
.btn-brasa:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(212, 162, 76, 0.12);
  border-color: var(--accent-oro);
  color: var(--accent-oro);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: var(--wa-green-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 13px; min-height: 42px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ----- 6. NAV ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.35s var(--ease-out), background 0.35s, border-color 0.35s;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--line);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFA563, var(--accent-brasa) 50%, #B43E10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-s), inset 0 1px 2px rgba(255,255,255,0.2);
  position: relative;
  transition: all 0.5s var(--ease-out);
}

.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: var(--shadow-glow), inset 0 1px 2px rgba(255,255,255,0.2);
}

.logo-mark svg { width: 28px; height: 28px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.logo-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--accent-oro);
  letter-spacing: 0.12em;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-brasa);
  transition: width 0.35s var(--ease-out);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-size: 18px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

@media (max-width: 980px) {
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 36px);
  letter-spacing: 0.12em;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.nav-mobile.open a {
  animation: navMobileIn 0.6s var(--ease-out) forwards;
}

.nav-mobile.open a:nth-child(1) { animation-delay: 0.05s; }
.nav-mobile.open a:nth-child(2) { animation-delay: 0.1s; }
.nav-mobile.open a:nth-child(3) { animation-delay: 0.15s; }
.nav-mobile.open a:nth-child(4) { animation-delay: 0.2s; }
.nav-mobile.open a:nth-child(5) { animation-delay: 0.25s; }
.nav-mobile.open a:nth-child(6) { animation-delay: 0.3s; }

.nav-mobile a:hover { color: var(--accent-brasa); }
.nav-mobile a.cta { color: var(--accent-brasa); }

@keyframes navMobileIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ----- 7. HERO ----- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.15) contrast(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(226, 88, 34, 0.28), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(212, 162, 76, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.65) 55%, var(--bg-primary) 100%);
}

/* Ember particles */
.ember-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFB066 0%, #FF6B1A 40%, transparent 80%);
  filter: blur(1px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: emberRise 8s ease-in infinite;
  bottom: -10px;
}

.ember:nth-child(1) { left: 8%;  animation-delay: 0s;   animation-duration: 7s; }
.ember:nth-child(2) { left: 22%; animation-delay: 1.3s; animation-duration: 9s; width: 3px; height: 3px; }
.ember:nth-child(3) { left: 36%; animation-delay: 2.6s; animation-duration: 6.5s; }
.ember:nth-child(4) { left: 50%; animation-delay: 0.7s; animation-duration: 10s; width: 5px; height: 5px; }
.ember:nth-child(5) { left: 64%; animation-delay: 3.4s; animation-duration: 8s; }
.ember:nth-child(6) { left: 78%; animation-delay: 1.9s; animation-duration: 7.5s; width: 3px; height: 3px; }
.ember:nth-child(7) { left: 91%; animation-delay: 2.9s; animation-duration: 6s; }
.ember:nth-child(8) { left: 14%; animation-delay: 4.2s; animation-duration: 8.5s; }
.ember:nth-child(9) { left: 45%; animation-delay: 5.5s; animation-duration: 7s; }
.ember:nth-child(10) { left: 72%; animation-delay: 3.7s; animation-duration: 9s; width: 4px; height: 4px; }

@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translateY(-50vh) translateX(20px) scale(0.85); opacity: 0.7; }
  100% { transform: translateY(-110vh) translateX(-20px) scale(0.3); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--accent-oro);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards 0.2s;
}

.hero-kicker::before, .hero-kicker::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-oro);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(54px, 11vw, 152px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.88;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) forwards 0.4s;
}

.hero h1 .line-2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-oro);
  text-transform: lowercase;
  letter-spacing: 0;
  font-size: 0.78em;
  margin-top: 10px;
}

.hero-sub {
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) forwards 0.6s;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) forwards 0.8s;
}

.hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 72px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) forwards 1s;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-meta-item i {
  color: var(--accent-brasa);
  font-size: 18px;
}

.hero-meta-item strong {
  color: var(--text-primary);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) forwards 1.2s;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent-oro), transparent);
  animation: scrollBounce 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-meta { gap: 20px; margin-top: 48px; }
  .hero-meta-item { font-size: 13px; }
  .hero-scroll { display: none; }
  .hero-content { padding-top: 100px; padding-bottom: 60px; }
}

/* ----- 8. HISTORIA ----- */
.historia { background: var(--bg-primary); }

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.historia-text p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.historia-text p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 68px;
  float: left;
  line-height: 0.85;
  margin: 6px 14px -4px 0;
  color: var(--accent-brasa);
  font-weight: 600;
}

.historia-quote {
  margin-top: 16px;
  padding-left: 24px;
  border-left: 2px solid var(--accent-oro);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--accent-oro-h);
  line-height: 1.5;
}

.historia-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  color: var(--accent-oro);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
}

.historia-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.historia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.08);
  transition: transform 1.2s var(--ease-out);
}

.historia-image:hover img { transform: scale(1.06); }

.historia-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 2;
}

.historia-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  padding: 18px 22px;
  border-radius: var(--r-md);
}

.historia-badge-label {
  font-size: 10px;
  color: var(--accent-oro);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.historia-badge-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.4;
}

@media (max-width: 980px) {
  .historia-grid { grid-template-columns: 1fr; gap: 48px; }
  .historia-image { aspect-ratio: 16 / 11; max-width: 600px; margin: 0 auto; }
  .historia-text { order: 2; }
  .historia-image { order: 1; }
}

@media (max-width: 600px) {
  .historia-stats { grid-template-columns: 1fr 1fr; }
  .historia-stats > :nth-child(3) { grid-column: 1 / -1; }
}

/* ----- 9. PROMO SLIDER ----- */
.promos {
  background: var(--bg-deep);
  padding: 80px 0;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promo-slider {
  width: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
}

.promo-slide {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 440px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.promo-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226, 88, 34, 0.16);
  color: var(--accent-fuego);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 24px;
  border: 1px solid rgba(226, 88, 34, 0.34);
}

.promo-tag i { font-size: 11px; }

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.95;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.promo-desc {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.promo-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}

.promo-price-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 60px);
  color: var(--accent-oro);
  line-height: 1;
  letter-spacing: 0.02em;
}

.promo-price-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-image {
  position: relative;
  overflow: hidden;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.swiper-slide-active .promo-image img { transform: scale(1.04); }

.promo-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-elevated) 0%, rgba(28,24,20,0.4) 18%, transparent 35%);
  z-index: 2;
}

.promo-slider .swiper-pagination {
  position: relative;
  margin-top: 32px;
  text-align: center;
}

.promo-slider .swiper-pagination-bullet {
  background: var(--text-dim);
  opacity: 1;
  width: 32px;
  height: 3px;
  border-radius: 0;
  margin: 0 4px !important;
  transition: all 0.3s;
}

.promo-slider .swiper-pagination-bullet-active {
  background: var(--accent-brasa);
  width: 56px;
}

@media (max-width: 768px) {
  .promo-slide { grid-template-columns: 1fr; min-height: auto; }
  .promo-content { padding: 36px 28px; order: 2; }
  .promo-image { aspect-ratio: 16 / 10; order: 1; }
  .promo-image::before {
    background: linear-gradient(180deg, transparent 55%, var(--bg-elevated) 100%);
  }
}

/* ----- 10. MENU ----- */
.menu { background: var(--bg-primary); }

/* Menu tabs - scrollable on mobile */
.menu-tabs-wrap {
  position: relative;
  margin-bottom: 56px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.menu-tab {
  padding: 14px 22px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: all 0.3s;
  white-space: nowrap;
  min-height: 44px;
}

.menu-tab:hover { color: var(--text-primary); }

.menu-tab.active {
  background: linear-gradient(135deg, var(--accent-brasa), var(--accent-fuego));
  color: #fff;
  box-shadow: 0 4px 16px rgba(226, 88, 34, 0.4);
}

@media (max-width: 720px) {
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: var(--r-pill);
    padding: 6px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { flex-shrink: 0; padding: 12px 18px; font-size: 13px; }
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeIn 0.5s var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Menu items (parrilla style) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 64px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
  transition: padding 0.3s;
}

.menu-item:hover { padding-left: 8px; }

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  flex-shrink: 0;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--text-dim);
  margin-bottom: 6px;
  min-width: 24px;
}

.menu-item-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 440px;
}

.menu-item-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 6px;
}

.menu-item-pricetag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.menu-item-pricetag strong {
  color: var(--accent-oro);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.menu-item-pricetag .lbl {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .menu-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Menu cards (burger style) */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }

.menu-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-brasa);
  box-shadow: var(--shadow-md), 0 0 32px rgba(226, 88, 34, 0.15);
}

.menu-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.menu-card:hover .menu-card-image img { transform: scale(1.08); }

.menu-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
  color: var(--accent-oro);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  border: 1px solid var(--line-strong);
  z-index: 2;
}

.menu-card-badge.top {
  background: linear-gradient(135deg, var(--accent-brasa), var(--accent-fuego));
  color: #fff;
  border-color: transparent;
}

.menu-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.menu-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent-oro);
  letter-spacing: 0.02em;
}

.menu-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-brasa);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s;
  padding: 6px;
  min-height: 36px;
}

.menu-card-cta:hover {
  gap: 14px;
  color: var(--accent-fuego);
}

@media (max-width: 980px) {
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .menu-cards, .menu-cards.cols-2 { grid-template-columns: 1fr; }
  .menu-card-image { aspect-ratio: 16 / 11; }
}

/* Picadas */
.picadas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.picadas-includes {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.picadas-includes h4 {
  font-size: 30px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.picadas-includes .lead {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.picadas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.picadas-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.picadas-list li i {
  color: var(--accent-brasa);
  font-size: 11px;
}

.picadas-sizes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.picada-size {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.picada-size::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-brasa), var(--accent-fuego));
  opacity: 0;
  transition: opacity 0.3s;
}

.picada-size:hover {
  border-color: var(--accent-brasa);
  transform: translateX(6px);
}

.picada-size:hover::before { opacity: 1; }

.picada-size-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.picada-size-people {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.picada-size-people i { color: var(--accent-oro); font-size: 12px; }

.picada-size-price {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent-oro);
  text-align: right;
  letter-spacing: 0.02em;
}

.picada-featured {
  background: linear-gradient(135deg, rgba(226, 88, 34, 0.10), rgba(212, 162, 76, 0.04));
  border-color: rgba(226, 88, 34, 0.36);
}

.picada-featured::before { opacity: 1; }

.picada-popular-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-brasa);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-pill);
}

.picadas-cta-row { margin-top: 8px; }

@media (max-width: 980px) {
  .picadas-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .picadas-list { grid-template-columns: 1fr; }
  .picadas-includes { padding: 28px 24px; }
  .picada-size { padding: 22px 24px; }
}

/* Menú del día & bebidas */
.dia-bebidas {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}

.dia-card {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.dia-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(226, 88, 34, 0.14), transparent 60%);
  pointer-events: none;
}

.dia-card > * { position: relative; }

.dia-card .ribbon {
  display: inline-block;
  background: var(--accent-brasa);
  color: #fff;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.dia-card h3 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.dia-card .promo-note {
  color: var(--accent-oro);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.dia-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dia-includes-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.dia-includes-item i { color: var(--accent-brasa); width: 18px; text-align: center; }

.dia-platos-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--accent-oro);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.dia-platos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 32px;
}

.dia-plato {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  padding: 6px 0;
}

.dia-plato .num {
  color: var(--accent-brasa);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 20px;
}

.dia-plato .price-tag {
  margin-left: auto;
  color: var(--accent-oro);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.bebidas-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 40px;
}

.bebidas-card h3 {
  font-size: clamp(28px, 3.5vw, 36px);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.bebidas-list { display: flex; flex-direction: column; }

.bebidas-list li {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--text-soft);
}

.bebidas-list li:last-child { border-bottom: none; }

.bebidas-list li i {
  color: var(--accent-brasa);
  margin-right: 14px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.bebidas-list li .price-tag {
  margin-left: auto;
  color: var(--accent-oro);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
}

.bebidas-info {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--line-strong);
}

.bebidas-info p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .dia-bebidas { grid-template-columns: 1fr; }
  .dia-card, .bebidas-card { padding: 32px 24px; }
}

@media (max-width: 540px) {
  .dia-includes, .dia-platos { grid-template-columns: 1fr; }
}

/* ----- 11. CALCULATOR ----- */
.calculator {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calculator::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  max-width: 90vw;
  max-height: 90vw;
  background: radial-gradient(circle, rgba(226, 88, 34, 0.10), transparent 60%);
  pointer-events: none;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.calc-info p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.calc-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.calc-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.calc-info-list li:last-child { border-bottom: none; }

.calc-info-list li i {
  color: var(--accent-brasa);
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.calc-info-list li strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.calc-info-list li span {
  color: var(--text-muted);
  font-size: 14px;
}

.calc-form {
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 48px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.calc-form h3 {
  font-size: clamp(28px, 3.5vw, 34px);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.calc-form .lead {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 14px;
}

.calc-input-wrap { margin-bottom: 28px; }

.calc-input-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-oro);
  margin-bottom: 14px;
  font-weight: 600;
}

.calc-stepper {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 8px;
}

.calc-step-btn {
  width: 56px;
  height: 56px;
  background: var(--bg-elevated);
  color: var(--accent-brasa);
  border-radius: var(--r-sm);
  font-size: 24px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.calc-step-btn:hover {
  background: var(--accent-brasa);
  color: #fff;
  transform: scale(1.05);
}

.calc-step-btn:active { transform: scale(0.95); }

.calc-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 52px;
  text-align: center;
  outline: none;
  letter-spacing: 0.05em;
  width: 100%;
  min-width: 0;
}

.calc-result {
  background: var(--bg-card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  padding: 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  transition: all 0.4s var(--ease-out);
}

.calc-result.pulse {
  border-color: var(--accent-oro);
  box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.08);
}

.calc-result-recom {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 34px);
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1;
}

.calc-result-people {
  color: var(--text-muted);
  font-size: 14px;
}

.calc-result-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calc-result-price {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 52px);
  color: var(--accent-oro);
  line-height: 1;
  letter-spacing: 0.02em;
}

.calc-result-cop {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 600;
}

@media (max-width: 980px) {
  .calc-grid { grid-template-columns: 1fr; gap: 40px; }
  .calc-form { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .calc-form { padding: 28px 22px; }
  .calc-step-btn { width: 48px; height: 48px; font-size: 20px; }
  .calc-input { font-size: 44px; }
}

/* ----- 12. REVIEWS ----- */
.reviews { background: var(--bg-primary); }

.reviews-slider {
  padding: 8px 0 56px;
  overflow: visible;
}

.reviews-slider .swiper-wrapper { align-items: stretch; }
.reviews-slider .swiper-slide { height: auto; }

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s var(--ease-out);
}

.review-card:hover {
  border-color: var(--accent-oro);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 110px;
  color: var(--accent-brasa);
  opacity: 0.16;
  line-height: 1;
  font-weight: 700;
}

.review-stars {
  color: var(--accent-oro);
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.review-text {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
  position: relative;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-brasa), var(--accent-oro));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.review-info strong {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 2px;
}

.review-info span {
  color: var(--text-muted);
  font-size: 12px;
}

.reviews-slider .swiper-pagination {
  position: relative;
  margin-top: 16px;
  text-align: center;
}

.reviews-slider .swiper-pagination-bullet {
  background: var(--text-dim);
  opacity: 1;
  width: 28px;
  height: 3px;
  border-radius: 0;
  margin: 0 4px !important;
}

.reviews-slider .swiper-pagination-bullet-active {
  background: var(--accent-brasa);
  width: 44px;
}

.reviews-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.review-nav-btn {
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  color: var(--text-primary);
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-nav-btn:hover {
  background: var(--accent-brasa);
  border-color: var(--accent-brasa);
  color: #fff;
  transform: translateY(-2px);
}

/* ----- 13. CONTACT (RESERVA + PEDIDO) ----- */
.contact {
  background: var(--bg-deep);
  position: relative;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.form-card:hover { border-color: var(--line-strong); }

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-brasa), var(--accent-oro));
}

.form-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-brasa), var(--accent-fuego));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 24px;
}

.form-icon.green {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-d));
}

.form-card h3 {
  font-size: clamp(28px, 3.5vw, 34px);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.form-card .lead {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field { margin-bottom: 18px; position: relative; }

.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-oro);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-field label .req {
  color: var(--accent-brasa);
  margin-left: 2px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text-primary);
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s;
  outline: none;
  min-height: 48px;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-dim);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent-brasa);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(226, 88, 34, 0.15);
}

.form-input.error, .form-textarea.error, .form-select.error {
  border-color: #FF4D4D;
  background: rgba(255, 77, 77, 0.04);
}

.form-input.error:focus, .form-textarea.error:focus, .form-select.error:focus {
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23D4A24C' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-input[type="date"], .form-input[type="time"] {
  color-scheme: dark;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
  padding: 18px;
  font-size: 15px;
}

.form-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-submit.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  margin-top: 16px;
}

.form-note i { color: var(--wa-green); }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ----- 14. LOCATION ----- */
.location {
  background: var(--bg-primary);
  padding-bottom: 100px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}

.location-info { padding: 32px 0; }

.location-info h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  line-height: 1;
}

.location-info p.lead {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 0.3s;
}

.location-item:hover {
  border-color: var(--accent-brasa);
  transform: translateX(6px);
}

.location-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(226, 88, 34, 0.12);
  color: var(--accent-brasa);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.location-item-icon.wa {
  background: rgba(37, 211, 102, 0.12);
  color: var(--wa-green);
}

.location-item-icon.ig {
  background: rgba(228, 64, 95, 0.12);
  color: #E4405F;
}

.location-item-text { flex: 1; }

.location-item-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-oro);
  margin-bottom: 4px;
  font-weight: 600;
}

.location-item-value {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.5;
}

.location-item-value a {
  color: var(--text-primary);
  transition: color 0.3s;
}

.location-item-value a:hover { color: var(--accent-brasa); }

.location-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 500px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6);
  transition: filter 0.3s;
}

.location-map:hover iframe { filter: invert(0.85) hue-rotate(180deg) saturate(0.8); }

@media (max-width: 980px) {
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .location-map, .location-map iframe { min-height: 380px; }
}

/* ----- 15. FOOTER ----- */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 72px 0 28px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 340px; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-oro);
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover { color: var(--accent-brasa); }
.footer-col a i { width: 14px; text-align: center; font-size: 12px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--accent-brasa);
  border-color: var(--accent-brasa);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 13px;
}

.footer-bottom .heart { color: var(--accent-brasa); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ----- 16. FLOATING ACTION BUTTON (WhatsApp) ----- */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  z-index: 90;
  animation: pulseWa 2.4s infinite;
  transition: transform 0.3s var(--ease-out);
}

.wa-fab:hover { transform: scale(1.08); }
.wa-fab:active { transform: scale(0.96); }

.wa-fab-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-elevated);
  color: var(--text-primary);
  padding: 9px 14px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.wa-fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--bg-elevated);
}

.wa-fab:hover .wa-fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes pulseWa {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.8), 0 0 0 14px rgba(37, 211, 102, 0.10);
  }
}

@media (max-width: 768px) {
  .wa-fab {
    bottom: 84px;
    right: 16px;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  .wa-fab-tooltip { display: none; }
}

/* ----- 17. STICKY MOBILE BAR ----- */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  z-index: 89;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-bar.visible {
  transform: translateY(0);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
  min-height: 56px;
}

.mobile-bar a i {
  font-size: 20px;
  color: var(--accent-brasa);
  transition: transform 0.25s;
}

.mobile-bar a.wa i { color: var(--wa-green); }

.mobile-bar a:active {
  background: rgba(255,255,255,0.05);
}

.mobile-bar a:active i { transform: scale(0.9); }

@media (max-width: 768px) {
  .mobile-bar { display: grid; }
}

/* ----- 18. TOAST NOTIFICATIONS ----- */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100% - 48px);
}

.toast {
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  min-width: 280px;
  max-width: 380px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.35s var(--ease-out);
  border-left: 3px solid var(--accent-oro);
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.error { border-left-color: #FF4D4D; }
.toast.success { border-left-color: var(--wa-green); }

.toast-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.toast.error .toast-icon { color: #FF4D4D; }
.toast.success .toast-icon { color: var(--wa-green); }
.toast:not(.error):not(.success) .toast-icon { color: var(--accent-oro); }

.toast-msg {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
}

@media (max-width: 480px) {
  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
  .toast { min-width: 0; max-width: none; width: 100%; }
}

/* ----- 19. UTILITIES ----- */
.hide-mobile { }
.show-mobile { display: none; }

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: initial; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ember-layer { display: none; }
}

/* Print */
@media print {
  .nav, .wa-fab, .mobile-bar, .hero-scroll, .ember-layer { display: none !important; }
  body { background: #fff; color: #000; }
  section { padding: 20px 0; page-break-inside: avoid; }
}
