:root {
  --ink: #1d251f;
  --muted: #5e675f;
  --paper: #f4f4ee;
  --paper-deep: #dce5dc;
  --white: #fffefa;
  --accent: #355e47;
  --accent-dark: #243d30;
  --accent-soft: #9fba9d;
  --sun: #d4a94f;
  --line: rgba(29, 37, 31, 0.18);
  --shadow: 0 20px 50px rgba(18, 28, 22, 0.12);
  --radius-sm: 0.4rem;
  --radius-md: 0.75rem;
  --page: min(92vw, 1180px);
  --font-sans: "Aptos", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", 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);
  --z-header: 30;
  --z-modal: 50;
  --z-skip: 60;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 3px solid #dbb85b;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: var(--z-skip);
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--accent-dark);
  transform: translateY(-180%);
}

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

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

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

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-accent {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 9vw, 6rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  color: var(--white);
  transition: color 220ms var(--ease-out), background-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.site-header:not(.is-solid, .menu-active) {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.46);
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(245, 241, 230, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.site-header.menu-active {
  color: var(--ink);
  background: var(--paper);
  box-shadow: none;
  backdrop-filter: none;
}

.nav-shell {
  position: relative;
  display: flex;
  width: var(--page);
  min-height: 4.75rem;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  color: inherit;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 0.7;
  text-decoration: none;
}

.wordmark span {
  align-self: flex-end;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  place-content: center;
  gap: 0.42rem;
  cursor: pointer;
}

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

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

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

.site-menu {
  position: fixed;
  inset: 0;
  display: flex;
  padding: 7rem 4vw 3rem;
  visibility: hidden;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--ink);
  background: var(--paper);
  opacity: 0;
  transform: translateY(-0.75rem);
  transition: visibility 220ms var(--ease-drawer), opacity 220ms var(--ease-drawer), transform 220ms var(--ease-drawer);
}

.site-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-menu > a {
  padding: 0.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 10vw, 4rem);
  line-height: 1.1;
  text-decoration: none;
}

.social-links {
  display: flex;
  margin-top: 1.6rem;
  gap: 0.55rem;
}

.social-links a {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms var(--ease-out);
}

.social-links svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-links svg .solid {
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  display: block;
  object-fit: cover;
  object-position: 50% 48%;
  animation: hero-breathe 18s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.14) 48%, rgba(0, 0, 0, 0.30));
}

.hero-atmosphere,
.cursor-glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-atmosphere {
  inset: 0;
  overflow: hidden;
}

.hero-aura {
  position: absolute;
  top: -22%;
  right: -25%;
  width: clamp(28rem, 76vw, 72rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 193, 0.3), rgba(255, 244, 193, 0.08) 35%, transparent 68%);
  animation: hero-aura-drift 11s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  animation: orbit-ring 19s linear infinite;
  will-change: transform;
}

.hero-ring::before,
.hero-ring::after {
  position: absolute;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 1.5rem rgba(212, 169, 79, 0.55);
  content: "";
}

.hero-ring::before {
  top: 12%;
  left: 7%;
  width: 0.48rem;
  height: 0.48rem;
}

.hero-ring::after {
  right: 10%;
  bottom: 17%;
  width: 0.24rem;
  height: 0.24rem;
}

.hero-ring-one {
  top: 17%;
  right: -5rem;
  width: clamp(15rem, 33vw, 30rem);
  aspect-ratio: 1;
}

.hero-ring-two {
  top: 24%;
  right: 1.5rem;
  width: clamp(9rem, 21vw, 18rem);
  aspect-ratio: 1;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 13s;
}

.cursor-glow {
  top: 0;
  left: 0;
  width: clamp(16rem, 34vw, 30rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 239, 174, 0.25), rgba(255, 239, 174, 0.08) 38%, transparent 70%);
  opacity: 0;
  transform: translate3d(70vw, 24vh, 0) translate(-50%, -50%);
  transition: opacity 220ms ease;
  will-change: transform, opacity;
}

.cursor-glow.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  padding-block: 8rem 3.5rem;
  align-self: end;
  flex-direction: column;
  align-items: flex-start;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.34);
}

.hero-loop {
  display: flex;
  margin-top: 1.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  line-height: 1.4rem;
}

