@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-400.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/cormorant-500.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/cormorant-600.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/dm-sans-400.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/dm-sans-500.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/dm-sans-600.woff2") format("woff2"); }

:root {
  --ink: #192117;
  --forest: #222a1d;
  --forest-soft: #34402d;
  --olive: #4f641d;
  --gold: #c8a66a;
  --cream: #f6ecdf;
  --paper: #fcf7ef;
  --white: #fffdf8;
  --line: rgba(25, 33, 23, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; }
body, button, a { -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { background: var(--gold); color: var(--forest); }

.site-header { align-items: center; color: var(--white); display: flex; height: 104px; justify-content: space-between; left: 0; padding: 0 clamp(24px, 4.5vw, 76px); position: fixed; right: 0; top: 0; transition: background .35s ease, height .35s ease, box-shadow .35s ease; z-index: 30; }
.site-header.is-scrolled { background: rgba(25, 33, 23, .96); box-shadow: 0 10px 40px rgba(0,0,0,.12); height: 80px; }
.header-brand { display: block; position: relative; width: 154px; z-index: 33; }
.header-brand img { width: 100%; }
.main-nav { align-items: center; display: flex; gap: clamp(20px, 2.6vw, 42px); }
.main-nav > a { font-size: 12px; font-weight: 600; letter-spacing: .08em; position: relative; text-transform: uppercase; }
.main-nav > a:not(.nav-reserve)::after { background: var(--gold); bottom: -8px; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; width: 100%; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); }
.nav-reserve { border: 1px solid rgba(255,255,255,.55); padding: 13px 18px; transition: background .25s ease, color .25s ease; }
.nav-reserve:hover { background: var(--white); color: var(--forest); }
.nav-toggle { background: transparent; border: 0; cursor: pointer; display: none; height: 44px; padding: 0; position: relative; width: 44px; z-index: 33; }
.nav-toggle span { background: currentColor; height: 1px; left: 8px; position: absolute; transition: transform .25s ease, top .25s ease; width: 28px; }
.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { top: 27px; }
.nav-toggle.is-open span:first-child { top: 22px; transform: rotate(45deg); }
.nav-toggle.is-open span:last-child { top: 22px; transform: rotate(-45deg); }

.hero { background: var(--forest); color: var(--white); min-height: 760px; overflow: hidden; position: relative; }
.hero-media { inset: 0; position: absolute; }
.hero-media::after { background: linear-gradient(90deg, rgba(16,22,15,.9) 0%, rgba(16,22,15,.63) 48%, rgba(16,22,15,.22) 76%, rgba(16,22,15,.46) 100%); content: ""; inset: 0; position: absolute; }
.hero-media img { height: 100%; object-fit: cover; object-position: center 53%; transform: scale(1.035); width: 100%; }
.hero-grain { background-image: radial-gradient(rgba(255,255,255,.12) .6px, transparent .6px); background-size: 4px 4px; inset: 0; opacity: .18; pointer-events: none; position: absolute; }
.hero-content { left: clamp(24px, 8vw, 132px); max-width: 880px; position: absolute; top: 50%; transform: translateY(-44%); z-index: 2; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .2em; margin: 0 0 30px; text-transform: uppercase; }
.eyebrow.light { color: rgba(255,255,255,.78); }
.hero h1, .section h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: .88; margin: 0; }
.hero h1 { font-size: clamp(72px, 10.6vw, 168px); }
.hero h1 em, .section h2 em { color: var(--gold); font-weight: 400; }
.hero-copy { color: rgba(255,255,255,.82); font-size: clamp(16px, 1.4vw, 20px); margin: 34px 0 38px; max-width: 580px; }
.hero-actions { align-items: center; display: flex; gap: 34px; }
.button { align-items: center; border: 1px solid transparent; display: inline-flex; font-size: 12px; font-weight: 600; gap: 26px; justify-content: center; letter-spacing: .08em; min-height: 56px; padding: 0 24px; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--cream); color: var(--forest); }
.button-light:hover { background: var(--white); }
.button-gold { background: var(--gold); color: var(--forest); }
.text-link { border-bottom: 1px solid currentColor; display: inline-flex; font-size: 12px; font-weight: 600; gap: 30px; letter-spacing: .08em; padding: 0 0 7px; text-transform: uppercase; }
.text-link.light { color: var(--white); }
.hero-note { bottom: 84px; font-family: var(--serif); font-size: 22px; line-height: 1.15; position: absolute; right: clamp(24px, 5vw, 80px); text-align: right; transform: rotate(-5deg); z-index: 2; }
.hero-note span { color: var(--gold); display: block; font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.scroll-cue { align-items: center; bottom: 40px; display: flex; font-size: 9px; gap: 12px; left: clamp(24px, 4.5vw, 76px); letter-spacing: .18em; position: absolute; text-transform: uppercase; z-index: 2; }
.scroll-cue span { border: 1px solid rgba(255,255,255,.6); border-radius: 50%; height: 28px; position: relative; width: 28px; }
.scroll-cue span::after { background: var(--white); content: ""; height: 7px; left: 13px; position: absolute; top: 10px; width: 1px; }

.section { padding: clamp(90px, 10vw, 160px) clamp(24px, 7.5vw, 120px); }
.section-kicker { align-items: center; display: flex; font-size: 10px; font-weight: 600; gap: 12px; letter-spacing: .18em; margin-bottom: clamp(52px, 7vw, 100px); text-transform: uppercase; }
.section-kicker span { align-items: center; border: 1px solid var(--line); border-radius: 50%; display: inline-flex; height: 32px; justify-content: center; letter-spacing: 0; width: 32px; }
.section-kicker.light { color: rgba(255,255,255,.75); }
.section-kicker.light span { border-color: rgba(255,255,255,.35); }
.manifesto { background: var(--paper); }
.manifesto-grid { align-items: start; display: grid; gap: clamp(50px, 9vw, 150px); grid-template-columns: minmax(0, 1.6fr) minmax(280px, .7fr); }
.manifesto h2 { font-size: clamp(54px, 7.6vw, 118px); }
.manifesto-copy { max-width: 470px; padding-top: 12px; }
.manifesto-copy p { color: #4c5148; font-size: 16px; margin: 0 0 22px; }
.manifesto-copy .text-link { margin-top: 18px; }
.manifesto-images { height: min(57vw, 820px); margin-top: clamp(70px, 10vw, 150px); position: relative; }
.image-card { margin: 0; overflow: hidden; position: absolute; }
.image-card img { height: 100%; object-fit: cover; width: 100%; }
.image-card-main { height: 83%; left: 6%; top: 0; width: 54%; }
.image-card-detail { bottom: 0; height: 55%; right: 4%; width: 34%; }
.vertical-caption { bottom: 2%; font-size: 9px; left: 1%; letter-spacing: .18em; margin: 0; position: absolute; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left bottom; }

.menu-section { background: var(--forest); color: var(--white); }
.menu-heading { align-items: end; display: grid; gap: 60px; grid-template-columns: 1.3fr .7fr; }
.menu-heading h2 { font-size: clamp(58px, 7.2vw, 110px); }
.menu-heading > p { color: rgba(255,255,255,.65); margin: 0 0 10px auto; max-width: 400px; }
.menu-tabs { border-bottom: 1px solid rgba(255,255,255,.2); display: flex; gap: 10px; margin-top: clamp(60px, 7vw, 110px); overflow-x: auto; scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs button { background: transparent; border: 0; border-bottom: 2px solid transparent; color: rgba(255,255,255,.5); cursor: pointer; flex: 0 0 auto; font-size: 11px; font-weight: 600; letter-spacing: .1em; padding: 18px 22px; text-transform: uppercase; }
.menu-tabs button.is-active { border-color: var(--gold); color: var(--white); }
.menu-list { margin-top: 10px; }
.menu-item { align-items: start; border-bottom: 1px solid rgba(255,255,255,.14); display: grid; gap: 22px; grid-template-columns: 48px 1fr auto; padding: 32px 0; }
.menu-index { color: var(--gold); font-size: 10px; padding-top: 8px; }
.menu-item h3 { font-family: var(--serif); font-size: clamp(26px, 2.5vw, 38px); font-weight: 500; line-height: 1; margin: 0; }
.menu-title-line { align-items: center; display: flex; flex-wrap: wrap; gap: 14px; }
.menu-title-line span { border: 1px solid rgba(200,166,106,.5); color: var(--gold); font-size: 8px; letter-spacing: .12em; padding: 5px 8px; text-transform: uppercase; }
.menu-item p { color: rgba(255,255,255,.58); font-size: 13px; margin: 10px 0 0; max-width: 700px; }
.menu-item > strong { color: var(--cream); font-family: var(--serif); font-size: 23px; font-weight: 500; padding-top: 3px; }
.menu-footer { align-items: center; display: flex; justify-content: space-between; margin-top: 56px; }
.menu-footer p { color: rgba(255,255,255,.45); font-size: 11px; margin: 0; max-width: 340px; }

.experience { background: var(--cream); }
.experience-grid { align-items: center; display: grid; gap: clamp(55px, 9vw, 145px); grid-template-columns: .85fr 1.15fr; }
.experience-copy { padding-bottom: 30px; }
.script-note { color: var(--olive); font-family: var(--serif); font-size: 25px; font-style: italic; margin: 0 0 22px; }
.experience h2 { font-size: clamp(58px, 7.5vw, 112px); }
.experience-copy > p:not(.script-note) { color: #55594e; font-size: 17px; margin: 32px 0 45px; max-width: 520px; }
.experience-photo { margin: 0; position: relative; }
.experience-photo img { aspect-ratio: 1/1.1; object-fit: cover; }
.experience-photo figcaption { background: var(--paper); bottom: -25px; font-family: var(--serif); font-size: 20px; max-width: 310px; padding: 22px 26px; position: absolute; right: -25px; }
.award-row { border-top: 1px solid var(--line); display: grid; gap: 18px; grid-template-columns: repeat(3,1fr); padding-top: 28px; }
.award-row div { display: flex; flex-direction: column; }
.award-row strong { font-family: var(--serif); font-size: 40px; font-weight: 500; line-height: 1; }
.award-row span { color: #666b61; font-size: 9px; letter-spacing: .06em; margin-top: 7px; text-transform: uppercase; }

.gallery-section { background: var(--forest); display: grid; gap: 3px; grid-auto-rows: minmax(200px, 26vw); grid-template-columns: repeat(4,1fr); padding: 3px; }
.gallery-section figure { margin: 0; overflow: hidden; }
.gallery-section img { height: 100%; object-fit: cover; transition: transform .7s ease; width: 100%; }
.gallery-section figure:hover img { transform: scale(1.035); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-standard { grid-column: span 1; }

.visit { background: var(--forest); display: grid; grid-template-columns: 1.05fr .95fr; padding: 0; }
.visit-panel { color: var(--white); padding: clamp(80px, 9vw, 145px) clamp(24px, 7vw, 110px); }
.visit-panel h2 { font-size: clamp(58px, 7vw, 104px); }
.visit-details { border-bottom: 1px solid rgba(255,255,255,.15); border-top: 1px solid rgba(255,255,255,.15); display: grid; gap: 24px; grid-template-columns: repeat(3,1fr); margin: 60px 0 42px; padding: 30px 0; }
.visit-details span { color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.visit-details p { color: rgba(255,255,255,.72); font-size: 13px; margin: 10px 0; }
.visit-details a { text-decoration: underline; text-underline-offset: 4px; }
.visit-image { margin: 0; min-height: 760px; overflow: hidden; position: relative; }
.visit-image img { height: 100%; object-fit: cover; width: 100%; }
.visit-image > a { background: var(--paper); bottom: 24px; font-size: 10px; font-weight: 600; letter-spacing: .08em; padding: 17px 20px; position: absolute; right: 24px; text-transform: uppercase; }

.site-footer { align-items: center; background: #11170f; color: rgba(255,255,255,.66); display: flex; flex-direction: column; padding: 85px 24px 40px; text-align: center; }
.site-footer > img { width: 230px; }
.site-footer > p { font-family: var(--serif); font-size: 25px; margin: 18px 0 35px; }
.footer-links { display: flex; font-size: 10px; font-weight: 600; gap: 32px; letter-spacing: .12em; text-transform: uppercase; }
.site-footer small { border-top: 1px solid rgba(255,255,255,.12); font-size: 9px; letter-spacing: .08em; margin-top: 60px; padding-top: 25px; width: min(100%, 900px); }
.mobile-reserve { display: none; }

@media (max-width: 960px) {
  .site-header { height: 82px; padding: 0 22px; }
  .header-brand { width: 132px; }
  .nav-toggle { display: block; }
  .main-nav { align-items: flex-start; background: var(--forest); flex-direction: column; inset: 0; justify-content: center; opacity: 0; padding: 90px 36px; pointer-events: none; position: fixed; transform: translateY(-16px); transition: opacity .25s ease, transform .25s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a { font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .main-nav .nav-reserve { border-color: var(--gold); color: var(--gold); font-family: var(--sans); font-size: 11px; letter-spacing: .1em; margin-top: 15px; text-transform: uppercase; }
  .hero { min-height: 730px; }
  .hero-media img { object-position: center; }
  .hero-content { left: 24px; max-width: calc(100% - 48px); top: 49%; }
  .hero h1 { font-size: clamp(68px, 17vw, 112px); }
  .hero-note { display: none; }
  .manifesto-grid, .menu-heading, .experience-grid { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 45px; }
  .manifesto-images { height: 100vw; }
  .image-card-main { left: 0; width: 64%; }
  .image-card-detail { right: 0; width: 42%; }
  .menu-heading { align-items: start; }
  .menu-heading > p { margin: 0; }
  .experience-grid { gap: 75px; }
  .experience-copy { max-width: 720px; }
  .visit { grid-template-columns: 1fr; }
  .visit-image { min-height: 650px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 62px; }
  .hero { min-height: 720px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(16,22,15,.45), rgba(16,22,15,.82) 60%, rgba(16,22,15,.92)); }
  .hero-media img { object-position: 42% center; }
  .hero h1 { font-size: 68px; }
  .hero-copy { font-size: 15px; margin: 25px 0 30px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero .button { width: 100%; }
  .scroll-cue { display: none; }
  .section { padding: 82px 22px; }
  .section-kicker { margin-bottom: 50px; }
  .manifesto h2, .menu-heading h2, .experience h2, .visit-panel h2 { font-size: 54px; }
  .manifesto-copy p { font-size: 15px; }
  .manifesto-images { height: 138vw; margin-top: 70px; }
  .image-card-main { height: 72%; width: 75%; }
  .image-card-detail { height: 47%; width: 50%; }
  .vertical-caption { display: none; }
  .menu-tabs { margin-left: -22px; margin-right: -22px; padding-left: 12px; }
  .menu-tabs button { padding: 16px 12px; }
  .menu-item { gap: 12px; grid-template-columns: 28px 1fr; padding: 26px 0; }
  .menu-item > strong { grid-column: 2; padding: 0; }
  .menu-item h3 { font-size: 27px; }
  .menu-footer { align-items: flex-start; flex-direction: column; gap: 25px; }
  .menu-footer .button { width: 100%; }
  .experience-photo figcaption { bottom: -32px; font-size: 17px; right: 0; }
  .award-row { gap: 10px; }
  .award-row strong { font-size: 32px; }
  .award-row span { font-size: 7px; }
  .gallery-section { grid-auto-rows: 70vw; grid-template-columns: repeat(2,1fr); }
  .gallery-wide { grid-column: span 2; }
  .visit-panel { padding: 82px 22px; }
  .visit-details { grid-template-columns: 1fr; }
  .visit-image { min-height: 580px; }
  .site-footer { padding-top: 70px; }
  .mobile-reserve { align-items: center; background: var(--gold); bottom: 0; color: var(--forest); display: flex; font-size: 11px; font-weight: 600; height: 62px; justify-content: space-between; left: 0; letter-spacing: .12em; padding: 0 24px; position: fixed; right: 0; text-transform: uppercase; z-index: 40; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Reservas */
.reservation-page, .confirmation-page { background: var(--paper); padding-bottom: 0; }
.subpage-header { background: rgba(25,33,23,.98); }
.reservation-shell { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(360px,.75fr); min-height: 100vh; padding-top: 80px; }
.reservation-form-panel { min-width: 0; padding: clamp(58px,6vw,96px) clamp(28px,6vw,96px) 100px; }
.reservation-heading { max-width: 820px; }
.reservation-heading .eyebrow { color: var(--olive); margin-bottom: 20px; }
.reservation-heading h1, .confirmation-shell h1 { font-family: var(--serif); font-size: clamp(58px,6.2vw,100px); font-weight: 500; letter-spacing: -.04em; line-height: .88; margin: 0; }
.reservation-heading h1 em, .confirmation-shell h1 em { color: var(--olive); font-weight: 400; }
.reservation-heading > p:last-child { color: #60665d; margin: 30px 0 0; max-width: 570px; }
.reservation-alert { background: #f9eae6; border: 1px solid #d7aca1; color: #79362d; font-size: 13px; margin-top: 34px; padding: 16px 18px; }
.reservation-form { margin-top: 46px; }
.reservation-fieldset { border: 0; margin: 0 0 36px; min-width: 0; padding: 0; }
.reservation-fieldset legend, .reservation-field { color: #5e645a; display: block; font-size: 9px; font-weight: 600; letter-spacing: .15em; margin-bottom: 12px; text-transform: uppercase; }
.reservation-field > span { color: #8b8f87; font-size: 8px; font-weight: 400; }
.reservation-days { display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 10px; scrollbar-width: thin; }
.reservation-day { align-items: center; background: var(--white); border: 1px solid rgba(25,33,23,.15); display: flex; flex: 1 0 70px; flex-direction: column; min-width: 70px; padding: 13px 8px 11px; transition: background .2s,border-color .2s,color .2s; }
.reservation-day span { color: #858a80; font-size: 8px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.reservation-day strong { font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1; margin: 5px 0 2px; }
.reservation-day small { color: #858a80; font-size: 8px; text-transform: uppercase; }
.reservation-day:hover { border-color: var(--gold); }
.reservation-day.is-selected { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.reservation-day.is-selected span, .reservation-day.is-selected small { color: rgba(34,42,29,.67); }
.reservation-times { display: flex; flex-wrap: wrap; gap: 9px; }
.reservation-time { background: var(--white); border: 1px solid rgba(25,33,23,.15); cursor: pointer; font-size: 12px; min-width: 72px; padding: 10px 15px; text-align: center; transition: background .2s,border-color .2s,color .2s; }
.reservation-time:hover { border-color: var(--gold); }
.reservation-time input, .reservation-area input { opacity: 0; pointer-events: none; position: absolute; }
.reservation-time.is-selected { background: var(--forest); border-color: var(--forest); color: var(--white); }
.reservation-time.is-unavailable { cursor: not-allowed; opacity: .3; text-decoration: line-through; }
.reservation-help { color: #777c73; font-size: 12px; margin: 14px 0 0; }
.reservation-two-columns { display: grid; gap: 20px; grid-template-columns: repeat(2,minmax(0,1fr)); min-width: 0; }
.reservation-two-columns > * { min-width: 0; }
.reservation-field { margin-bottom: 32px; }
.reservation-field input, .reservation-field select { appearance: none; background: var(--white); border: 1px solid rgba(25,33,23,.17); border-radius: 0; color: var(--ink); display: block; font-family: var(--sans); font-size: 14px; margin-top: 11px; min-height: 52px; outline: 0; padding: 0 15px; width: 100%; }
.reservation-field select { background-image: linear-gradient(45deg,transparent 50%,var(--olive) 50%),linear-gradient(135deg,var(--olive) 50%,transparent 50%); background-position: calc(100% - 19px) 22px,calc(100% - 14px) 22px; background-repeat: no-repeat; background-size: 5px 5px,5px 5px; padding-right: 40px; }
.reservation-field input:focus, .reservation-field select:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(200,166,106,.13); }
.reservation-counter { align-items: center; background: var(--white); border: 1px solid rgba(25,33,23,.17); display: flex; justify-content: space-between; min-height: 52px; }
.reservation-counter button { background: transparent; border: 0; color: var(--ink); cursor: pointer; font-size: 20px; height: 50px; width: 54px; }
.reservation-counter button:last-child { color: var(--olive); }
.reservation-counter span { color: var(--ink); font-size: 13px; }
.reservation-areas { display: grid; gap: 12px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.reservation-area { background: var(--white); border: 1px solid rgba(25,33,23,.17); cursor: pointer; display: flex; flex-direction: column; padding: 18px 20px; transition: background .2s,border-color .2s; }
.reservation-area strong { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1; }
.reservation-area span { color: #777c73; font-size: 10px; margin-top: 6px; }
.reservation-area.is-selected { background: rgba(200,166,106,.1); border-color: var(--gold); }
.reservation-submit-row { align-items: center; border-top: 1px solid var(--line); display: flex; gap: 26px; margin-top: 8px; padding-top: 30px; }
.reservation-submit-row .button:disabled { cursor: not-allowed; opacity: .4; transform: none; }
.reservation-submit-row p { color: #777c73; font-size: 11px; line-height: 1.55; margin: 0; max-width: 310px; }
.reservation-summary { background: var(--forest); color: var(--white); min-width: 0; padding: clamp(56px,5vw,82px) clamp(28px,4vw,62px); }
.reservation-summary-sticky { position: sticky; top: 120px; }
.reservation-summary .eyebrow { margin-bottom: 22px; }
.reservation-summary-card { background: var(--paper); color: var(--ink); padding: 18px 24px; }
.reservation-summary-card > div, .confirmation-card > div { align-items: baseline; border-bottom: 1px solid rgba(25,33,23,.13); display: flex; gap: 20px; justify-content: space-between; padding: 13px 0; }
.reservation-summary-card > div:last-child, .confirmation-card > div:last-child { border-bottom: 0; }
.reservation-summary-card span, .confirmation-card span { color: #7a8076; font-size: 11px; }
.reservation-summary-card strong { color: var(--ink); font-family: var(--serif); font-size: 18px; font-weight: 500; text-align: right; }
.reservation-summary-card > div:last-child strong { color: var(--olive); }
.reservation-summary-image { height: 260px; margin: 24px 0 0; overflow: hidden; position: relative; }
.reservation-summary-image::after { background: linear-gradient(transparent,rgba(18,24,16,.68)); content: ""; inset: 0; position: absolute; }
.reservation-summary-image img { height: 100%; object-fit: cover; width: 100%; }
.reservation-summary-image figcaption { bottom: 18px; font-size: 9px; font-weight: 600; left: 20px; letter-spacing: .15em; position: absolute; text-transform: uppercase; z-index: 1; }
.reservation-summary-note, .reservation-summary-meta { color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.65; margin: 24px 0 0; }
.reservation-summary-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.reservation-summary-meta { border-top: 1px solid rgba(255,255,255,.14); margin-top: 18px; padding-top: 18px; }

/* Confirmación de reserva */
.confirmation-back { color: rgba(255,255,255,.76); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.confirmation-shell { margin: 0 auto; max-width: 860px; min-height: 100vh; padding: 175px 30px 110px; text-align: center; }
.confirmation-mark { align-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); display: flex; font-family: var(--serif); font-size: 30px; height: 64px; justify-content: center; margin: 0 auto 28px; width: 64px; }
.confirmation-shell .eyebrow { color: var(--olive); margin-bottom: 22px; }
.confirmation-shell h1 { font-size: clamp(54px,7vw,92px); }
.confirmation-lead, .confirmation-shell > p:not(.eyebrow):not(.confirmation-address) { color: #656b61; font-size: 16px; margin: 28px auto 0; max-width: 620px; }
.confirmation-card { background: var(--white); border: 1px solid rgba(25,33,23,.15); margin: 44px auto 0; max-width: 690px; padding: 22px 30px; text-align: left; }
.confirmation-card strong { font-size: 13px; font-weight: 500; text-align: right; }
.confirmation-card > div:first-child strong { color: var(--olive); font-family: var(--serif); font-size: 22px; }
.confirmation-status.pending { color: #a06e21; }
.confirmation-status.confirmed, .confirmation-status.completed { color: #416135; }
.confirmation-status.cancelled { color: #8a3930; }
.confirmation-actions { align-items: center; display: flex; gap: 28px; justify-content: center; margin-top: 34px; }
.confirmation-address { color: #7a8076; font-size: 10px; letter-spacing: .08em; margin-top: 42px; text-transform: uppercase; }

@media (max-width: 980px) {
  .reservation-shell { grid-template-columns: 1fr; }
  .reservation-summary { padding-bottom: 42px; }
  .reservation-summary-sticky { position: static; }
  .reservation-summary-image, .reservation-summary-note, .reservation-summary-meta { display: none; }
}

@media (max-width: 640px) {
  .reservation-shell { padding-top: 82px; }
  .reservation-form-panel { padding: 48px 20px 72px; }
  .reservation-heading h1 { font-size: 46px; }
  .reservation-heading > p:last-child { font-size: 14px; }
  .reservation-form { margin-top: 36px; }
  .reservation-day { flex-basis: 62px; min-width: 62px; }
  .reservation-two-columns, .reservation-areas { grid-template-columns: 1fr; }
  .reservation-fieldset { margin-bottom: 30px; }
  .reservation-submit-row { align-items: stretch; flex-direction: column; }
  .reservation-submit-row .button { width: 100%; }
  .reservation-summary { padding: 34px 20px; }
  .confirmation-shell { padding: 150px 20px 80px; }
  .confirmation-shell h1 { font-size: 52px; }
  .confirmation-card { padding: 18px; }
  .confirmation-card > div { align-items: flex-start; }
  .confirmation-card strong { max-width: 62%; }
  .confirmation-actions { align-items: stretch; flex-direction: column; }
  .confirmation-actions .button { width: 100%; }
}
