:root {
  color-scheme: dark;
  --ink: #0d0d0d;
  --ink-soft: #151515;
  --paper: #f2ede3;
  --paper-soft: #d6cfc2;
  --muted: #a9a296;
  --line: rgba(242, 237, 227, 0.18);
  --gold: #c99b3d;
  --gold-bright: #e2bc67;
  --green-deep: #102019;
  --header-height: 72px;
  --shell: min(1180px, calc(100% - 36px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-color: rgba(201, 155, 61, 0.55);
  text-underline-offset: 0.22em;
}

img {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

address {
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(82px, 12vw, 150px);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transition-delay: var(--reveal-delay, 0ms);
  transition-duration: 780ms;
  transition-property: opacity, transform, clip-path;
  transition-timing-function: var(--ease-out);
}

.motion-ready [data-reveal="lift"] {
  transform: translate3d(0, 34px, 0);
}

.motion-ready [data-reveal="clip"] {
  clip-path: inset(0 0 18% 0);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  clip-path: inset(0 0 0 0);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.015em;
  line-height: 1.4;
}

.dialog-kicker {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(2.55rem, 8vw, 5.6rem);
}

h3 {
  font-size: 1.25rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 10px 18px;
  border-bottom: 1px solid rgba(242, 237, 227, 0.16);
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(16px);
  transition: background-color 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(226, 188, 103, 0.28);
  background: rgba(9, 9, 9, 0.95);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-content: center;
  gap: 7px;
  transition: transform 140ms var(--ease-out);
}

.menu-toggle:active {
  transform: scale(0.94);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle .icon-menu {
  width: 23px;
  height: 23px;
  transition: transform 180ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  transform: rotate(90deg);
}

.primary-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  padding: 28px 18px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.98);
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 0s linear 180ms;
}

.primary-nav.is-open {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.primary-nav a,
.nav-book {
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-size: 1.1rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.primary-nav a.is-current {
  color: var(--gold-bright);
}

.nav-book:active {
  transform: scale(0.96);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 2px;
}

.header-socials a {
  display: grid;
  width: 38px;
  height: 44px;
  place-items: center;
  transition: color 180ms ease, transform 140ms var(--ease-out);
}

.header-socials svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.header-socials svg path,
.header-socials .icon-fill {
  stroke: none;
}

.header-socials a:first-child svg {
  fill: none;
}

.header-socials a:first-child .icon-fill {
  fill: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  align-items: end;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 53%;
  transform: scale(1.025);
  animation: hero-drift 18s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-picture {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
}

.hero-picture .hero-image {
  z-index: 0;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.30));
}

.hero-light {
  position: absolute;
  z-index: -1;
  top: -30%;
  left: -28%;
  width: 86vw;
  height: 86vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 188, 103, 0.2), rgba(226, 188, 103, 0) 67%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: hero-light-roam 13s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.hero-content {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 112px;
  animation: content-in 700ms 150ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero h1 {
  max-width: 8ch;
  margin: 0 0 18px;
  font-size: clamp(3.7rem, 16vw, 6rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  max-width: 480px;
  margin-bottom: 29px;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stamp-shell {
  position: absolute;
  top: 118px;
  right: 18px;
  width: 108px;
  height: 108px;
  color: #fff;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.3));
  pointer-events: none;
  animation: stamp-float 5s var(--ease-in-out) infinite alternate;
}

.hero-stamp {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: stamp-spin 20s linear infinite;
  will-change: transform;
}

.hero-stamp circle {
  fill: rgba(13, 13, 13, 0.42);
  stroke: rgba(226, 188, 103, 0.78);
  stroke-width: 1;
}

.hero-stamp text {
  fill: var(--gold-bright);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 2.2px;
}

.hero-stamp .hero-stamp-mark {
  fill: #fff;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  transform-box: fill-box;
  transform-origin: center;
  animation: stamp-counter-spin 20s linear infinite;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  margin: 28px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  padding-right: 12px;
}

.hero-facts li + li {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-facts li > .icon {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  color: var(--gold-bright);
}

.hero-facts strong,
.hero-facts small {
  display: block;
}

.hero-facts strong {
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-facts small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 140ms var(--ease-out), box-shadow 180ms ease;
}

.button:active {
  transform: scale(0.97);
}

.button-primary {
  background: var(--gold);
  color: #111;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(13, 13, 13, 0.15);
  color: #fff;
}

.button-full {
  width: 100%;
}

.button-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.hero-cue {
  position: absolute;
  right: 18px;
  bottom: 26px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-cue svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 180ms var(--ease-out);
}

.hero-cue .icon {
  width: 24px;
  height: 24px;
}

.brand-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(13, 13, 13, 0.25);
  background: var(--gold);
  color: #111;
}

.brand-ticker-track,
.brand-ticker-group {
  display: flex;
  align-items: center;
  width: max-content;
}

.brand-ticker-track {
  animation: ticker-move 26s linear infinite;
  will-change: transform;
}

.brand-ticker-group {
  flex-shrink: 0;
  gap: 24px;
  padding: 14px 12px;
}

.brand-ticker span {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  white-space: nowrap;
}

.brand-ticker i {
  font-style: normal;
  font-size: 0.72rem;
}

.about {
  display: grid;
  gap: 50px;
}

.about-copy > p:not(.section-kicker) {
  max-width: 660px;
  color: var(--paper-soft);
  font-size: 1.05rem;
}

.about-details {
  margin: 40px 0 0;
  border-top: 1px solid var(--line);
}

.about-details div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.about-details dt {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-details dd {
  margin: 0;
  color: var(--paper-soft);
}

.ratio-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #222;
}

.ratio-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image img {
  object-position: 52% 50%;
  transition: transform 650ms var(--ease-out), filter 240ms ease;
}

.occasions-section {
  background: var(--paper);
  color: var(--ink);
}

.occasions-section .section-kicker {
  color: #765516;
}

.occasions-heading {
  display: grid;
  margin-bottom: 46px;
}

.occasions-heading h2 {
  margin-bottom: 22px;
}

.occasions-heading > p:last-child {
  max-width: 510px;
  margin-bottom: 0;
  color: #5f5a52;
}

.occasions-layout,
.occasion-stack {
  display: grid;
  gap: 34px;
}

.occasion {
  min-width: 0;
}

.occasion figure {
  margin: 0;
  overflow: hidden;
  background: #d0c9bc;
}

.occasion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out), filter 240ms ease;
}

.occasion-feature figure {
  aspect-ratio: 4 / 3;
}

.occasion-feature > div {
  max-width: 680px;
  padding-top: 22px;
}

.occasion-compact {
  display: grid;
  grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 13, 13, 0.24);
}

.occasion-compact figure {
  aspect-ratio: 3 / 4;
}

.occasion span {
  display: block;
  margin-bottom: 6px;
  color: #765516;
  font-size: 0.73rem;
  font-weight: 700;
}

.occasion h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.occasion p {
  margin: 0;
  color: #5f5a52;
  font-size: 0.92rem;
  line-height: 1.55;
}

.menu-section {
  border-block: 1px solid var(--line);
  background: #121212;
}

.section-heading {
  display: grid;
  gap: 22px;
  margin-bottom: 44px;
}

.section-heading h2,
.menu-heading h2 {
  margin-bottom: 0;
}

.section-intro {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
}

.text-link {
  width: max-content;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}

.text-link:active {
  transform: scale(0.97);
}

.text-link span {
  color: var(--gold-bright);
}

.text-link .icon-inline {
  width: 15px;
  height: 15px;
  margin-left: 4px;
  color: var(--gold-bright);
}

.menu-grid {
  display: grid;
  gap: 56px;
}

.menu-column {
  min-width: 0;
}

.menu-column .ratio-frame {
  margin-bottom: 20px;
}

.menu-column .ratio-frame::after {
  position: absolute;
  z-index: 1;
  top: -24%;
  bottom: -24%;
  left: -58%;
  width: 24%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(226, 188, 103, 0.32), rgba(255, 255, 255, 0));
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-120%, 0, 0) rotate(10deg);
  animation: menu-glint 11s linear infinite;
  will-change: transform, opacity;
}

.menu-column:nth-child(2) .ratio-frame::after { animation-delay: -7.3s; }
.menu-column:nth-child(3) .ratio-frame::after { animation-delay: -3.7s; }

.menu-column img {
  transition: transform 650ms var(--ease-out), filter 240ms ease;
}

.menu-column:nth-child(1) img {
  object-position: 50% 48%;
}

.menu-column h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.menu-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-list strong {
  color: var(--gold-bright);
  font-size: 0.88rem;
}

.menu-note {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-banner {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  align-items: end;
}

.booking-banner::after {
  position: absolute;
  z-index: -1;
  top: -45%;
  left: -55%;
  width: 90vw;
  height: 90vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 188, 103, 0.23), rgba(226, 188, 103, 0) 66%);
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
  animation: booking-light 14s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.booking-banner > img,
.booking-picture,
.booking-banner-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.booking-banner > img {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 50%;
}

.booking-picture {
  z-index: -2;
}

.booking-picture img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.booking-banner-shade {
  z-index: -1;
  background: rgba(0, 0, 0, 0.58);
}

.booking-banner-content {
  padding-block: 88px;
}

.booking-banner-content h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.8rem, 10vw, 5.8rem);
}