.hero-loop-label {
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-loop-window {
  display: block;
  height: 1.4rem;
  overflow: hidden;
  color: #ffe6a4;
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.hero-loop-track {
  display: flex;
  flex-direction: column;
  animation: phrase-loop 12s var(--ease-in-out) infinite;
  will-change: transform;
}

.hero-loop-track > span {
  height: 1.4rem;
  white-space: nowrap;
}

.hero-content > p:not(.eyebrow) {
  max-width: 30rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  width: 100%;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 150ms var(--ease-out), box-shadow 180ms ease;
  isolation: isolate;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.35) 45%, transparent 70%);
  content: "";
  transform: translateX(-130%);
  transition: transform 520ms var(--ease-out);
}

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

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

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

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

.button-outline {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  background: transparent;
}

.quick-facts {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--accent-dark);
}

.quick-facts::after {
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.085), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-16deg);
  animation: facts-sheen 8s var(--ease-in-out) infinite;
  will-change: transform;
}

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

.quick-facts p {
  display: flex;
  min-height: 6.8rem;
  margin: 0;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.quick-facts p:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.quick-facts span {
  color: rgba(255, 254, 250, 0.66);
  font-size: 0.76rem;
}

.quick-facts strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 400;
  line-height: 1.2;
}

.about {
  display: grid;
  gap: 3rem;
}

.ratio-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.about-visual {
  position: relative;
  padding: 0 2.4rem 2.5rem 0;
}

.about-media {
  box-shadow: var(--shadow);
}

.about-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: clamp(7.5rem, 34%, 12rem);
  height: auto;
  aspect-ratio: 3 / 4;
  border: 0.55rem solid var(--paper);
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(18, 28, 22, 0.16);
  animation: detail-float 6.5s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.brand-seal {
  position: absolute;
  top: 1rem;
  right: 0.25rem;
  z-index: 3;
  display: grid;
  width: clamp(5.8rem, 24vw, 7.4rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 254, 250, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: var(--accent-dark);
  box-shadow: 0 15px 36px rgba(18, 28, 22, 0.22);
  place-items: center;
}

.brand-seal svg {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  overflow: visible;
  animation: seal-spin 18s linear infinite;
  will-change: transform;
}

.brand-seal text {
  fill: currentColor;
  font-family: var(--font-sans);
  font-size: 7.2px;
  font-weight: 800;
  letter-spacing: 1.15px;
}

.brand-seal > span {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  line-height: 1;
}

.hero-brand-seal {
  display: none;
}

.about-copy {
  align-self: center;
}

.chapter-line {
  display: flex;
  margin: 0 0 1.4rem;
  color: var(--accent);
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.chapter-line::after {
  width: 4rem;
  height: 1px;
  background: var(--accent);
  content: "";
}

.about-copy > p:not(.chapter-line, .about-statement) {
  max-width: 39rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-statement {
  max-width: 24ch;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
}

.day-section {
  overflow: hidden;
  color: var(--white);
  background: var(--accent-dark);
}

.day-intro {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
  gap: 1.5rem;
}

.day-intro h2 {
  max-width: 12ch;
}

.day-intro > p {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 254, 250, 0.74);
  align-self: end;
}

.moment-grid {
  display: grid;
  gap: 2.7rem;
}

.moment img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.moment-copy {
  display: grid;
  margin-top: 1.1rem;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
}

.moment-copy > span {
  padding-top: 0.18rem;
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 800;
}

.moment h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.moment p {
  margin: 0.4rem 0 0;
  color: rgba(255, 254, 250, 0.68);
  font-size: 0.92rem;
}

.brand-ribbon {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(29, 37, 31, 0.42);
  color: var(--accent-dark);
  background: var(--sun);
  clip-path: polygon(0 0.55rem, 100% 0, 100% calc(100% - 0.55rem), 0 100%);
}

.brand-ribbon-track {
  display: flex;
  width: max-content;
  padding-block: 0.55rem 0.7rem;
  animation: ribbon-flow 24s linear infinite;
  will-change: transform;
}

.brand-ribbon-track > span {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.brand-ribbon-track i {
  display: inline-block;
  margin-inline: 0.18em;
  font-family: var(--font-sans);
  font-size: 0.48em;
  font-style: normal;
  transform: translateY(-0.2em);
}

.menu-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  gap: 1.4rem;
}

.section-heading > p:not(.eyebrow, .menu-categories),
.section-heading-row > p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

.menu-heading {
  gap: 1.5rem;
}

.menu-heading-copy {
  max-width: 42rem;
}

.menu-heading-copy .menu-categories {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-heading-copy h2 {
  margin-top: 1.15rem;
}

.menu-heading-copy > p:last-child {
  max-width: 34rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
}

.menu-heading-action {
  justify-self: start;
  margin-top: 0.15rem;
}

.menu-categories {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  gap: 3.5rem;
  scroll-margin-top: 6rem;
}

.menu-item {
  position: relative;
}

.menu-item .ratio-media {
  margin-bottom: 1.4rem;
  background: var(--paper-deep);
}

.menu-item h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
}

.menu-item > p:last-child {
  max-width: 29rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.dietary-strip {
  position: relative;
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: clamp(1.7rem, 4vw, 2.7rem);
  background: var(--paper-deep);
  gap: 0.8rem;
  overflow: hidden;
}

.dietary-strip::before {
  position: absolute;
  top: -5.5rem;
  right: -4.5rem;
  width: 11rem;
  aspect-ratio: 1;
  border: 1px dashed rgba(53, 94, 71, 0.32);
  border-radius: 50%;
  content: "";
  animation: seal-spin 20s linear infinite reverse;
  pointer-events: none;
}

.dietary-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
}

.dietary-strip p {
  max-width: 44rem;
  margin: 0;
  color: #405046;
}

.dietary-strip .dietary-note {
  color: #58665d;
  font-size: 0.82rem;
}

.space-story {
  position: relative;
  display: grid;
  min-height: clamp(44rem, 82vw, 58rem);
  overflow: hidden;
  color: var(--white);
  background: var(--accent-dark);
  align-items: end;
  isolation: isolate;
}

.space-story::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.06) 72%);
  content: "";
}

