:root {
  --paper: #f6f1e8;
  --cream: #efe7d8;
  --sand: #d8cbb8;
  --ink: #1b1713;
  --heading: #185496;
  --ink-soft: #3a332c;
  --muted: #6f675d;
  --clay: #9c5a3c;
  --espresso: #3a2a22;
  --line: rgba(27, 23, 19, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-mask: cubic-bezier(0.76, 0, 0.24, 1);
  --pad: clamp(1.5rem, 5vw, 6.5rem);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --dock-h: 0px;
}

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a,
button,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(24, 84, 150, 0.18);
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

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

::selection {
  background: var(--espresso);
  color: var(--paper);
}

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

address {
  font-style: normal;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  z-index: 200;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 120;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

.cursor {
  display: none;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.eyebrow.light {
  color: rgba(246, 241, 232, 0.72);
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 8.4vw, 8.75rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.display.light {
  color: var(--paper);
}

.line {
  display: block;
  overflow: hidden;
}

.line > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.2s var(--ease);
}

.in-view .line > span {
  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;
}

.hero-title {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  white-space: nowrap;
  column-gap: 0.22em;
  font-size: clamp(3.6rem, 10.5vw, 11.5rem);
}

.hero-good,
.hero-swap {
  flex: 0 0 auto;
}

.hero-swap {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  vertical-align: baseline;
}

.hero-swap span {
  grid-area: 1 / 1;
  white-space: nowrap;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.55s var(--ease);
}

.hero-swap span.is-active {
  transform: translateY(0);
  opacity: 1;
}

.hero-swap span.is-exit {
  transform: translateY(-115%);
  opacity: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.in-view.reveal,
.in-view .reveal {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

.reveal-image {
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.35s var(--ease-mask);
}

.reveal-image.in-view {
  clip-path: inset(0 0 0 0);
}

.reveal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
  transition: transform 1.7s var(--ease);
}

.reveal-image.in-view img {
  transform: scale(1);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
}

.btn-solid {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn-ghost {
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  margin-top: 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}


.text-link.light {
  color: var(--paper);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: calc(1.35rem + var(--safe-top)) var(--pad) 1.35rem;
  color: #fff;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), padding 0.5s var(--ease);
}

.nav.is-scrolled,
.nav.menu-open {
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(16px);
  color: #185496;
  padding: calc(0.9rem + var(--safe-top)) var(--pad) 0.9rem;
  border-bottom: 1px solid var(--line);
}

.nav-mark {
  position: relative;
  justify-self: start;
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-mark img {
  display: block;
  height: 50px;
  width: auto;
}

.nav.is-scrolled .nav-mark img,
.nav.menu-open .nav-mark img {
  opacity: 0;
}

.nav.is-scrolled .nav-mark::after,
.nav.menu-open .nav-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #185496;
  -webkit-mask: url("../images/logo-white.png") left center / contain no-repeat;
  mask: url("../images/logo-white.png") left center / contain no-repeat;
}

.footer .nav-mark img {
  height: 52px;
  filter: none;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a,
.nav-cta {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer a,
.footer-social a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-cta {
  justify-self: end;
  border: 1px solid currentColor;
  padding: 0.7rem 1.1rem;
  white-space: nowrap;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  position: relative;
  justify-self: end;
  margin-right: -0.55rem;
}

.nav-toggle span {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}

.nav-toggle span:first-child { top: calc(50% - 0.3rem); }
.nav-toggle span:last-child { top: calc(50% + 0.28rem); }

.nav-toggle.is-open span:first-child {
  transform: translateY(0.28rem) rotate(40deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-0.28rem) rotate(-40deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 95;
  display: flex;
  align-items: center;
  padding: calc(6rem + var(--safe-top)) var(--pad) calc(2rem + var(--safe-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-overlay[hidden] {
  display: none;
}

.nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.nav-overlay a {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1;
  color: #185496;
}

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  color: var(--paper);
  overflow: hidden;
}

.hero-media,
.finale-media,
.meal-overlay .meal-media {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.finale-media img,
.meal-overlay .meal-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.6s var(--ease);
  will-change: opacity, transform;
}

.hero-media img.is-active {
  opacity: 1;
  animation: hero-zoom 6.5s linear forwards;
}

.hero-media img.is-exit {
  transform: scale(1.06);
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero::after,
.finale::after,
.meal-overlay::after,
.signature-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 23, 19, 0.22) 0%, rgba(27, 23, 19, 0.18) 38%, rgba(27, 23, 19, 0.72) 100%);
  pointer-events: none;
}

.hero::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 18, 12, 0.50) 0%, rgba(21, 18, 12, 0.45) 45%, rgba(21, 18, 12, 0.90) 100%);
}

.finale::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 18, 12, 0.50) 0%, rgba(21, 18, 12, 0.52) 40%, rgba(21, 18, 12, 0.88) 100%);
}

.hero-content h1,
.finale-copy h2,
.signature-copy h2 {
  text-shadow: 0 18px 40px rgba(27, 23, 19, 0.28);
}

.hero-content {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 12vh;
  z-index: 2;
  max-width: none;
}

.hero-hours {
  margin-top: 1.15rem;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.88);
}

.hero-hours-note {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.72);
}

