:root {
  --forest: #487a56;
  --forest-dark: #183c29;
  --leaf: #74ae85;
  --mint: #afd1c6;
  --sand: #ede8d2;
  --ivory: #f7f4e9;
  --white: #fffef8;
  --coral: #dc6c55;
  --coffee: #714c35;
  --ink-soft: #355342;
  --line: rgba(24, 60, 41, .2);
  --display: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  --body: "Avenir Next", "Trebuchet MS", sans-serif;
  --serif: "Bodoni 72", "Baskerville", Georgia, serif;
  --ease: cubic-bezier(.23, 1, .32, 1);
  --pad: clamp(1.25rem, 4vw, 5rem);
  --max: 1440px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ivory);
  color: var(--forest-dark);
}

section[id] { scroll-margin-top: 76px; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .045;
  background-image: url("../images/noise.svg");
}

body.menu-open { overflow: hidden; }

img { display: block; width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }

::selection { color: var(--white); background: var(--forest); }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -100px;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--forest-dark);
  transition: top 180ms var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: height 280ms var(--ease), background 280ms var(--ease), border 280ms var(--ease), box-shadow 280ms var(--ease);
}

.site-header.is-scrolled {
  height: 76px;
  border-color: var(--line);
  background: rgba(247, 244, 233, .92);
  box-shadow: 0 14px 35px rgba(24, 60, 41, .06);
  backdrop-filter: blur(16px);
}

.brand { width: 70px; line-height: 0; }
.brand img { height: 52px; object-fit: contain; object-position: left center; }

