:root {
  --ink: #191a18;
  --paper: #f4f4f2;
  --white: #ffffff;
  --muted: #5f615c;
  --line: rgba(25, 26, 24, 0.18);
  --accent: #c83e24;
  --accent-dark: #a92d18;
  --header-height: 72px;
  --shell: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --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);
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
  --font-display: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  --z-header: 40;
  --z-mobile-actions: 60;
  --z-lightbox: 80;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: calc(var(--z-header) + 1);
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.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;
}

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

.lucide-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-icon {
  width: 18px;
  height: 18px;
}

.button .icon-arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
}

.inline-icon {
  width: 17px;
  height: 17px;
}

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

.hero-location {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.94;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.58;
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: rgba(15, 16, 14, 0.25);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.site-header.is-solid,
.site-header.menu-open {
  background: rgba(25, 26, 24, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.primary-nav > a {
  position: relative;
  padding-block: 12px;
}

.primary-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-social,
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social {
  display: none;
}

.icon-link {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color 160ms ease, background 160ms ease, transform 160ms var(--ease-out);
}

.icon-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.icon-link:focus-visible {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] > span:nth-last-child(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #31312e;
}

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

.hero picture {
  transform: scale(1.015);
  animation: hero-camera 18s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-image {
  object-fit: cover;
  object-position: center 50%;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.27) 100%);
}

.hero-light {
  position: absolute;
  z-index: 1;
  top: -18%;
  bottom: -18%;
  left: -58%;
  width: 52%;
  pointer-events: none;
  background: linear-gradient(102deg, transparent 0%, rgba(255, 243, 212, 0.03) 28%, rgba(255, 243, 212, 0.2) 50%, rgba(255, 243, 212, 0.03) 72%, transparent 100%);
  filter: blur(2px);
  mix-blend-mode: screen;
  transform: skewX(-10deg);
  animation: hero-light-pass 12s linear infinite;
  will-change: transform, opacity;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: max(52px, 8svh);
  display: grid;
  width: clamp(118px, 11vw, 160px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  pointer-events: none;
}

.hero-orbit::before {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  content: "";
  animation: orbit-breathe 4.6s var(--ease-in-out) infinite;
}

.hero-orbit svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: orbit-spin 20s linear infinite;
}

.hero-orbit text {
  fill: currentColor;
  font-family: var(--font-body);
  font-size: 9.2px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.hero-orbit span {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.03em;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: max(64px, 9svh);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.hero-location-desktop,
.hero-title-desktop,
.hero-copy-desktop {
  display: none;
}

.hero-location::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
  content: "";
  animation: location-pulse 2.4s var(--ease-in-out) infinite;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: clamp(1.08rem, 2.2vw, 1.4rem);
}

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

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out);
}

.button:focus-visible {
  transform: translateY(-2px);
}

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

.button::before {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-16deg) translateX(-180%);
  transition: transform 420ms var(--ease-out);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
}

.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.1);
}

.button-ghost:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:focus-visible {
  background: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.text-link span {
  transition: transform 180ms var(--ease-out);
}

.text-link .icon-arrow {
  transition: transform 180ms var(--ease-out);
}

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

.quick-visit {
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-visit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quick-visit-grid > * {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 24px clamp(18px, 2.5vw, 34px);
  border-left: 1px solid var(--line);
}

.quick-visit-grid > :first-child {
  padding-left: 0;
  border-left: 0;
}

.quick-visit-grid > :last-child {
  padding-right: 0;
}

.quick-visit-grid a {
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.quick-visit-grid a:focus-visible {
  color: var(--accent);
}

.quick-visit-grid span {
  color: var(--muted);
  font-size: 0.73rem;
}

.quick-visit-icon {
  width: 19px;
  height: 19px;
  margin-bottom: 2px;
  color: var(--accent);
}

.quick-visit-grid strong {
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.motion-strip {
  position: relative;
  overflow: hidden;
  padding-block: 17px 15px;
  color: var(--white);
  background: var(--accent);
  border-bottom: 1px solid rgba(25, 26, 24, 0.18);
}

.motion-strip::before,
.motion-strip::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: min(11vw, 110px);
  pointer-events: none;
  content: "";
}

.motion-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.motion-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--accent), transparent);
}

.motion-strip-track {
  display: flex;
  width: max-content;
  animation: ticker-flow 26s linear infinite;
  will-change: transform;
}

