/* =============================================================
   Indian Palace · Pineda de Mar
   Archetype 01 — Editorial Light Cream (giro azafrán + jade)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Cream editorial base */
  --bg:        #f4efe6;   /* crema cálido */
  --bg-2:      #ece2d1;   /* arena */
  --bg-3:      #e4d8c2;
  --paper:     #fffdf8;
  --ink:       #1a1a1a;
  --ink-soft:  #2c2926;
  --ink-mute:  #6f675c;
  --line:      rgba(26, 22, 18, 0.12);
  --line-2:    rgba(26, 22, 18, 0.22);

  /* Indian accents */
  --saffron:   #e08a2b;   /* azafrán / cúrcuma — acento principal */
  --saffron-2: #c9742018; /* wash */
  --terra:     #b85c3a;   /* terracota */
  --jade:      #1f6f6b;   /* verde pavo real / jade — secundario */
  --jade-2:    #17514e;
  --gold:      #b98a3e;

  --accent:    var(--saffron);
  --accent-2:  var(--jade);

  /* Type */
  --serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 1280px;
  --radius: 14px;

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   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;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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 { line-height: 1.04; letter-spacing: -0.02em; text-wrap: balance; font-weight: 500; }

::selection { background: var(--saffron); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .65rem 1.1rem; background: var(--ink); color: var(--bg);
  border-radius: 8px; font-weight: 500; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--jade);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--jade); opacity: .6;
}
.eyebrow.is-center::before { display: none; }

.devanagari { font-weight: 500; font-style: normal; }

/* =============================================================
   4. Typography scale
   ============================================================= */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: -0.025em;
}
.display em { font-style: italic; font-weight: 400; color: var(--saffron); }

h1.display { font-size: clamp(2.7rem, 7.4vw, 6rem); line-height: 0.98; }
h2.display { font-size: clamp(2.1rem, 5vw, 3.9rem); line-height: 1.0; }
h3.display { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
}

/* =============================================================
   5. Components
   ============================================================= */
/* Buttons */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--bg);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: 100px;
  font-size: .92rem; font-weight: 500; letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(26,22,18,0.10), 0 1px 3px rgba(26,22,18,0.06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(26,22,18,0.16), 0 10px 20px rgba(224,138,43,0.20);
}
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-primary { --btn-bg: var(--saffron); --btn-fg: #2a1706; }
.btn-jade { --btn-bg: var(--jade); --btn-fg: #eafaf6; }
.btn-ghost {
  --btn-fg: var(--ink);
  background: transparent; color: var(--btn-fg);
  border: 1px solid var(--line-2);
  box-shadow: none;
}
.btn-ghost:hover { box-shadow: 0 12px 26px rgba(26,22,18,0.10); background: var(--paper); }
.btn .arrow { transition: transform .4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* Pill / meta chip */
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .85rem; border: 1px solid var(--line);
  border-radius: 100px; font-size: .78rem; color: var(--ink-mute);
  background: var(--paper);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--jade); }

/* Section frame */
.section { padding-block: clamp(4.5rem, 10vw, 8rem); position: relative; }
.section-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head .lede { margin-top: 1.1rem; }
.section-num {
  font-family: var(--serif); font-style: italic; color: var(--saffron);
  font-size: 1.1rem;
}

/* =============================================================
   6. Custom cursor
   ============================================================= */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; display: none; opacity: 0; transition: opacity .25s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; border-radius: 50%; }
.cursor-dot { width: 6px; height: 6px; margin: -3px; background: var(--saffron); }
.cursor-ring {
  width: 34px; height: 34px; margin: -17px;
  border: 1.4px solid var(--jade);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), background-color .35s, border-color .35s;
}
.cursor.is-interactive .cursor-ring { width: 54px; height: 54px; margin: -27px; background: rgba(224,138,43,0.12); border-color: var(--saffron); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   7. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.15rem;
}
.nav.is-scrolled {
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.brand-mark {
  display: inline-flex; flex-direction: column; line-height: 1;
}
.brand-mark .bm-name { font-family: var(--serif); font-size: 1.32rem; letter-spacing: -0.01em; }
.brand-mark .bm-sub { font-size: .58rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--jade); margin-top: .28rem; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link { position: relative; font-size: .9rem; color: var(--ink-soft); padding: .3rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--saffron); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-soft);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}

/* Hamburger */
.nav-burger {
  display: inline-flex; flex-direction: column; gap: 5px; padding: .6rem; z-index: 210;
}
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease-out), opacity .3s; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) { .nav-burger { display: none; } }

