/* ==========================================================================
   scaleKit studio, hospitality engine: guest site
   Language adopted from Resort Vibe Studio (docs/DESIGN_LANGUAGE_2.md).
   A vibe is a whole identity: palette, the display and body pair, weight,
   tracking and scale, the radii and the motion. Switching vibe never changes
   markup. Checkout and dining layer on top of this file.
   ========================================================================== */

/* ------------------------------------------------------------- vibes ---- */
:root, :root[data-vibe="grove"] {
  --bg: #E6E9DD; --surface: #F1F2EA; --ink: #1C251E; --muted: #536050; --line: #C7CDBD;
  --deep: #22392A; --on-deep: #ECEEE4; --deep-muted: #B5C0AE; --deep-line: rgba(236, 238, 228, .18);
  --accent: #C2912F; --on-accent: #1C1A10; --accent-ink: #7A5714;
  --paper: #F4EFE0; --paper-ink: #2A2418;
  --display: "Newsreader", "Iowan Old Style", Georgia, serif; --body: "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --display-weight: 400; --display-track: -0.018em; --ds: 1;
  --r-img: 18px; --r-feature: 18px; --r-btn: 999px; --r-bar: 20px; --r-card: 18px;
  --dur: 600ms; --ease: cubic-bezier(.2, .7, .2, 1);
  --band-btn: var(--accent); --band-btn-ink: var(--on-accent);
}
:root[data-vibe="palace"] {
  --bg: #F2EADA; --surface: #FAF4E8; --ink: #24170F; --muted: #6B5645; --line: #DCC9A8;
  --deep: #0E3A32; --on-deep: #F4EAD6; --deep-muted: #C9C0A6; --deep-line: rgba(201, 168, 116, .35);
  --accent: #5E1D2B; --on-accent: #F7EAD4; --accent-ink: #5E1D2B;
  --paper: #F7EEDB; --paper-ink: #2A160F;
  --display: "Cormorant Garamond", "Cormorant", Garamond, serif; --body: "Jost", "Futura", system-ui, sans-serif;
  --display-weight: 500; --display-track: -0.005em; --ds: 1.16;
  --r-img: 4px; --r-feature: 999px 999px 4px 4px; --r-btn: 2px; --r-bar: 4px; --r-card: 4px;
  --dur: 700ms; --ease: cubic-bezier(.3, .6, .2, 1);
  --band-btn: #C9A874; --band-btn-ink: #1A1206;
}
:root[data-vibe="tide"] {
  --bg: #F4F3EE; --surface: #FFFFFF; --ink: #12292C; --muted: #4B6264; --line: #D6DCD6;
  --deep: #163940; --on-deep: #E9F2EF; --deep-muted: #A9C4BF; --deep-line: rgba(233, 242, 239, .2);
  --accent: #245F66; --on-accent: #FFFFFF; --accent-ink: #1E555B;
  --paper: #FBF7EE; --paper-ink: #16292B;
  --display: "Instrument Serif", "Iowan Old Style", Georgia, serif; --body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --display-weight: 400; --display-track: -0.012em; --ds: 1.08;
  --r-img: 28px; --r-feature: 28px; --r-btn: 999px; --r-bar: 999px; --r-card: 28px;
  --dur: 900ms; --ease: cubic-bezier(.25, .8, .25, 1);
  --band-btn: #EAD9B8; --band-btn-ink: #12292C;
}
:root[data-vibe="noir"] {
  color-scheme: dark;
  --bg: #121110; --surface: #1A1917; --ink: #ECE6DA; --muted: #A1998B; --line: #34312C;
  --deep: #0B0A09; --on-deep: #ECE6DA; --deep-muted: #A1998B; --deep-line: rgba(184, 149, 91, .3);
  --accent: #B8955B; --on-accent: #121110; --accent-ink: #C9A66B;
  --paper: #1E1C19; --paper-ink: #E8E0D0;
  --display: "Bodoni Moda", Didot, "Bodoni 72", serif; --body: "Hanken Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --display-weight: 400; --display-track: -0.02em; --ds: .98;
  --r-img: 0px; --r-feature: 0px; --r-btn: 0px; --r-bar: 0px; --r-card: 0px;
  --dur: 380ms; --ease: cubic-bezier(.4, 0, .2, 1);
  --band-btn: var(--accent); --band-btn-ink: var(--on-accent);
}
:root {
  color-scheme: light;
  --on-plate: #FBF8F1;
  --head-h: 64px;
  --gut: clamp(16px, 4vw, 44px);
  --tint: color-mix(in oklab, var(--ink) 5%, var(--surface));
  --shadow: 0 18px 50px -24px rgba(0, 0, 0, .45);
  /* Fields read these, so a form set on a deep band inherits the right ink. */
  --field-bg: var(--surface); --field-line: var(--line); --field-ink: var(--ink); --label: var(--muted);
}

/* -------------------------------------------------------------- base ---- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 16px/1.6 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease); }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: var(--display-weight); letter-spacing: var(--display-track); line-height: 1.04; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd, figure, fieldset { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; touch-action: manipulation; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
/* A jump lands the target's top edge exactly under the sticky header. */
[id] { scroll-margin-top: calc(var(--head-h) + 1px); }
.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gut); }
.num { font-variant-numeric: tabular-nums lining-nums; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--bg); padding: 10px 14px; }
.skip:focus { top: 12px; }
main:focus { outline: none; }