.motion-strip-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.motion-strip span {
  padding-inline: clamp(18px, 2.6vw, 38px);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-strip i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
  transform: rotate(45deg);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 9vw, 136px);
}

.section-copy {
  padding-bottom: 8%;
}

.portrait-media {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #deded9;
}

.portrait-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media::before {
  position: absolute;
  z-index: 1;
  top: -1px;
  right: 26px;
  width: 2px;
  height: 96px;
  background: var(--accent);
  content: "";
  animation: accent-pulse 3.8s var(--ease-in-out) infinite;
  transform-origin: top;
}

.menu-section {
  background: #f2efe8;
  padding-block: clamp(64px, 7vw, 104px);
}

.section-heading,
.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 72px;
  margin-bottom: clamp(50px, 7vw, 88px);
}

.menu-section .section-heading {
  margin-bottom: clamp(36px, 4vw, 52px);
}

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

.section-heading-copy {
  min-width: 0;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.menu-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.7rem, 4.8vw, 4.85rem);
}

.section-heading-description,
.gallery-heading > p,
.rating-summary {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading-description {
  max-width: 480px;
  margin: 18px 0 0;
  line-height: 1.5;
}

.menu-heading-action {
  align-self: center;
  min-width: 176px;
  width: max-content;
  justify-content: space-between;
  padding-inline: 18px;
  text-transform: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 3.4vw, 52px) clamp(18px, 2.2vw, 30px);
  align-items: start;
}

.menu-card-copy {
  padding-top: 16px;
}

.menu-card .portrait-media {
  animation: menu-float 7.2s var(--ease-in-out) infinite;
  will-change: transform;
}

.menu-card:nth-child(2) .portrait-media {
  animation-delay: -3.6s;
  animation-direction: reverse;
}

.menu-card:nth-child(3) .portrait-media {
  animation-delay: -1.8s;
}

.menu-card .portrait-media img {
  transition: transform 700ms var(--ease-out), filter 260ms ease;
}

.menu-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
}

.menu-card-copy > p {
  max-width: 34ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-card-list {
  margin: 18px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  list-style: none;
}

.menu-card-list li {
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  line-height: 1.35;
}

.menu-more {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 42px;
  margin-top: clamp(68px, 9vw, 112px);
  padding-block: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-more > p {
  margin: 0;
  font-weight: 800;
}

.menu-more ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.menu-more li {
  position: relative;
}

.menu-more li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px 2px 0;
  background: var(--accent);
  border-radius: 50%;
  content: "";
  animation: dot-pulse 2.8s var(--ease-in-out) infinite;
}

.menu-more li:nth-child(2n)::before {
  animation-delay: -1.4s;
}

.menu-more li:nth-child(3n)::before {
  animation-delay: -0.7s;
}

.menu-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.menu-action p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: right;
}

.menu-action-label {
  margin-right: 8px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.day-story {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(76px, 9vw, 136px) max(20px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: var(--accent);
  overflow: hidden;
}

.day-story::before {
  position: absolute;
  top: -42%;
  left: 30%;
  width: min(66vw, 880px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.025), 0 0 0 148px rgba(25, 26, 24, 0.035);
  content: "";
  pointer-events: none;
  animation: story-halo 18s var(--ease-in-out) infinite alternate;
}

.day-story::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -28%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-14deg);
  animation: story-light 15s linear infinite;
}

.day-story > * {
  position: relative;
  z-index: 1;
}

.story-orbit {
  position: absolute;
  z-index: 0;
  top: 12%;
  right: 4%;
  width: clamp(118px, 16vw, 230px);
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-spin 24s linear infinite reverse;
}

.story-orbit::before,
.story-orbit::after,
.story-orbit span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.story-orbit::before {
  inset: 17%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-orbit::after {
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: translateX(-50%);
}

.story-orbit span {
  inset: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: rgba(25, 26, 24, 0.62);
}

.story-image {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.story-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), filter 260ms ease;
}

.story-image:focus-within img {
  transform: scale(1.025);
}

.story-image-food {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
  aspect-ratio: 4 / 5;
}

.story-copy {
  grid-column: 7 / -1;
  align-self: end;
  padding-top: 18px;
}

.story-copy > p:first-child {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.story-copy h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.story-copy > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.06rem;
  line-height: 1.65;
}

.story-image-room {
  grid-column: 6 / -1;
  aspect-ratio: 16 / 9;
}

