/* =========================================================================
   LAS BOTAS — Mediterranean Luxury Hospitality
   Palette override: blanco roto · arena · piedra · oliva · verde jardín ·
   negro suave · dorado sutil. Editorial, airy, photography-led.
   ========================================================================= */
:root {
  --paper:        #ffffff;
  --bg-page:      #f6f1e7;   /* blanco roto / ivory */
  --bg-surface:   #fbf8f1;   /* lifted ivory        */
  --bg-sand:      #efe6d4;   /* arena               */
  --bg-stone:     #e4d9c4;   /* piedra clara        */
  --sand:         #e7dcc6;
  --stone:        #d2c5ad;
  --olive:        #6f6c4d;   /* verde oliva         */
  --olive-soft:   #8a875f;
  --garden:       #434c33;   /* verde jardín        */
  --garden-deep:  #333a26;
  --soft-black:   #23241d;   /* negro suave         */
  --terracotta:   #9a5a3c;   /* muro del edificio (raro) */
  --gold:         #a98a4f;   /* dorado sutil        */
  --gold-soft:    #c4a974;
  --gold-light:   #d8c39a;

  --fg-1: #2a271f;
  --fg-2: #5a5446;
  --fg-3: #8a8273;
  --fg-on-dark:   #f3ede1;
  --fg-on-dark-2: #c9bfab;

  --border:        #e0d6c2;
  --border-strong: #cabda3;
  --border-dark:   rgba(243,237,225,0.16);

  --font-display: 'Cormorant Garamond', 'Hoefler Text', Georgia, serif;
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1); /* @kind other */
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--fg-1); background: var(--bg-page); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ============================ Scroll reveal ============================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; } .reveal.d2 { transition-delay: .24s; } .reveal.d3 { transition-delay: .36s; } .reveal.d4 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================ Buttons ============================ */
.btn { font-family: var(--font-sans); font-weight: 500; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; cursor: pointer; border-radius: 1px; padding: 17px 34px; border: 1px solid transparent; transition: all .4s var(--ease); display: inline-flex; align-items: center; gap: 11px; line-height: 1; white-space: nowrap; }
.btn-primary { background: var(--garden); color: #f3ede1; }
.btn-primary:hover { background: var(--garden-deep); }
.btn-dark { background: var(--soft-black); color: #f3ede1; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--fg-1); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--soft-black); color: #f3ede1; border-color: var(--soft-black); }
.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-light:hover { background: #fff; color: var(--soft-black); }
.btn-lg { padding: 19px 44px; font-size: 11.5px; }

/* ============================ Labels ============================ */
.eyebrow { font-family: var(--font-sans); font-weight: 500; font-size: 11.5px; letter-spacing: .36em; text-transform: uppercase; color: var(--olive); display: inline-flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.no-rule::before { display: none; }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before { background: var(--gold); }

.morelink { font-family: var(--font-sans); font-weight: 500; font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--fg-1); display: inline-flex; align-items: center; gap: 13px; cursor: pointer; padding-bottom: 7px; border-bottom: 1px solid var(--border-strong); transition: .35s var(--ease); }
.morelink:hover { gap: 20px; border-color: var(--gold); color: var(--olive); }
.morelink--light { color: #fff; border-color: rgba(255,255,255,.4); }
.morelink--light:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* ============================ NavBar ============================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 26px 46px; transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s; }
.nav--top { background: linear-gradient(180deg, rgba(20,18,14,.5), rgba(20,18,14,0)); }
.nav--top .nav__link, .nav--top .lang button, .nav--top .lang span { color: #f3ede1; }
.nav--top .nav__burger { color: #f3ede1; }
.nav--solid { background: rgba(246,241,231,.96); backdrop-filter: blur(12px); padding: 8px 46px; box-shadow: 0 1px 0 var(--border); }
.nav--solid .btn-outline { border-color: var(--border-strong); }
.nav__left { display: flex; align-items: center; gap: 30px; }
.nav__logo { height: 40px; width: auto; cursor: pointer; transition: opacity .4s, height .4s; justify-self: center; }
.nav--solid .nav__logo { height: 26px; }
.nav--top .nav__logo.logo-dark { display: none; }
.nav--top .nav__logo.logo-light { display: block; }
.nav--solid .nav__logo.logo-dark { display: block; }
.nav--solid .nav__logo.logo-light { display: none; }
.nav__right { display: flex; align-items: center; gap: 22px; justify-content: flex-end; }
.nav--solid .nav__link { font-size: 10.5px; padding: 5px 0; }
.nav--solid .nav__left { gap: 24px; }
.nav__link { font-family: var(--font-sans); font-weight: 500; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-1); padding: 8px 0; background: none; border: none; cursor: pointer; transition: color .25s; position: relative; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__caret { display: inline-block; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 6px; opacity: .6; }

.dd { position: relative; }
.dd__menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); background: var(--bg-surface); border: 1px solid var(--border); box-shadow: var(--shadow-md); min-width: 230px; padding: 10px; opacity: 0; visibility: hidden; transition: .28s var(--ease); }
.dd:hover .dd__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd__item { display: block; width: 100%; text-align: left; font-family: var(--font-sans); font-size: 12px; letter-spacing: .08em; color: var(--fg-2); background: none; border: none; padding: 11px 14px; cursor: pointer; transition: .2s; }
.dd__item:hover { background: var(--bg-sand); color: var(--garden); }

.lang { display: flex; align-items: center; gap: 7px; }
.lang button { font-family: var(--font-sans); font-size: 11px; letter-spacing: .14em; color: var(--fg-3); background: none; border: none; cursor: pointer; padding: 2px; transition: .2s; }
.lang button.on { color: var(--fg-1); }
.nav--top .lang button.on { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.nav--solid .lang button.on { color: var(--garden); }
.lang .sep { opacity: .4; font-size: 11px; }

.nav__burger { display: none; background: none; border: none; cursor: pointer; color: var(--fg-1); }
.navmobile { position: fixed; inset: 0; z-index: 59; background: var(--bg-page); padding: 100px 32px 32px; display: flex; flex-direction: column; gap: 2px; animation: fade .3s var(--ease); }
.navmobile__link { font-family: var(--font-display); font-weight: 500; font-size: 30px; color: var(--fg-1); background: none; border: none; text-align: left; padding: 14px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.navmobile .btn { margin-top: 24px; justify-content: center; }

/* ============================ Hero (single, full-bleed) ============================ */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: flex; align-items: flex-end; color: #fff; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: kenburns 22s ease-out forwards; }
@keyframes kenburns { to { transform: scale(1); } }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,14,.42) 0%, rgba(20,18,14,.05) 32%, rgba(20,18,14,.45) 72%, rgba(20,18,14,.82) 100%); z-index: 2; }
.hero__inner { position: relative; z-index: 3; padding: 0 46px 84px; max-width: 1180px; width: 100%; }
.hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(46px, 7.4vw, 116px); line-height: .98; letter-spacing: -.012em; margin: 26px 0 0; text-wrap: balance; }
.hero__title em { font-style: italic; }
.hero__sub { font-family: var(--font-body); font-weight: 300; font-size: clamp(16px, 1.7vw, 21px); line-height: 1.55; color: #ece4d4; max-width: 540px; margin: 28px 0 36px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.7); }
.hero__scroll span { font-family: var(--font-sans); font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; }
.hero__scroll i { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,0)); animation: scrollcue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes scrollcue { 0% { transform: scaleY(0); opacity: 0; } 40% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

/* ============================ Section frame ============================ */
.section { padding: clamp(80px, 12vw, 168px) 46px; }
.section--page { background: var(--bg-page); }
.section--surface { background: var(--bg-surface); }
.section--sand { background: var(--bg-sand); }
.section--dark { background: var(--soft-black); color: var(--fg-on-dark); }
.section--black { background: var(--soft-black); color: var(--fg-on-dark); }
.container { max-width: var(--maxw); margin: 0 auto; }
.chapter-mark { font-family: var(--font-sans); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }

/* ============================ Statement / intro ============================ */
.statement { max-width: 1040px; margin: 0 auto; text-align: center; }
.statement__lead { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.8vw, 54px); line-height: 1.2; letter-spacing: -.005em; color: var(--fg-1); margin: 32px 0 0; text-wrap: balance; }
.statement__lead em { font-style: italic; color: var(--olive); }
.statement__sign { margin-top: 40px; font-family: var(--font-sans); font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--fg-3); }