.booking-banner-content > p:not(.section-kicker) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
}

.booking-banner-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.booking-banner-actions > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
}

.booking-banner-actions > a .icon {
  width: 16px;
  height: 16px;
  color: var(--gold-bright);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 22px;
}

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
}

.gallery-item img {
  transition: transform 350ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 250ms ease;
}

.gallery-item:active img {
  transform: scale(0.985);
  transition-duration: 120ms;
}

.gallery-item:nth-child(even) {
  transform: translateY(22px);
}

.gallery-item:nth-child(1) img { object-position: 52% 60%; }
.gallery-item:nth-child(2) img { object-position: 50% 52%; }
.gallery-item:nth-child(5) img { object-position: 50% 55%; }
.gallery-item:nth-child(6) img { object-position: 50% 36%; }

.good-to-know {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  isolation: isolate;
}

.good-to-know::before {
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -250px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(226, 188, 103, 0.17);
  border-right-color: rgba(226, 188, 103, 0.55);
  border-radius: 50%;
  content: "";
  animation: ring-spin 22s linear infinite;
  will-change: transform;
}

.good-to-know-layout {
  display: grid;
  gap: 48px;
}

.good-to-know-intro h2 {
  margin-bottom: 20px;
}

.good-to-know-intro > p:last-child {
  max-width: 360px;
  margin: 0;
  color: #c5c9c1;
}

