:root {
  --bg: #1A1D2B;
  --surface: #272B3A;
  --surface-2: #2F3447;
  --ink: #F2EFE7;
  --ink-soft: rgba(242, 239, 231, 0.7);
  --accent: #CFA644;
  --accent-2: #7A5C2E;
  --line: rgba(207, 166, 68, 0.18);
  --line-strong: rgba(207, 166, 68, 0.35);
  --header-h: 72px;
  --container: 1080px;
  --pad: clamp(16px, 4vw, 32px);
  --section-pad: clamp(1rem, 4vw, 3rem);
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3, h4, h5 {
  font-family: 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Skip Link */
.skip-link {
  position: fixed; top: -100px; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: 4px;
  font-weight: 600; z-index: 9999;
  transition: top 200ms;
}
.skip-link:focus { top: 8px; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(26, 29, 43, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header.scrolled {
  background: rgba(26, 29, 43, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.logo {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-weight: 700; font-style: italic;
  font-size: 1.3rem; color: var(--ink);
  text-decoration: none; white-space: nowrap;
}
.logo:hover { color: var(--accent); }
.logo span { color: var(--accent); }

/* Nav Desktop */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 0.9rem; color: var(--ink-soft);
  text-decoration: none; position: relative;
  padding: 4px 0; transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  background: var(--accent); color: var(--bg);
  padding: 8px 20px; border-radius: 4px;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--ink); color: var(--bg); }
.nav-desktop .nav-cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* Hamburger */
.nav-toggle {
  display: none; position: relative; z-index: 1100;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) { .nav-toggle { display: flex; } }

/* Scroll lock when drawer is open */
html.drawer-open { overflow: hidden; }
html.drawer-open body { overflow: hidden; touch-action: none; }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  will-change: transform;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block; padding: 14px 0;
  font-size: 1.1rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040; opacity: 0; pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* Main */
main { padding-top: var(--header-h); }

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/images/lomo-saltado.jpg') center/cover no-repeat;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,29,43,0.6) 0%, rgba(26,29,43,0.85) 80%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: clamp(40px, 8vh, 100px) var(--pad);
}
.hero-content h1 { margin-bottom: 20px; text-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--ink-soft); margin-bottom: 36px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* Steam Animation */
.steam-container {
  position: absolute; bottom: 30%; left: 50%; transform: translateX(-50%);
  width: 200px; height: 300px; pointer-events: none; z-index: 1;
}
.steam {
  position: absolute; bottom: 0;
  width: 30px; height: 80px;
  border-radius: 50%;
  background: rgba(242, 239, 231, 0.08);
  filter: blur(12px);
  animation: steamRise 4s ease-out infinite;
  opacity: 0;
}
.steam:nth-child(1) { left: 30%; animation-delay: 0s; }
.steam:nth-child(2) { left: 50%; animation-delay: 1.2s; width: 24px; height: 60px; }
.steam:nth-child(3) { left: 65%; animation-delay: 2.4s; width: 36px; height: 90px; }
.steam:nth-child(4) { left: 42%; animation-delay: 0.8s; width: 20px; height: 50px; }
.steam:nth-child(5) { left: 55%; animation-delay: 2s; width: 28px; height: 70px; }
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  15% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-120px) scaleX(1.4); }
  100% { opacity: 0; transform: translateY(-260px) scaleX(2); }
}
@media (prefers-reduced-motion: reduce) {
  .steam { animation: none; opacity: 0; }
  .hero-bg { animation: none; }
}

/* Flame flicker on CTA */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg);
  padding: 14px 32px; border-radius: 4px;
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 180ms, box-shadow 240ms;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(207,166,68,0.25);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(207,166,68,0.4) 0%, transparent 60%);
  opacity: 0; transition: opacity 300ms;
}
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 12px 28px; border-radius: 4px;
  border: 1px solid var(--line-strong);
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(207,166,68,0.1);
  border: 1px solid var(--line);
  border-radius: 20px; padding: 6px 14px;
  font-size: 0.78rem; color: var(--ink-soft);
  white-space: nowrap;
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* Sections */
section { padding: clamp(60px, 10vh, 120px) 0; }