.hero-sub {
  margin-top: 0.7rem;
  max-width: 22rem;
  color: rgba(246, 241, 232, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.scroll-hint {
  position: absolute;
  right: var(--pad);
  bottom: 6vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
}

.scroll-hint i {
  display: block;
  width: 1px;
  height: 3.5rem;
  background: var(--paper);
  transform-origin: top;
  animation: scroll-line 2.2s var(--ease) infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0.2); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

section[id] {
  scroll-margin-top: 4.75rem;
}

.intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  min-height: 100vh;
  padding: 0;
  max-width: none;
  background: var(--paper);
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18vh var(--pad) 16vh 0;
  padding-left: var(--pad);
}

.intro .display {
  max-width: 10ch;
  margin: 1.4rem 0 2.5rem;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.4;
  max-width: 22ch;
  color: var(--ink-soft);
}

.intro-aside {
  margin-top: 4rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.intro-media {
  min-height: 100vh;
  overflow: hidden;
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.meal {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 100vh;
  background: var(--paper);
}

.meal-right {
  grid-template-columns: 0.78fr 1.22fr;
}

.meal-media {
  min-height: 72vh;
  overflow: hidden;
}

.meal-left .meal-media,
.meal-right .meal-media {
  height: 100%;
}

.meal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 7vw;
}

.meal-copy h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.meal-copy p {
  margin-top: 1.4rem;
  max-width: 18rem;
  color: var(--ink-soft);
}

.meal-overlay {
  position: relative;
  min-height: 100vh;
  color: var(--paper);
}

.meal-overlay .meal-copy {
  position: relative;
  z-index: 2;
  max-width: 28rem;
  padding: 18vh var(--pad);
}

.meal-overlay h2,
.meal-overlay p {
  color: var(--paper);
}

.signature {
  height: 100vh;
  background: var(--ink);
}

.signature-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.signature-media {
  position: absolute;
  inset: -8%;
}

.signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.signature-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) 10vh;
  max-width: 46rem;
  color: var(--paper);
}

.signature-copy p {
  margin-top: 1.2rem;
  max-width: 24rem;
  color: rgba(246, 241, 232, 0.84);
}

.price {
  font-family: var(--serif);
  font-size: 2.2rem;
  margin-top: 0.6rem !important;
  color: var(--paper) !important;
}

.favorites {
  position: relative;
  min-height: 100vh;
  background: var(--cream);
}

.favorites-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4vh;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6rem 0 4vh;
}

.favorites-head {
  padding: 0 var(--pad);
  flex: 0 0 auto;
}

.favorites-head .display {
  font-size: clamp(3rem, 6.5vw, 6.75rem);
}

.gallery {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0 var(--pad);
  will-change: transform;
}

.gallery-item {
  flex: 0 0 52vw;
}

.gallery-img {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.35rem;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}