/* ============================ Split feature ============================ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split__media { min-height: 86vh; background-size: cover; background-position: center; }
.split__panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(52px, 8vw, 128px); }
.split--right .split__media { order: 2; }
.split__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 4.6vw, 70px); line-height: 1.02; letter-spacing: -.012em; margin: 22px 0 26px; }
.split__title em { font-style: italic; color: var(--olive); }
.split__text { font-family: var(--font-body); font-weight: 300; font-size: 18px; line-height: 1.78; color: var(--fg-2); margin: 0 0 18px; max-width: 480px; }
.split--dark { background: var(--soft-black); color: var(--fg-on-dark); }
.split--dark .split__text { color: var(--fg-on-dark-2); }
.split--dark .split__title { color: #fff; }
.split--dark .split__title em { color: var(--gold-soft); }
.split--dark .eyebrow { color: var(--gold-soft); }
.statline { display: flex; gap: 52px; margin: 12px 0 34px; }
.statline .n { font-family: var(--font-display); font-size: 50px; line-height: 1; color: rgb(59, 75, 30); }
.split--dark .statline .n { color: var(--gold-soft); }
.statline .l { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-3); margin-top: 9px; }
.split--dark .statline .l { color: var(--fg-on-dark-2); }
.btnrow { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ============================ Section head ============================ */
.head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-bottom: 60px; }
.head__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.02; letter-spacing: -.01em; margin: 16px 0 0; color: inherit; }