.space-light {
  position: absolute;
  inset: -20% -35%;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(255, 234, 163, 0.25), rgba(255, 234, 163, 0.04) 28%, transparent 60%);
  pointer-events: none;
  animation: space-light-drift 12s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.space-media,
.space-media img {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
}

.space-media img {
  object-fit: cover;
  object-position: 50% 50%;
  animation: space-breathe 20s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.space-copy-wrap {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 6.5rem);
}

.space-copy {
  max-width: 35rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  background: var(--accent-dark);
}

.space-copy h2 {
  max-width: 10ch;
}

.space-copy > p {
  margin: 1.4rem 0 0;
  color: rgba(255, 254, 250, 0.76);
}

.space-copy ul,
.catering-copy ul {
  margin: 1.6rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.space-copy li,
.catering-copy li {
  padding-block: 0.24rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.catering-section {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.catering-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.catering-orbit {
  position: absolute;
  right: -8rem;
  bottom: -6rem;
  width: clamp(15rem, 34vw, 29rem);
  aspect-ratio: 1;
  border: 1px solid rgba(53, 94, 71, 0.2);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-ring 26s linear infinite;
  will-change: transform;
}

.catering-orbit::before,
.catering-orbit::after,
.catering-orbit span {
  position: absolute;
  border: 1px solid rgba(53, 94, 71, 0.18);
  border-radius: 50%;
  content: "";
}

.catering-orbit::before {
  inset: 14%;
}

.catering-orbit::after {
  inset: 31%;
  border-style: dashed;
}

.catering-orbit span {
  width: 0.65rem;
  aspect-ratio: 1;
  border: 0;
  background: var(--sun);
  box-shadow: 0 0 1.2rem rgba(212, 169, 79, 0.55);
}

.catering-orbit span:nth-child(1) {
  top: 8%;
  left: 28%;
}

.catering-orbit span:nth-child(2) {
  right: 13%;
  bottom: 21%;
  width: 0.35rem;
}

.catering-orbit span:nth-child(3) {
  bottom: 6%;
  left: 35%;
  width: 0.22rem;
}

.catering-media {
  overflow: hidden;
  aspect-ratio: 6 / 5;
}

.catering-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.catering-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.catering-label {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

.catering-copy > p:not(.catering-label) {
  margin: 1.5rem 0 0;
  color: #405046;
}

.catering-copy ul {
  display: flex;
  margin-bottom: 1.8rem;
  border-color: rgba(29, 37, 31, 0.2);
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.catering-copy li {
  color: var(--accent-dark);
}

.catering-copy .button-light {
  color: var(--white);
  background: var(--accent-dark);
}

.gallery-section {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  counter-reset: gallery-item;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  counter-increment: gallery-item;
  transition: transform 150ms var(--ease-out), box-shadow 220ms ease;
}

.gallery-item::before {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  display: grid;
  width: 2.2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--white);
  background: rgba(22, 35, 27, 0.34);
  content: "0" counter(gallery-item);
  font-size: 0.68rem;
  font-weight: 800;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, transform 260ms var(--ease-out);
  backdrop-filter: blur(8px);
}

.gallery-item .ratio-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent);
  content: "";
}

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

.gallery-item:active {
  transform: scale(0.985);
}

.gallery-caption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.65rem;
  left: 0.7rem;
  z-index: 1;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reviews {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--accent-dark);
  isolation: isolate;
}

.reviews::before {
  position: absolute;
  top: 3%;
  left: -6vw;
  z-index: 0;
  color: transparent;
  content: "KIND WORDS · KIND WORDS ·";
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  letter-spacing: -0.04em;
  line-height: 0.8;
  opacity: 0.1;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 254, 250, 0.8);
  animation: review-type-drift 26s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

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

.reviews-intro {
  display: grid;
  margin-bottom: 3.2rem;
  gap: 1rem;
}

.rating-line {
  margin: 0;
  color: rgba(255, 254, 250, 0.66);
}

.review-source {
  width: fit-content;
  margin: 0;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--sun);
  color: rgba(255, 254, 250, 0.82);
  font-weight: 700;
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 20rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
  flex-direction: column;
  overflow: hidden;
  transition: border-color 200ms ease, background-color 200ms ease, transform 150ms var(--ease-out);
}