/* ----------------------------------------------------------- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 22px; border-radius: var(--r-btn); border: 1px solid transparent; background: var(--accent); color: var(--on-accent); font: 600 15px/1.1 var(--body); text-decoration: none; white-space: nowrap; transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.btn:hover { background: color-mix(in oklab, var(--accent) 86%, var(--ink)); }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: inherit; border-color: color-mix(in oklab, currentColor 45%, transparent); }
.btn--ghost:hover { background: color-mix(in oklab, currentColor 8%, transparent); border-color: currentColor; }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn--wide { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; }
.btn[disabled] { pointer-events: none; }
.link { background: none; border: 0; padding: 0; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }

.badge { position: absolute; top: 14px; left: 14px; z-index: 1; background: var(--surface); color: var(--ink); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.badge--inline { position: static; display: inline-block; vertical-align: middle; margin-left: 10px; font-family: var(--body); letter-spacing: 0; border: 1px solid var(--line); }
:root[data-vibe="palace"] .room .badge { left: 50%; transform: translateX(-50%); top: 22%; }
.tag { flex: none; font-size: 12px; color: var(--muted); border: 1px dashed var(--line); padding: 3px 9px; border-radius: 999px; white-space: nowrap; }

/* ------------------------------------------------------------ fields ---- */
.field { display: grid; gap: 6px; min-width: 0; border: 0; padding: 0; }
.field > span, .field > legend { font-size: 13px; font-weight: 500; color: var(--label); padding: 0; }
.field input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), .field select, .field textarea, .sel__btn {
  width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid var(--field-line); border-radius: calc(var(--r-card) / 2);
  background: var(--field-bg); color: var(--field-ink); font-size: 15px; appearance: none; -webkit-appearance: none;
}
:root[data-vibe="tide"] .field input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), :root[data-vibe="tide"] .field select, :root[data-vibe="tide"] .sel__btn { border-radius: 14px; }
.field input::placeholder { color: color-mix(in oklab, var(--field-ink) 45%, transparent); }
.field input:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: -1px; }