.desktop-nav { display: flex; gap: 2.35rem; }
.desktop-nav .menu { display: flex; gap: 2.35rem; margin: 0; padding: 0; list-style: none; }
.desktop-nav a {
  position: relative;
  text-decoration: none;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  content: "";
  background: var(--forest);
  transition: right 220ms var(--ease);
}
.desktop-nav a:hover::after { right: 0; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.language-switcher { display: inline-flex; align-items: center; gap: .38rem; font-size: .69rem; font-weight: 800; letter-spacing: .1em; }
.language-switcher a { padding: .32rem .16rem; color: var(--ink-soft); text-decoration: none; }
.language-switcher a[aria-current="page"] { color: var(--forest-dark); border-bottom: 2px solid currentColor; }
.language-switcher a:not([aria-current="page"]):hover { color: var(--forest); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}
.button:hover { transform: translateY(-3px); }
.button-small { min-height: 44px; padding: .65rem 1.1rem; font-size: .68rem; }
.button-primary { color: var(--white); background: var(--forest); box-shadow: 0 10px 25px rgba(72, 122, 86, .18); }
.button-primary:hover { background: var(--forest-dark); box-shadow: 0 15px 30px rgba(24, 60, 41, .18); }
.button-dark { color: var(--white); background: var(--forest-dark); }
.button-dark:hover { background: var(--forest); }
.button-light { color: var(--forest-dark); background: var(--ivory); }

.menu-toggle { display: none; width: 46px; height: 46px; padding: 0 11px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform 220ms var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { display: none; }

.admin-bar .site-header { top: 32px; }

.hero {
  min-height: min(920px, 100vh);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
  padding: 116px var(--pad) 30px;
  background:
    radial-gradient(circle at 14% 68%, rgba(175, 209, 198, .26), transparent 24rem),
    var(--ivory);
}

.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 2rem clamp(1rem, 5vw, 5.2rem) 2rem 0; }
.hero-kicker { display: flex; align-items: center; gap: .7rem; margin-bottom: 2rem; font-size: .73rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px rgba(220, 108, 85, .14); }
.hero h1, h2 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.055em; line-height: .84; text-transform: uppercase; }
.hero h1 { max-width: 720px; font-size: clamp(4.6rem, 9vw, 9.4rem); }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; letter-spacing: -.04em; text-transform: none; }
.hero h1 em { color: var(--forest); font-size: .88em; }
.hero-intro { max-width: 560px; margin: 2.2rem 0 0; color: var(--ink-soft); font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.55; }
.hero-buttons { display: flex; align-items: center; gap: 2rem; margin-top: 2.2rem; }
.text-action { display: inline-flex; gap: .65rem; align-items: center; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.text-action span { transition: transform 220ms var(--ease); }
.text-action:hover span { transform: translateX(4px); }
.hero-notes { display: flex; gap: 2rem; margin-top: 3.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.hero-notes strong { color: var(--forest-dark); }

.hero-visual { position: relative; min-height: 650px; padding: 0 0 2.5rem 2rem; }
.hero-photo { height: 100%; margin: 0; overflow: hidden; border-radius: 45% 45% 2rem 2rem / 25% 25% 2rem 2rem; background: var(--mint); }
.hero-photo img { height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hero-visual:hover .hero-photo img { transform: scale(1.025); }
.sun-badge { position: absolute; top: 5%; right: -3%; width: 126px; height: 126px; display: grid; place-items: center; border-radius: 50%; color: var(--forest-dark); background: var(--sand); box-shadow: 0 15px 30px rgba(24, 60, 41, .12); transform: rotate(8deg); }
.sun-badge::before { position: absolute; inset: 8px; border: 1px dashed var(--forest); border-radius: 50%; content: ""; }
.sun-badge span { font-family: var(--display); font-size: 1rem; font-weight: 800; line-height: 1; text-align: center; }
.hero-card { position: absolute; left: 0; bottom: 0; width: min(320px, 74%); display: grid; gap: .35rem; padding: 1.25rem 1.35rem; border: 1px solid rgba(24,60,41,.18); border-radius: 1.4rem; background: rgba(255, 254, 248, .93); box-shadow: 0 18px 40px rgba(24,60,41,.13); backdrop-filter: blur(15px); }
.mini-label { color: var(--forest); font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-card strong { font-family: var(--display); font-size: 1.28rem; text-transform: uppercase; }
.hero-card > span:not(.mini-label) { color: var(--ink-soft); font-size: .78rem; }
.hero-card b { position: absolute; right: 1.2rem; top: 1.1rem; font-size: .95rem; }
.hero-card small { font-size: .55rem; }
.scribble { position: absolute; right: 2%; bottom: 2.8rem; color: var(--white); font-family: var(--serif); font-size: 1.5rem; font-style: italic; transform: rotate(-7deg); }

.reveal { opacity: 0; animation: reveal-up .9s var(--ease) forwards; }
.hero .reveal:nth-child(1) { animation-delay: .1s; }
.hero .reveal:nth-child(2) { animation-delay: .18s; }
.hero .reveal:nth-child(3) { animation-delay: .26s; }
.hero .reveal:nth-child(4) { animation-delay: .34s; }
.hero .reveal:nth-child(5) { animation-delay: .42s; }
.hero-visual.reveal { animation-delay: .16s; }

@keyframes reveal-up { from { opacity: 0; transform: translateY(24px); filter: blur(8px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }

.ticker { overflow: hidden; color: var(--ivory); background: var(--forest-dark); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 2.6rem; padding: 1rem 0; animation: ticker 28s linear infinite; }
.ticker span { font-family: var(--display); font-size: .76rem; font-weight: 800; letter-spacing: .22em; }
.ticker i { color: var(--mint); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(6rem, 11vw, 10rem) var(--pad); }
.eyebrow { display: flex; align-items: center; gap: .85rem; margin: 0 0 1.4rem; color: var(--forest); font-size: .72rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .6rem; }
.eyebrow.light { color: var(--sand); }
.story { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; }
.story-heading h2, .section-top h2, .reserve-intro-copy h2, .visit-title h2 { font-size: clamp(3.4rem, 6.8vw, 7.2rem); }
.story-heading h2 { max-width: 760px; }
.story-heading h2 em { color: var(--forest); }
.story-copy { max-width: 470px; align-self: end; padding-bottom: .5rem; }
.story-copy p { color: var(--ink-soft); }
.story-copy .story-lead { color: var(--forest-dark); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.35; }
.story-copy .text-action { margin-top: 1rem; }
.story-collage { grid-column: 1 / -1; position: relative; height: min(740px, 65vw); min-height: 520px; margin-top: 2rem; }
.story-photo { position: absolute; margin: 0; overflow: hidden; }
.story-photo img { height: 100%; object-fit: cover; }
.story-photo-main { inset: 0 27% 0 8%; border-radius: 13rem 13rem 1.5rem 1.5rem; }
.story-photo-small { z-index: 2; right: 0; bottom: 5%; width: 32%; height: 47%; border: 12px solid var(--ivory); border-radius: 1rem; }
.brand-tile { position: absolute; z-index: 3; left: 0; bottom: 7%; width: 190px; height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem; border-radius: 50% 50% 1.2rem 1.2rem / 33% 33% 1.2rem 1.2rem; color: var(--white); background: var(--forest); transform: rotate(-5deg); }
.brand-tile img { width: 112px; height: 116px; object-fit: contain; }
.brand-tile span { font-size: .56rem; letter-spacing: .25em; }
.collage-caption { position: absolute; right: 2%; top: 7%; display: flex; gap: .8rem; color: var(--forest); font-family: var(--serif); font-size: 1.15rem; font-style: italic; writing-mode: vertical-rl; }

.menu-section { max-width: none; color: var(--ivory); background: var(--forest); }
.menu-section > * { max-width: calc(var(--max) - (var(--pad) * 2)); margin-left: auto; margin-right: auto; }
.section-top { display: grid; grid-template-columns: 1fr minmax(280px, 410px); align-items: end; gap: 3rem; }
.section-top h2 em { color: var(--sand); }
.section-top > p { margin: 0 0 .4rem; color: rgba(255,255,255,.76); font-size: 1.02rem; }
.menu-tabs { display: flex; gap: .8rem; margin-top: 4rem; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,.2); }
.menu-tabs button { min-height: 44px; padding: .65rem 1.1rem; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: var(--ivory); background: transparent; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: color 220ms var(--ease), background 220ms var(--ease); }
.menu-tabs button[aria-selected="true"] { color: var(--forest-dark); background: var(--sand); }
.menu-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(2rem, 6vw, 6rem); margin-top: 2rem; }
.menu-panels { min-width: 0; }
.menu-availability { margin: 0 0 .9rem; color: var(--mint); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.menu-group + .menu-group { margin-top: 3.5rem; }
.menu-group-heading { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: .6rem; padding-bottom: .8rem; border-bottom: 1px solid rgba(255,255,255,.34); }
.menu-group-heading > div { display: flex; align-items: center; gap: .75rem; }
.menu-group-heading span { display: grid; flex: 0 0 auto; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--sand); font-size: .58rem; font-weight: 800; }
.menu-group-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(1.55rem, 2.6vw, 2.25rem); line-height: 1; letter-spacing: -.02em; text-transform: uppercase; }
.menu-group-heading > p { margin: 0 0 .15rem; color: var(--mint); font-size: .62rem; font-weight: 800; letter-spacing: .09em; text-align: right; text-transform: uppercase; }
.menu-items-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.menu-item h4 { margin: 0 0 .25rem; font-family: var(--display); font-size: clamp(1.1rem, 1.55vw, 1.45rem); line-height: 1.05; text-transform: uppercase; }
.menu-item h4 small { display: inline; color: var(--mint); font-family: var(--body); font-size: .52em; letter-spacing: .05em; }
.menu-item p { max-width: 560px; margin: 0; color: rgba(255,255,255,.68); font-size: .84rem; }
.menu-item > strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.menu-items-compact .menu-item { align-items: center; padding: .9rem 0; }
.menu-items-compact .menu-item h4 { margin: 0; font-size: 1.05rem; }
.menu-addon { margin: 1rem 0 0; padding: .9rem 1rem; border-radius: .8rem; color: rgba(255,255,255,.7); background: rgba(24,60,41,.16); font-size: .72rem; }
.menu-addon strong { margin-right: .5rem; color: var(--sand); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.menu-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; color: rgba(255,255,255,.65); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.menu-bottom a { color: var(--white); font-weight: 800; text-underline-offset: 5px; }
.menu-empty { padding: 2rem; border: 1px solid rgba(255,255,255,.2); border-radius: 1rem; color: rgba(255,255,255,.74); background: rgba(24,60,41,.18); }
.menu-empty h3 { margin: 0 0 .5rem; color: var(--white); font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
.menu-empty p { margin: 0; }
.menu-photo { position: sticky; top: 104px; align-self: start; height: min(72vh, 760px); min-height: 560px; margin: 0; overflow: hidden; border-radius: 12rem 12rem 1.2rem 1.2rem; background: var(--sand); }
.menu-photo img { height: 100%; object-fit: cover; }
.menu-photo figcaption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; justify-content: space-between; padding: .8rem 1rem; border-radius: 999px; color: var(--forest-dark); background: rgba(247,244,233,.9); backdrop-filter: blur(10px); font-size: .61rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.reserve-section {
  padding: clamp(5.5rem, 10vw, 9rem) var(--pad);
  color: var(--ivory);
  background:
    radial-gradient(circle at 92% 8%, rgba(116, 174, 133, .24), transparent 28rem),
    var(--forest-dark);
}
.reserve-intro,
.mgr-demo-shell { max-width: calc(var(--max) - (var(--pad) * 2)); margin: 0 auto; }
.reserve-intro { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.reserve-intro-copy h2 { max-width: 820px; font-size: clamp(3.4rem, 6.8vw, 7.2rem); }
.reserve-intro-copy h2 em { color: var(--mint); }
.reserve-intro-copy > p:last-child { max-width: 650px; margin: 2rem 0 0; color: rgba(255,255,255,.68); font-size: 1rem; }
.reserve-photo { position: relative; height: 430px; margin: 0; overflow: hidden; border-radius: 12rem 12rem 1.5rem 1.5rem; }
.reserve-photo img { height: 100%; object-fit: cover; }
.reserve-stamp { position: absolute; right: 1.5rem; bottom: 1.5rem; width: 116px; height: 116px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--coral); box-shadow: 0 15px 35px rgba(24,60,41,.2); font-family: var(--display); font-size: .92rem; font-weight: 800; line-height: 1.1; text-align: center; transform: rotate(8deg); }
.mgr-demo-shell { margin-top: clamp(3rem, 7vw, 6rem); }
.mgr-demo-meta { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; color: rgba(255,255,255,.6); font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mgr-demo-meta code { padding: .5rem .8rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--sand); font-family: var(--body); }

.mgr-wrap { --mgr-primary: var(--forest); --mgr-dark: var(--forest-dark); --mgr-glow: rgba(72,122,86,.2); --mgr-line: rgba(24,60,41,.16); color: var(--forest-dark); }
.reservation-fallback { padding: clamp(2rem, 6vw, 5rem); border-radius: 1.75rem; color: var(--forest-dark); background: var(--white); box-shadow: 0 28px 80px rgba(0,0,0,.24); text-align: center; }
.reservation-fallback h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; text-transform: uppercase; }
.reservation-fallback p { max-width: 620px; margin: 1rem auto 1.5rem; color: var(--ink-soft); }
.mgr-card { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 1.75rem; background: var(--white); box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.mgr-card__header { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; padding: 1.5rem 2rem; color: var(--white); background: linear-gradient(115deg, var(--forest) 0%, #315f40 52%, var(--forest-dark) 100%); }
.mgr-card__header::after { position: absolute; inset: 0; content: "PURA VIDA  PURA VIDA  PURA VIDA"; overflow: hidden; color: rgba(255,255,255,.045); font-family: var(--display); font-size: 4rem; font-weight: 800; line-height: 1; white-space: nowrap; transform: rotate(-3deg) translateY(12px); }
.mgr-logo { position: relative; z-index: 1; width: 86px; height: 72px; object-fit: contain; }
.mgr-card__header > div { position: relative; z-index: 1; }
.mgr-card__title { margin: 0; color: var(--white); font-family: var(--display); font-size: 1.8rem; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; }
.mgr-card__subtitle { margin: .35rem 0 0; color: rgba(255,255,255,.75); font-size: .79rem; }
.mgr-version { position: relative; z-index: 1; align-self: start; padding: .4rem .6rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: var(--mint); font-size: .56rem; font-weight: 800; letter-spacing: .12em; }

/* MG Reservas 2.4 real DOM: icon, title and subtitle are direct siblings. */
#reserve #mgr-wrap .mgr-card__header {
  grid-template-columns: 86px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: .35rem;
  align-items: center;
  padding: 1.5rem 2rem;
  text-align: left;
  background: linear-gradient(115deg, var(--forest) 0%, #315f40 52%, var(--forest-dark) 100%) !important;
}
#reserve #mgr-wrap .mgr-card__header > .mgr-icon,
#reserve #mgr-wrap .mgr-card__header > .mgr-card__title,
#reserve #mgr-wrap .mgr-card__header > .mgr-card__subtitle { position: relative; z-index: 1; }
#reserve #mgr-wrap .mgr-card__header > .mgr-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 86px;
  height: 72px;
  margin: 0;
  overflow: hidden;
  color: transparent;
  background: url("../images/logo-white.png") center / contain no-repeat;
  filter: none;
  font-size: 0;
  line-height: 0;
}
#reserve #mgr-wrap .mgr-card__header > .mgr-card__title {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -.02em;
  text-align: left;
  text-transform: uppercase;
}
#reserve #mgr-wrap .mgr-card__header > .mgr-card__subtitle {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: .79rem;
  line-height: 1.4;
  text-align: left;
}
.mgr-layout { display: grid; grid-template-columns: 320px minmax(0, 1fr); }
.mgr-cal-panel { padding: 1.7rem 1.5rem; border-right: 1px solid var(--mgr-line); background: #f1f3ed; }
.mgr-panel-label { margin: 0 0 1rem; color: var(--forest); font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mgr-cal-nav { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; gap: .6rem; margin-bottom: 1.1rem; }
.mgr-cal-nav button { width: 34px; height: 34px; display: grid; place-items: center; padding: 0; border: 1px solid var(--mgr-line); border-radius: 50%; color: var(--forest-dark); background: var(--white); cursor: pointer; transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease); }
.mgr-cal-nav button:hover:not(:disabled) { color: var(--white); background: var(--forest); transform: scale(1.04); }
.mgr-cal-nav button:disabled { opacity: .3; cursor: not-allowed; }
.mgr-cal-month { font-family: var(--display); font-size: 1rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.mgr-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.mgr-cal-dow { padding: .35rem 0 .55rem; color: rgba(24,60,41,.45); font-size: .56rem; font-weight: 800; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.mgr-cal-day { aspect-ratio: 1; display: grid; place-items: center; padding: 0; border: 1px solid transparent; border-radius: .65rem; color: var(--forest-dark); background: transparent; font-size: .76rem; cursor: pointer; transition: color 160ms var(--ease), background 160ms var(--ease), border 160ms var(--ease); }
.mgr-cal-day:hover:not(:disabled) { border-color: rgba(72,122,86,.35); background: var(--white); }
.mgr-cal-day.is-today { border-color: var(--leaf); color: var(--forest); font-weight: 800; }
.mgr-cal-day.is-selected { color: var(--white); border-color: var(--forest); background: var(--forest); box-shadow: 0 6px 14px var(--mgr-glow); font-weight: 800; }
.mgr-cal-day:disabled { color: rgba(24,60,41,.2); cursor: not-allowed; }
.mgr-cal-empty { aspect-ratio: 1; }
.mgr-calendar.is-error { padding: .4rem; border: 2px solid var(--coral); border-radius: .9rem; }
.mgr-cal-selected-wrap { min-height: 42px; display: grid; place-items: center; margin-top: 1rem; padding: .55rem .8rem; border: 1px solid var(--mgr-line); border-radius: .75rem; color: rgba(24,60,41,.52); background: rgba(255,255,255,.55); font-size: .72rem; text-align: center; }
.mgr-cal-selected-wrap.has-date { color: var(--forest-dark); border-color: rgba(72,122,86,.35); background: var(--mint); font-weight: 700; }
.mgr-sample-note { margin: .8rem 0 0; color: rgba(24,60,41,.44); font-size: .6rem; line-height: 1.4; text-align: center; }
.mgr-fields-panel { display: grid; gap: .85rem; padding: 1.75rem 2rem 1.65rem; }
.mgr-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.mgr-field { display: grid; gap: .35rem; min-width: 0; }
.mgr-field label { color: rgba(24,60,41,.62); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mgr-field label span { color: var(--coral); }
.mgr-field input,
.mgr-field select,
.mgr-field textarea { width: 100%; min-height: 48px; padding: .65rem .8rem; border: 1px solid var(--mgr-line); border-radius: .7rem; outline: none; color: var(--forest-dark); background: #f8f8f3; font-family: var(--body); font-size: .82rem; transition: border 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease); }
.mgr-field textarea { min-height: 72px; resize: vertical; }
.mgr-field input:focus,
.mgr-field select:focus,
.mgr-field textarea:focus { border-color: var(--forest); background: var(--white); box-shadow: 0 0 0 3px var(--mgr-glow); }
.mgr-field input.is-error,
.mgr-field select.is-error { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(220,108,85,.12); }
.mgr-field select:disabled { opacity: .55; cursor: not-allowed; }
.mgr-phone-wrap { display: grid; grid-template-columns: 95px 1fr; overflow: hidden; border: 1px solid var(--mgr-line); border-radius: .7rem; background: #f8f8f3; }
.mgr-phone-wrap:focus-within { border-color: var(--forest); box-shadow: 0 0 0 3px var(--mgr-glow); }
.mgr-phone-wrap select,
.mgr-phone-wrap input { border: 0; border-radius: 0; box-shadow: none; }
.mgr-phone-wrap select { border-right: 1px solid var(--mgr-line); background: #eeefe8; }
.mgr-phone-wrap input:focus,
.mgr-phone-wrap select:focus { box-shadow: none; }
.mgr-btn { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .15rem; padding: .8rem 1rem; border: 0; border-radius: .8rem; color: var(--white); background: var(--forest); box-shadow: 0 8px 20px var(--mgr-glow); font-family: var(--body); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: transform 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease); }
.mgr-btn:hover { background: var(--forest-dark); box-shadow: 0 12px 25px rgba(24,60,41,.2); transform: translateY(-2px); }
.mgr-form-footnote { margin: -.15rem 0 0; color: rgba(24,60,41,.45); font-size: .61rem; text-align: center; }
.mgr-message { padding: .75rem .9rem; border: 1px solid rgba(220,108,85,.36); border-radius: .75rem; color: #8b3829; background: #fff1ec; font-size: .76rem; }
.mgr-message[hidden] { display: none; }
.mgr-success-screen { padding: clamp(3rem, 7vw, 6rem) 2rem; color: var(--forest-dark); text-align: center; }
.mgr-success-screen[hidden] { display: none; }
.mgr-success-icon { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 1.2rem; border-radius: 50%; color: var(--white); background: var(--forest); box-shadow: 0 10px 28px var(--mgr-glow); font-size: 1.8rem; }
.mgr-success-kicker { margin: 0 0 .6rem; color: var(--forest); font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.mgr-success-screen h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; text-transform: uppercase; }
.mgr-success-screen > p:not(.mgr-success-kicker) { max-width: 580px; margin: 1rem auto 0; color: rgba(24,60,41,.65); }
.mgr-success-detail { max-width: 620px; display: grid; grid-template-columns: repeat(4, 1fr); margin: 2rem auto; padding: 1rem; border-radius: 1rem; background: #f1f3ed; }
.mgr-success-detail div { padding: .5rem 1rem; border-right: 1px solid var(--mgr-line); }
.mgr-success-detail div:last-child { border: 0; }
.mgr-success-detail dt { color: rgba(24,60,41,.45); font-size: .55rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mgr-success-detail dd { margin: .25rem 0 0; font-family: var(--display); font-weight: 800; }
.mgr-reset-btn { padding: .7rem 1rem; border: 1px solid var(--forest); border-radius: 999px; color: var(--forest); background: transparent; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.mgr-plugin-note { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; color: rgba(255,255,255,.52); font-size: .63rem; }
.mgr-plugin-note span:last-child { text-align: right; }
.mgr-plugin-note strong { color: var(--mint); }

.visit-title { display: grid; grid-template-columns: .55fr 1.45fr; gap: 3rem; align-items: start; }
.visit-title h2 { max-width: 950px; }
.visit-title h2 em { color: var(--forest); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 1rem; margin-top: 4rem; }
.visit-card { min-height: 430px; margin: 0; border-radius: 1.5rem; overflow: hidden; }
.visit-card-place { position: relative; padding: 2rem; color: var(--white); background: var(--forest-dark); }
.visit-card-place .mini-label { color: var(--mint); }
.visit-card h3 { margin: 3rem 0 1rem; font-family: var(--display); font-size: 2.6rem; line-height: .95; text-transform: uppercase; }
.visit-card-place p { max-width: 300px; color: rgba(255,255,255,.68); font-size: .84rem; }
.card-number { position: absolute; right: 1.5rem; bottom: 1rem; color: rgba(255,255,255,.12); font-family: var(--serif); font-size: 4rem; }
.visit-card-hours { position: relative; padding: 2rem; background: var(--mint); }
.visit-card-hours dl { margin: 2.8rem 0 0; }
.visit-card-hours dl div { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(24,60,41,.25); }
.visit-card-hours dt { font-family: var(--display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; }
.visit-card-hours dd { margin: 0; color: var(--ink-soft); font-size: .82rem; }
.tiny-pattern { position: absolute; left: 0; right: 0; bottom: 0; overflow: hidden; color: rgba(24,60,41,.1); font-family: var(--display); font-size: 3rem; font-weight: 800; line-height: .7; white-space: nowrap; transform: rotate(-5deg); }
.visit-card-image img { height: 100%; object-fit: cover; }

.site-footer { padding: 5rem var(--pad) 1.5rem; color: var(--white); background: var(--forest-dark); }
.footer-top { max-width: calc(var(--max) - (var(--pad) * 2)); display: grid; grid-template-columns: .8fr 1.5fr auto; align-items: center; gap: 3rem; margin: 0 auto; }
.footer-top img { width: 160px; height: 140px; object-fit: contain; object-position: left center; }
.footer-top p { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 3.2rem); line-height: 1.13; }
.footer-bottom { max-width: calc(var(--max) - (var(--pad) * 2)); display: flex; justify-content: space-between; gap: 2rem; margin: 4rem auto 0; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.55); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }

.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-on-scroll.in-view { opacity: 1; transform: translateY(0); }

.content-area { min-height: 70vh; padding-top: 9rem; }
.content-area > article { max-width: 780px; margin: 0 auto; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-actions .button-small, .language-switcher-desktop { display: none; }
  .mobile-nav { position: fixed; z-index: 49; inset: 76px 0 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 2rem; color: var(--ivory); background: var(--forest-dark); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav .menu { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin: 0; padding: 0; list-style: none; }
  .mobile-nav a { font-family: var(--display); font-size: clamp(2.4rem, 8vw, 5rem); font-weight: 700; line-height: 1; text-decoration: none; text-transform: uppercase; }
  .mobile-nav .language-switcher { gap: .8rem; margin-top: 1.2rem; font-family: var(--body); font-size: .85rem; letter-spacing: .14em; }
  .mobile-nav .language-switcher a { padding: .55rem .25rem; color: rgba(255,255,255,.65); font-family: var(--body); font-size: .85rem; }
  .mobile-nav .language-switcher a[aria-current="page"] { color: var(--white); }
  .hero { grid-template-columns: 1fr .85fr; }
  .hero h1 { font-size: clamp(4.5rem, 9vw, 7rem); }
  .story { grid-template-columns: 1fr 1fr; }
  .mgr-layout { grid-template-columns: 290px minmax(0, 1fr); }
  .mgr-fields-panel { padding-left: 1.4rem; padding-right: 1.4rem; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit-card-image { grid-column: 1 / -1; height: 430px; }
}

@media (max-width: 820px) {
  .reserve-intro { grid-template-columns: 1fr; }
  .reserve-photo { height: 410px; margin-top: 1rem; }
  .mgr-layout { grid-template-columns: 1fr; }
  .mgr-cal-panel { border-right: 0; border-bottom: 1px solid var(--mgr-line); }
  .mgr-fields-panel { padding: 1.5rem; }
  .mgr-plugin-note { grid-template-columns: 1fr; }
  .mgr-plugin-note span:last-child { text-align: left; }
}

@media (max-width: 760px) {
  :root { --pad: 1.2rem; }
  .site-header { height: 76px; }
  .brand { width: 58px; }
  .brand img { height: 44px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 105px; }
  .hero-copy { padding: 1.5rem 0 3rem; }
  .hero-kicker { margin-bottom: 1.4rem; }
  .hero h1 { font-size: clamp(4.1rem, 22vw, 6.3rem); }
  .hero-intro { margin-top: 1.5rem; font-size: 1.02rem; }
  .hero-buttons { align-items: flex-start; flex-direction: column; gap: 1.4rem; }
  .hero-notes { justify-content: space-between; gap: 1rem; margin-top: 2.5rem; font-size: .6rem; }
  .hero-visual { min-height: 570px; padding-left: 0; }
  .hero-photo { height: 540px; border-radius: 9rem 9rem 1.4rem 1.4rem; }
  .sun-badge { right: -.4rem; width: 104px; height: 104px; }
  .hero-card { left: .6rem; bottom: 0; }
  .scribble { right: 1rem; bottom: 1rem; }
  .ticker-track { gap: 1.6rem; }
  .section { padding-top: 6rem; padding-bottom: 6rem; }
  .story { display: block; }
  .story-heading h2, .section-top h2, .reserve-intro-copy h2, .visit-title h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .story-copy { margin-top: 2rem; }
  .story-collage { height: 620px; min-height: 0; margin-top: 4rem; }
  .story-photo-main { inset: 0 0 90px 0; border-radius: 10rem 10rem 1.2rem 1.2rem; }
  .story-photo-small { right: -.3rem; bottom: 0; width: 48%; height: 240px; border-width: 8px; }
  .brand-tile { bottom: 15px; width: 145px; height: 165px; }
  .brand-tile img { width: 88px; height: 92px; }
  .collage-caption { display: none; }
  .section-top { display: block; }
  .section-top > p { margin-top: 2rem; }
  .menu-tabs { gap: .45rem; overflow-x: auto; margin-top: 2.5rem; scrollbar-width: none; }
  .menu-tabs button { flex: 0 0 auto; padding: .55rem .72rem; font-size: .59rem; white-space: nowrap; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-group-heading { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .menu-group-heading > p { text-align: left; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-item { gap: 1rem; }
  .menu-photo { position: relative; top: auto; height: 520px; min-height: 440px; margin-top: 2rem; border-radius: 9rem 9rem 1rem 1rem; }
  .menu-bottom { flex-direction: column; }
  .reserve-section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .reserve-photo { height: 390px; margin-top: 1rem; }
  .mgr-demo-meta { align-items: flex-start; flex-direction: column; }
  .mgr-card__header { grid-template-columns: auto 1fr; padding: 1.25rem; }
  #reserve #mgr-wrap .mgr-card__header { grid-template-columns: 68px minmax(0, 1fr); column-gap: 1rem; padding: 1.25rem; }
  #reserve #mgr-wrap .mgr-card__header > .mgr-icon { width: 68px; height: 60px; }
  .mgr-logo { width: 68px; height: 60px; }
  .mgr-version { display: none; }
  .mgr-fields-panel { padding: 1.35rem 1.15rem; }
  .mgr-grid-2 { grid-template-columns: 1fr; }
  .mgr-success-detail { grid-template-columns: 1fr 1fr; }
  .mgr-success-detail div:nth-child(2) { border-right: 0; }
  .mgr-success-detail div { border-bottom: 1px solid var(--mgr-line); }
  .mgr-success-detail div:nth-child(3),
  .mgr-success-detail div:nth-child(4) { border-bottom: 0; }
  .visit-title { display: block; }
  .visit-title h2 { margin-top: 2rem; }
  .visit-grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .visit-card, .visit-card-image { grid-column: auto; min-height: 370px; height: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top img { width: 130px; height: 110px; }
  .footer-bottom { flex-direction: column; }
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 360px) {
  .mgr-card__header { gap: .8rem; }
  #reserve #mgr-wrap .mgr-card__header { grid-template-columns: 56px minmax(0, 1fr); column-gap: .75rem; padding: 1rem .95rem; }
  #reserve #mgr-wrap .mgr-card__header > .mgr-icon { width: 56px; height: 54px; }
  #reserve #mgr-wrap .mgr-card__header > .mgr-card__title { font-size: 1.45rem; }
  #reserve #mgr-wrap .mgr-card__header > .mgr-card__subtitle { font-size: .72rem; line-height: 1.35; }
  .mgr-logo { width: 58px; height: 56px; }
  .mgr-card__title { font-size: 1.45rem; }
  .mgr-card__subtitle { font-size: .72rem; line-height: 1.4; }
  .mgr-cal-panel { padding-left: 1.15rem; padding-right: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-on-scroll { opacity: 1; transform: none; filter: none; }
}
