/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f7f2e8;
  --bg-2:      #ede5d0;
  --bg-3:      #e2d8c0;
  --ink:       #1c1510;
  --ink-soft:  #3a2e25;
  --ink-mute:  #7a6a58;
  --cream:     #fdfaf4;
  --accent:    #c5512a;
  --accent-2:  #2a6b8a;
  --gold:      #b8972e;
  --line:      rgba(28, 21, 16, 0.12);

  --sans:      'Inter', system-ui, sans-serif;
  --serif:     'Cormorant Garamond', Georgia, serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h:     72px;
  --gutter:    clamp(1.25rem, 5vw, 3rem);
  --max-w:     1280px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
address { font-style: normal; }
::selection { background: var(--accent); color: #fdfaf4; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Skip link & utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -120px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--accent); color: #fff;
  border-radius: 6px; font-weight: 500; font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   4. Custom cursor
   ============================================================= */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none; }
  .cursor { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; opacity: 0; transition: opacity .3s; }
  .cursor.is-ready { opacity: 1; }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform .15s var(--ease-out);
  }
  .cursor-ring {
    width: 32px; height: 32px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: .55;
    transition: width .25s var(--ease-out), height .25s var(--ease-out), opacity .25s;
  }
  .cursor.is-hover .cursor-ring { width: 48px; height: 48px; opacity: .85; }
  .cursor.is-hover .cursor-dot { transform: translate(-50%, -50%) scale(1.6); }
}

/* =============================================================
   5. Reveal animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s var(--ease-out) var(--delay, 0s),
    transform .7s var(--ease-out) var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Safety: split+reveal never invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   6. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: background .25s var(--ease-out), color .25s, transform .2s var(--ease-out), box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #a8421f; box-shadow: 0 8px 24px rgba(197,81,42,.35); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: .55rem 1.25rem;
  font-size: .8rem;
}
.btn-nav:hover { background: #a8421f; }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-submit:hover { background: #a8421f; box-shadow: 0 8px 24px rgba(197,81,42,.3); }
.btn-submit:disabled { opacity: .65; pointer-events: none; }

/* =============================================================
   7. Section kicker
   ============================================================= */
.section-kicker {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.section-kicker--light { color: rgba(253, 250, 244, .75); }

/* =============================================================
   8. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .35s var(--ease-out), box-shadow .35s;
}
.nav.is-solid {
  background: rgba(247, 242, 232, .96);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.nav-logo-primary {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.nav.is-hero .nav-logo-primary { color: #fdfaf4; }
.nav-logo-sub {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.nav.is-hero .nav-logo-sub { color: rgba(253,250,244,.65); }
.nav-links { display: flex; gap: 1.75rem; }
.nav-link {
  font-size: .875rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
}
.nav.is-hero .nav-link { color: rgba(253,250,244,.8); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .3s var(--ease-out);
}
.nav-link:hover::after { width: 100%; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-burger span { display: block; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav.is-hero .nav-burger span { background: #fdfaf4; }
.nav.is-mobile-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-mobile-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.nav-mobile[aria-hidden="false"] { opacity: 1; pointer-events: auto; transform: none; }
.nav-mobile nav { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.nav-mobile-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}
.nav-mobile-link:hover { color: var(--accent); }
.nav-mobile-cta {
  margin-top: .5rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: .65rem 1.75rem;
  border-radius: 100px;
}

/* =============================================================
   9. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + 1rem);
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 12s ease-out;
}
.hero.is-loaded .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(28,21,16,.22) 0%,
      rgba(28,21,16,.05) 35%,
      rgba(28,21,16,.55) 70%,
      rgba(28,21,16,.88) 100%
    );
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-top: auto;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(4rem, 8vh, 6rem);
  width: 100%;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253,250,244,.7);
  margin-bottom: 1.25rem;
}
.hero-kicker-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fdfaf4;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .05em;
}
.hero-title-em {
  font-style: italic;
  color: var(--accent);
  font-size: 1.08em;
}
.hero-title-line--sub {
  font-size: .92em;
  color: rgba(253,250,244,.85);
}
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(253,250,244,.75);
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.hero-stars {
  color: #f5c518;
  font-size: .95rem;
  letter-spacing: -.05em;
}
.hero-star-half { opacity: .4; }
.hero-rating-text {
  font-size: .82rem;
  color: rgba(253,250,244,.6);
}
.hero-rating-text strong { color: rgba(253,250,244,.9); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(253,250,244,.5);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(253,250,244,.3);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* =============================================================
   10. MARQUEE
   ============================================================= */
.marquee-wrap {
  background: var(--accent);
  overflow: hidden;
  padding-block: .7rem;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marqueeRun 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  padding-right: 1.25rem;
  white-space: nowrap;
}
.marquee-sep {
  color: rgba(255,255,255,.4);
  font-style: normal;
  font-size: .7rem;
}

/* =============================================================
   11. CONCEPTO
   ============================================================= */
.concepto {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--bg);
}
.concepto-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.concepto-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.concepto-title em { font-style: italic; color: var(--accent); }
.concepto-body {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  max-width: 56ch;
}
.concepto-body em { font-style: italic; color: var(--ink); }
.concepto-datos {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.concepto-dato {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.concepto-dato strong {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.concepto-dato span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-mute);
}
.concepto-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
}
.concepto-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.concepto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.concepto-img-wrap:hover img { transform: scale(1.04); }
.concepto-img-badge {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  padding: .4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  font-weight: 600;
  font-size: .95rem;
}
.concepto-img-badge small {
  font-size: .65rem;
  font-weight: 400;
  opacity: .8;
  letter-spacing: .06em;
}
.concepto-img-secondary {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.concepto-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.concepto-img-secondary:hover img { transform: scale(1.04); }

/* =============================================================
   12. CARTA
   ============================================================= */
.carta {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--bg-2);
}
.carta-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.carta-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.carta-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: .75rem;
}
.carta-sub {
  color: var(--ink-mute);
  font-size: 1rem;
}
.carta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.plato-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(28,21,16,.07);
  transition: transform .35s var(--ease-out), box-shadow .35s;
  transform-style: preserve-3d;
  will-change: transform;
}
.plato-card:hover {
  box-shadow: 0 16px 48px rgba(28,21,16,.13);
}
.plato-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.plato-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.plato-card:hover .plato-card-img img { transform: scale(1.06); }
.plato-tag {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
}
.plato-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}
.plato-nombre {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}
.plato-desc {
  font-size: .875rem;
  color: var(--ink-mute);
  line-height: 1.6;
  flex: 1;
}
.plato-precio {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  padding-top: .5rem;
  border-top: 1px solid var(--line);
  display: block;
}
.carta-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--line);
}
.carta-cta p {
  color: var(--ink-mute);
  margin-bottom: 1.25rem;
}