.experience-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.experience-section::before {
  position: absolute;
  bottom: -240px;
  left: -160px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(200, 62, 36, 0.38), rgba(200, 62, 36, 0) 68%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: ambient-drift 13s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.experience-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: start;
}

.experience-intro {
  position: sticky;
  top: calc(var(--header-height) + 52px);
}

.experience-intro h2 {
  margin-bottom: 28px;
}

.experience-intro p {
  max-width: 450px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.experience-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  padding-block: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 220ms var(--ease-out), background 220ms ease;
}

.experience-row::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%) scale(0.7);
  transition: transform 220ms var(--ease-out);
}

.experience-row h3,
.experience-row p {
  margin: 0;
}

.experience-row h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.28rem;
}

.experience-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.experience-row p {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.3fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}

.gallery-heading h2,
.gallery-heading > p {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 22px);
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  transform-style: preserve-3d;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.gallery-item img {
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.gallery-item:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: #e8e9e3;
}

.reviews-section::before {
  position: absolute;
  top: 8%;
  right: -140px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(200, 62, 36, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(200, 62, 36, 0.035), 0 0 0 92px rgba(200, 62, 36, 0.022);
  content: "";
  pointer-events: none;
  animation: orbit-spin 28s linear infinite;
}

.reviews-section > .shell {
  position: relative;
  z-index: 1;
}

.rating-summary {
  position: relative;
  margin: 0;
}

.rating-summary::after {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 13px;
  background: var(--accent);
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  animation: rating-line 3.6s var(--ease-in-out) infinite;
}

.rating-summary strong {
  display: block;
  color: var(--ink);
  font-size: 3.1rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review {
  display: flex;
  flex-direction: column;
  padding: 34px clamp(24px, 3vw, 44px);
}

.review:first-child {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  padding-left: 0;
  padding-right: clamp(40px, 6vw, 82px);
  border-right: 1px solid var(--line);
}

.review:nth-child(2) {
  grid-column: 8 / -1;
  grid-row: 1;
  border-bottom: 1px solid var(--line);
}

.review:nth-child(3) {
  grid-column: 8 / -1;
  grid-row: 2;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.review-top h3 {
  margin: 0 0 3px;
  font-size: 1rem;
}

.review-top p {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.review blockquote {
  margin: 38px 0 32px;
  font-size: clamp(1.17rem, 2vw, 1.42rem);
  letter-spacing: -0.025em;
  line-height: 1.48;
}

.review:first-child blockquote {
  max-width: 660px;
  margin-top: 64px;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
  line-height: 1.28;
}

.review > a {
  width: max-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
}

.visit-details {
  display: grid;
  place-items: center;
  padding: 100px clamp(34px, 5vw, 96px);
}

.visit-inner {
  width: 100%;
  max-width: 480px;
}

.visit-inner h2 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.visit-title-icon {
  width: clamp(24px, 3vw, 38px);
  height: clamp(24px, 3vw, 38px);
  margin-top: 0.12em;
  color: var(--accent);
}

.visit-inner address {
  margin-bottom: 42px;
  font-size: 1.08rem;
  font-style: normal;
}

.visit-inner address a {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.hours {
  margin-bottom: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hours h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours dl {
  margin: 0;
}

.hours dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-block: 8px;
}

.hours dt,
.hours dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

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

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding-block: 72px 28px;
  color: var(--white);
  background: #0f100e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr auto;
  gap: 64px;
  align-items: start;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  animation: footer-float 6s var(--ease-in-out) infinite;
}

.footer-brand p {
  margin-bottom: 4px;
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 68px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

.footer-links a,
.footer-bottom a,
.visit-inner address a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: var(--z-lightbox);
  inset: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 10px;
  padding: 82px 18px 28px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.94);
  animation: lightbox-in 220ms var(--ease) both;
}

.lightbox.instant,
.lightbox.instant .lightbox-figure img {
  animation: none;
}

.lightbox-toolbar {
  position: absolute;
  top: 16px;
  left: 20px;
  display: flex;
  width: calc(100% - 40px);
  align-items: center;
  justify-content: space-between;
}

.lightbox-toolbar p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.lightbox-close {
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav:focus-visible,
.lightbox-close:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.lightbox-close:active,
.lightbox-nav:active {
  transform: scale(0.93);
}

.lightbox-figure {
  display: grid;
  max-width: min(82vw, 1000px);
  max-height: calc(100svh - 120px);
  justify-self: center;
  margin: 0;
}

.lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 160px);
  justify-self: center;
  object-fit: contain;
  animation: lightbox-image-in 360ms var(--ease) both;
}

.lightbox-figure figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out), clip-path 820ms var(--ease-out);
}