.amenities-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(242, 237, 227, 0.22);
  list-style: none;
}

.amenities-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(242, 237, 227, 0.22);
}

.amenities-list span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 0.85rem;
  transform-origin: center;
  animation: plus-turn 2s var(--ease-in-out) infinite alternate;
}

.amenities-list .amenity-icon {
  width: 19px;
  height: 19px;
}

.amenities-list li:nth-child(2) span { animation-delay: -1.2s; }
.amenities-list li:nth-child(3) span { animation-delay: -2.4s; }
.amenities-list li:nth-child(4) span { animation-delay: -3.6s; }
.amenities-list li:nth-child(5) span { animation-delay: -4.8s; }
.amenities-list li:nth-child(6) span { animation-delay: -6s; }

.amenities-list strong {
  font-size: 0.98rem;
  font-weight: 550;
}

.reviews-section {
  background: var(--paper);
  color: var(--ink);
}

.reviews-section .section-kicker {
  color: #825f1e;
}

.reviews-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 48px;
}

.reviews-heading h2 {
  margin-bottom: 0;
}

.google-rating {
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 12px;
  width: max-content;
}

.google-rating strong {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
}

.google-rating .stars {
  color: #8a6214;
  letter-spacing: 0.08em;
  line-height: 1;
}

.google-rating .stars span {
  color: #b4ada1;
}