/* ============================ Gastronomy cards ============================ */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.gcard { cursor: pointer; }
.gcard__img { aspect-ratio: 3/4; overflow: hidden; background: var(--bg-stone); }
.gcard__img i { display: block; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 1.1s var(--ease); }
.gcard:hover .gcard__img i { transform: scale(1.055); }
.gcard__k { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin: 20px 0 0; }
.gcard__name { font-family: var(--font-display); font-weight: 500; font-size: 29px; line-height: 1.06; margin: 7px 0 9px; color: var(--fg-1); }
.section--dark .gcard__name { color: #fff; }
.gcard__desc { font-family: var(--font-body); font-weight: 300; font-size: 14.5px; line-height: 1.62; color: var(--fg-2); margin: 0; }
.section--dark .gcard__desc { color: var(--fg-on-dark-2); }

/* ============================ Spaces (espacios con alma) ============================ */
.spaces { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.space { position: relative; overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; cursor: pointer; }
.space.tall { min-height: 620px; }
.space i { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ease); }
.space:hover i { transform: scale(1.05); }
.space__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,14,0) 30%, rgba(20,18,14,.78) 100%); }
.space__t { position: relative; z-index: 2; padding: 38px 40px; color: #fff; }
.space__t .k { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); }
.space__t h3 { font-family: var(--font-display); font-weight: 500; font-size: 34px; margin: 8px 0 8px; line-height: 1; }
.space__t p { font-family: var(--font-body); font-weight: 300; font-size: 14.5px; line-height: 1.55; color: #e6ddcc; margin: 0; max-width: 360px; }

/* ============================ Moments (full-bleed quote over photo) ============================ */
.moments { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; padding: 80px 46px; }
.moments__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.moments__scrim { position: absolute; inset: 0; background: rgba(20,18,14,.5); }
.moments__inner { position: relative; z-index: 2; max-width: 880px; }
.moments__q { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(30px, 4.4vw, 62px); line-height: 1.18; margin: 28px 0 0; text-wrap: balance; }
.moments__tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.moments__tag { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: #f0e8d8; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 10px 20px; }

/* ============================ Four-up numbered grid (Estilo 1) ============================ */
.fourup { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fourcell { position: relative; margin: 0; cursor: pointer; }
.fourcell__n { font-family: var(--font-sans); font-size: 12px; letter-spacing: .24em; color: var(--terracotta); display: block; margin-bottom: 12px; }
.fourcell i { display: block; width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center; transition: transform 1.1s var(--ease); }
.fourcell:hover i { transform: scale(1.04); }
@media (max-width: 900px) { .fourup { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fourup { grid-template-columns: 1fr; } }

/* ============================ History: awards + videos ============================ */
.split__media--photo { position: relative; overflow: hidden; }
.split__media--photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(0.26) contrast(1.02); }
.split__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 22px; font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: #f3ede1; background: linear-gradient(180deg, rgba(20,18,14,0), rgba(20,18,14,.7)); }
.awards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.award { border-top: 1px solid var(--olive); padding-top: 26px; }
.award__year { font-family: var(--font-display); font-size: 52px; line-height: 1; color: var(--wine); }
.award h3 { font-family: var(--font-display); font-weight: 500; font-size: 28px; margin: 12px 0 10px; color: var(--fg-1); }
.award p { font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.65; color: var(--fg-2); margin: 0; max-width: 460px; }
.videos { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.video { position: relative; aspect-ratio: 16/9; background: var(--bg-stone); overflow: hidden; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .awards, .videos { grid-template-columns: 1fr; } }

/* ============================ Daily menu — Verbena format ============================ */
.verbena { max-width: 680px; margin: 0 auto; text-align: center; }
.verbena__head { margin-bottom: 56px; }
.verbena__date { font-family: var(--font-sans); font-size: 13px; letter-spacing: .34em; color: var(--fg-3); margin-top: 16px; }
.vgroup { margin-bottom: 46px; }
.vgroup__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 4vw, 46px); line-height: 1; color: var(--fg-1); margin: 0 0 22px; }
.vgroup__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.vgroup__list li { font-family: var(--font-sans); font-weight: 400; font-size: 13.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-2); line-height: 1.5; }
.verbena__incl { font-family: var(--font-body); font-weight: 400; font-size: 16px; color: var(--wine); margin: 40px 0 18px; }
.verbena__price { font-family: var(--font-display); font-weight: 500; font-size: clamp(56px, 9vw, 88px); line-height: 1; color: var(--fg-1); }
.verbena__price span { font-size: 0.4em; vertical-align: super; letter-spacing: .02em; }
.verbena__note { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--fg-3); margin-top: 16px; }