.review-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sun), transparent);
  content: "";
  opacity: 0.78;
  transform: translateX(-140%);
  animation: card-glint 7.5s var(--ease-in-out) infinite;
  will-change: transform;
}

.review-card:nth-child(2)::before {
  animation-delay: -2.5s;
}

.review-card:nth-child(3)::before {
  animation-delay: -5s;
}

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

.review-meta img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  animation: avatar-float 5.5s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.review-meta h3 {
  font-size: 1rem;
}

.stars {
  margin: 0.15rem 0 0;
  color: var(--sun);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 0.7rem rgba(212, 169, 79, 0.28);
  animation: star-glow 4.8s var(--ease-in-out) infinite alternate;
  transform-origin: left center;
  will-change: transform, opacity;
}

.stars span {
  color: rgba(255, 255, 255, 0.3);
}

.review-card blockquote {
  margin: 1.7rem 0;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.45;
}

.review-card > a {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.84rem;
  font-weight: 700;
}

.visit-label {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.visit-grid {
  display: grid;
  gap: 3rem;
}

.visit-copy address {
  display: grid;
  margin-top: 2rem;
  font-style: normal;
  gap: 0.25rem;
}

.visit-copy address p {
  margin: 0 0 1rem;
}

.visit-copy address strong,
.footer-label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours {
  max-width: 32rem;
  margin: 1.3rem 0 1.8rem;
  border-top: 1px solid var(--line);
}

.hours p {
  display: flex;
  margin: 0;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
}

.hours strong {
  font-weight: 700;
}

.access-note {
  max-width: 31rem;
  margin: 0 0 1.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.map-wrap {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: 0 18px 48px rgba(18, 28, 22, 0.08);
  transition: box-shadow 220ms ease;
}

.map-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  min-width: 6.5rem;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(29, 37, 31, 0.28);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 226, 151, 0.94);
  box-shadow: 0 10px 24px rgba(18, 28, 22, 0.16);
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: map-badge-float 4.5s var(--ease-in-out) infinite alternate;
  pointer-events: none;
  will-change: transform;
}

.map-badge b {
  font-size: 1rem;
}

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