.google-rating small {
  color: #605c55;
}

.reviews-grid {
  display: grid;
  gap: 42px;
}

.review {
  display: flex;
  min-height: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(13, 13, 13, 0.28);
  flex-direction: column;
  transition: transform 240ms var(--ease-out);
}

.review-rating {
  margin-bottom: 20px;
  color: #8a6214;
  letter-spacing: 0.09em;
  animation: rating-glow 4.2s var(--ease-in-out) infinite alternate;
}

.review:nth-child(2) .review-rating { animation-delay: -1.4s; }
.review:nth-child(3) .review-rating { animation-delay: -2.8s; }

.review > p {
  flex: 1;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.38;
}

.review footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review footer div {
  display: grid;
}

.review footer strong {
  font-size: 0.88rem;
}

.review footer a {
  color: #625d54;
  font-size: 0.76rem;
}

.visit-section {
  border-bottom: 1px solid var(--line);
}

.visit-grid {
  display: grid;
}

.visit-copy {
  padding: 82px 18px;
}

.visit-copy h2 {
  margin-bottom: 34px;
}

.visit-copy address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--paper-soft);
  font-size: 1.05rem;
}

.visit-address .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gold-bright);
}

.visit-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.visit-phone .icon {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
}

.hours {
  max-width: 620px;
  margin-top: 55px;
}

.hours h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--gold-bright);
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hours h3 .icon {
  width: 16px;
  height: 16px;
}

.hours dl {
  margin: 0 0 16px;
  border-top: 1px solid var(--line);
}

.hours dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(145px, auto);
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.hours dd {
  margin: 0;
  color: var(--paper-soft);
  text-align: right;
}

.hours > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.map-wrap {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #202020;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: max(100%, 640px);
  max-width: none;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 70px 0 24px;
  background: #090909;
}

.footer-grid {
  display: grid;
  gap: 42px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  object-fit: contain;
  animation: mark-float 5.5s var(--ease-in-out) infinite alternate;
}

.footer-brand p {
  max-width: 270px;
  color: var(--muted);
}

.footer-grid h2 {
  margin: 0 0 13px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid p,
.footer-grid a {
  margin: 0 0 7px;
  color: var(--paper-soft);
  font-size: 0.9rem;
}

.footer-detail {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-detail .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--gold-bright);
}

.footer-link-icon {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  color: var(--gold-bright);
  vertical-align: -2px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid var(--line);
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 140ms var(--ease-out);
}

.footer-socials a:active,
.header-socials a:active {
  transform: scale(0.92);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-socials .icon-fill,
.footer-socials path {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #777169;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.dialog,
.lightbox {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
}

.dialog {
  width: min(680px, 100%);
  height: 100%;
  margin: 0 0 0 auto;
}

.dialog::backdrop,
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(5px);
}

.dialog-panel {
  position: relative;
  min-height: 100%;
  padding: 78px 20px 42px;
  overflow-y: auto;
  background: #131313;
}

.dialog[open] .dialog-panel {
  animation: drawer-in 280ms var(--ease-drawer) both;
}

.dialog[open]::backdrop,
.lightbox[open]::backdrop {
  animation: backdrop-in 220ms var(--ease-out) both;
}

.dialog-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 11vw, 4.8rem);
}

.dialog-intro {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--paper-soft);
}

.dialog-close,
.lightbox-close {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(242, 237, 227, 0.4);
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.55);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  place-items: center;
  cursor: pointer;
}

.dialog-close .icon,
.lightbox-close .icon {
  width: 20px;
  height: 20px;
}

form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--paper-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label > span:not(.field-label) {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

label .field-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label .field-label .icon {
  width: 15px;
  height: 15px;
  color: var(--gold-bright);
}

label .field-label > span {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 49px;
  padding: 10px 12px;
  border: 1px solid rgba(242, 237, 227, 0.35);
  border-radius: 2px;
  background: #0d0d0d;
  color: var(--paper);
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-bright);
  outline: 1px solid var(--gold-bright);
}

