:root {
  --ink: #172019;
  --brand-green: oklch(70% 0.135 130.1);
  --brand-green-ink: oklch(31.48% 0.0385 135);
  --leaf: #dfe8d6;
  --paper: #f7f3e9;
  --paper-bright: #fffdf7;
  --mango: #ffc928;
  --mango-deep: #d99a00;
  --tomato: oklch(61.69% 0.209 30.1);
  --tomato-deep: oklch(50.05% 0.182 29.1);
  --muted: #5d675f;
  --line: rgba(23, 32, 25, 0.18);
  --radius: 0.5rem;
  --header-height: 4.5rem;
  --shadow: 0 1.5rem 4rem oklch(66% 0.13 130 / 0.18);
  --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);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--mango);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  z-index: 40;
  width: min(calc(100% - 1.5rem), 86rem);
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 0.7rem 0.6rem 0.85rem;
  color: #fffdf7;
  background: rgba(10, 10, 10, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 3.15rem;
  height: 3.15rem;
  display: block;
  object-fit: cover;
  background: #fff;
  border-radius: calc(var(--radius) - 0.15rem);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.15rem, 2vw, 2.25rem);
}

.desktop-nav a {
  position: relative;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 2px;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.social-link {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

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

.header-book,
.menu-toggle {
  min-height: 2.75rem;
  border: 0;
  border-radius: var(--radius);
}

.header-book {
  padding: 0 1.1rem;
  color: var(--ink);
  background: var(--mango);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.menu-toggle {
  width: 2.75rem;
  display: none;
  place-items: center;
  gap: 0.32rem;
  padding: 0.75rem 0.6rem;
  color: #fff;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms var(--ease-out), opacity 140ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.16rem) rotate(45deg);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: #fffdf7;
  background: #131313;
}

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

.hero-image {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.035);
  animation: hero-breathe 16s var(--ease-in-out) infinite alternate;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.10) 100%);
}

.hero-ambient {
  position: absolute;
  top: 13%;
  right: clamp(1rem, 7vw, 7rem);
  z-index: 0;
  width: clamp(14rem, 25vw, 24rem);
  aspect-ratio: 1;
  pointer-events: none;
  animation: orbit-spin 20s linear infinite;
}

.hero-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 253, 247, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 0 1.4rem rgba(255, 253, 247, 0.05), 0 0 3rem rgba(255, 255, 255, 0.1);
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(255, 253, 247, 0.42);
  border-radius: 50%;
}

.hero-orbit::after {
  inset: 38%;
  border-style: solid;
}

.hero-orb {
  position: absolute;
  display: block;
  border: 0.35rem solid rgba(255, 253, 247, 0.72);
  border-radius: 50%;
  box-shadow: 0 0.65rem 1.6rem rgba(0, 0, 0, 0.22);
  animation: orb-pulse 3.8s var(--ease-in-out) infinite alternate;
}

.hero-orb-red {
  top: 4%;
  left: 46%;
  width: 3.8rem;
  aspect-ratio: 1;
  background: var(--tomato);
}

.hero-orb-green {
  right: 2%;
  bottom: 24%;
  width: 2.9rem;
  aspect-ratio: 1;
  background: var(--brand-green);
  animation-delay: -1.2s;
}

.hero-orb-yellow {
  bottom: 1%;
  left: 21%;
  width: 2.25rem;
  aspect-ratio: 1;
  background: var(--mango);
  animation-delay: -2.4s;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 86rem);
  margin: 0 auto;
  padding: 8.5rem clamp(1.25rem, 5vw, 5rem) clamp(3.4rem, 8vh, 6.5rem);
}

.hero-kicker,
.hero h1,
.hero-content > p:not(.hero-kicker),
.hero-actions {
  animation: hero-enter 780ms var(--ease-out) both;
}

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

.hero-content > p:not(.hero-kicker) {
  animation-delay: 140ms;
}

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

.hero-kicker,
.section-kicker {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  color: var(--paper-bright);
  background: var(--tomato-deep);
  border-radius: calc(var(--radius) - 0.18rem);
}