.section-header {
  text-align: center; margin-bottom: clamp(40px, 6vw, 72px);
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* Gold rule divider */
.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 24px auto;
}

/* Historia */
.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.historia-text { font-size: 1.05rem; color: var(--ink-soft); }
.historia-text p { margin-bottom: 18px; }
.historia-text .quote {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-style: italic; font-size: 1.3rem;
  color: var(--accent); border-left: 3px solid var(--accent-2);
  padding-left: 20px; margin: 28px 0;
}
.historia-img {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 3/4;
}
.historia-img img { width: 100%; height: 100%; object-fit: cover; }
.historia-img::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--line-strong); border-radius: 8px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .historia-grid { grid-template-columns: 1fr; }
  .historia-img { max-width: 400px; margin: 0 auto; }
}

/* Timeline / Recorrido */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
}
.timeline-step {
  position: relative; margin-bottom: 48px;
  padding-left: 24px;
}
.timeline-step::before {
  content: ''; position: absolute; left: -32px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--accent-2);
}
.timeline-step h4 {
  font-style: normal; font-weight: 700;
  margin-bottom: 6px; color: var(--ink);
}
.timeline-step .time-marker {
  font-size: 0.8rem; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.timeline-step p { color: var(--ink-soft); font-size: 0.95rem; max-width: 520px; }

/* Spice particle decoration */
.spice-float {
  position: absolute; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%; opacity: 0.3;
  animation: spiceFloat 12s ease-in-out infinite;
}
@keyframes spiceFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  25% { transform: translate(15px, -20px) rotate(90deg); opacity: 0.5; }
  50% { transform: translate(-10px, -35px) rotate(180deg); opacity: 0.2; }
  75% { transform: translate(20px, -15px) rotate(270deg); opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) { .spice-float { animation: none; opacity: 0; } }

/* Platos / Horizontal Scroll */
.platos-scroll {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 20px var(--pad) 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-2) var(--surface);
}
.platos-scroll::-webkit-scrollbar { height: 6px; }
.platos-scroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 3px; }
.platos-scroll::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 3px; }
.plato-card {
  flex: 0 0 clamp(260px, 30vw, 320px);
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.plato-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(207,166,68,0.12);
}
.plato-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.plato-card-body { padding: 20px; }
.plato-card-body h4 { font-style: normal; margin-bottom: 6px; font-size: 1.1rem; }
.plato-card-body p { color: var(--ink-soft); font-size: 0.88rem; }

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: clamp(24px, 3vw, 36px);
  text-align: center; position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(207,166,68,0.12);
  border-color: var(--accent);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.pricing-card.featured::before {
  content: 'Popular'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: var(--bg);
  padding: 4px 16px; border-radius: 12px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.pricing-card h4 { font-style: normal; margin-bottom: 16px; }
.pricing-amount {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--accent); margin-bottom: 4px;
}
.pricing-amount small { font-size: 0.5em; color: var(--ink-soft); }
.pricing-period { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 20px; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-list li {
  padding: 8px 0; border-bottom: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 8px;
}
.pricing-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.pricing-list li.included svg { color: var(--accent); }
.pricing-list li.excluded { opacity: 0.5; text-decoration: line-through; }
.pricing-list li.excluded svg { color: var(--ink-soft); }
.pricing-disclaimer {
  text-align: center; margin-top: 24px;
  font-size: 0.82rem; color: var(--ink-soft); font-style: italic;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: clamp(20px, 3vw, 32px);
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 12px; left: 20px;
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 3rem; color: var(--accent); opacity: 0.3;
  line-height: 1;
}
.testimonial-text { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 16px; padding-top: 20px; }
.testimonial-author {
  font-size: 0.82rem; color: var(--accent);
  font-weight: 600;
}
.testimonial-meta { font-size: 0.78rem; color: var(--ink-soft); }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-body p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.7; }
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* Reservar Form */
.reservar-section { background: var(--surface); }
.reservar-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.reservar-info h2 { margin-bottom: 16px; }
.reservar-info p { color: var(--ink-soft); margin-bottom: 12px; }
.reservar-form { background: var(--bg); border-radius: 8px; padding: clamp(24px, 3vw, 36px); }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 4px; color: var(--ink);
  font-size: 0.95rem; font-family: inherit;
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(207,166,68,0.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
}
.field-checkbox label { margin-bottom: 0; font-size: 0.82rem; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) {
  .reservar-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

.form-success {
  display: none; text-align: center; padding: 32px 16px;
}
.form-success.is-visible { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--accent); margin-bottom: 12px; }
.form-success p { color: var(--ink-soft); }