/* ============================ Group menus ============================ */
.cmenus { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cmenu { background: var(--bg-surface); border: 1px solid var(--border); padding: 34px 34px 28px; display: flex; flex-direction: column; }
.cmenu__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 18px; }
.cmenu__name { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1; color: var(--fg-1); margin: 0; }
.cmenu__price { font-family: var(--font-display); font-weight: 500; font-size: 28px; color: var(--wine); white-space: nowrap; }
.cmenu__price small { font-family: var(--font-sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); }
.cmenu__sec { margin-bottom: 16px; }
.cmenu__sec h4 { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.cmenu__sec ul, .cmenu__plain { list-style: none; margin: 0; padding: 0; }
.cmenu__sec li, .cmenu__plain li { font-family: var(--font-body); font-weight: 300; font-size: 14.5px; line-height: 1.5; color: var(--fg-2); margin-bottom: 4px; }
.cmenu__pick li { position: relative; }
.cmenu__or { display: block; font-family: var(--font-display); font-style: italic; font-size: 13px; color: var(--fg-3); margin: 2px 0; }
.cmenu__bodega p { font-family: var(--font-body); font-weight: 300; font-size: 13.5px; line-height: 1.5; color: var(--fg-2); margin: 0; }
.cmenu__note { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); font-family: var(--font-body); font-weight: 300; font-size: 12px; font-style: italic; color: var(--fg-3); line-height: 1.5; }
.aperitivo { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: center; background: var(--bg-sand); padding: 44px 46px; }
.aperitivo__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px,4vw,46px); line-height: 1.02; margin: 12px 0 18px; color: var(--fg-1); }
.aperitivo__bar { margin-top: 20px; }
.aperitivo__bar h4 { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.aperitivo__bar p { font-family: var(--font-body); font-weight: 300; font-size: 14.5px; color: var(--fg-2); margin: 0; }
.aperitivo__price { text-align: center; }
.aperitivo__price .cmenu__price { font-size: 44px; }
.interes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.interes__card { border-top: 1px solid var(--olive); padding-top: 20px; }
.interes__price { font-family: var(--font-display); font-weight: 500; font-size: 38px; line-height: 1; color: var(--wine); }
.interes__price small { font-family: var(--font-sans); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); }
.interes__card h4 { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin: 8px 0 8px; color: var(--fg-1); }
.interes__card p { font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.infogen { background: var(--bg-surface); border: 1px solid var(--border); padding: 48px 52px; }
.infogen__list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 14px; }
.infogen__list li { font-family: var(--font-body); font-weight: 300; font-size: 15.5px; line-height: 1.6; color: var(--fg-2); padding-left: 22px; position: relative; }
.infogen__list li::before { content: "·"; position: absolute; left: 4px; color: var(--gold); font-weight: 700; }
.horarios { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; border-top: 1px solid var(--border); padding-top: 28px; }
.horarios h4 { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.horarios p { font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; }
@media (max-width: 820px) { .cmenus, .interes, .aperitivo, .horarios { grid-template-columns: 1fr; } }

/* ============================ legacy menucards ============================ */
.menucards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.menucard { display: flex; flex-direction: column; background: var(--bg-surface); border: 1px solid var(--border); overflow: hidden; }
.menucard__img { height: 230px; background-size: cover; background-position: center; }
.menucard__body { padding: 30px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.menucard__k { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.menucard__name { font-family: var(--font-display); font-weight: 500; font-size: 32px; line-height: 1.04; margin: 8px 0 12px; color: var(--fg-1); }
.menucard__desc { font-family: var(--font-body); font-weight: 300; font-size: 15.5px; line-height: 1.66; color: var(--fg-2); margin: 0 0 24px; flex: 1; }
.menucard__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px; }
.menucard__price { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--wine); }
@media (max-width: 820px) { .menucards { grid-template-columns: 1fr; } }

/* ============================ Editorial gallery ============================ */
.editgallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 150px; gap: 18px; }
.editgallery figure { margin: 0; overflow: hidden; background: var(--bg-stone); cursor: pointer; }
.editgallery figure i { display: block; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 1.1s var(--ease); }
.editgallery figure:hover i { transform: scale(1.05); }
.g-a { grid-column: span 5; grid-row: span 3; }
.g-b { grid-column: span 4; grid-row: span 2; }
.g-c { grid-column: span 3; grid-row: span 3; }
.g-d { grid-column: span 4; grid-row: span 2; }
.g-e { grid-column: span 5; grid-row: span 2; }
.g-f { grid-column: span 3; grid-row: span 2; }
.g-g { grid-column: span 4; grid-row: span 2; }