.hero h1,
.section-heading h2,
.intro h2,
.gallery-heading h2,
.reviews-section h2,
.visit-details h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 8vw, 6rem);
  text-shadow: 0 0.15rem 1.2rem rgba(0, 0, 0, 0.25);
}

.hero-content > p:not(.hero-kicker) {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.3);
}

.hero-actions,
.visit-actions,
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 160ms ease, border-color 160ms ease;
}

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

.button:active,
.header-book:active,
.social-link:active,
.icon-button:active,
.menu-toggle:active,
.gallery-item:active,
.lightbox-nav:active,
.lightbox-close:active {
  transform: translateY(0) scale(0.97);
}

.button-primary {
  color: var(--ink);
  background: var(--mango);
  border-color: var(--mango);
}

.button-primary:focus-visible {
  background: #ffd75e;
  border-color: #ffd75e;
}

.button-ghost {
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button-dark {
  color: var(--ink);
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: currentColor;
}

.section-shell {
  width: min(100%, 86rem);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 5rem);
}

.quick-facts {
  color: var(--ink);
  background: var(--brand-green);
}

.quick-facts-inner {
  width: min(100%, 86rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-facts-inner > div {
  min-width: 0;
  padding: 1.35rem clamp(1rem, 2.3vw, 2rem);
  border-right: 1px solid rgba(23, 32, 25, 0.22);
}

.quick-facts-inner > div:first-child {
  padding-left: 0;
}

.quick-facts-inner > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-size: 0.94rem;
  line-height: 1.25;
}

.quick-facts span {
  margin-top: 0.28rem;
  color: var(--brand-green-ink);
  font-size: 0.78rem;
  line-height: 1.4;
}

.brand-ribbon {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--tomato-deep);
  border-block: 1px solid rgba(23, 32, 25, 0.32);
}

.brand-ribbon-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: ribbon-flow 22s linear infinite;
}