.gallery-item h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--heading);
}

.gallery-item p {
  margin-top: 0.35rem;
  color: var(--muted);
  max-width: 22rem;
}

.menu {
  padding: 16vh var(--pad) 14vh;
  background: var(--paper);
}

.menu-head {
  max-width: 40rem;
  margin-bottom: 8vh;
}

.menu-head .display {
  margin: 1rem 0 1.4rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5vw 4vw;
}

.menu-col h3 {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--heading);
}

.menu-col-note {
  margin: -1.2rem 0 1.7rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 22rem;
}

.menu-col article {
  margin-bottom: 1.8rem;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.menu-row span:last-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.menu-row span:first-child {
  color: #185496;
}

.menu-col p {
  font-size: 0.92rem;
  color: var(--muted);
}

.menu-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
}

.proof {
  padding: 18vh var(--pad) 16vh;
  background: var(--cream);
  text-align: left;
}

.proof .display {
  margin: 1.2rem 0 2.5rem;
}

.rating {
  margin-bottom: 4vh;
}

.stars {
  color: var(--heading);
  letter-spacing: 0.2em;
  font-size: 0.95rem;
}

.rating p {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.quotes {
  position: relative;
  min-height: 8.5rem;
  max-width: 52rem;
  overflow: hidden;
}

.quotes blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
  line-height: 1.2;
  font-weight: 400;
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.quotes blockquote.is-active {
  opacity: 1;
  transform: none;
  position: relative;
  pointer-events: auto;
}

.quote-nav {
  display: flex;
  gap: 0.6rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

.quote-nav button {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}


.location {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  background: var(--paper);
}

.location-media {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 100vh;
}

.location-copy {
  padding: 10vh 6vw 4vh;
}

.location-copy .display {
  margin-bottom: 1.4rem;
}

.location-copy p,
.location-copy address {
  max-width: 22rem;
}

.location address {
  margin: 1.5rem 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.35;
}

.muted {
  color: var(--muted);
}

.hours {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.find-us {
  margin-top: 2.2rem;
  max-width: 24rem;
}

.find-us summary {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.find-us summary::-webkit-details-marker {
  display: none;
}

.find-us p {
  margin-top: 0.9rem;
  color: var(--ink-soft);
}

.map-wrap {
  margin: 0 6vw 8vh;
  min-height: 280px;
  filter: grayscale(0.45) contrast(0.95) saturate(0.7);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.gather {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 100vh;
  background: #202c38;
  color: var(--paper);
}

.gather-media {
  min-height: 80vh;
}

.gather-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 7vw;
}

.gather .eyebrow {
  color: rgba(246, 241, 232, 0.62);
}

.gather .display {
  margin: 1.1rem 0 1.6rem;
  color: var(--paper);
}

.gather p {
  max-width: 26rem;
  color: rgba(246, 241, 232, 0.82);
}

.experience {
  padding: 22vh var(--pad);
  background: var(--paper);
}

.experience .display {
  max-width: 12ch;
  margin: 1.2rem 0 4rem;
}

.experience-copy {
  max-width: 28rem;
}

.experience-copy p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.4;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
}

.finale {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--paper);
}

.finale-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vh var(--pad);
  max-width: 48rem;
}

.finale-copy p {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  color: rgba(246, 241, 232, 0.82);
}

.footer {
  background: #202c38;
  color: var(--paper);
  padding: 5.5rem var(--pad) 7rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(246, 241, 232, 0.12);
}

.footer address,
.footer p {
  margin-top: 1rem;
  color: rgba(246, 241, 232, 0.7);
}

.footer nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-note {
  margin-top: 1.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(246, 241, 232, 0.38);
}

.filmstrip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: #202c38;
}

.filmstrip-cell {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  margin: 0;
  background: #18232e;
  cursor: pointer;
  overflow: hidden;
}

.filmstrip-cell input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.filmstrip-cell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.filmstrip-cell span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.45);
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
}


.filmstrip-cell.has-video video {
  display: block;
}

.filmstrip-cell.has-video span {
  display: none;
}