.form-error {
  min-height: 1.5em;
  margin: 0;
  color: #f4b0a5;
  font-size: 0.86rem;
}

.booking-handoff {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.booking-handoff h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.booking-handoff p {
  color: var(--paper-soft);
}

.booking-handoff .text-link {
  margin-top: 22px;
}

.menu-dialog {
  width: min(1060px, 100%);
}

.menu-board-grid {
  display: grid;
  gap: 30px;
}

.menu-board-grid figure {
  margin: 0;
}

.menu-board-grid img {
  width: 100%;
  height: auto;
  background: #050505;
  object-fit: contain;
}

.menu-board-grid figcaption {
  padding-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.94);
}

.lightbox figure {
  display: grid;
  width: min(80vw, 720px);
  height: calc(100% - 120px);
  margin: 60px auto;
  place-items: center;
}

.lightbox[open] figure {
  animation: lightbox-in 260ms var(--ease-out) both;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100% - 46px);
  object-fit: contain;
}

.lightbox figcaption {
  width: 100%;
  margin-top: 12px;
  color: var(--paper-soft);
  font-size: 0.82rem;
  text-align: center;
}

.lightbox-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 52px;
  padding: 0;
  border: 0;
  background: rgba(13, 13, 13, 0.62);
  color: #fff;
  transform: translateY(-50%);
  place-items: center;
  cursor: pointer;
}

.lightbox-control svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

@keyframes hero-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1.2%, 1%, 0); }
}

@keyframes hero-light-roam {
  from { opacity: 0.45; transform: translate3d(-8%, -5%, 0) scale(0.9); }
  to { opacity: 0.95; transform: translate3d(52%, 28%, 0) scale(1.14); }
}

@keyframes stamp-float {
  from { transform: translate3d(0, -6px, 0); }
  to { transform: translate3d(0, 9px, 0); }
}

@keyframes stamp-spin {
  to { transform: rotate(360deg); }
}

@keyframes stamp-counter-spin {
  to { transform: rotate(-360deg); }
}

@keyframes ticker-move {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes menu-glint {
  0%, 62% { opacity: 0; transform: translate3d(-120%, 0, 0) rotate(10deg); }
  66% { opacity: 0.85; }
  79% { opacity: 0; transform: translate3d(760%, 0, 0) rotate(10deg); }
  100% { opacity: 0; transform: translate3d(760%, 0, 0) rotate(10deg); }
}

@keyframes booking-light {
  from { opacity: 0.45; transform: translate3d(-10%, -8%, 0) scale(0.88); }
  to { opacity: 1; transform: translate3d(118%, 38%, 0) scale(1.2); }
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes plus-turn {
  from { transform: rotate(-8deg) scale(0.975); }
  to { transform: rotate(8deg) scale(1.025); }
}

@keyframes rating-glow {
  from { opacity: 0.72; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1.035); }
}

@keyframes mark-float {
  from { transform: translate3d(0, -3px, 0) rotate(-1.5deg); }
  to { transform: translate3d(0, 6px, 0) rotate(1.5deg); }
}

@keyframes drawer-in {
  from { opacity: 0.5; transform: translate3d(7%, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96); filter: blur(2px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes content-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile hero composition follows the supplied editorial storefront reference:
   transparent utility header, full-bleed image and a compact lower-left CTA block. */
@media (max-width: 559px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: var(--header-height);
    padding: 8px 14px;
    border-bottom-color: transparent;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.68), rgba(8, 8, 8, 0));
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    border-bottom-color: rgba(226, 188, 103, 0.28);
    background: rgba(9, 9, 9, 0.95);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .site-header .brand img {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(242, 237, 227, 0.72);
    border-radius: 50%;
    background: var(--paper);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    object-fit: cover;
  }

  .site-header .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 44px;
    height: 44px;
    padding: 10px;
  }

  .site-header .header-socials {
    grid-column: 2;
    grid-row: 1;
    gap: 0;
    margin-left: 0;
  }

  .site-header .header-socials a {
    width: 34px;
    height: 44px;
  }

  .site-header .header-socials svg {
    width: 18px;
    height: 18px;
  }

  .hero-image {
    object-position: 62% 52%;
    filter: brightness(0.88) saturate(0.94);
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.64) 100%);
  }

  .hero-content {
    width: min(1180px, calc(100% - 56px));
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 80px;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 17px;
    font-size: clamp(3.25rem, 15.5vw, 4.55rem);
    letter-spacing: -0.05em;
    white-space: nowrap;
  }

  .hero-copy {
    max-width: 330px;
    margin-bottom: 24px;
    font-size: clamp(1.05rem, 4.5vw, 1.22rem);
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 56px;
    padding: 14px 9px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
  }

  .hero-actions .button-primary {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
  }

  .hero-actions .button-secondary {
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(13, 13, 13, 0.14);
  }

  .hero-actions .button-icon {
    width: 16px;
    height: 16px;
    margin-left: 6px;
  }

  .hero-facts,
  .hero-cue {
    display: none;
  }

  .hero-stamp-shell {
    top: 112px;
    right: 19px;
    width: 124px;
    height: 124px;
    opacity: 0.82;
  }

  .hero-stamp circle {
    fill: rgba(13, 13, 13, 0.16);
    stroke: rgba(255, 255, 255, 0.76);
  }

  .hero-stamp text {
    fill: rgba(255, 255, 255, 0.88);
  }

  .hero-stamp .hero-stamp-mark {
    fill: #fff;
  }
}