/* Mobile menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 205;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile ul { list-style: none; text-align: center; display: grid; gap: 1.4rem; }
.nav-mobile a { font-family: var(--serif); font-size: clamp(1.8rem, 8vw, 2.8rem); }
.nav-mobile a em { font-style: italic; color: var(--saffron); }
.nav-mobile .nm-meta { margin-top: 2.5rem; font-size: .85rem; color: rgba(244,239,230,0.6); letter-spacing: .08em; }

/* =============================================================
   8. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease-out), clip-path 1.05s var(--ease-soft);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { text-align: center; }
.splash-name { font-family: var(--serif); font-size: clamp(2.2rem, 7vw, 3.6rem); letter-spacing: -0.02em; }
.splash-name em { font-style: italic; color: var(--saffron); }
.splash-sub { margin-top: .7rem; font-size: .72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--jade); }
.splash-line { display: block; width: 0; height: 1.5px; background: var(--saffron); margin: 1.4rem auto 0; animation: splashLine 1.6s var(--ease-out) forwards; }
@keyframes splashLine { to { width: 120px; } }

/* =============================================================
   9. Hero
   ============================================================= */
.hero { position: relative; padding-top: clamp(7rem, 15vw, 9.5rem); padding-bottom: clamp(3rem, 8vw, 5rem); overflow: clip; }
.hero-halo {
  position: absolute; z-index: 0; pointer-events: none;
  inset: -20% -10% auto -10%; height: 90%;
  background: radial-gradient(45% 55% at 68% 40%, rgba(224,138,43,0.28), transparent 70%),
              radial-gradient(40% 50% at 20% 65%, rgba(31,111,107,0.14), transparent 72%);
  filter: blur(30px);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(2.4rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.3rem; }
.hero-sub { max-width: 42ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.2rem; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 1rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.hero-rating .score { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--ink); }
.hero-rating .stars { color: var(--saffron); font-size: .95rem; letter-spacing: .1em; }
.hero-rating .rmeta { font-size: .82rem; color: var(--ink-mute); }
.hero-rating .rmeta strong { color: var(--ink-soft); font-weight: 600; }

/* Hero figure */
.hero-figure { position: relative; justify-self: center; width: 100%; max-width: 520px; }
.hero-figure .frame {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -30px rgba(26,22,18,0.5), 0 0 0 1px var(--line);
  transform: rotate(-1.2deg);
}
.hero-figure .frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: ambientZoom 26s ease-in-out infinite; }
@keyframes ambientZoom { 0%,100% { transform: scale(1.04) translate3d(0,0,0);} 50% { transform: scale(1.11) translate3d(-1%,-1%,0);} }
.hero-figure .tag {
  position: absolute; z-index: 3; bottom: -14px; left: -14px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: .8rem 1.05rem;
  box-shadow: 0 18px 40px -18px rgba(26,22,18,0.4);
  transform: rotate(2deg);
}
.hero-figure .tag .t-k { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--jade); }
.hero-figure .tag .t-n { font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
.hero-figure .badge {
  position: absolute; z-index: 3; top: -18px; right: -10px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--jade); color: #eafaf6;
  display: grid; place-items: center; text-align: center;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; line-height: 1.3;
  box-shadow: 0 16px 34px -14px rgba(31,111,107,0.7);
  transform: rotate(-8deg);
}
.hero-figure .badge b { font-family: var(--serif); font-style: italic; font-size: 1.5rem; text-transform: none; letter-spacing: 0; display: block; }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: clamp(3rem, 6vw, 5rem); }
  .hero-figure { justify-self: end; }
}

/* =============================================================
   10. Marquee ticker
   ============================================================= */
.marquee {
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: 1.1rem;
}
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track { display: inline-flex; gap: 2.6rem; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 2.6rem;
}
.marquee-track span::after { content: "◆"; color: var(--saffron); font-size: .6rem; }

/* =============================================================
   11. Concepto (about)
   ============================================================= */