.dock {
  display: none;
}

@media (max-width: 1280px) {
  .gallery-item {
    flex-basis: 58vw;
  }
}

@media (max-width: 1024px) {
  .meal,
  .meal-right,
  .location,
  .gather,
  .intro {
    grid-template-columns: 1fr;
  }

  .location-media,
  .gather-media,
  .meal-left .meal-media,
  .meal-right .meal-media,
  .intro-media {
    min-height: 62vh;
    height: 62vh;
  }

  .intro-media img {
    min-height: 0;
    height: 100%;
  }

  .location-media {
    grid-row: auto;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

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

  .gallery-item {
    flex-basis: 70vw;
  }

  .signature-copy .display {
    font-size: clamp(3rem, 10vw, 6.5rem);
  }

  .hero-title {
    font-size: clamp(3.2rem, 9.5vw, 9rem);
  }
}

@media (max-width: 768px) {
  :root {
    --dock-h: 3.6rem;
    --pad: 1.4rem;
  }

  body {
    padding-bottom: calc(var(--dock-h) + var(--safe-bottom));
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.45rem;
    padding: calc(0.75rem + var(--safe-top)) 0.65rem 0.75rem 1.4rem;
  }

  .nav.is-scrolled,
  .nav.menu-open {
    padding: calc(0.65rem + var(--safe-top)) 0.65rem 0.65rem 1.4rem;
  }

  .nav-mark {
    min-width: 0;
    max-width: 100%;
  }

  .nav-mark img {
    height: 40px;
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  .nav-toggle {
    display: block;
  }

  .nav-overlay a {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
    padding: 0.15rem 0;
  }

  .hero {
    min-height: 0;
    height: 100svh;
    height: 100dvh;
  }

  .hero-title {
    font-size: clamp(2.15rem, 10.4vw, 3.35rem);
    column-gap: 0.16em;
  }

  .grain {
    display: none;
  }

  .reveal,
  .in-view .reveal {
    opacity: 1;
    transform: none;
  }

  .line > span {
    transform: none;
  }

  .reveal-image {
    clip-path: none;
  }

  .reveal-image img {
    transform: none;
  }

  .hero-media img {
    height: 100%;
  }

  .hero-content {
    left: 1.4rem;
    right: 1.4rem;
    bottom: calc(var(--dock-h) + var(--safe-bottom) + 1.75rem);
  }

  .hero-sub {
    margin-top: 1.1rem;
    max-width: 20rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
  }

  .btn {
    width: 100%;
    min-height: 3rem;
  }

  .scroll-hint {
    display: none;
  }

  .intro,
  .experience,
  .menu,
  .proof,
  .favorites-head,
  .finale-copy,
  .location-copy,
  .gather-copy,
  .meal-copy {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .intro-copy {
    padding: 4.5rem 1.4rem;
  }

  .intro {
    min-height: 0;
    padding: 0;
  }

  .intro .display {
    margin: 1rem 0 1.6rem;
  }

  .intro-aside {
    margin-top: 2.2rem;
  }

  .meal-copy,
  .gather-copy {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .location-copy {
    padding-top: 4.5rem;
    padding-bottom: 2rem;
  }

  .location-media,
  .gather-media,
  .meal-left .meal-media,
  .meal-right .meal-media,
  .intro-media {
    min-height: 52vh;
    height: 52vh;
  }

  .signature {
    height: auto;
  }

  .signature-sticky {
    position: relative;
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .signature-copy {
    padding: 7.5rem 1.4rem calc(var(--dock-h) + var(--safe-bottom) + 2.5rem);
    min-height: 100svh;
    min-height: 100dvh;
  }

  .favorites {
    min-height: 0;
    height: auto !important;
  }

  .favorites-pin {
    position: relative;
    height: auto;
    overflow: visible;
    justify-content: flex-start;
    gap: 1.6rem;
    padding: 4.5rem 0 3.25rem;
  }

  .favorites-head .display {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .gallery {
    width: auto;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.4rem;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.4rem 0.35rem;
    scrollbar-width: none;
    transform: none !important;
  }

  .gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    flex-basis: min(82vw, 22.5rem);
    scroll-snap-align: start;
  }

  .gallery-item h3 {
    font-size: 1.55rem;
  }

  .gallery-img {
    margin-bottom: 1rem;
  }

  .menu,
  .proof,
  .experience {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .menu-head {
    margin-bottom: 3rem;
  }

  .menu-row {
    font-size: 1.35rem;
    align-items: baseline;
  }

  .menu-note {
    margin-top: 0.75rem;
    letter-spacing: 0.06em;
  }

  .quotes {
    min-height: 9.5rem;
  }

  .quotes blockquote {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
  }

  .quote-nav button {
    width: 2.85rem;
    height: 2.85rem;
  }

  section[id] {
    scroll-margin-top: calc(4.5rem + var(--safe-top));
  }

  .find-us summary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .map-wrap {
    margin: 0 1.4rem 3.5rem;
  }

  .map-wrap iframe {
    pointer-events: none;
    height: 240px;
  }

  .finale-copy {
    padding-top: 6.5rem;
    padding-bottom: calc(var(--dock-h) + var(--safe-bottom) + 2.75rem);
    min-height: 100svh;
    min-height: 100dvh;
  }

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

  .footer {
    padding: 3.5rem 1.4rem calc(2.5rem + var(--dock-h) + var(--safe-bottom));
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding-bottom: var(--safe-bottom);
  }

  body.menu-open .dock {
    visibility: hidden;
    pointer-events: none;
  }

  .dock a {
    text-align: center;
    padding: 1.05rem 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dock a + a {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 480px) {
  .nav-mark img {
    height: 34px;
  }

  .nav-cta {
    min-height: 2.75rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  .display {
    font-size: clamp(2.55rem, 12.5vw, 3.15rem);
  }

  .hero-title {
    font-size: clamp(2.05rem, 10.8vw, 2.85rem);
  }

  .meal-copy h2 {
    font-size: clamp(2.8rem, 14vw, 3.5rem);
  }

  .lede {
    max-width: none;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 0;
    height: auto;
    padding-bottom: calc(var(--dock-h) + var(--safe-bottom));
  }

  .hero-content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: calc(5.5rem + var(--safe-top)) 1.4rem 2rem;
  }

  .hero-media img {
    height: 100%;
    min-height: 100%;
  }

  .nav-overlay {
    align-items: flex-start;
    padding-top: calc(5rem + var(--safe-top));
  }

  .signature-copy,
  .finale-copy {
    min-height: 0;
    padding-top: 5.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #185496;
    pointer-events: none;
    z-index: 130;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.35s;
  }

  .cursor.is-on {
    opacity: 1;
  }

  .cursor.is-hover {
    width: 42px;
    height: 42px;
    background: transparent;
    outline: 1px solid #185496;
  }

  html.has-cursor,
  html.has-cursor a,
  html.has-cursor button,
  html.has-cursor summary {
    cursor: none;
  }

  .btn-solid:hover {
    background: transparent;
    color: var(--paper);
  }

  .btn-ghost:hover {
    background: var(--paper);
    color: var(--ink);
  }

  .text-link:hover::after {
    transform: scaleX(1);
  }

  .nav-cta:hover {
    background: #fff;
    color: #185496;
  }

  .nav.is-scrolled .nav-cta:hover,
  .nav.menu-open .nav-cta:hover {
    color: var(--paper);
    background: #185496;
  }

  .reveal-image:hover img {
    transform: scale(1.05);
    transition-duration: 1.4s;
  }

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

  .quote-nav button:hover {
    background: var(--ink);
    color: var(--paper);
  }

  .filmstrip-cell:hover span {
    color: #185496;
    background: rgba(24, 84, 150, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .line > span,
  .reveal,
  .reveal-image,
  .reveal-image img,
  .hero-swap span {
    transform: none !important;
    opacity: 1 !important;
    clip-path: none !important;
  }

  .hero-swap span:not(.is-active) {
    display: none !important;
  }
}