.motion-ready .portrait-media.reveal,
.motion-ready .gallery-item.reveal {
  clip-path: inset(0 0 13% 0);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.motion-ready .menu-grid .reveal:nth-child(2),
.motion-ready .gallery-grid .reveal:nth-child(2),
.motion-ready .experience-list .reveal:nth-child(2) {
  transition-delay: 55ms;
}

.motion-ready .menu-grid .reveal:nth-child(3),
.motion-ready .gallery-grid .reveal:nth-child(3),
.motion-ready .experience-list .reveal:nth-child(3) {
  transition-delay: 110ms;
}

.motion-ready .gallery-grid .reveal:nth-child(4),
.motion-ready .experience-list .reveal:nth-child(4) {
  transition-delay: 165ms;
}

.motion-ready .gallery-grid .reveal:nth-child(5) {
  transition-delay: 220ms;
}

.motion-ready .gallery-grid .reveal:nth-child(6) {
  transition-delay: 275ms;
}

.is-ready .hero-location,
.is-ready .hero h1,
.is-ready .hero-copy,
.is-ready .hero-actions {
  animation: hero-rise 700ms var(--ease) both;
}

.is-ready .hero h1 {
  animation-delay: 70ms;
}

.is-ready .hero-copy {
  animation-delay: 140ms;
}

.is-ready .hero-actions {
  animation-delay: 210ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes lightbox-in {
  from {
    opacity: 0;
  }
}

@keyframes lightbox-image-in {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
}

@keyframes hero-camera {
  from {
    transform: scale(1.015) translate3d(-0.4%, 0, 0);
  }
  to {
    transform: scale(1.075) translate3d(1.3%, -0.9%, 0);
  }
}

@keyframes hero-light-pass {
  0%, 12% {
    opacity: 0;
    transform: skewX(-10deg) translate3d(0, 0, 0);
  }
  30% {
    opacity: 0.95;
  }
  58%, 100% {
    opacity: 0;
    transform: skewX(-10deg) translate3d(360%, 0, 0);
  }
}

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

@keyframes orbit-breathe {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes location-pulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.72);
  }
  50% {
    opacity: 1;
    transform: scale(1.24);
  }
}

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