/* ============================ Testimonials ============================ */
.testi { max-width: 900px; margin: 0 auto; text-align: center; }
.testi__q { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.4vw, 44px); line-height: 1.28; color: var(--fg-1); margin: 30px 0 0; text-wrap: balance; }
.section--dark .testi__q { color: #fff; }
.testi__who { margin-top: 30px; font-family: var(--font-sans); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--fg-3); }
.section--dark .testi__who { color: var(--gold-soft); }
.testi__dots { display: flex; gap: 9px; justify-content: center; margin-top: 40px; }
.testi__dot { width: 7px; height: 7px; border-radius: 999px; background: var(--border-strong); border: none; padding: 0; cursor: pointer; transition: .3s; }
.testi__dot.on { background: var(--olive); transform: scale(1.25); }
.section--dark .testi__dot { background: rgba(255,255,255,.25); }
.section--dark .testi__dot.on { background: var(--gold-soft); }

/* ============================ Reservation CTA band ============================ */
.cta { position: relative; padding: clamp(110px, 15vw, 200px) 46px; text-align: center; color: #fff; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta__scrim { position: absolute; inset: 0; background: rgba(20,18,14,.62); }
.cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 5.2vw, 76px); line-height: 1.02; margin: 18px 0 20px; }
.cta__sub { font-family: var(--font-body); font-weight: 300; font-size: 18px; color: #ece4d4; max-width: 500px; margin: 0 auto 34px; line-height: 1.6; }
.cta__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================ Footer ============================ */
.footer { background: var(--soft-black); color: var(--fg-on-dark); padding: 90px 46px 40px; }
.footer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 46px; }
.footer__logo { height: 42px; margin-bottom: 24px; }
.footer__tag { font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.72; color: var(--fg-on-dark-2); max-width: 270px; }
.footer h4 { font-family: var(--font-sans); font-weight: 500; font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; }
.footer p, .footer a.fl { display: block; font-family: var(--font-body); font-weight: 300; font-size: 14.5px; line-height: 1.9; color: var(--fg-on-dark-2); margin: 0; transition: color .2s; }
.footer a.fl:hover { color: #fff; }
.footer__social { display: flex; gap: 16px; margin-top: 18px; }
.footer__bottom { max-width: var(--maxw); margin: 60px auto 0; padding-top: 26px; border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between; align-items: center; font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-on-dark-2); gap: 16px; flex-wrap: wrap; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a { color: var(--fg-on-dark-2); transition: color .2s; }
.footer__legal a:hover { color: var(--gold-soft); }

/* ============================ Page hero (secondary) ============================ */
.pagehero { position: relative; height: 62vh; min-height: 440px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.pagehero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: kenburns 20s ease-out forwards; }
.pagehero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,14,.35), rgba(20,18,14,.8)); }
.pagehero__inner { position: relative; z-index: 2; padding: 0 46px 60px; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.pagehero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(48px, 7vw, 104px); line-height: .98; margin: 16px 0 0; }