.brand-ribbon span {
  flex: none;
  padding: 0.7rem 1.1rem 0.65rem 0;
  font-size: clamp(0.8rem, 1.4vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.7fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: clamp(5.5rem, 10vw, 9.5rem);
}

.intro-copy {
  max-width: 43rem;
}

.intro h2,
.section-heading h2,
.gallery-heading h2,
.reviews-section h2,
.visit-details h2 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.intro-copy > p {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.intro-notes {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.intro-notes > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.intro-notes dt,
.intro-notes dd {
  margin: 0;
  font-size: 0.88rem;
}

.intro-notes dt {
  color: var(--muted);
}

.intro-notes dd {
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-bottom: 0.2rem;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--mango-deep);
}

.ratio-portrait {
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.ratio-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.intro-image {
  margin: 0;
  box-shadow: var(--shadow);
  animation: intro-float 7s var(--ease-in-out) infinite alternate;
}

.intro-image img {
  object-position: center center;
}

.menu-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(5.5rem, 9vw, 8rem);
  background: var(--leaf);
}

.menu-section::before,
.menu-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.menu-section::before {
  top: -7rem;
  right: -5rem;
  width: clamp(13rem, 23vw, 24rem);
  aspect-ratio: 1;
  background: var(--tomato);
  opacity: 0.13;
  animation: ambient-drift 11s var(--ease-in-out) infinite alternate;
}

.menu-section::after {
  bottom: -8rem;
  left: -6rem;
  width: clamp(15rem, 27vw, 28rem);
  aspect-ratio: 1;
  border: clamp(2.5rem, 5vw, 5rem) solid var(--brand-green);
  opacity: 0.2;
  animation: ambient-roll 18s linear infinite;
}

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

.section-heading {
  max-width: 58rem;
}

.section-heading > p:last-child,
.gallery-heading > p,
.reviews-summary p {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: #526057;
  font-size: 1.05rem;
}

.section-kicker {
  color: #335239;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.5rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.menu-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper-bright);
  border: 1px solid oklch(58% 0.11 130 / 0.38);
  border-radius: var(--radius);
  transform: translateZ(0);
  transition: transform 260ms var(--ease-out), border-color 200ms ease;
}

.menu-card .ratio-portrait {
  border-radius: 0;
}

.menu-card img {
  object-position: center center;
  transition: transform 520ms var(--ease-out);
}

.menu-card-copy {
  padding: clamp(1.15rem, 2.2vw, 1.7rem);
}

.menu-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.menu-card-copy > p {
  min-height: 3.2rem;
  margin: 0.7rem 0 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.menu-card dl,
.menu-card dd {
  margin: 0;
}

.menu-card dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.72rem 0;
  border-top: 1px solid var(--line);
}

.menu-card dt,
.menu-card dd {
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-card dd {
  color: var(--tomato);
  font-variant-numeric: tabular-nums;
}

.menu-footer .button-dark {
  background: var(--tomato-deep);
  border-color: var(--tomato-deep);
}

.menu-footer .button-dark:focus-visible {
  background: oklch(45% 0.16 29.1);
  border-color: oklch(45% 0.16 29.1);
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.menu-footer p {
  margin: 0;
  color: #526057;
  font-size: 0.88rem;
}

.gallery-section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.gallery-heading {
  max-width: 57rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.gallery-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: zoom-in;
  transform: translateZ(0);
  transition: transform 220ms var(--ease-out);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: 2;
  background: linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, 0.42) 50%, transparent 58%);
  opacity: 0.52;
  pointer-events: none;
  transform: translateX(-72%) rotate(8deg);
  animation: gallery-glint 7.5s linear infinite;
}

.gallery-item:nth-child(2n)::after {
  animation-delay: -3.7s;
}

.gallery-item:nth-child(3n)::after {
  animation-delay: -5.2s;
}

.gallery-item .ratio-portrait {
  border: 1px solid var(--line);
}

.gallery-item img {
  object-position: center center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reviews-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(5.5rem, 9vw, 8rem);
  background: #f6c95f;
}

.reviews-section::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: -12rem;
  z-index: -1;
  width: clamp(20rem, 36vw, 36rem);
  aspect-ratio: 1;
  border: clamp(4rem, 8vw, 8rem) solid rgba(140, 175, 79, 0.4);
  border-radius: 48% 52% 44% 56%;
  animation: ambient-roll 24s linear infinite reverse;
}

.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.reviews-summary > div:first-child {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 0.1rem;
}

.reviews-summary > div:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: clamp(7rem, 12vw, 11rem);
  aspect-ratio: 1;
  border: 0.65rem dotted rgba(180, 35, 26, 0.54);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rating-halo 12s linear infinite;
}