@keyframes accent-pulse {
  0%, 100% {
    opacity: 0.45;
    transform: scaleY(0.45);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes menu-float {
  0%, 100% {
    transform: translate3d(0, -5px, 0) rotate(-0.35deg);
  }
  50% {
    transform: translate3d(0, 7px, 0) rotate(0.45deg);
  }
}

@keyframes dot-pulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes story-halo {
  from {
    opacity: 0.45;
    transform: translate3d(-5%, 2%, 0) scale(0.92);
  }
  to {
    opacity: 0.9;
    transform: translate3d(7%, -4%, 0) scale(1.08);
  }
}

@keyframes story-light {
  0%, 18% {
    opacity: 0;
    transform: skewX(-14deg) translate3d(0, 0, 0);
  }
  36% {
    opacity: 1;
  }
  58%, 100% {
    opacity: 0;
    transform: skewX(-14deg) translate3d(430%, 0, 0);
  }
}

@keyframes ambient-drift {
  from {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate3d(140px, -70px, 0) scale(1.18);
  }
}

@keyframes rating-line {
  0%, 100% {
    opacity: 0.55;
    transform: scaleX(0.32);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes footer-float {
  0%, 100% {
    transform: translate3d(0, -3px, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, 5px, 0) rotate(1deg);
  }
}

@media (min-width: 901px) {
  .site-header:not(.is-solid):not(.menu-open) {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
    backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.06) 38%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.58) 100%);
  }

  .hero-content {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto auto;
    column-gap: 22px;
    align-items: end;
    padding-bottom: clamp(30px, 4vw, 54px);
  }

  .hero-location {
    grid-column: 1 / span 8;
    grid-row: 1;
    margin-bottom: 18px;
  }

  .hero-location-mobile,
  .hero-title-mobile,
  .hero-copy-mobile {
    display: none;
  }

  .hero-location-desktop,
  .hero-title-desktop,
  .hero-copy-desktop {
    display: inline;
  }

  .hero h1 {
    grid-column: 1 / span 8;
    grid-row: 2;
    max-width: none;
    max-inline-size: 100%;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(5rem, 7.5vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.9;
    white-space: normal;
  }

  .hero-copy {
    grid-column: 9 / -1;
    grid-row: 1;
    max-width: 350px;
    margin: 0 0 18px;
    justify-self: end;
    font-size: clamp(1.05rem, 1.55vw, 1.3rem);
    line-height: 1.42;
    text-wrap: balance;
  }

  .hero-actions {
    grid-column: 9 / -1;
    grid-row: 2;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    justify-self: end;
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 60px;
    justify-content: space-between;
    padding-inline: 22px;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  .hero .button-primary {
    color: var(--ink);
    background: var(--white);
  }

  .hero .button-ghost {
    border-color: rgba(255, 255, 255, 0.78);
    background: rgba(0, 0, 0, 0.12);
  }

  .hero-orbit {
    top: clamp(104px, 13svh, 148px);
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: auto;
    width: clamp(154px, 13vw, 198px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .primary-nav > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .icon-link:hover {
    color: var(--ink);
    background: var(--white);
    transform: translateY(-2px);
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .button:hover::before,
  .button:focus-visible::before {
    transform: skewX(-16deg) translateX(540%);
  }

  .hero-actions .button:hover .icon-arrow {
    transform: translate3d(4px, -4px, 0);
  }

  .hero .button-primary:hover {
    color: var(--white);
    background: var(--accent);
  }

  .button-primary:hover {
    background: var(--accent-dark);
  }

  .button-ghost:hover {
    color: var(--ink);
    background: var(--white);
  }

  .button-dark:hover {
    background: var(--accent);
  }

  .text-link:hover span {
    transform: translateX(5px);
  }

  .text-link:hover .icon-arrow {
    transform: translate3d(4px, -4px, 0);
  }

  .quick-visit-grid a:hover {
    color: var(--accent);
    transform: translateY(-2px);
  }

  .menu-card:hover .portrait-media {
    animation-play-state: paused;
  }

  .menu-card:hover .portrait-media img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.035);
  }

  .story-image:hover img {
    filter: saturate(1.06);
    transform: scale(1.025);
  }

  .experience-row:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent);
    transform: translateX(10px);
  }

  .experience-row:hover::after {
    transform: translateY(-50%) scale(1.45);
  }

  .gallery-item:hover img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.045);
  }

  .footer-links a:hover {
    color: var(--accent);
  }

  .lightbox-nav:hover,
  .lightbox-close:hover {
    color: var(--ink);
    background: var(--white);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 84px;
    --shell: min(100% - 32px, 720px);
  }

  body {
    padding-bottom: 64px;
  }

  .site-header {
    min-height: var(--header-height);
    gap: 8px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand img {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
  }

  .brand span {
    max-width: clamp(145px, 30vw, 210px);
    overflow: hidden;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 4vw, 1.18rem);
    font-weight: 400;
    letter-spacing: 0.015em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
  }

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

  .header-social .icon-link {
    width: 34px;
    height: 40px;
    border: 0;
  }

  .header-social .icon-link svg {
    width: 17px;
    height: 17px;
  }

  .menu-toggle {
    display: block;
    width: 44px;
    height: 48px;
    flex: 0 0 auto;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    width: 100%;
    align-items: stretch;
    padding: 22px 20px 28px;
    color: var(--white);
    background: rgba(25, 26, 24, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top right;
    visibility: hidden;
    transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-drawer), visibility 0s linear 220ms;
  }

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

  .site-header.keyboard-action .primary-nav {
    transition: none;
  }

  .primary-nav > a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 1rem;
  }

  .nav-social {
    display: none;
  }

  .quick-visit-grid {
    display: flex;
    width: min(100% - 32px, 720px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .quick-visit-grid > * {
    flex: 0 0 260px;
    padding-inline: 22px;
    scroll-snap-align: start;
  }

  .quick-visit-grid > :first-child {
    padding-left: 0;
  }

  .quick-visit-grid > :last-child {
    padding-right: 22px;
  }

  .hero-orbit {
    top: calc(var(--header-height) + 60px);
    right: 18px;
    bottom: auto;
    width: clamp(132px, 34vw, 172px);
  }

  .hero h1 {
    max-width: none;
    max-inline-size: 100%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 12vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.9;
    white-space: normal;
  }

  .hero-copy {
    max-width: 390px;
    font-size: clamp(1.08rem, 3vw, 1.3rem);
    line-height: 1.5;
    text-wrap: balance;
  }

  .hero .button-primary {
    color: var(--ink);
    background: var(--white);
  }

  .hero-actions .button {
    justify-content: space-between;
    text-transform: none;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-copy {
    padding-bottom: 0;
  }

  .about-media {
    width: min(100%, 560px);
    justify-self: end;
  }

  .section-heading,
  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-section .section-heading {
    margin-bottom: 44px;
  }

  .menu-heading-action {
    justify-self: start;
  }

  .menu-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .menu-card {
    flex: 0 0 min(72vw, 360px);
    margin-top: 0;
    scroll-snap-align: start;
  }

  .menu-more {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .day-story {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .story-image-food,
  .story-copy,
  .story-image-room {
    grid-column: 1;
    grid-row: auto;
  }

  .story-image-food {
    width: min(86%, 560px);
  }

  .story-copy {
    width: min(100%, 720px);
    margin-inline: auto;
    padding-block: 28px;
  }

  .story-image-room {
    width: min(90%, 640px);
    justify-self: end;
  }

  .story-orbit {
    top: 42%;
    right: -42px;
    width: 152px;
    opacity: 0.6;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .experience-intro {
    position: static;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review,
  .review:first-child,
  .review:nth-child(2),
  .review:nth-child(3),
  .review:last-child {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    padding: 34px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
  }

  .review:first-child {
    border-top: 0;
  }

  .review blockquote {
    margin: 32px 0 26px;
  }

  .review:first-child blockquote {
    margin-top: 36px;
    font-size: clamp(1.45rem, 5vw, 2.15rem);
  }

  .visit-section {
    grid-template-columns: 1fr;
  }

  .visit-details {
    padding: 88px max(20px, calc((100vw - 720px) / 2));
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    position: fixed;
    z-index: var(--z-mobile-actions);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 64px;
    color: var(--white);
    background: rgba(15, 16, 14, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-drawer), visibility 0s linear 0s;
  }

  .hero-in-view .mobile-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    visibility: hidden;
    transition: opacity 140ms ease, transform 180ms var(--ease-out), visibility 0s linear 180ms;
  }

  .mobile-actions a {
    position: relative;
    display: grid;
    grid-template-rows: auto auto;
    min-width: 0;
    place-items: center;
    align-content: center;
    gap: 4px;
    padding: 12px 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    transition: background 160ms ease, transform 140ms var(--ease-out);
  }

  .mobile-actions .lucide-icon {
    width: 17px;
    height: 17px;
  }

  .mobile-actions a:active {
    transform: scale(0.96);
  }

  .mobile-actions a:first-child {
    border-left: 0;
  }

  .mobile-actions a:last-child {
    overflow: hidden;
    background: var(--accent);
  }

  .mobile-actions a:last-child::before {
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    content: "";
    pointer-events: none;
    animation: mobile-action-pulse 2.8s var(--ease-in-out) infinite;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 82px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand span {
    line-height: 1;
  }

  .hero-content {
    padding-bottom: max(64px, 8svh);
  }

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

  .hero-copy {
    max-width: 335px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    padding-inline: 14px;
  }

  .menu-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-section .section-heading {
    gap: 20px;
  }

  .menu-section .section-heading h2 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .menu-heading-action {
    width: min(100%, 220px);
  }

  .menu-action {
    justify-content: flex-start;
  }

  .menu-action p {
    text-align: left;
  }

  .quick-visit-grid > * {
    flex-basis: 74vw;
  }

  .menu-card {
    flex-basis: 78vw;
  }

  .story-image-food,
  .story-image-room {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .experience-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hours dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding-block: 10px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 4px;
    padding-inline: 8px;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 6px;
    padding-inline: 12px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    max-width: 130px;
    font-size: 0.85rem;
  }

  .header-social .icon-link {
    width: 32px;
  }

  .header-social .icon-link:last-child {
    display: none;
  }
}

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

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

  .motion-ready .reveal,
  .motion-ready .reveal.is-visible,
  .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}

@keyframes mobile-action-pulse {
  0%, 100% {
    opacity: 0.36;
    transform: scale(0.88);
  }
  50% {
    opacity: 0.9;
    transform: scale(1);
  }
}