/* Counter animation */
.stats-row {
  display: flex; justify-content: center; gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap; margin: 40px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700; color: var(--accent);
  line-height: 1.1;
}
.stat-label { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }

/* Footer */
.site-footer {
  background: var(--surface); border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 72px) 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 40px;
}
.footer-brand p { color: var(--ink-soft); font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }
.footer-col h5 {
  font-style: normal; font-size: 0.9rem; font-weight: 700;
  margin-bottom: 14px; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-col a {
  display: block; padding: 4px 0;
  font-size: 0.85rem; color: var(--ink-soft);
  transition: color 200ms, padding-left 200ms;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
  margin-bottom: 10px; font-size: 0.85rem; color: var(--ink-soft);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); margin-top: 2px; }
.footer-contact-item a { display: inline; padding: 0; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: var(--ink-soft);
}
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: var(--ink-soft); }
.footer-legal a:hover { color: var(--accent); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Parallax layer */
.parallax-layer {
  will-change: transform;
  transition: transform 50ms linear;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 20px 24px;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  font-style: normal; font-size: 1rem; margin-bottom: 8px; font-weight: 700;
}
.cookie-banner p { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btns button {
  flex: 1; min-width: 100px; min-height: 44px;
  padding: 10px 16px; border-radius: 4px;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--line); transition: background 200ms, color 200ms;
}
.cookie-btns .cookie-accept { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.cookie-btns .cookie-accept:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cookie-btns .cookie-reject { background: transparent; color: var(--ink); border-color: var(--ink-soft); font-weight: 700; }
.cookie-btns .cookie-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink); }
.cookie-btns .cookie-settings { background: transparent; color: var(--ink-soft); }
.cookie-btns .cookie-settings:hover { background: var(--surface-2); color: var(--ink); }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* Table scroll wrapper */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { border-collapse: collapse; width: 100%; }
th, td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
th {
  font-weight: 700; color: var(--ink);
  background: var(--surface-2);
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.06em;
}
td { color: var(--ink-soft); }

/* Contact page channels */
.contact-channels { display: grid; gap: 0; }
.contact-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 4px; padding-left: 8px; padding-right: 8px;
}
.contact-row:hover { transform: translateX(4px); background: var(--surface-2); }
.contact-row svg {
  width: 20px; height: 20px; color: var(--ink-soft);
  transition: color 240ms, transform 240ms;
  margin-top: 2px;
}
.contact-row:hover svg { color: var(--accent); transform: scale(1.08); }
.contact-row strong { display: block; font-size: 0.85rem; color: var(--ink); margin-bottom: 2px; }
.contact-row span, .contact-row a { font-size: 0.9rem; color: var(--ink-soft); word-break: break-all; }

/* Ají seco SVG decoration */
.aji-deco {
  position: absolute; opacity: 0.08; pointer-events: none;
}

/* Ambient pot bubble */
@keyframes potBubble {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.4; }
  50% { transform: scale(1.3) translateY(-8px); opacity: 0.7; }
}
.bubble-deco {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); opacity: 0.4;
  animation: potBubble 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .bubble-deco { animation: none; } }