.concept-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.concept-lead .concept-mark { font-family: var(--serif); font-size: clamp(3rem,7vw,4.6rem); font-style: italic; color: var(--saffron); line-height: .8; }
.concept-body p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 56ch; }
.concept-body p:last-child { margin-bottom: 0; }
.pillars { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.4rem; }
.pillar { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.pillar h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: .4rem; }
.pillar p { font-size: .92rem; color: var(--ink-mute); }
.pillar .p-icon { color: var(--jade); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; display: block; margin-bottom: .6rem; }
@media (min-width: 860px) {
  .concept-grid { grid-template-columns: 0.85fr 1.15fr; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
}

/* =============================================================
   12. Bento — platos destacados
   ============================================================= */
.bento { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.dish {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink); color: var(--bg);
  min-height: 260px; isolation: isolate;
  border: 1px solid var(--line);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft);
  will-change: transform;
}
.dish:hover { transition-duration: .18s; box-shadow: 0 46px 90px -26px rgba(184,92,58,0.45), 0 0 0 1px rgba(224,138,43,0.3); }
.dish img {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-soft), filter .6s;
}
.dish::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,14,8,0.05) 0%, rgba(20,14,8,0.35) 45%, rgba(20,14,8,0.86) 100%);
  transition: opacity .5s;
}
.dish:hover img { transform: scale(1.09); filter: saturate(1.15) brightness(1.04); }
.dish-body { position: relative; z-index: 1; margin-top: auto; padding: 1.3rem 1.4rem; display: flex; flex-direction: column; height: 100%; justify-content: flex-end; }
.dish-tag {
  position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  background: var(--saffron); color: #2a1706; padding: .35rem .7rem; border-radius: 100px; font-weight: 600;
}
.dish-name { font-family: var(--serif); font-size: 1.55rem; line-height: 1.02; margin-bottom: .45rem; }
.dish-note { font-size: .86rem; color: rgba(244,239,230,0.78); max-width: 34ch; margin-bottom: .7rem; }
.dish-price {
  align-self: flex-start; font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  border: 1px solid rgba(244,239,230,0.35); border-radius: 100px; padding: .3rem .8rem;
  color: var(--bg);
}
.dish.is-feature .dish-name { font-size: clamp(1.7rem, 3vw, 2.4rem); }

@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .bento { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 240px; }
  .dish { min-height: 0; }
  .dish:nth-child(1) { grid-column: span 6; grid-row: span 2; }
  .dish:nth-child(2) { grid-column: span 3; grid-row: span 1; }
  .dish:nth-child(3) { grid-column: span 3; grid-row: span 1; }
  .dish:nth-child(4) { grid-column: span 3; grid-row: span 1; }
  .dish:nth-child(5) { grid-column: span 3; grid-row: span 1; }
  .dish:nth-child(6) { grid-column: span 4; grid-row: span 1; }
  .dish:nth-child(7) { grid-column: span 4; grid-row: span 1; }
  .dish:nth-child(8) { grid-column: span 4; grid-row: span 1; }
}

/* =============================================================
   13. Carta (menu list)
   ============================================================= */
.menu-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.6rem, 4vw, 3rem); }
.menu-cols { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem); }
.menu-cat h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 1.1rem; display: flex; align-items: baseline; gap: .7rem; }
.menu-cat h3 .devanagari { font-size: .95rem; color: var(--jade); font-weight: 500; }
.menu-item { display: flex; align-items: baseline; gap: .7rem; padding: .5rem 0; border-bottom: 1px dotted var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-item .mi-name { font-weight: 500; color: var(--ink-soft); }
.menu-item .mi-note { font-size: .78rem; color: var(--ink-mute); display: block; margin-top: .12rem; }
.menu-item .mi-lead { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); }
.menu-item .mi-price { font-variant-numeric: tabular-nums; color: var(--saffron); font-weight: 600; white-space: nowrap; }
.menu-foot { margin-top: 2rem; font-size: .82rem; color: var(--ink-mute); display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; }
.menu-foot .spice { color: var(--terra); }
@media (min-width: 720px) { .menu-cols { grid-template-columns: 1fr 1fr; } }

/* Dulces + bebidas strip */
.sweets { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.2rem; }
.sweet-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 180px; color: var(--bg); display: flex; align-items: flex-end; border: 1px solid var(--line); }
.sweet-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.sweet-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(20,14,8,0.82)); }
.sweet-card .sc-body { padding: 1.1rem 1.2rem; }
.sweet-card .sc-name { font-family: var(--serif); font-size: 1.2rem; }
.sweet-card .sc-note { font-size: .8rem; color: rgba(244,239,230,0.8); }
@media (min-width: 640px) { .sweets { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   14. Visita — horario, ubicación, contacto
   ============================================================= */
.visit-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }
.info-block { border-top: 1px solid var(--line); padding-top: 1.3rem; margin-bottom: 1.8rem; }
.info-block:last-child { margin-bottom: 0; }
.info-block .ib-k { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--jade); margin-bottom: .7rem; }
.info-block .ib-v { font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; }
.info-block .ib-v a { border-bottom: 1px solid var(--saffron); transition: color .3s; }
.info-block .ib-v a:hover { color: var(--saffron); }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; font-family: var(--sans); font-size: .95rem; }
.hours-row .hr-d { color: var(--ink-mute); }
.hours-row .hr-h { font-variant-numeric: tabular-nums; }