.site-footer {
  padding-block: 4rem 1.5rem;
  color: var(--white);
  background: #18261e;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-wordmark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  text-decoration: none;
}

.footer-grid p {
  margin: 0.4rem 0 0;
  color: rgba(255, 254, 248, 0.66);
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-grid .footer-label {
  margin: 0 0 0.3rem;
  color: rgba(255, 254, 248, 0.52);
}

.footer-grid a:not(.footer-wordmark, .social-links a) {
  text-decoration: none;
}

.footer-grid a:not(.footer-wordmark, .social-links a):hover {
  text-decoration: underline;
}

.footer-social .social-links {
  margin-top: 0;
}

.footer-base {
  display: flex;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 254, 248, 0.5);
  font-size: 0.78rem;
}

.footer-base p {
  margin: 0;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
}

.lightbox::backdrop {
  background: transparent;
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 12, 10, 0.94);
}

.lightbox-panel {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 4.5rem 1rem 1.5rem;
  grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
  align-items: center;
  opacity: 1;
  transform: scale(1);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
  transform-origin: center;
}

@starting-style {
  .lightbox[open] .lightbox-panel {
    opacity: 0;
    transform: scale(0.965);
  }
}

.lightbox.no-motion .lightbox-panel {
  transition: none;
}

.lightbox figure {
  z-index: 1;
  display: grid;
  height: 100%;
  max-height: calc(100vh - 6rem);
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  align-self: center;
}

.lightbox figcaption {
  padding-top: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.lightbox-close,
.lightbox-nav {
  z-index: 2;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
  place-items: center;
  cursor: pointer;
  transition: color 140ms ease, background-color 140ms ease, border-color 140ms ease, transform 140ms var(--ease-out);
}

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

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.65rem;
}

.lightbox-prev {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

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

.motion-ready .reveal {
  opacity: 0.001;
  filter: blur(3px);
  transform: translateY(1.4rem);
  transition: opacity 680ms var(--ease-out), filter 680ms var(--ease-out), transform 760ms var(--ease-out);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: translateY(0);
}

.motion-ready .reveal .ratio-media,
.motion-ready .moment.reveal > img,
.motion-ready .catering-media.reveal > img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 900ms var(--ease-in-out), transform 700ms var(--ease-out);
}

.motion-ready .reveal.is-visible .ratio-media,
.motion-ready .moment.reveal.is-visible > img,
.motion-ready .catering-media.reveal.is-visible > img {
  clip-path: inset(0 0 0 0);
}

.motion-ready .hero-content > * {
  opacity: 1;
  animation: hero-enter 820ms var(--ease-out) forwards;
}

.motion-ready .hero-content > :nth-child(2) {
  animation-delay: 70ms;
}

.motion-ready .hero-content > :nth-child(3) {
  animation-delay: 140ms;
}

.motion-ready .hero-content > :nth-child(4) {
  animation-delay: 210ms;
}

.motion-ready .hero-content > :nth-child(5) {
  animation-delay: 280ms;
}

@keyframes hero-enter {
  from {
    transform: translateY(1.1rem);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.075) translate3d(-0.65%, -0.35%, 0);
  }
}

@keyframes hero-aura-drift {
  from {
    opacity: 0.65;
    transform: translate3d(-3%, -2%, 0) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate3d(-17%, 13%, 0) scale(1.12);
  }
}

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

@keyframes phrase-loop {
  0%, 20% {
    transform: translateY(0);
  }
  26%, 46% {
    transform: translateY(-25%);
  }
  52%, 72% {
    transform: translateY(-50%);
  }
  78%, 100% {
    transform: translateY(-75%);
  }
}

@keyframes facts-sheen {
  0%, 18% {
    transform: translate3d(-160%, 0, 0) skewX(-16deg);
  }
  62%, 100% {
    transform: translate3d(620%, 0, 0) skewX(-16deg);
  }
}

@keyframes detail-float {
  from {
    transform: translate3d(0, 0.2rem, 0) rotate(-1.25deg);
  }
  to {
    transform: translate3d(0, -0.55rem, 0) rotate(1deg);
  }
}

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

@keyframes ribbon-flow {
  to {
    transform: translateX(-50%);
  }
}