/* ============================ Menu (la carta) ============================ */
.carta { max-width: 940px; margin: 0 auto; }
.carta__group { margin-bottom: 78px; }
.carta__grouptitle { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 3.4vw, 44px); color: var(--fg-1); margin: 0 0 6px; }
.carta__groupnote { font-family: var(--font-sans); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; }
.mrow { display: flex; align-items: baseline; gap: 16px; padding: 22px 0; border-top: 1px solid var(--border); }
.mrow:first-of-type { border-top: 1.5px solid var(--olive); }
.mrow__main { flex: 0 1 auto; }
.mrow__name { font-family: var(--font-display); font-weight: 600; font-size: 23px; color: var(--fg-1); }
.mrow__desc { font-family: var(--font-body); font-weight: 300; font-size: 14.5px; color: var(--fg-2); margin-top: 5px; max-width: 540px; line-height: 1.5; }
.mrow__dots { flex: 1; border-bottom: 1px dotted var(--border-strong); transform: translateY(-5px); min-width: 24px; }
.mrow__price { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--olive); }
.tag { font-family: var(--font-sans); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; border-radius: 999px; padding: 4px 11px; margin-left: 10px; vertical-align: middle; }
.tag--house { color: var(--olive); border: 1px solid var(--olive); }
.menunav { position: sticky; top: 64px; z-index: 20; display: flex; gap: 10px; justify-content: center; flex-wrap: nowrap; overflow-x: auto; padding: 18px 22px; background: rgba(246,241,231,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); margin-bottom: 64px; scrollbar-width: none; }
.menunav::-webkit-scrollbar { display: none; }
.menunav button { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; color: var(--fg-2); background: none; border: none; border-bottom: 1px solid transparent; border-radius: 0; padding: 8px 4px; cursor: pointer; transition: .25s var(--ease); flex: 0 0 auto; }
.menunav button:hover { color: var(--olive); }
.menunav button.on { color: var(--garden); border-color: var(--gold); }

/* ============================ Spaces detail (espacios page) ============================ */
.spacelist { display: flex; flex-direction: column; gap: 0; }
.spacerow { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.spacerow__media { min-height: 70vh; background-size: cover; background-position: center; }
.spacerow--right .spacerow__media { order: 2; }
.spacerow__panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 7vw, 110px); background: var(--bg-surface); }
.spacerow:nth-child(even) .spacerow__panel { background: var(--bg-sand); }
.spacerow__cap { display: flex; gap: 26px; margin: 22px 0 0; }
.spacerow__cap div { font-family: var(--font-sans); font-size: 11px; letter-spacing: .12em; color: var(--fg-2); }
.spacerow__cap b { display: block; font-family: var(--font-display); font-size: 26px; color: var(--olive); font-weight: 500; letter-spacing: 0; }

/* ============================ Gallery page ============================ */
.gallery { columns: 3; column-gap: 18px; }
.gallery img { width: 100%; margin: 0 0 18px; cursor: pointer; transition: opacity .3s; }
.gallery img:hover { opacity: .9; }
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(20,18,14,.92); display: flex; align-items: center; justify-content: center; padding: 30px; animation: fade .3s var(--ease); }
.lightbox img { max-width: 92vw; max-height: 90vh; box-shadow: 0 30px 80px rgba(0,0,0,.5); }