/* =============================================================
   13. STATS STRIP
   ============================================================= */
.stats-strip {
  background: var(--ink);
  padding-block: 3rem;
}
.stats-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(253,250,244,.5);
}
.stat-sep {
  width: 1px;
  height: 3rem;
  background: rgba(253,250,244,.12);
  flex-shrink: 0;
}

/* =============================================================
   14. GALERÍA
   ============================================================= */
.galeria {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--bg);
}
.galeria-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.galeria-header {
  margin-bottom: 3rem;
}
.galeria-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--ink);
}
.galeria-title em { font-style: italic; color: var(--accent); }
.galeria-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.galeria-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-3);
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease-out);
}
.galeria-item:hover img { transform: scale(1.06); }

/* =============================================================
   15. TESTIMONIOS
   ============================================================= */
.testimonios {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--bg-2);
}
.testimonios-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.testimonios-header { margin-bottom: 3rem; }
.testimonios-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--ink);
}
.testimonios-title em { font-style: italic; color: var(--accent); }
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.testimonio {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  position: relative;
}
.testimonio::before {
  content: '"';
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .5;
  color: var(--accent);
  opacity: .18;
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  pointer-events: none;
}
.testimonio-texto {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  position: relative;
}
.testimonio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.testimonio-autor {
  font-weight: 500;
  font-size: .875rem;
  color: var(--ink);
}
.testimonio-via {
  font-size: .78rem;
  color: var(--ink-mute);
}

/* =============================================================
   16. RESERVAR
   ============================================================= */
.reservar {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
}
.reservar-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.reservar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.08) brightness(.88);
}
.reservar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,21,16,.82);
}
.reservar-grain {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.reservar-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.reservar-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fdfaf4;
  margin-bottom: 1rem;
}
.reservar-title em { color: var(--accent); font-style: italic; }
.reservar-sub {
  color: rgba(253,250,244,.65);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 44ch;
}
.reservar-contactos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reservar-contacto {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.25rem;
  background: rgba(253,250,244,.07);
  border: 1px solid rgba(253,250,244,.12);
  border-radius: 12px;
  transition: background .25s, border-color .25s;
  color: #fdfaf4;
}
.reservar-contacto:hover { background: rgba(253,250,244,.13); border-color: rgba(253,250,244,.25); }
.reservar-contacto-icon { font-size: 1.4rem; flex-shrink: 0; }
.reservar-contacto div { display: flex; flex-direction: column; gap: .1rem; }
.reservar-contacto strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(253,250,244,.55); font-weight: 500; }
.reservar-contacto span { font-family: var(--serif); font-size: 1.05rem; }

/* Form */
.reservar-form-wrap {
  background: var(--cream);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.reservar-form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-mute);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197,81,42,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--ink-mute);
  margin-top: .75rem;
}