@keyframes space-breathe {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.085) translate3d(1%, -0.7%, 0);
  }
}

@keyframes space-light-drift {
  from {
    opacity: 0.45;
    transform: translate3d(-18%, -3%, 0) rotate(-5deg);
  }
  to {
    opacity: 0.9;
    transform: translate3d(24%, 7%, 0) rotate(6deg);
  }
}

@keyframes review-type-drift {
  from {
    transform: translate3d(-3%, 0, 0);
  }
  to {
    transform: translate3d(9%, 1.5rem, 0);
  }
}

@keyframes card-glint {
  0%, 20% {
    transform: translateX(-140%);
  }
  70%, 100% {
    transform: translateX(350%);
  }
}

@keyframes avatar-float {
  from {
    transform: translateY(0) rotate(-1deg);
  }
  to {
    transform: translateY(-0.28rem) rotate(2deg);
  }
}

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

@keyframes map-badge-float {
  from {
    transform: translate3d(0, 0.18rem, 0) rotate(1.5deg);
  }
  to {
    transform: translate3d(0, -0.42rem, 0) rotate(-1.5deg);
  }
}

@media (max-width: 839px) {
  .site-menu > a,
  .site-menu .social-links {
    opacity: 0;
    transform: translateY(-0.7rem);
    transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out);
  }

  .site-menu.is-open > a,
  .site-menu.is-open .social-links {
    opacity: 1;
    transform: translateY(0);
  }

  .site-menu.is-open > a:nth-child(2) {
    transition-delay: 45ms;
  }

  .site-menu.is-open > a:nth-child(3) {
    transition-delay: 90ms;
  }

  .site-menu.is-open > a:nth-child(4) {
    transition-delay: 135ms;
  }

  .site-menu.is-open .social-links {
    transition-delay: 180ms;
  }

  .site-menu.no-motion,
  .site-menu.no-motion > a,
  .site-menu.no-motion .social-links {
    transition: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    box-shadow: 0 10px 26px rgba(18, 28, 22, 0.16);
    transform: translateY(-2px);
  }

  .button:hover::before {
    transform: translateX(130%);
  }

  .social-links a:hover {
    color: var(--accent-dark);
    background: var(--sun);
    transform: translateY(-2px) rotate(5deg);
  }

  .gallery-item:hover,
  .motion-ready .gallery-item.reveal.is-visible:hover {
    box-shadow: 0 22px 42px rgba(18, 28, 22, 0.16);
    transform: translateY(-0.35rem);
  }

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

  .gallery-item:hover::before {
    color: var(--accent-dark);
    background: var(--sun);
    transform: rotate(10deg) scale(1.08);
  }

  .catering-media:hover img {
    transform: scale(1.035);
  }

  .review-card:hover,
  .motion-ready .review-card.reveal.is-visible:hover {
    border-color: rgba(255, 225, 147, 0.62);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-0.25rem);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover {
    color: var(--accent-dark);
    border-color: var(--sun);
    background: var(--sun);
    transform: scale(1.06);
  }

  .map-wrap:hover {
    box-shadow: 0 24px 60px rgba(18, 28, 22, 0.16);
  }
}

@media (min-width: 680px) {
  .hero-actions {
    width: auto;
  }

  .about {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 7rem);
  }

  .brand-seal {
    top: -2.25rem;
    right: -0.25rem;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.1vw, 1.75rem);
  }

  .menu-item:nth-child(2) {
    margin-top: 0;
  }

  .menu-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: clamp(2rem, 8vw, 8rem);
  }

  .menu-heading-action {
    justify-self: end;
    margin-top: 0.4rem;
  }

  .review-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: repeat(2, minmax(15rem, auto));
  }

  .review-card:first-child {
    min-height: 100%;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    grid-row: 1 / span 2;
  }

  .review-card:first-child blockquote {
    font-size: clamp(1.45rem, 3vw, 2.05rem);
  }

  .catering-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .dietary-strip {
    grid-template-columns: minmax(14rem, 0.8fr) minmax(18rem, 1.2fr);
    align-items: center;
  }

  .dietary-strip .dietary-note {
    grid-column: 2;
  }

  .visit-grid {
    grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
    align-items: stretch;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .hours p {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1.25fr 0.7fr 0.55fr;
  }
}