@media (max-width: 359px) {
  .hero-stamp-shell {
    display: none;
  }

  .hero-content {
    width: min(1180px, calc(100% - 44px));
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 3.55rem);
  }

  .hero-actions {
    gap: 8px;
  }
}

@media (min-width: 560px) {
  :root {
    --shell: min(1180px, calc(100% - 64px));
  }

  .site-header {
    padding-inline: 32px;
  }

  .hero-cue {
    right: 32px;
    left: 32px;
  }

  .hero-stamp-shell {
    top: 132px;
    right: 32px;
    width: 132px;
    height: 132px;
  }

  .brand-ticker-group {
    gap: 32px;
    padding: 16px;
  }

  .brand-ticker span {
    font-size: 1.08rem;
  }

  .field-row {
    grid-template-columns: 1fr 1.4fr;
  }

  .dialog-panel {
    padding: 94px 54px 54px;
  }

  .menu-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 760px) {
  .occasions-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
    align-items: end;
    column-gap: 60px;
  }

  .occasions-heading .section-kicker {
    grid-column: 1 / -1;
  }

  .occasions-heading h2 {
    margin-bottom: 0;
  }

  .occasions-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: start;
    gap: 28px;
  }

  .occasion-stack {
    gap: 28px;
  }

  .occasion-compact {
    grid-template-columns: minmax(104px, 0.65fr) minmax(0, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-bottom: 32px;
  }

  .gallery-item:nth-child(even) {
    transform: none;
  }

  .gallery-item:nth-child(3n + 2) {
    transform: translateY(32px);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
    min-height: var(--header-height);
    padding-inline: 42px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav,
  .primary-nav.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .primary-nav a,
  .nav-book {
    padding: 9px 0;
    border: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .nav-book {
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.52);
  }

  .header-socials {
    justify-self: end;
  }

  .site-header:not(.is-scrolled) {
    border-bottom-color: transparent;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.56), rgba(8, 8, 8, 0));
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-content {
    display: grid;
    width: min(1260px, calc(100% - 96px));
    grid-template-areas:
      "eyebrow eyebrow"
      "title side";
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
    align-items: end;
    column-gap: clamp(48px, 7vw, 112px);
    padding-top: calc(var(--header-height) + 120px);
    padding-bottom: 70px;
  }

  .hero .eyebrow {
    grid-area: eyebrow;
    margin-bottom: 13px;
  }

  .hero h1 {
    grid-area: title;
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(4.3rem, 9.4vw, 9.5rem);
    letter-spacing: -0.065em;
    line-height: 0.84;
    white-space: nowrap;
  }

  .hero-side {
    display: flex;
    grid-area: side;
    align-self: end;
    align-items: flex-end;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 2px;
  }

  .hero-side .hero-copy {
    max-width: 420px;
    margin-bottom: 0;
    font-size: clamp(1.1rem, 1.7vw, 1.45rem);
    line-height: 1.35;
    text-align: right;
  }

  .hero-side .hero-actions {
    display: flex;
    width: min(100%, 390px);
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 14px;
  }

  .hero-side .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 60px;
    padding: 16px 18px;
  }

  .hero-side .hero-actions .button-primary {
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
  }

  .hero-side .hero-actions .button-secondary {
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(13, 13, 13, 0.12);
  }

  .hero-facts,
  .hero-cue {
    display: none;
  }

  .hero-stamp-shell {
    top: 112px;
    right: 64px;
    width: 188px;
    height: 188px;
    opacity: 0.84;
  }

  .hero-stamp circle {
    fill: rgba(13, 13, 13, 0.16);
    stroke: rgba(255, 255, 255, 0.76);
  }

  .hero-stamp text {
    fill: rgba(255, 255, 255, 0.88);
  }

  .hero-stamp .hero-stamp-mark {
    fill: #fff;
  }

  .hero-facts strong {
    font-size: 0.78rem;
  }

  .hero-facts small {
    font-size: 0.7rem;
  }

  .hero-cue {
    right: 42px;
    bottom: 30px;
    left: auto;
    width: 320px;
  }

  .about {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: clamp(56px, 7vw, 100px);
  }

  .about-image {
    align-self: center;
    width: 100%;
  }

  .section-heading,
  .reviews-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
    align-items: end;
  }

  .good-to-know-layout {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(70px, 10vw, 150px);
  }

  .menu-heading .text-link {
    justify-self: end;
    margin-bottom: 8px;
  }

  .visit-grid {
    grid-template-columns: minmax(420px, 0.8fr) minmax(0, 1.2fr);
  }

  .visit-copy {
    padding: clamp(95px, 10vw, 150px) max(42px, calc((100vw - 1180px) / 2));
    padding-right: 60px;
  }

  .map-wrap {
    min-height: 820px;
  }

  .dialog {
    height: 100%;
  }

  .dialog-panel-wide {
    padding-inline: 62px;
  }

  .lightbox-prev { left: 34px; }
  .lightbox-next { right: 34px; }
}