/* ============================ Contact / forms ============================ */
.contactgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; max-width: var(--maxw); margin: 0 auto; }
.infocard h3 { font-family: var(--font-sans); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.infocard p { font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--fg-2); margin: 0; }
.infocard a { color: var(--fg-1); border-bottom: 1px solid var(--border-strong); transition: .2s; }
.infocard a:hover { color: var(--olive); border-color: var(--olive); }
.inforow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; max-width: var(--maxw); margin: 0 auto; }
.formcard { display: flex; flex-direction: column; }
.mapblock { position: relative; height: 240px; background-size: cover; background-position: center; border: 1px solid var(--border); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--fg-1); background: #fff; border: 1px solid var(--border-strong); border-radius: 2px; padding: 13px 15px; outline: none; transition: border-color .2s; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--olive); }

/* ============================ Reservation modal ============================ */
.modal__overlay { position: fixed; inset: 0; background: rgba(20,18,14,.66); backdrop-filter: blur(5px); z-index: 130; display: flex; align-items: center; justify-content: center; padding: 24px; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal { background: var(--bg-surface); width: 100%; max-width: 560px; box-shadow: var(--shadow-lg); position: relative; }
.modal__top { position: relative; height: 140px; background-size: cover; background-position: center; }
.modal__top .modal__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,14,.1), rgba(20,18,14,.78)); }
.modal__top .modal__title { position: absolute; left: 32px; bottom: 20px; z-index: 2; color: #fff; font-family: var(--font-display); font-size: 34px; }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 3; background: rgba(0,0,0,.35); border: none; color: #fff; width: 38px; height: 38px; border-radius: 999px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; }
.modal__close:hover { background: rgba(0,0,0,.62); }
.modal__body { padding: 32px; }
.modal__steps { display: flex; gap: 8px; margin-bottom: 26px; }
.modal__step { flex: 1; height: 2px; background: var(--border); transition: .3s; }
.modal__step.is-on { background: var(--olive); }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-family: var(--font-sans); font-size: 13.5px; padding: 11px 17px; border: 1px solid var(--border-strong); border-radius: 2px; cursor: pointer; background: #fff; transition: .15s; }
.chip:hover { border-color: var(--olive); }
.chip.is-sel { background: var(--garden); color: #f3ede1; border-color: var(--garden); }
.modal__confirm { text-align: center; padding: 10px 0 6px; }
.modal__confirm .mark { width: 62px; height: 62px; border-radius: 999px; background: rgba(67,76,51,.1); color: var(--garden); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }

/* ============================ Responsive (mobile-first scaling) ============================ */
@media (max-width: 1000px) {
  .nav { grid-template-columns: 1fr auto; padding: 18px 22px; }
  .nav__left { display: none; }
  .nav__right .lang, .nav__right .btn, .nav__right .nav__link { display: none; }
  .nav__burger { display: flex; }
  .nav__logo { justify-self: start; }
  .split, .spacerow, .contactgrid { grid-template-columns: 1fr; }
  .split--right .split__media, .spacerow--right .spacerow__media { order: 0; }
  .split__media { min-height: 60vh; }
  .spacerow__media { min-height: 52vh; }
  .cards3 { grid-template-columns: 1fr 1fr; }
  .spaces { grid-template-columns: 1fr; }
  .editgallery { grid-auto-rows: 120px; }
  .gallery { columns: 2; }
  .section, .hero__inner, .pagehero__inner, .cta, .moments { padding-left: 22px; padding-right: 22px; }
  .contactgrid, .inforow { gap: 40px; }
  .inforow { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cards3 { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .editgallery { grid-template-columns: repeat(6, 1fr); }
  .g-a,.g-b,.g-c,.g-d,.g-e,.g-f,.g-g { grid-column: span 6; grid-row: span 2; }
  .statline { gap: 32px; }
  .hero__inner { padding-bottom: 64px; }
}


/* ---- tokens recovered from colors_and_type.css / Final.html ---- */
:root{
  --wine:#7a2839;
  --shadow-sm:0 1px 2px rgba(42,32,29,.06);
  --shadow-md:0 6px 20px rgba(42,32,29,.10);
  --shadow-lg:0 18px 50px rgba(42,32,29,.16);
}

/* Crisp SVG wordmark logo (inline, uses currentColor) */
.nav__logo { height: 38px; cursor: pointer; color: var(--soft-black); transition: height .4s var(--ease), color .4s; overflow: visible; }
.nav--solid .nav__logo { height: 26px; color: var(--soft-black); }
.nav--top .nav__logo { color: #f3ede1; }
.footer__logo { height: 44px; color: #f3ede1; }

/* Mobile nav menu — bulletproof: opaque, full-screen, scrollable, reachable close */
@media (max-width: 1000px) {
  .navmobile {
    height: 100vh; height: 100dvh;
    z-index: 1;                 /* nav is a z:60 layer; this covers the page, bar stays above */
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 88px 26px 40px;
    animation: lb-menu-in .26s var(--ease);
  }
  .nav__logo, .nav__burger { position: relative; z-index: 2; }
  .navmobile__link { font-size: 26px; padding: 12px 0; }
}
@keyframes lb-menu-in { from { transform: translateY(-8px); } to { transform: translateY(0); } }

/* Mobile rhythm — less huge, less scrolling */
@media (max-width: 700px) {
  .section { padding: 56px 22px; }
  .hero { min-height: 0; height: 70vh; }
  .hero__inner { padding: 0 22px 36px; }
  .hero__scroll { display: none; }
  .hero__title { font-size: clamp(38px, 10.5vw, 54px); }
  .hero__sub { font-size: 16px; margin: 20px 0 28px; }
  .statement__lead { font-size: clamp(22px, 5.6vw, 30px); }
  .head { margin-bottom: 34px; }
  .head__title, .split__title { font-size: clamp(27px, 7.6vw, 40px); }
  .pagehero { height: 44vh; min-height: 300px; }
  .pagehero__title { font-size: clamp(40px, 12vw, 60px); }
  .split__panel { padding: 40px 22px; }
  .split__media { min-height: 46vh; }
  .fourup { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery { columns: 2; column-gap: 12px; }
  .gallery img { margin-bottom: 12px; }
  .editgallery { grid-auto-rows: 92px; gap: 12px; }
  .moments { min-height: 68vh; }
  .cta { padding: 84px 22px; }
  .footer { padding: 56px 22px 34px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .carta__group { margin-bottom: 48px; }
  .verbena__head { margin-bottom: 36px; }
  .cmenus, .interes, .aperitivo { gap: 18px; }
}
@media (max-width: 440px) {
  .cards3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* Legal pages content typography */
.legal-content h1, .legal-content h2 { font-family: var(--font-display); font-weight: 500; color: var(--fg-1); line-height: 1.15; margin: 1.5em 0 .5em; }
.legal-content h2 { font-size: clamp(24px, 3vw, 34px); }
.legal-content h3, .legal-content h4 { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: var(--fg-1); margin: 1.4em 0 .4em; }
.legal-content p, .legal-content li { font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.75; color: var(--fg-2); }
.legal-content p { margin: 0 0 1.1em; }
.legal-content ul, .legal-content ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.legal-content li { margin-bottom: .45em; }
.legal-content a { color: var(--olive); border-bottom: 1px solid var(--border-strong); }
.legal-content strong, .legal-content b { font-weight: 500; color: var(--fg-1); }
.legal-content > :first-child { margin-top: 0; }

/* Reservas widget — centered, clean (Tableo's own card sits inside) */
.reservas-widget { width: 100%; max-width: 760px; margin: 0 auto; }
.reservas-widget iframe { display: block; width: 100%; border: 0; background: transparent; border-radius: 8px; }

/* Nav links are now real <a> — keep them looking like the original buttons */
.nav__link, .dd__item, .navmobile__link, .morelink { text-decoration: none; cursor: pointer; }
.nav__logo { cursor: pointer; }

/* ---- Auditoría móvil / accesibilidad (VER 23) ---- */
/* 16px en los campos evita el zoom automático de iOS al enfocar un input */
.field input, .field textarea, .field select { font-size: 16px; }
.field .lb-invalid { border-color: #b32d2e !important; box-shadow: 0 0 0 1px #b32d2e; }
/* Área táctil ampliada para los puntos del carrusel (visual 7px, toque ~44px) */
.testi__dot { position: relative; }
.testi__dot::before { content: ""; position: absolute; inset: -18px; }