.rating-number {
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.stars,
.review-meta span {
  color: #5a3a00;
  letter-spacing: 0.08em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(23, 32, 25, 0.24);
  border-radius: var(--radius);
  transition: transform 240ms var(--ease-out), background-color 180ms ease;
}

.review-card:first-child {
  grid-column: span 7;
  grid-row: span 2;
  justify-content: center;
}

.review-card:nth-child(2),
.review-card:nth-child(3) {
  grid-column: span 5;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review-meta img {
  width: 3.35rem;
  height: 3.35rem;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.review-meta h3 {
  margin: 0;
  font-size: 0.95rem;
}

.review-card blockquote {
  margin: 1.5rem 0;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
}

.review-card:first-child blockquote {
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.review-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 0.15rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1.1fr);
  min-height: 42rem;
  background: var(--paper-bright);
}

.visit-details {
  padding: clamp(3.25rem, 5vw, 4.5rem) clamp(1.25rem, 6vw, 6rem);
}

.visit-details address {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
}

.visit-lead {
  max-width: 31rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.phone-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
}

.hours {
  max-width: 34rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hours > div {
  display: grid;
  grid-template-columns: minmax(7rem, 1fr) auto;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--line);
}

.hours span,
.hours strong {
  font-size: 0.88rem;
}

.hours strong {
  text-align: right;
}

.visit-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.visit-features li {
  padding: 0.4rem 0.65rem;
  background: var(--leaf);
  border-radius: calc(var(--radius) - 0.15rem);
  font-size: 0.78rem;
  font-weight: 800;
}

.visit-actions {
  margin-top: 1.25rem;
}

.map-wrap {
  min-height: 32rem;
  background: #d8ded8;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 42rem;
  display: block;
  border: 0;
}

.mobile-action-bar {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(15rem, 1.25fr) minmax(13rem, 1fr) auto auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.25rem, 5vw, 5rem);
  color: var(--ink);
  background: var(--brand-green);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  width: 4rem;
  height: 4rem;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  line-height: 1.2;
}

.footer-brand span,
.footer-address span,
.footer-address a {
  color: var(--brand-green-ink);
  font-size: 0.82rem;
}

.footer-address {
  display: grid;
  gap: 0.2rem;
}

.footer-address a {
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a,
.footer-links button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.mobile-menu,
.menu-dialog,
.booking-dialog,
.lightbox {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(0.65rem) scale(0.975);
  transition: opacity 220ms var(--ease-out), transform 260ms var(--ease-out), overlay 260ms allow-discrete, display 260ms allow-discrete;
}

.mobile-menu[open],
.menu-dialog[open],
.booking-dialog[open],
.lightbox[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-menu {
  transform-origin: calc(100% - 1.5rem) 1.5rem;
}

.mobile-menu[data-skip-motion],
.menu-dialog[data-skip-motion],
.booking-dialog[data-skip-motion],
.lightbox[data-skip-motion] {
  transition: none;
}

@starting-style {
  .mobile-menu[open],
  .menu-dialog[open],
  .booking-dialog[open],
  .lightbox[open] {
    opacity: 0;
    transform: translateY(0.65rem) scale(0.975);
  }
}

.mobile-menu::backdrop,
.menu-dialog::backdrop,
.booking-dialog::backdrop,
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.mobile-menu {
  width: min(calc(100% - 1.5rem), 32rem);
  max-height: calc(100svh - 1.5rem);
  margin: 0.75rem auto;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--brand-green);
}

.mobile-menu-top,
.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-top > span {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.icon-button {
  min-height: 2.5rem;
  padding: 0.55rem 0.75rem;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 900;
  cursor: pointer;
}

.mobile-menu nav {
  display: grid;
  margin: 2.5rem 0;
}

.mobile-menu nav a {
  padding: 0.85rem 0;
  font-size: clamp(1.8rem, 9vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 32, 25, 0.2);
}

.booking-dialog {
  width: min(calc(100% - 1.5rem), 52rem);
  max-height: calc(100svh - 1.5rem);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  color: var(--ink);
  background: var(--paper-bright);
  overflow: auto;
}

.menu-dialog {
  width: min(calc(100% - 2rem), 62rem);
  max-height: calc(100svh - 2rem);
  color: var(--ink);
  background: var(--paper-bright);
}

.menu-dialog .dialog-header {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 1rem 1.2rem;
  color: var(--ink);
  background: var(--brand-green);
}

.menu-dialog .dialog-header > div > span {
  color: var(--brand-green-ink);
}

.menu-dialog .dialog-header h2 {
  margin: 0.12rem 0 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.menu-dialog .icon-button {
  color: var(--ink);
}

.menu-dialog-body {
  padding: clamp(0.8rem, 2vw, 1.5rem);
}

.menu-dialog-body img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--paper);
}

.menu-dialog-body .button {
  margin-top: 1rem;
}

.dialog-header > div > span {
  color: #4d5b50;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-header h2 {
  max-width: 15ch;
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.booking-dialog form {
  margin-top: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-dialog label {
  display: grid;
  gap: 0.45rem;
  color: #2e3b31;
  font-size: 0.84rem;
  font-weight: 800;
}

.booking-dialog input,
.booking-dialog select,
.booking-dialog textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #8a958c;
  border-radius: var(--radius);
  outline: none;
}

.booking-dialog textarea {
  min-height: 6.5rem;
  margin-top: 1rem;
  resize: vertical;
}

.booking-dialog input:focus,
.booking-dialog select:focus,
.booking-dialog textarea:focus {
  border-color: #435c46;
  box-shadow: 0 0 0 3px rgba(67, 92, 70, 0.22);
}

.booking-dialog [aria-invalid="true"] {
  border-color: #a62620;
}

.field-error {
  min-height: 1.15em;
  color: #8e1f1a;
  font-size: 0.72rem;
  font-weight: 700;
}

.booking-note,
.form-status {
  margin: 1rem 0 0;
  color: #465249;
  font-size: 0.82rem;
}

.form-status:not(:empty) {
  padding: 0.85rem;
  background: var(--leaf);
  border: 1px solid var(--brand-green);
}

.lightbox {
  width: min(calc(100% - 1rem), 76rem);
  height: min(calc(100svh - 1rem), 58rem);
  color: #fff;
  background: #101210;
}

.lightbox-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 6rem 1fr 6rem;
  align-items: center;
  gap: 0.75rem;
  padding: 3.5rem 1rem 1rem;
}

.lightbox figure {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  min-height: 2.75rem;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  padding: 0 0.9rem;
}

.header-book,
.icon-button,
.menu-toggle,
.lightbox-nav,
.lightbox-close {
  transition: transform 150ms var(--ease-out), background-color 160ms ease, color 160ms ease;
}

.text-link span {
  display: inline-block;
  animation: arrow-drift 1.4s var(--ease-in-out) infinite alternate;
}

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

.motion-ready .reveal {
  opacity: 0.001;
  transform: translateY(1.8rem) scale(0.985);
  transition: opacity 620ms var(--ease-out), transform 680ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes hero-breathe {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-0.8%, 0.6%, 0); }
}

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

@keyframes orb-pulse {
  from { opacity: 0.72; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1.12); }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(1.4rem) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes intro-float {
  from { transform: translate3d(0, -0.3rem, 0) rotate(-0.25deg); }
  to { transform: translate3d(0, 0.45rem, 0) rotate(0.25deg); }
}

@keyframes ambient-drift {
  from { transform: translate3d(-1rem, -0.5rem, 0) scale(0.92); }
  to { transform: translate3d(1.5rem, 1.25rem, 0) scale(1.08); }
}

@keyframes ambient-roll {
  to { transform: rotate(360deg); }
}

@keyframes gallery-glint {
  0%, 22% { transform: translateX(-72%) rotate(8deg); }
  48%, 100% { transform: translateX(72%) rotate(8deg); }
}

@keyframes rating-halo {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes arrow-drift {
  from { transform: translateX(0); }
  to { transform: translateX(0.38rem); }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .header-book:hover {
    transform: translateY(-2px);
  }

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

  .button-primary:hover {
    background: #ffd75e;
    border-color: #ffd75e;
  }

  .menu-footer .button-dark:hover {
    background: oklch(45% 0.16 29.1);
    border-color: oklch(45% 0.16 29.1);
  }

  .motion-ready .menu-card.reveal.is-visible:hover {
    border-color: var(--brand-green);
    transform: translateY(-0.55rem) rotate(-0.25deg);
  }

  .motion-ready .menu-card.reveal.is-visible:nth-child(2):hover {
    transform: translateY(-0.55rem) rotate(0.25deg);
  }

  .menu-card:hover img {
    transform: scale(1.045);
  }

  .motion-ready .gallery-item.reveal.is-visible:hover {
    transform: translateY(-0.45rem) rotate(-0.2deg);
  }

  .motion-ready .gallery-item.reveal.is-visible:nth-child(even):hover {
    transform: translateY(-0.45rem) rotate(0.2deg);
  }

  .gallery-item:hover img {
    transform: scale(1.045);
  }

  .motion-ready .review-card.reveal.is-visible:hover {
    background: var(--paper-bright);
    transform: translateY(-0.4rem);
  }
}

@media (min-width: 56.01rem) {
  .visit-section {
    min-height: 39rem;
  }

  .visit-details {
    padding: clamp(2.5rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.25rem);
  }

  .map-wrap iframe {
    min-height: 39rem;
  }
}

@media (max-width: 68rem) {
  .desktop-nav,
  .header-book {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-toggle {
    display: grid;
  }

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

  .quick-facts-inner > div:nth-child(2) {
    border-right: 0;
  }

  .quick-facts-inner > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 32, 25, 0.22);
  }

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

  .footer-links,
  .footer-socials {
    justify-self: start;
  }
}

@media (max-width: 56rem) {
  .intro {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.76fr);
    gap: 2rem;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 30rem;
  }
}