/* Page content (policies etc) */
.page-content {
  max-width: 760px; margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) var(--pad);
}
.page-content h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-content h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 40px; margin-bottom: 12px; }
.page-content h3 { font-size: 1.2rem; margin-top: 28px; margin-bottom: 10px; }
.page-content p { margin-bottom: 16px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }
.page-content ul, .page-content ol { margin-bottom: 16px; padding-left: 24px; color: var(--ink-soft); }
.page-content li { margin-bottom: 8px; font-size: 0.92rem; line-height: 1.7; }
.page-content a { text-decoration: underline; }

/* Process section */
.process-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.process-step {
  padding: 28px; border: 1px solid var(--line);
  position: relative;
}
.process-step-num {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 2.2rem; font-weight: 700; color: var(--accent);
  opacity: 0.4; position: absolute; top: 16px; right: 20px;
}
.process-step h4 { font-style: normal; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--ink-soft); }
.process-step .step-time {
  font-size: 0.78rem; color: var(--accent); margin-top: 8px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
@media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }

/* Cancellation tiers */
.cancel-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.cancel-tier {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 20px; text-align: center;
}
.cancel-tier h5 { font-style: normal; font-size: 0.9rem; margin-bottom: 8px; color: var(--accent); }
.cancel-tier p { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 640px) { .cancel-tiers { grid-template-columns: 1fr; } }

/* Utility */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mb-lg { margin-bottom: 48px; }

/* Dark surface alternate */
.bg-surface { background: var(--surface); }
.bg-dark { background: var(--bg); }

/* Inline ají icon */
.aji-inline {
  display: inline-block; width: 24px; height: 24px; vertical-align: middle;
  margin: 0 4px;
}

/* Focus ring global */
button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* Scroll margin for anchor navigation */
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Long URL/email break */
a[href*="mailto:"], .page-content a { word-break: break-word; overflow-wrap: anywhere; }

/* Warm glow hover for cards */
.plato-card:hover {
  box-shadow: 0 12px 36px rgba(207,166,68,0.18), 0 0 60px -12px rgba(207,166,68,0.10);
}
.testimonial-card {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(207,166,68,0.10);
  border-color: var(--line-strong);
}

/* Warm glow on primary button */
.btn-primary::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(207,166,68,0.4), rgba(122,92,46,0.2));
  opacity: 0; transition: opacity 320ms cubic-bezier(.4,0,.2,1);
  z-index: -1; filter: blur(12px);
}
.btn-primary:hover::before { opacity: 1; }

/* Timeline step hover */
.timeline-step {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
  border-radius: 4px; padding-right: 12px;
}
.timeline-step:hover { transform: translateX(6px); }
.timeline-step::before {
  transition: box-shadow 280ms, background 280ms;
}
.timeline-step:hover::before {
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--accent), 0 0 16px rgba(207,166,68,0.3);
}

/* Contact row warm glow */
.contact-row:hover {
  box-shadow: inset 3px 0 0 var(--accent);
}

/* Stagger reveal variations */
.reveal.reveal-left { transform: translateX(-28px); }
.reveal.reveal-left.is-in { transform: none; }
.reveal.reveal-right { transform: translateX(28px); }
.reveal.reveal-right.is-in { transform: none; }
.reveal.reveal-scale { transform: scale(0.95); }
.reveal.reveal-scale.is-in { transform: none; }

/* Warm ember glow for hero CTA */
@keyframes emberPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(207,166,68,0.2); }
  50% { box-shadow: 0 6px 28px rgba(207,166,68,0.35); }
}
.hero .btn-primary {
  animation: emberPulse 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero .btn-primary { animation: none; }
  .timeline-step { transition: none; }
  .timeline-step:hover { transform: none; }
  .testimonial-card { transition: none; }
  .testimonial-card:hover { transform: none; }
}

/* Drawer close button */
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line);
  border-radius: 4px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 1.4rem; line-height: 1;
  transition: color 200ms, border-color 200ms;
}
.drawer-close:hover { color: var(--accent); border-color: var(--accent); }

/* Scroll progress bar */
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--accent);
  transition: none;
  z-index: 1;
}

/* Print */
@media print {
  .site-header, .mobile-drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-footer { padding-bottom: 24px; }
}