@media (min-width: 1220px) {
  .menu-grid {
    gap: 30px;
  }

  .reviews-grid {
    gap: 46px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translate3d(0, -3px, 0);
  }

  .button-primary:hover {
    background: var(--gold-bright);
    box-shadow: 0 10px 28px rgba(201, 155, 61, 0.24);
  }

  .button-secondary:hover {
    border-color: #fff;
    background: rgba(13, 13, 13, 0.35);
  }

  .primary-nav a:hover,
  .nav-book:hover,
  .header-socials a:hover {
    color: var(--gold-bright);
  }

  .text-link:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
  }

  .hero-cue:hover svg {
    transform: translate3d(0, 4px, 0);
  }

  .about-image:hover img,
  .occasion:hover img,
  .menu-column:hover img {
    transform: scale(1.035);
    filter: brightness(1.06);
  }

  .gallery-item:hover img {
    transform: scale(1.035);
    filter: brightness(1.08) saturate(1.04);
  }

  .review:hover {
    transform: translate3d(0, -6px, 0);
  }

  .footer-socials a:hover {
    border-color: var(--gold-bright);
    background: var(--gold);
    color: #111;
    transform: translate3d(0, -2px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .brand-ticker-track,
  .hero-image,
  .hero-light,
  .hero-stamp-shell,
  .hero-stamp,
  .hero-stamp-mark,
  .booking-banner::after,
  .good-to-know::before,
  .amenities-list span,
  .review-rating,
  .footer-brand img {
    animation: none !important;
  }

  .hero-image {
    transform: scale(1.025);
  }
}