@media (min-width: 560px) {
  .moment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem 1rem;
  }

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

@media (min-width: 840px) {
  .quick-facts-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quick-facts p {
    min-height: 7.5rem;
    padding-inline: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 0;
  }

  .quick-facts p:last-child {
    border-right: 0;
  }

  .day-intro {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
    align-items: end;
  }

  .menu-toggle {
    display: none;
  }

  .site-menu {
    position: static;
    display: flex;
    padding: 0;
    visibility: visible;
    flex-direction: row;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2rem);
    color: inherit;
    background: transparent;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-menu > a {
    padding: 0.4rem 0;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .site-menu > a::after {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms var(--ease-out);
  }

  .site-menu > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .site-menu .social-links {
    margin: 0;
  }

  .site-menu .social-links a {
    width: 2.25rem;
    height: 2.25rem;
  }

  .site-menu .social-links svg {
    width: 1rem;
    height: 1rem;
  }

  .hero-media img {
    object-position: 50% 50%;
  }

  .hero-scrim {
    background: linear-gradient(to bottom, rgba(9, 20, 15, 0.16), rgba(9, 20, 15, 0.22) 44%, rgba(9, 20, 15, 0.48));
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.82fr);
    grid-template-rows: auto auto auto;
    align-content: end;
    align-items: end;
    column-gap: clamp(2.5rem, 7vw, 8rem);
    padding-bottom: clamp(3.75rem, 6.5vw, 5.5rem);
  }

  .hero-content > .eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0.9rem;
  }

  .hero-content > h1 {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    font-size: clamp(4.25rem, 8vw, 6rem);
    line-height: 0.9;
  }

  .hero-content > p:not(.eyebrow) {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    justify-self: end;
    max-width: 28rem;
    margin: 0;
    text-align: right;
  }

  .hero-actions {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    width: min(100%, 25rem);
    margin-top: 1.55rem;
    justify-content: flex-end;
  }

  .hero-actions .button {
    min-width: 0;
    flex: 1 1 0;
    justify-content: space-between;
    padding-inline: 1.2rem;
  }

  .hero-actions .button::after {
    margin-left: 1rem;
    content: "↗";
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
  }

  .hero-loop {
    grid-column: 1;
    grid-row: 3;
    width: min(100%, 29rem);
    margin-top: 1.35rem;
  }

  .hero-brand-seal {
    display: grid;
    top: clamp(5.75rem, 8vw, 7.25rem);
    right: clamp(1.5rem, 4.5vw, 5rem);
    width: clamp(7.5rem, 11vw, 10rem);
    border-color: rgba(255, 254, 250, 0.72);
    color: rgba(255, 254, 250, 0.9);
    background: rgba(14, 31, 23, 0.16);
    pointer-events: none;
  }

  .section-heading-row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .lightbox-panel {
    padding: 2rem 2.5rem;
    grid-template-columns: 4rem minmax(0, 1fr) 4rem;
    gap: 1rem;
  }

  .lightbox figure {
    max-height: calc(100vh - 4rem);
  }
}

@media (min-width: 960px) {
  .moment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .moment:nth-child(even) {
    margin-top: 3.5rem;
  }

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

@media (max-width: 420px) {
  .hero-actions .button {
    flex: 1 1 calc(50% - 0.4rem);
  }

  .gallery-caption {
    font-size: 0.68rem;
  }

  .footer-base {
    flex-direction: column;
  }
}

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

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

  .motion-ready .reveal .ratio-media,
  .motion-ready .moment.reveal > img,
  .motion-ready .catering-media.reveal > img {
    clip-path: inset(0);
  }

  .hero-media img,
  .hero-aura,
  .hero-ring,
  .hero-loop-track,
  .about-detail,
  .brand-seal svg,
  .brand-ribbon-track,
  .dietary-strip::before,
  .space-media img,
  .space-light,
  .catering-orbit,
  .reviews::before,
  .review-card::before,
  .review-meta img,
  .stars,
  .map-badge {
    animation: none !important;
    transform: none !important;
  }

  .cursor-glow,
  .hero-ring {
    display: none;
  }

  .hero-loop-track > span:not(:first-child) {
    display: none;
  }
}