/* =============================================================
   17. CONTACTO
   ============================================================= */
.contacto {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.contacto-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
.contacto-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
}
.contacto-info { margin-bottom: 1.75rem; }
.contacto-dato {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1.1rem;
}
.contacto-dato strong {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-mute);
  font-weight: 500;
}
.contacto-dato span,
.contacto-dato a {
  font-size: .975rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.contacto-dato a:hover { color: var(--accent); }
.horarios { margin-bottom: 1.5rem; }
.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: .85rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.horario-dia {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
}
.horario-hora {
  font-family: var(--serif);
  font-size: .975rem;
  color: var(--ink-soft);
}
.horario-row--cerrado .horario-hora { color: var(--ink-mute); }
.contacto-nota {
  font-size: .82rem;
  color: var(--ink-mute);
  font-style: italic;
}

/* =============================================================
   18. FOOTER
   ============================================================= */
.footer {
  background: var(--ink);
  padding-block: 2.5rem;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer-brand { display: flex; flex-direction: column; gap: .25rem; }
.footer-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fdfaf4;
}
.footer-tagline {
  font-size: .8rem;
  color: rgba(253,250,244,.45);
  letter-spacing: .05em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}
.footer-nav a {
  font-size: .85rem;
  color: rgba(253,250,244,.55);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-copy {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.footer-copy p {
  font-size: .78rem;
  color: rgba(253,250,244,.35);
}
.footer-credits-link a {
  color: rgba(253,250,244,.35);
  text-decoration: underline;
  font-size: .75rem;
}
.footer-credits-link a:hover { color: rgba(253,250,244,.6); }
.footer-deco {
  position: absolute;
  bottom: -80px; right: -40px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,81,42,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* =============================================================
   19. Responsive — tablet
   ============================================================= */
@media (min-width: 720px) {
  .concepto-inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
  .concepto-visual { grid-template-columns: 1fr .55fr; gap: .75rem; align-items: start; }
  .carta-grid { grid-template-columns: 1fr 1fr; }
  .galeria-mosaic { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; }
  .galeria-item--tall { grid-row: span 2; aspect-ratio: auto; }
  .galeria-item--wide { grid-column: span 2; aspect-ratio: 16/7; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .reservar-inner { grid-template-columns: 1fr 1fr; }
  .contacto-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: row; align-items: center; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .nav-burger { display: none !important; }
}

@media (min-width: 960px) {
  .carta-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: flex; }
}

@media (max-width: 959px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* =============================================================
   20. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line { animation: none; }
  .hero-kicker-dot { animation: none; }
  .marquee-track { animation: none; }
}

/* ===== FAQ ===== */
.faq {
  padding: 6rem 1rem;
  background: var(--bg-alt, #f7f2e8);
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-header {
  margin-bottom: 2.5rem;
}
.faq-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-dark, #1a1a1a);
  line-height: 1.15;
}
.faq-grid {
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: var(--bg, #fafaf8);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.faq-item[open] {
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.faq-question {
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark, #1a1a1a);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent, #c5512a);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.4rem 1.2rem;
  font-size: .95rem;
  color: var(--text-mid, #555);
  line-height: 1.65;
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: .9rem;
}
@media (min-width: 720px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================================
   16. Legal pages (privacidad / cookies / términos)
   ============================================================= */
.legal-header {
  background: var(--ink);
  padding: 1.25rem var(--gutter);
}
.legal-header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.legal-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fdfaf4;
}
.legal-back {
  font-size: .85rem;
  color: rgba(253,250,244,.65);
  transition: color .2s;
}
.legal-back:hover { color: var(--accent); }

.legal-main {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter) 4rem;
}
.legal-kicker {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.legal-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: .5rem;
}
.legal-updated {
  font-size: .85rem;
  color: var(--ink-mute);
  margin-bottom: 2.5rem;
}
.legal-notice {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.legal-body h2 {
  font-size: 1.4rem;
  margin-top: 2.25rem;
  margin-bottom: .75rem;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-size: .98rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.legal-body ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--ink-soft);
  font-size: .98rem;
}
.legal-body li { margin-bottom: .4rem; }
.legal-body a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--accent); }
.legal-body strong { color: var(--ink); }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: .9rem;
}
.legal-body th, .legal-body td {
  text-align: left;
  padding: .6rem .75rem;
  border: 1px solid var(--line);
}
.legal-body th { background: var(--bg-2); }

/* =============================================================
   17. Form checkbox (consentimiento)
   ============================================================= */
.form-check {
  margin-bottom: 1.1rem;
}
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--ink-mute);
  cursor: pointer;
}
.form-check-label input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  margin-top: .15rem;
  accent-color: var(--accent);
}
.form-check-label a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.form-check-label a:hover { color: var(--accent); }