@media (max-width: 44.99rem) {
  :root {
    --header-height: 4rem;
  }

  .site-header {
    top: 0.5rem;
    width: calc(100% - 1rem);
    padding-left: 0.55rem;
  }

  .brand img {
    width: 2.85rem;
    height: 2.85rem;
  }

  .brand span {
    display: none;
  }

  .header-actions .social-link {
    display: none;
  }

  body {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom));
  }

  .hero-content {
    padding: 7rem 1.25rem 6.75rem;
  }

  .hero-ambient {
    top: 14%;
    right: -4.5rem;
    width: 14rem;
    opacity: 0.78;
  }

  .hero-orb-red {
    width: 3rem;
  }

  .hero-orb-green {
    width: 2.35rem;
  }

  .hero-orb-yellow {
    width: 1.8rem;
  }

  .brand-ribbon-track {
    animation-duration: 17s;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 22rem;
    font-size: 1rem;
  }

  .hero-actions .button {
    flex: 1 1 9rem;
  }

  .intro {
    grid-template-columns: 1fr;
    padding-block: 5rem;
  }

  .quick-facts-inner {
    grid-template-columns: 1fr 1fr;
    padding-inline: 1.25rem;
  }

  .quick-facts-inner > div,
  .quick-facts-inner > div:first-child,
  .quick-facts-inner > div:last-child {
    padding: 1rem 0.85rem;
  }

  .quick-facts-inner > div:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(23, 32, 25, 0.22);
  }

  .quick-facts-inner > div:nth-child(even) {
    padding-right: 0;
    padding-left: 1rem;
    border-right: 0;
  }

  .quick-facts-inner > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .intro-copy,
  .section-heading,
  .gallery-heading {
    max-width: none;
  }

  .intro-image {
    width: min(100%, 31rem);
  }

  .intro-notes > div {
    grid-template-columns: 6.5rem 1fr;
  }

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

  .menu-card-copy > p {
    min-height: 0;
  }

  .menu-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-footer .button {
    align-self: flex-start;
  }

  .gallery-grid {
    gap: 0.9rem;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .review-card:first-child,
  .review-card:nth-child(2),
  .review-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .review-card:first-child blockquote {
    font-size: 1.25rem;
  }

  .visit-details {
    padding-block: 3.75rem;
  }

  .hours > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .hours strong {
    text-align: left;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 24rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0.5rem;
    bottom: calc(0.5rem + env(safe-area-inset-bottom));
    left: 0.5rem;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    color: var(--ink);
    background: var(--brand-green);
    border-radius: var(--radius);
    box-shadow: 0 0.35rem 0.5rem rgba(23, 32, 25, 0.22);
  }

  .mobile-action-bar a {
    min-height: 3.35rem;
    display: grid;
    place-items: center;
    padding: 0.7rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
    border-right: 1px solid rgba(23, 32, 25, 0.22);
  }

  .mobile-action-bar a:last-child {
    color: var(--paper-bright);
    background: var(--tomato-deep);
    border-right: 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }

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

  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lightbox-frame {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 3.5rem 0.75rem 0.75rem;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }
}

@media (min-width: 45rem) and (max-width: 63.99rem) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-card-copy {
    padding: 1rem;
  }

  .menu-card h3 {
    font-size: 1.25rem;
  }

  .menu-card-copy > p,
  .menu-card dt,
  .menu-card dd {
    font-size: 0.78rem;
  }

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

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

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

  .motion-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

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

  .hero-image,
  .hero-ambient,
  .hero-orb,
  .brand-ribbon-track,
  .intro-image,
  .menu-section::before,
  .menu-section::after,
  .gallery-item::after,
  .reviews-section::after,
  .reviews-summary > div:first-child::before,
  .text-link span {
    animation: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
