@charset "UTF-8";

:root {
  --ink: #202b2c;
  --ink-deep: #12191a;
  --blue-gray: #687578;
  --paper: #eee8dc;
  --paper-deep: #e1d7c7;
  --cream: #fbf6ea;
  --walnut: #553724;
  --oxblood: #783b36;
  --brass: #b58d57;
  --text: #262a27;
  --muted: #6c6b63;
  --line: rgba(32, 43, 44, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 5px;
}

.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;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  color: var(--cream);
  transition:
    min-height 400ms var(--ease),
    background 400ms var(--ease),
    color 400ms var(--ease),
    border-color 400ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 4.8rem;
  border-color: rgba(32, 43, 44, 0.1);
  background: rgba(238, 232, 220, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(26, 31, 30, 0.07);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand__mark svg {
  width: 1.25rem;
  fill: currentColor;
}

.brand__type {
  display: grid;
  line-height: 1;
}

.brand__type > span {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}

.brand__type small {
  margin-top: 0.38rem;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.primary-nav a,
.nav-reservation {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

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

.nav-reservation {
  padding: 0.82rem 1.3rem;
  border: 1px solid currentColor;
  transition:
    background 250ms ease,
    color 250ms ease;
}

.nav-reservation:hover {
  background: var(--cream);
  color: var(--ink);
}

.is-scrolled .nav-reservation:hover {
  background: var(--ink);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 1.75rem;
  height: 1px;
  margin: 0.38rem auto;
  background: currentColor;
  transition: transform 300ms var(--ease);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  animation: hero-scale 12s var(--ease) both;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(12, 17, 17, 0.79) 0%, rgba(12, 17, 17, 0.4) 53%, rgba(12, 17, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 13, 13, 0.66) 0%, transparent 42%, rgba(9, 13, 13, 0.18) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(92vw, 88rem);
  margin: 0 auto;
  padding: 8rem 0 11rem;
}

.kicker {
  margin-bottom: 1.4rem;
  color: var(--oxblood);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(251, 246, 234, 0.82);
  animation: rise 900ms 150ms var(--ease) both;
}

.hero__kicker span {
  width: 2.7rem;
  height: 1px;
  background: var(--brass);
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 1.6rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-wrap: balance;
  animation: rise 1000ms 240ms var(--ease) both;
}

.hero h1 em,
.display em,
.closing h2 em {
  color: var(--brass);
  font-weight: 400;
}

.hero__lead {
  max-width: 40rem;
  margin-bottom: 2.2rem;
  color: rgba(251, 246, 234, 0.81);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.65;
  animation: rise 1000ms 340ms var(--ease) both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: rise 1000ms 430ms var(--ease) both;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.65rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background 250ms ease,
    border-color 250ms ease,
    color 250ms ease,
    transform 250ms var(--ease);
}

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

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

.button--light:hover {
  background: transparent;
  color: var(--cream);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.3rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: gap 250ms var(--ease);
}

.text-link:hover {
  gap: 1.15rem;
}

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

.hero__footer {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 2rem;
  left: 4vw;
  display: flex;
  max-width: 41rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(251, 246, 234, 0.33);
  color: rgba(251, 246, 234, 0.72);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 2rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(251, 246, 234, 0.42);
  border-radius: 50%;
}

.scroll-cue span {
  width: 1px;
  height: 1rem;
  background: var(--cream);
  animation: pulse-down 1.8s ease-in-out infinite;
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) 4vw;
}

.section-index {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-index span:first-child {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  writing-mode: horizontal-tb;
}

.section-index--light {
  color: rgba(251, 246, 234, 0.52);
}

.statement {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 100rem;
  margin: 0 auto;
}

.statement__body {
  max-width: 74rem;
}

.display {
  margin-bottom: 2.6rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.display--compact {
  font-size: clamp(2.6rem, 4.5vw, 5.25rem);
  line-height: 0.98;
}

.statement__copy {
  display: grid;
  max-width: 56rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
  margin-left: auto;
}

.statement__copy p,
.story__content > p,
.feature__copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.story {
  display: grid;
  max-width: 96rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 10vw, 11rem);
  margin: 0 auto;
  padding-top: 2rem;
}

.story__image {
  position: relative;
  max-width: 40rem;
}

.story__image::before {
  position: absolute;
  z-index: -1;
  top: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 40%;
  border: 1px solid var(--brass);
  content: "";
}

.story__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: -4.7rem;
  bottom: 7rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.ornament {
  display: block;
  margin-bottom: 3rem;
  color: var(--brass);
  font-size: 2rem;
}

.story__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 3.2rem 0 0;
}

.story__notes div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.story__notes dt {
  margin-bottom: 0.5rem;
  color: var(--oxblood);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.story__notes dd {
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 0.95rem;
}

.menu-section {
  background: var(--ink);
  color: var(--cream);
}

.menu-section__heading {
  display: grid;
  max-width: 96rem;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  margin: 0 auto 5rem;
}

.menu-heading__copy {
  max-width: 67rem;
}

.menu-heading__copy .kicker {
  color: var(--brass);
}

.menu-heading__copy > p:last-child {
  max-width: 37rem;
  color: rgba(251, 246, 234, 0.62);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 1.08rem;
}

.menu-tabs {
  max-width: 79rem;
  margin: 0 auto;
}

.tab-list {
  display: flex;
  gap: clamp(1.25rem, 5vw, 4.75rem);
  margin-bottom: 3.2rem;
  border-bottom: 1px solid rgba(251, 246, 234, 0.17);
}

.tab-list button {
  position: relative;
  padding: 0 0 1rem;
  border: 0;
  background: transparent;
  color: rgba(251, 246, 234, 0.45);
  cursor: pointer;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  transition: color 200ms ease;
}

.tab-list button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transition: transform 300ms var(--ease);
}

.tab-list button[aria-selected="true"] {
  color: var(--cream);
}

.tab-list button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.menu-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(3rem, 8vw, 8rem);
}

.menu-panel[hidden] {
  display: none;
}

.menu-item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(251, 246, 234, 0.13);
  animation: menu-in 450ms var(--ease) both;
}

.menu-item > span {
  padding-top: 0.35rem;
  color: var(--brass);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.menu-item h3 {
  margin-bottom: 0.4rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 400;
}

.menu-item p {
  margin: 0;
  color: rgba(251, 246, 234, 0.5);
  font-size: 0.82rem;
}

.menu-disclaimer {
  max-width: 79rem;
  margin: 2rem auto 0;
  color: rgba(251, 246, 234, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.feature {
  display: grid;
  max-width: 100rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  margin: 0 auto;
}

.feature__image {
  position: relative;
}

.feature__image::after {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 45%;
  height: 60%;
  border: 1px solid var(--brass);
  content: "";
  z-index: -1;
}

.feature__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.feature__copy > p {
  margin-bottom: 2.1rem;
}

.venue {
  max-width: 100rem;
  margin: 0 auto;
  padding-top: 5rem;
}

.venue__heading {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.venue__title {
  max-width: 68rem;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(18rem, 0.58fr) minmax(26rem, 1fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
}

.gallery figure {
  margin: 0;
}

.gallery__frame {
  overflow: hidden;
  background: var(--paper-deep);
}

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

.gallery figure:hover img {
  transform: scale(1.025);
}

.gallery__original .gallery__frame {
  aspect-ratio: 3 / 4;
}

.gallery__evening .gallery__frame {
  aspect-ratio: 16 / 10;
}

.gallery figcaption {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 1rem;
  max-width: 31rem;
  padding-top: 1.2rem;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.6;
}

.gallery figcaption span {
  color: var(--oxblood);
  font-size: 0.58rem;
  font-weight: 700;
}

.gallery figcaption p {
  margin: 0;
}

.closing {
  position: relative;
  display: grid;
  min-height: 44rem;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
}

.closing__media,
.closing__veil {
  position: absolute;
  inset: 0;
}

.closing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.closing__veil {
  background: rgba(16, 22, 22, 0.68);
}

.closing__content {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.closing .kicker {
  color: var(--brass);
}

.closing h2 {
  margin-bottom: 2.5rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7.25rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 3rem;
  align-items: start;
  padding: 4.5rem 4vw 2rem;
  background: var(--ink-deep);
  color: var(--cream);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__monogram {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(251, 246, 234, 0.55);
  border-radius: 50%;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 1.4rem;
}

.footer__brand > div {
  display: grid;
  line-height: 1;
}

.footer__brand strong {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.footer__brand div span {
  margin-top: 0.5rem;
  color: rgba(251, 246, 234, 0.45);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer__status {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(251, 246, 234, 0.6);
  font-size: 0.75rem;
}

.footer__status p {
  max-width: 18rem;
  margin: 0;
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  margin-top: 0.38rem;
  border-radius: 50%;
  background: #8ca580;
  box-shadow: 0 0 0 4px rgba(140, 165, 128, 0.12);
}

.footer__links {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
  color: rgba(251, 246, 234, 0.64);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__legal {
  grid-column: 1 / -1;
  margin: 3rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 246, 234, 0.1);
  color: rgba(251, 246, 234, 0.32);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.reservation-dialog {
  width: min(90vw, 34rem);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  border: 0;
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 30px 100px rgba(5, 8, 8, 0.35);
}

.reservation-dialog::backdrop {
  background: rgba(11, 15, 15, 0.77);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.reservation-dialog[open] {
  animation: dialog-in 400ms var(--ease) both;
}

.dialog__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 300;
}

.dialog__mark {
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  margin: 0 auto 1.8rem;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 1.7rem;
}

.reservation-dialog h2 {
  margin-bottom: 1.2rem;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.reservation-dialog > p:not(.kicker) {
  max-width: 24rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-down {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(-0.2rem);
  }
  50% {
    opacity: 1;
    transform: translateY(0.2rem);
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 4.8rem;
    padding: 0 1.25rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

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

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-0.19rem) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    background: var(--ink);
    color: var(--cream);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition:
      opacity 300ms ease,
      transform 400ms var(--ease),
      visibility 300ms;
  }

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

  .primary-nav a,
  .nav-reservation {
    font-size: 0.85rem;
  }

  .statement,
  .menu-section__heading,
  .venue__heading {
    grid-template-columns: 1fr;
  }

  .section-index {
    flex-direction: row;
    writing-mode: horizontal-tb;
  }

  .story {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
    gap: 4rem;
  }

  .image-note {
    display: none;
  }

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

  .feature__copy {
    max-width: 40rem;
  }

  .gallery {
    grid-template-columns: 0.75fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 680px) {
  .brand__type small {
    display: none;
  }

  .hero__media img {
    object-position: 61% center;
  }

  .hero__veil {
    background:
      linear-gradient(0deg, rgba(10, 15, 15, 0.79) 0%, rgba(10, 15, 15, 0.34) 67%, rgba(10, 15, 15, 0.24) 100%),
      linear-gradient(90deg, rgba(10, 15, 15, 0.47), transparent);
  }

  .hero__content {
    width: auto;
    margin: 0;
    padding: 8rem 1.25rem 12rem;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 20vw, 6.4rem);
  }

  .hero__lead {
    max-width: 31rem;
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero__footer {
    right: 1.25rem;
    bottom: 1.5rem;
    left: 1.25rem;
    max-width: calc(100% - 5.5rem);
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.8rem;
    font-size: 0.52rem;
  }

  .scroll-cue {
    right: 1.25rem;
    bottom: 1.5rem;
  }

  .section {
    padding: 5.5rem 1.25rem;
  }

  .display {
    margin-bottom: 2rem;
    font-size: clamp(3.05rem, 14vw, 4.7rem);
  }

  .display--compact {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .statement__copy {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 1rem;
  }

  .story__image {
    width: calc(100% - 1rem);
  }

  .story__image::before {
    top: -0.8rem;
    right: -0.8rem;
  }

  .story__content .ornament {
    margin-bottom: 2rem;
  }

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

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

  .tab-list {
    width: calc(100vw - 1.25rem);
    gap: 1.5rem;
    margin-right: -1.25rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tab-list::-webkit-scrollbar {
    display: none;
  }

  .tab-list button {
    flex: 0 0 auto;
    font-size: 1rem;
  }

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

  .feature__image::after {
    right: -0.75rem;
    bottom: -0.75rem;
  }

  .feature__image img {
    aspect-ratio: 4 / 3;
  }

  .venue {
    padding-top: 4.5rem;
  }

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

  .gallery__original {
    width: 83%;
  }

  .gallery__evening {
    width: 100%;
  }

  .closing {
    min-height: 38rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.25rem 1.5rem;
  }

  .footer__links {
    justify-items: start;
  }

  .footer__legal {
    margin-top: 1rem;
  }
}

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

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

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