/* Reserva form */
.reserve {
  background: var(--ink); color: var(--bg);
  border-radius: 20px; padding: clamp(1.8rem, 4vw, 2.8rem);
  position: relative; overflow: hidden;
}
.reserve-halo { position: absolute; inset: -40% -20% auto auto; width: 70%; height: 120%; background: radial-gradient(circle, rgba(224,138,43,0.25), transparent 65%); filter: blur(30px); pointer-events: none; }
.reserve h3 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .5rem; position: relative; }
.reserve h3 em { font-style: italic; color: var(--saffron); }
.reserve p.r-sub { color: rgba(244,239,230,0.7); margin-bottom: 1.6rem; font-size: .92rem; position: relative; }
.cta-form { position: relative; display: grid; gap: .9rem; transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft); }
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; padding: 1.1rem 1rem .55rem; border: 1px solid rgba(244,239,230,0.22);
  background: rgba(244,239,230,0.04); color: var(--bg); border-radius: 10px;
  font: inherit; transition: border-color .3s, background-color .3s;
}
.field textarea { min-height: 82px; resize: vertical; padding-top: 1.4rem; }
.field select { color: var(--bg); }
.field select option { color: #1a1a1a; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--saffron); background: rgba(244,239,230,0.08); }
.field label {
  position: absolute; left: 1rem; top: 1rem; pointer-events: none;
  color: rgba(244,239,230,0.55); font-size: .95rem; transition: all .22s var(--ease-out);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field.is-filled label {
  top: .32rem; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--saffron);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.cta-submit { position: relative; margin-top: .3rem; }
.cta-form-label { transition: opacity .3s; }
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form-spinner { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; }
.cta-form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after { content: ""; width: 18px; height: 18px; border: 2px solid rgba(42,23,6,0.35); border-top-color: #2a1706; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.cta-success { position: absolute; inset: 0; display: grid; place-content: center; text-align: left; opacity: 0; pointer-events: none; transition: opacity .7s var(--ease-out) .2s; padding: inherit; }
.cta-success.is-visible { opacity: 1; pointer-events: auto; }
.cta-success h4 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .5rem; }
.cta-success h4 em { font-style: italic; color: var(--saffron); }
.cta-success p { color: rgba(244,239,230,0.75); font-size: .9rem; }
.r-note { font-size: .78rem; color: rgba(244,239,230,0.5); margin-top: 1rem; position: relative; }
.r-note a { color: rgba(244,239,230,0.85); border-bottom: 1px solid var(--saffron); }

@media (min-width: 900px) { .visit-grid { grid-template-columns: 0.9fr 1.1fr; } }

/* Google map */
.visit-map-wrap {
  position: relative;
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 26px 54px -34px rgba(26,22,18,0.5), 0 0 0 1px var(--line);
  background: var(--bg-2);
}
.visit-map {
  width: 100%; height: clamp(260px, 42vw, 420px);
  border: 0; display: block;
  filter: saturate(1.04) contrast(1.02);
}
.visit-map-link {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .6rem 1.05rem; border-radius: 100px;
  background: var(--paper); color: var(--ink-soft);
  font-size: .82rem; font-weight: 500;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px -12px rgba(26,22,18,0.4);
  transition: transform .35s var(--ease-out), color .3s;
}
.visit-map-link span { color: var(--saffron); transition: transform .35s var(--ease-out); }
.visit-map-link:hover { color: var(--saffron); transform: translateY(-2px); }
.visit-map-link:hover span { transform: translateX(3px); }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer .f-brand .bm-name { font-family: var(--serif); font-size: 1.7rem; }
.footer .f-brand p { color: var(--ink-mute); font-size: .9rem; margin-top: .6rem; max-width: 34ch; }
.footer .f-col h4 { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--jade); margin-bottom: 1rem; }
.footer .f-col a, .footer .f-col p { display: block; color: var(--ink-soft); font-size: .92rem; padding: .22rem 0; }
.footer .f-col a:hover { color: var(--saffron); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 1.6rem; font-size: .8rem; color: var(--ink-mute); }
.footer-bottom a { border-bottom: 1px solid var(--line-2); }
.footer-bottom a:hover { color: var(--saffron); border-color: var(--saffron); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* =============================================================
   16. Reveal + defensive rules
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
/* Defensive: split-text elements never invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   17. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-figure .frame img { animation: none; transform: scale(1.02); }
  .splash-line { animation: none; width: 120px; }
}