/* The enhanced select: the closed box matches every field, the open list is ours. */
.sel { position: relative; }
.sel select { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.sel__btn { text-align: left; padding-right: 38px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23888' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 14px center; background-repeat: no-repeat; }
.sel.is-open .sel__btn { outline: 2px solid var(--accent); outline-offset: -1px; }
.sel__list { position: absolute; z-index: 60; left: 0; right: 0; top: calc(100% + 6px); max-height: 15rem; overflow-y: auto; overscroll-behavior: contain; padding: 4px; border: 1px solid var(--line); border-radius: calc(var(--r-card) / 2); background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.sel.is-up .sel__list { top: auto; bottom: calc(100% + 6px); }
.sel__list { scrollbar-width: thin; scrollbar-color: color-mix(in oklab, var(--ink) 22%, transparent) transparent; }
.sel__list::-webkit-scrollbar { width: 8px; }
.sel__list::-webkit-scrollbar-track { background: transparent; }
.sel__list::-webkit-scrollbar-thumb { border: 2px solid var(--surface); border-radius: 999px; background: color-mix(in oklab, var(--ink) 22%, transparent); }
.sel__opt { padding: 9px 10px; border-radius: calc(var(--r-card) / 3); cursor: pointer; font-size: 15px; }
.sel__opt:hover { background: var(--tint); }
.sel__opt[aria-selected="true"] { background: var(--deep); color: var(--on-deep); }

/* How many people: minus, the number, plus. */
.count { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.count__b { display: grid; place-items: center; width: 32px; height: 32px; flex: none; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--ink); font-size: 18px; line-height: 1; transition: border-color 150ms ease, background-color 150ms ease; }
.count__b:hover:not([disabled]) { border-color: var(--ink); }
.count__b[disabled] { opacity: .35; cursor: default; }
.count__v { font-size: 15px; font-weight: 600; white-space: nowrap; }
.field .count { min-height: 46px; padding: 0 7px; border: 1px solid var(--field-line); border-radius: calc(var(--r-card) / 2); background: var(--field-bg); }
.bookbar__field--count { cursor: default; }
.bookbar__field--count .count { justify-content: flex-start; gap: 14px; margin-top: 1px; }
.bookbar__field--count .count__b { width: 28px; height: 28px; }

/* ------------------------------------------------------------ plates ---- */
.frame { position: relative; display: block; overflow: hidden; border-radius: var(--r-img); background: var(--line); }
.frame canvas, img.frame { display: block; width: 100%; height: 100%; object-fit: cover; }
.frame--feature { aspect-ratio: 4 / 5; border-radius: var(--r-feature); }
.frame--wide { aspect-ratio: 3 / 2; }
.frame--square { aspect-ratio: 1; }
.frame--tall { aspect-ratio: 3 / 4; border-radius: var(--r-feature); }
.frame__cap { position: absolute; left: 14px; bottom: 12px; color: var(--on-plate); font-size: 13px; text-shadow: 0 1px 8px rgba(0, 0, 0, .5); }

/* ------------------------------------------------ pitch (studio chrome) ---- */
.pitch { background: #1E1E20; color: #EDEBE6; font: 500 13px/1.3 "Instrument Sans", system-ui, sans-serif; }
.pitch__in { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; padding-block: 8px; }
.pitch__who { color: #A7A49C; }
.pitch__who b { color: #EDEBE6; font-weight: 500; }
.pitch__note { color: #A7A49C; margin-left: auto; }
.pitch__link { color: #EDEBE6; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(237, 235, 230, .4); }
.pitch__link:hover { text-decoration-color: currentColor; }
.vibes { display: flex; gap: 6px; border: 0; padding: 0; }
.vibes input { position: absolute; opacity: 0; pointer-events: none; }
.vibes label { display: inline-flex; align-items: center; gap: 7px; padding: 4px 11px 4px 5px; border: 1px solid #3A3A3E; border-radius: 999px; cursor: pointer; transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease; }
.vibes label:hover { border-color: #6A6A70; }
.vibes input:checked + label { background: #EDEBE6; color: #1E1E20; border-color: #EDEBE6; }
.vibes input:focus-visible + label { outline: 2px solid #EDEBE6; outline-offset: 2px; }
.sw { width: 16px; height: 16px; border-radius: 50%; }
.sw--grove { background: conic-gradient(#22392A 0 50%, #C2912F 0 75%, #E6E9DD 0); }
.sw--palace { background: conic-gradient(#0E3A32 0 50%, #5E1D2B 0 75%, #F2EADA 0); }
.sw--tide { background: conic-gradient(#163940 0 50%, #EAD9B8 0 75%, #F4F3EE 0); }
.sw--noir { background: conic-gradient(#121110 0 50%, #B8955B 0 75%, #ECE6DA 0); }
@media (max-width: 760px) {
  .pitch__in { gap: 6px 12px; padding-block: 7px; }
  .pitch__who { display: none; }
  .vibes { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; max-width: 100%; }
  .vibes::-webkit-scrollbar { display: none; }
  .pitch__note { margin-left: 0; font-size: 12px; }
}

/* ------------------------------------------------------------ header ---- */
.topbar { position: sticky; top: 0; z-index: 30; background: color-mix(in oklab, var(--bg) 88%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.topbar__in { display: flex; align-items: center; gap: 28px; min-height: var(--head-h); }
.wordmark { font-family: var(--display); font-weight: var(--display-weight); letter-spacing: var(--display-track); font-size: calc(1.3rem * var(--ds)); white-space: nowrap; text-decoration: none; margin-right: auto; }
.topbar__nav { display: none; gap: 22px; font-size: 15px; margin-right: auto; }
.topbar__nav a { position: relative; padding: 6px 0; color: var(--muted); text-decoration: none; transition: color 150ms ease; }
.topbar__nav a:hover, .topbar__nav a[aria-current="page"] { color: var(--ink); }
.topbar__nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 220ms var(--ease); }
.topbar__nav a:hover::after { transform: scaleX(1); }
.topbar__nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--accent); }
.topbar__book { display: none; }
.topbar__price { display: none; margin-left: auto; font-size: 14px; color: var(--muted); white-space: nowrap; opacity: 0; transform: translateY(4px); transition: opacity 250ms ease, transform 250ms var(--ease); }
.topbar__price b { font: var(--display-weight) calc(1.2rem * var(--ds))/1 var(--display); color: var(--ink); }
.is-past .topbar__price { opacity: 1; transform: none; }
.topbar__help { font-size: 15px; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; }
.topbar__menu { border: 0; background: none; padding: 8px 0 8px 8px; font-size: 15px; font-weight: 500; }

.sheet { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: calc(20px + env(safe-area-inset-top)) var(--gut) calc(28px + env(safe-area-inset-bottom)); border: 0; background: var(--bg); color: var(--ink); overscroll-behavior: contain; }
.sheet::backdrop { background: rgba(0, 0, 0, .5); }
.sheet[open] { display: grid; align-content: start; gap: 24px; }
.sheet__close { justify-self: end; border: 0; background: none; padding: 6px 0; font-size: 15px; font-weight: 500; color: var(--muted); }
.sheet__nav { display: grid; }
.sheet__nav a { font: var(--display-weight) calc(clamp(2rem, 10vw, 2.8rem) * var(--ds))/1.25 var(--display); letter-spacing: var(--display-track); text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--line); }
.sheet__foot { font-size: 14px; color: var(--muted); }

/* -------------------------------------------------------------- hero ---- */
.hero { position: relative; isolation: isolate; display: grid; min-height: max(620px, calc(100svh - var(--head-h) - 44px)); overflow: hidden; color: var(--on-plate); }
.hero__media { position: absolute; inset: 0; z-index: -2; border-radius: 0; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8, 8, 6, .8) 0%, rgba(8, 8, 6, .42) 42%, rgba(8, 8, 6, .05) 70%), linear-gradient(to right, rgba(8, 8, 6, .45), rgba(8, 8, 6, 0) 60%); }
.hero__in { display: grid; align-content: end; gap: 18px; padding-block: 88px 28px; }
.kicker { font-size: 15px; opacity: .88; }
.hero h1 { font-size: calc(clamp(2.5rem, 5.4vw, 4.8rem) * var(--ds)); max-width: 15ch; }
.film { position: absolute; top: 18px; right: var(--gut); z-index: 2; display: flex; align-items: center; gap: 10px; padding: 6px 14px 6px 8px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; background: rgba(10, 10, 8, .42); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--on-plate); font-size: 13px; }
.film__dot { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(255, 255, 255, .16); }
.film svg { width: 10px; height: 10px; fill: currentColor; }

.bookbar { position: relative; display: grid; grid-template-columns: 1.3fr 1fr auto; align-items: stretch; gap: 4px; max-width: 880px; padding: 6px; border-radius: var(--r-bar); background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.bookbar--dine, .bookbar--plan { grid-template-columns: 1fr 1fr auto; }
.bookbar__field { position: relative; display: grid; gap: 1px; align-content: center; min-width: 0; padding: 8px 18px; border: 0; border-radius: calc(var(--r-bar) - 4px); background: transparent; text-align: left; cursor: pointer; }
.bookbar__field + .bookbar__field::before { content: ''; position: absolute; left: -2px; top: 12px; bottom: 12px; width: 1px; background: var(--line); }
.bookbar__field:hover, .bookbar__field:focus-within { background: color-mix(in oklab, var(--ink) 5%, transparent); }
.bookbar__k { font-size: 12px; font-weight: 500; color: var(--muted); }
.bookbar__v { font-size: 15px; font-weight: 600; }
.bookbar__select { border: 0; background: transparent; padding: 0; font-weight: 600; font-size: 15px; appearance: none; }
.bookbar .sel__btn { min-height: 0; padding: 0 24px 0 0; border: 0; border-radius: 0; background-color: transparent; font-weight: 600; background-position: right 2px center; }
.bookbar .sel__list { min-width: 10rem; }
.bookbar .sel.is-open .sel__btn { outline: none; }
.bookbar__go { min-height: 54px; padding: 0 26px; border-radius: calc(var(--r-bar) - 4px); }
:root[data-vibe="tide"] .bookbar__go, :root[data-vibe="grove"] .bookbar__go { border-radius: 999px; }
.assure { display: flex; flex-wrap: wrap; gap: 6px 22px; font-size: 14px; opacity: .88; }
.highlights { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 18px; border-top: 1px solid rgba(255, 255, 255, .22); }
.highlights li { display: grid; gap: 4px; align-content: start; padding: 16px 0 4px 22px; }
.highlights li:first-child { padding-left: 0; }
.highlights li + li { border-left: 1px solid rgba(255, 255, 255, .22); }
.highlights b { font: var(--display-weight) calc(clamp(2rem, 3.4vw, 2.8rem) * var(--ds))/1 var(--display); letter-spacing: var(--display-track); }
.highlights span { font-size: 14px; opacity: .85; }

/* The calendar lives over the page on a desk and slides up as a sheet on a phone. */
.calpop { position: absolute; left: 0; top: calc(100% + 10px); z-index: 30; width: min(720px, calc(100vw - 2 * var(--gut))); padding: 18px; border-radius: var(--r-card); background: var(--surface); color: var(--ink); box-shadow: var(--shadow), 0 0 0 1px var(--line); }
.calpop--inline { position: static; width: auto; margin-top: 8px; box-shadow: 0 0 0 1px var(--line); }
.calpop.is-up { top: auto; bottom: calc(100% + 10px); }
.datewrap { position: relative; grid-column: 1 / -1; }
.datewrap .calpop { width: min(700px, calc(100vw - 2 * var(--gut))); }

/* ------------------------------------------------------------- trust ---- */
.trust { background: var(--surface); border-block: 1px solid var(--line); }
.trust__in { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 44px; padding-block: 26px; }
.score { flex: none; display: grid; grid-template-columns: auto auto; column-gap: 10px; align-items: baseline; }
.score b { grid-row: span 2; font: var(--display-weight) calc(2.1rem * var(--ds))/1 var(--display); letter-spacing: var(--display-track); }
.score__src { font-size: 15px; font-weight: 600; line-height: 1.1; }
.score__cnt { font-size: 12px; color: var(--muted); }
.trust__tag { margin-left: auto; }

/* ---------------------------------------------------------- sections ---- */
.sec { padding-block: clamp(72px, 10vw, 128px); }
.sec--flush { padding-top: clamp(28px, 4vw, 48px); }
.sec--tight { padding-block: clamp(40px, 6vw, 72px); }
.sec-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 18px 40px; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head h2 { font-size: calc(clamp(2.1rem, 4.4vw, 3.6rem) * var(--ds)); max-width: 18ch; }
.lead { max-width: 52ch; color: var(--muted); font-size: 17px; }
.more { margin-top: clamp(28px, 4vw, 44px); }
.minor { font-size: calc(1.45rem * var(--ds)); margin-top: 12px; }
.band { background: var(--deep); color: var(--on-deep); --field-bg: color-mix(in oklab, var(--on-deep) 7%, transparent); --field-line: var(--deep-line); --field-ink: var(--on-deep); --label: var(--deep-muted); }
.band .lead { color: var(--deep-muted); }
.band .btn:not(.btn--ghost) { background: var(--band-btn); color: var(--band-btn-ink); }

.phead { padding-top: clamp(40px, 6vw, 88px); }
.phead .sec-head { margin-bottom: 0; }
.phead h1 { font-size: calc(clamp(2.4rem, 5vw, 4.2rem) * var(--ds)); max-width: 16ch; }

/* ------------------------------------------------------------- rooms ---- */
.rooms { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3vw, 44px) clamp(16px, 2vw, 28px); }
.room { display: grid; gap: 14px; align-content: start; }
.room__frame { position: relative; display: block; }
.room h3 { font-size: calc(1.75rem * var(--ds)); }
.room h3 a { text-decoration: none; }
.room h3 a:hover { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.facts { display: flex; flex-wrap: wrap; gap: 4px 16px; font-size: 14px; color: var(--muted); }
.price { display: flex; align-items: baseline; gap: 6px; font-size: 14px; color: var(--muted); }
.price b { font: var(--display-weight) calc(1.5rem * var(--ds))/1.1 var(--display); letter-spacing: var(--display-track); color: var(--ink); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ratenote { margin-top: clamp(28px, 4vw, 44px); max-width: 70ch; font-size: 14px; color: var(--muted); }

/* ------------------------------------------------------ room detail ---- */
.rdetail__hero { width: 100%; height: clamp(300px, 46vw, 580px); border-radius: 0; }
.rdetail__in { display: grid; gap: 40px; padding-block: clamp(36px, 5vw, 64px) clamp(72px, 10vw, 128px); align-items: start; }
.rdetail__main { display: grid; gap: 22px; min-width: 0; }
.rdetail__main .sec-head { margin-bottom: 0; }
.rdetail__main h1 { font-size: calc(clamp(2.4rem, 5vw, 4rem) * var(--ds)); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); border-block: 1px solid var(--line); }
.stats > div { display: flex; flex-direction: column-reverse; gap: 4px; padding: 16px 16px 16px 0; }
.stats > div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.stats dt { font-size: 13px; color: var(--muted); }
.stats dd { font: var(--display-weight) calc(1.6rem * var(--ds))/1.1 var(--display); letter-spacing: var(--display-track); }
.band .stats, .band .stats > div + div { border-color: var(--deep-line); }
.band .stats dt { color: var(--deep-muted); }
.ticks { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.ticks li { padding: 12px 0; border-top: 1px solid var(--line); }
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 10px; }
.shot { padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: var(--r-img); }
.rbuy { display: grid; gap: 14px; padding: clamp(18px, 3vw, 26px); border: 1px solid var(--line); border-radius: var(--r-card); background: var(--surface); }
.rbuy .price b { font-size: calc(2.1rem * var(--ds)); }
.rbuy__note { font-size: 13px; color: var(--muted); }
.rbuy__next { font-size: 14px; color: var(--muted); padding-top: 14px; border-top: 1px solid var(--line); }
.rbuy__next a { color: var(--ink); font-weight: 600; }

/* The viewer: a painting or photograph at the size the decision deserves. */
.viewer { width: 100vw; max-width: 100vw; height: 100svh; max-height: 100svh; margin: 0; padding: 0; border: 0; background: #0E0E0C; color: #F3F0E8; overscroll-behavior: contain; }
.viewer::backdrop { background: rgba(0, 0, 0, .8); }
.viewer[open] { display: grid; grid-template-rows: auto 1fr auto; }
.viewer__x { justify-self: end; margin: 16px var(--gut); border: 0; background: none; color: inherit; font-size: 15px; font-weight: 500; }
.viewer__stage { display: grid; place-items: center; min-height: 0; padding-inline: var(--gut); }
.viewer__stage .frame { width: min(100%, 76vh); aspect-ratio: 1; }
.viewer__nav { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 18px; font-size: 14px; }
.viewer__nav button { width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; background: none; color: inherit; font-size: 1.2rem; }
.viewer__nav button:hover { background: rgba(255, 255, 255, .12); }

/* ------------------------------------------------------ dining teaser ---- */
.dining { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.rest { border-top: 1px solid var(--line); }
.rest:last-child { border-bottom: 1px solid var(--line); }
.rest__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2px 20px; align-items: baseline; width: 100%; padding: 22px 0; border: 0; background: none; text-align: left; }
.rest__name { font: var(--display-weight) calc(clamp(1.6rem, 2.6vw, 2.2rem) * var(--ds))/1.1 var(--display); letter-spacing: var(--display-track); transition: color 150ms ease; }
.rest__head[aria-expanded="false"] .rest__name { color: var(--muted); }
.rest__head:hover .rest__name { color: var(--ink); }
.rest__meta { grid-column: 1; font-size: 14px; color: var(--muted); }
.rest__hrs { grid-row: 1; grid-column: 2; font-size: 13px; color: var(--muted); }
.rest__more { display: grid; gap: 16px; padding-bottom: 24px; }
.rest__more p { max-width: 46ch; }
.dining__shots { position: sticky; top: calc(var(--head-h) + 24px); }

/* --------------------------------------------------------- celebrate ---- */
.celebrate { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.vtable { width: 100%; border-collapse: collapse; }
.vtable th, .vtable td { padding: 16px 0; border-bottom: 1px solid var(--deep-line); text-align: left; vertical-align: baseline; font-weight: 400; }
.vtable th { font: var(--display-weight) calc(1.35rem * var(--ds))/1.2 var(--display); letter-spacing: var(--display-track); }
.vtable td.cap { text-align: right; white-space: nowrap; font-size: 14px; color: var(--deep-muted); }
.vtable td.cap b { margin-right: 6px; font: var(--display-weight) calc(1.6rem * var(--ds))/1 var(--display); color: var(--on-deep); }
.cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 26px; font-size: 15px; color: var(--deep-muted); }

/* ------------------------------------------------------- experiences ---- */
.exp li { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto; gap: 8px 32px; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--line); }
.exp li:last-child { border-bottom: 1px solid var(--line); }
.exp h3 { font-size: calc(1.45rem * var(--ds)); }
.exp p { color: var(--muted); }
.exp .exp__p { color: var(--ink); font-weight: 600; white-space: nowrap; }

/* ----------------------------------------------------------- gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: clamp(180px, 22vw, 300px); gap: clamp(8px, 1.2vw, 14px); }
.gallery figure { position: relative; }
.gallery figure.wide { grid-column: span 2; }
.gallery .frame { height: 100%; }
.gallery figcaption { position: absolute; left: 14px; bottom: 12px; color: var(--on-plate); font-size: 13px; text-shadow: 0 1px 8px rgba(0, 0, 0, .5); }

/* ----------------------------------------------------------- reviews ---- */
.voices { display: grid; gap: 28px; padding: clamp(24px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--r-card); background: var(--surface); }
.voices__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 16px; }
.voices h2 { font-size: calc(clamp(1.6rem, 3vw, 2.3rem) * var(--ds)); }
.voices ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.voices blockquote { margin: 0; font: var(--display-weight) calc(1.3rem * var(--ds))/1.3 var(--display); letter-spacing: var(--display-track); }
.voices cite { display: block; margin-top: 12px; font-size: 13px; font-style: normal; color: var(--muted); }

/* -------------------------------------------------------------- visit ---- */
.loc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); }
.loc h2 { font-size: calc(clamp(2.1rem, 4.4vw, 3.6rem) * var(--ds)); margin-bottom: clamp(20px, 3vw, 32px); }
.steps li { padding: 16px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.loc__side { display: grid; gap: 22px; align-content: start; }
.addr { font: var(--display-weight) calc(1.5rem * var(--ds))/1.25 var(--display); letter-spacing: var(--display-track); max-width: 22ch; }
.row { display: flex; flex-wrap: wrap; gap: 10px; }
.policy { font-size: 14px; color: var(--muted); }

/* -------------------------------------------------------------- about ---- */
.story { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.story__text { display: grid; gap: 18px; max-width: 60ch; }
.story__text p:first-child { font: var(--display-weight) calc(1.5rem * var(--ds))/1.35 var(--display); letter-spacing: var(--display-track); }
.story__text p + p { color: var(--muted); }
.known > div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 8px 32px; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--line); }
.known > div:last-child { border-bottom: 1px solid var(--line); }
.known dt { font: var(--display-weight) calc(1.45rem * var(--ds))/1.2 var(--display); letter-spacing: var(--display-track); }
.known dd { color: var(--muted); }

/* ------------------------------------------------------------ contact ---- */
.ways li { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr); gap: 6px 32px; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--line); }
.ways li:last-child { border-bottom: 1px solid var(--line); }
.ways h2 { font-size: calc(1.45rem * var(--ds)); }
.ways__v { font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
a.ways__v:hover { text-decoration: underline; text-underline-offset: 4px; }
.ways p { font-size: 14px; color: var(--muted); }

.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 18px; padding: 20px 0; cursor: pointer; list-style: none; font: var(--display-weight) calc(1.3rem * var(--ds))/1.25 var(--display); letter-spacing: var(--display-track); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--body); color: var(--muted); transition: transform 200ms ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 64ch; padding-bottom: 22px; color: var(--muted); }

/* ------------------------------------------------------------ events ---- */
.venues { display: grid; gap: clamp(48px, 7vw, 88px); }
.venue { display: grid; gap: 24px; align-items: start; }
.venue__body { display: grid; gap: 20px; min-width: 0; }
.venue h2 { font-size: calc(clamp(2rem, 3.6vw, 2.8rem) * var(--ds)); }
.vplan { display: grid; gap: 8px; max-width: 440px; color: var(--muted); }
.vplan svg { width: 100%; height: auto; border-radius: var(--r-img); background: var(--tint); }
.vplan__room { fill: none; stroke: currentColor; stroke-width: .4; opacity: .5; }
.vplan__stage { fill: currentColor; opacity: .25; }
.vplan__tables circle { fill: none; stroke: currentColor; stroke-width: .55; opacity: .7; }
.vplan__t { font-size: 2.6px; fill: currentColor; }
.vplan figcaption { font-size: 13px; }

.planner { display: grid; gap: clamp(24px, 4vw, 48px); align-items: start; }
.planner__form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.planner__form .field--range, .planner__form .menu-pick, .planner__form .services { grid-column: 1 / -1; }
.field--range > span { display: flex; justify-content: space-between; }
.field--range output { font: var(--display-weight) calc(1.5rem * var(--ds))/1 var(--display); color: var(--field-ink); }
.field input[type="range"] { --fill: var(--accent); width: 100%; height: 24px; margin: 4px 0 0; background: transparent; appearance: none; -webkit-appearance: none; cursor: pointer; }
.band .field input[type="range"] { --fill: var(--band-btn); }
.field input[type="range"]::-webkit-slider-runnable-track { height: 4px; border-radius: 999px; background: linear-gradient(to right, var(--fill) var(--p, 50%), var(--field-line) var(--p, 50%)); }
.field input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; margin-top: -8px; border: 0; border-radius: 50%; background: var(--fill); box-shadow: 0 1px 4px rgba(0, 0, 0, .35); }
.field input[type="range"]::-moz-range-track { height: 4px; border-radius: 999px; background: var(--field-line); }
.field input[type="range"]::-moz-range-progress { height: 4px; border-radius: 999px; background: var(--fill); }
.field input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border: 0; border-radius: 50%; background: var(--fill); }
.field input[type="range"]:focus-visible { outline: none; }
.field input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 2px solid var(--on-deep); outline-offset: 2px; }
.menu-pick { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.menu-pick > legend { margin-bottom: 6px; }
.menu-pick__opt { position: relative; cursor: pointer; }
.menu-pick__opt input { position: absolute; opacity: 0; }
.menu-pick__opt > span { display: grid; gap: 2px; padding: 12px 14px; border: 1px solid var(--field-line); border-radius: calc(var(--r-card) / 2); }
.menu-pick__opt small { font-size: 13px; color: var(--label); }
.menu-pick__opt input:checked + span { border-color: var(--band-btn); box-shadow: inset 0 0 0 1px var(--band-btn); }
.menu-pick__opt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.services { display: grid; gap: 0; }
.services > legend { margin-bottom: 6px; }
.svc { display: grid; grid-template-columns: 20px minmax(0, 1fr) max-content; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--field-line); cursor: pointer; }
.svc:last-child { border-bottom: 1px solid var(--field-line); }
.svc input { width: 18px; height: 18px; accent-color: var(--band-btn); }
.svc__n { font-size: 15px; }
.svc__p { font-size: 14px; color: var(--label); white-space: nowrap; }
.datebtn { width: 100%; justify-items: start; padding: 11px 12px; border: 1px solid var(--field-line); border-radius: calc(var(--r-card) / 2); background: var(--field-bg); color: var(--field-ink); text-align: left; }
.datebtn b { font-size: 15px; font-weight: 600; }

/* A receipt: the one raised surface wherever it appears. */
.estimate { display: grid; gap: 0; padding: clamp(20px, 3vw, 30px); border-radius: var(--r-card); background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.estimate__title { margin-bottom: 10px; font: var(--display-weight) calc(1.35rem * var(--ds))/1.2 var(--display); letter-spacing: var(--display-track); }
.line { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.line span:last-child { font-variant-numeric: tabular-nums lining-nums; white-space: nowrap; }
.line--muted { color: var(--muted); }
.line--total { align-items: baseline; padding-top: 16px; border-bottom: 0; }
.line--total span:last-child { font: var(--display-weight) calc(2rem * var(--ds))/1 var(--display); letter-spacing: var(--display-track); }
.line--advance { margin: 8px 0 16px; padding: 12px 14px; border: 0; border-radius: calc(var(--r-card) / 2); background: var(--tint); font-weight: 600; }
.estimate__warn { margin: 4px 0 10px; font-size: 14px; color: var(--accent-ink); }
.estimate__note { margin-top: 12px; font-size: 13px; color: var(--muted); }

/* ------------------------------------------------------------ footer ---- */
.foot { background: var(--deep); color: var(--deep-muted); font-size: 15px; }
.foot a { color: var(--on-deep); text-decoration: none; }
.foot a:hover { text-decoration: underline; text-underline-offset: 4px; }
.foot__top { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 36px clamp(24px, 4vw, 56px); padding-block: clamp(48px, 7vw, 80px) 36px; }
.foot__brand { display: grid; gap: 10px; align-content: start; max-width: 34ch; }
.foot__brand strong { font: var(--display-weight) calc(clamp(1.7rem, 3vw, 2.3rem) * var(--ds))/1.1 var(--display); letter-spacing: var(--display-track); color: var(--on-deep); }
.foot__social { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 6px; }
.foot__col { display: grid; gap: 8px; align-content: start; }
.foot__col h2 { margin-bottom: 4px; font: 500 14px/1.3 var(--body); letter-spacing: 0; color: var(--deep-muted); }
.foot__base { position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-block: 20px calc(24px + env(safe-area-inset-bottom, 0px)); font-size: 13px; }
.foot__base::before { content: ''; position: absolute; top: 0; left: var(--gut); right: var(--gut); border-top: 1px solid var(--deep-line); }
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .foot__top { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ writing ---- */
.mail { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.mail__head { display: grid; justify-content: start; margin-bottom: 0; }
.mail__form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mail__wide { grid-column: 1 / -1; }
.field textarea { resize: vertical; min-height: 130px; font: inherit; }
.mail__send { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }
.mail__note { font-size: 14px; color: var(--muted); }
.ways__social { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.ways__social a { text-decoration: none; }
.ways__social a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 760px) { .mail, .mail__form { grid-template-columns: 1fr; } }

/* The one action, once the hero has gone: a pill on a desk, a bar on a phone. */
.actionbar { position: fixed; z-index: 40; right: clamp(16px, 3vw, 32px); bottom: calc(18px + env(safe-area-inset-bottom, 0px)); display: flex; align-items: center; gap: 14px; padding: 6px 6px 6px 18px; border: 1px solid var(--line); border-radius: max(var(--r-bar), 4px); background: var(--surface); color: var(--ink); box-shadow: var(--shadow); transform: translateY(160%); opacity: 0; pointer-events: none; transition: transform 300ms var(--ease), opacity 300ms ease; }
.actionbar.is-on { transform: none; opacity: 1; pointer-events: auto; }
.actionbar.is-on.is-away { transform: translateY(160%); opacity: 0; pointer-events: none; }
.actionbar__price { display: flex; align-items: baseline; gap: 6px; font-size: 14px; color: var(--muted); white-space: nowrap; }
.actionbar__price b { font: var(--display-weight) calc(1.3rem * var(--ds))/1 var(--display); color: var(--ink); }
:root[data-vibe="tide"] .actionbar, :root[data-vibe="grove"] .actionbar { border-radius: 999px; }

/* ---------------------------------------------------------- calendar ---- */
.cal { display: grid; gap: 14px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cal__nav { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--ink); font-size: 1.1rem; }
.cal__nav[disabled] { opacity: .3; cursor: default; }
.cal__hint { flex: 1; min-height: 1.2em; text-align: center; font-size: 14px; color: var(--muted); }
.cal__months { display: grid; gap: 28px; justify-content: center; grid-template-columns: minmax(0, 322px); }
.cal__month { min-width: 0; }
.cal__month-name { margin-bottom: 10px; text-align: center; font: var(--display-weight) calc(1.15rem * var(--ds))/1 var(--display); letter-spacing: var(--display-track); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px 0; }
.cal__dow { text-align: center; font-size: 12px; line-height: 2; color: var(--muted); }
/* The cell carries the bar and the pill inside it carries the day, at one height:
   a range is one bar with two rounded ends, cut square at a week break. */
.cal__day { --band: color-mix(in oklab, var(--deep) 13%, var(--surface)); height: 40px; padding: 0; border: 0; background: transparent; color: var(--ink); display: grid; place-items: center; font-size: 15px; }
.cal__d { width: min(100%, 40px); height: 40px; display: grid; place-items: center; border-radius: 999px; font-variant-numeric: tabular-nums; }
.cal__day[disabled] { color: color-mix(in oklab, var(--ink) 30%, var(--surface)); cursor: not-allowed; }
.cal__day.is-sold .cal__d { text-decoration: line-through; }
.cal__day.is-far { color: color-mix(in oklab, var(--ink) 38%, var(--surface)); }
.cal__day:hover:not([disabled]) .cal__d { box-shadow: inset 0 0 0 1.5px color-mix(in oklab, var(--deep) 50%, transparent); }
.cal__day.is-in { background: var(--band); }
.cal__day.is-from { background: linear-gradient(to right, transparent 50%, var(--band) 50%); }
.cal__day.is-to { background: linear-gradient(to left, transparent 50%, var(--band) 50%); }
.cal__day.is-pick .cal__d, .cal__day.is-pick:hover .cal__d { background: var(--deep); color: var(--on-deep); font-weight: 600; box-shadow: none; }
.cal__foot { display: flex; justify-content: flex-end; padding-top: 14px; border-top: 1px solid var(--line); }

/* -------------------------------------------------------- responsive ---- */
@media (min-width: 700px) {
  .cal__months { grid-template-columns: repeat(2, minmax(0, 322px)); }
  .cal__months:has(> .cal__month:only-child) { grid-template-columns: minmax(0, 322px); }
  .shots { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .topbar__nav { display: flex; }
  .wordmark { margin-right: 0; }
  .topbar__book { display: inline-flex; }
  .topbar__price { display: block; }
  .topbar__price + .topbar__book { margin-left: -12px; }
  .topbar__menu { display: none; }
  .actionbar { display: none; }
  .rdetail__in { grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(40px, 5vw, 72px); }
  .rbuy { position: sticky; top: calc(var(--head-h) + 20px); }
  .venue { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); }
  .planner { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .85fr); }
  .estimate { position: sticky; top: calc(var(--head-h) + 20px); }
}
@media (max-width: 899px) {
  .rooms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rooms--rail { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(78%, 340px); overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none; padding-bottom: 6px; margin-inline: calc(-1 * var(--gut)); padding-inline: var(--gut); scroll-padding-inline: var(--gut); }
  .rooms--rail::-webkit-scrollbar { display: none; }
  .rooms--rail .room { scroll-snap-align: start; }
  .dining, .celebrate, .loc, .story { grid-template-columns: 1fr; }
  .dining__shots { position: relative; top: 0; order: -1; }
  .dining__shots .frame--feature { aspect-ratio: 4 / 3; }
}
@media (max-width: 760px) {
  .trust__in { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; overscroll-behavior-x: contain; }
  .trust__in::-webkit-scrollbar { display: none; }
  .bookbar, .bookbar--dine, .bookbar--plan { grid-template-columns: 1fr 1fr; border-radius: max(calc(var(--r-bar) * .8), 4px); }
  .bookbar > .bookbar__field:first-child { grid-column: 1 / -1; }
  .bookbar:not(.bookbar--dine) > .bookbar__field + .bookbar__field::before { display: none; }
  .bookbar__go { grid-column: 1 / -1; border-radius: max(calc(var(--r-bar) * .6), 4px); }
  .assure li + li { display: none; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .highlights li:nth-child(3) { padding-left: 0; border-left: 0; }
  .highlights li:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .22); }
  .film__label { display: none; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery figure.wide { grid-column: 1 / -1; }
  .exp li { grid-template-columns: minmax(0, 1fr) auto; }
  .exp li p:not(.exp__p) { grid-column: 1 / -1; grid-row: 2; }
  .known > div, .ways li { grid-template-columns: 1fr; gap: 4px; }
  .planner__form { grid-template-columns: 1fr; }
  .vtable td.cap b { font-size: calc(1.35rem * var(--ds)); }
  .actionbar { left: 12px; right: 12px; justify-content: space-between; }
}
/* On a short laptop screen the popover calendar tightens so the field and the
   whole of both months fit on screen together. */
@media (min-width: 700px) and (max-height: 780px) {
  .calpop { padding: 12px 16px; }
  .calpop .cal { gap: 8px; }
  .calpop .cal__nav { width: 34px; height: 34px; }
  .calpop .cal__month-name { margin-bottom: 4px; }
  .calpop .cal__dow { line-height: 1.6; }
  .calpop .cal__grid { gap: 2px 0; }
  .calpop .cal__day, .calpop .cal__d { height: 34px; }
  .calpop .cal__d { width: min(100%, 34px); font-size: 14px; }
  .calpop .cal__foot { padding-top: 8px; }
  .calpop .cal__foot .btn { min-height: 34px; }
}
@media (max-width: 699px) {
  .calpop:not(.calpop--inline) { position: fixed; left: 0; right: 0; top: auto; bottom: 0; width: auto; z-index: 60; max-height: 88svh; overflow: auto; overscroll-behavior: contain; border-radius: var(--r-card) var(--r-card) 0 0; padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
}
@media (max-width: 560px) {
  .rooms:not(.rooms--rail) { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
