:root {
  --burgundy: #6d1324;
  --burgundy-deep: #4b0d19;
  --wine: #861b22;
  --cream: #f6f0e7;
  --cream-dark: #e9ddcf;
  --white: #ffffff;
  --ink: #241519;
  --muted: #715e62;
  --line: rgba(109, 19, 36, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --header-height: 82px;
  --content-width: 1280px;
  --page-gutter: clamp(22px, 4vw, 64px);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.reservations-paused #reservation,
.reservations-paused [data-reservation-entry] {
  display: none !important;
}

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

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

button {
  color: inherit;
  font: inherit;
}

p,
h1,
h2,
h3,
figure,
address {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.93;
}

h1 em,
h2 em {
  font-weight: 400;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

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

.site-header.is-scrolled,
.site-header--solid {
  background: rgba(255, 255, 255, 0.97);
  color: var(--burgundy);
  box-shadow: 0 1px 0 rgba(109, 19, 36, 0.12);
  backdrop-filter: blur(14px);
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 102;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  transition: transform 200ms ease;
}

.brand:hover {
  transform: rotate(-3deg) scale(1.03);
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: scale(1);
  transition: filter 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled .brand img,
.site-header--solid .brand img,
.menu-open .brand img {
  filter: none;
  transform: scale(0.78);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
  font-size: 0.69rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.main-nav > a:not(.button, .instagram-link) {
  position: relative;
  padding-block: 8px;
}

.main-nav > a:not(.button, .instagram-link)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 220ms ease;
}

.main-nav > a:not(.button, .instagram-link):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.instagram-link {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
}

.instagram-link svg,
.instagram-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--burgundy);
}

.button--header {
  min-height: 42px;
  padding: 12px 20px;
  border-color: var(--white);
  background: var(--white);
  color: var(--burgundy);
}

.is-scrolled .button--header,
.site-header--solid .button--header {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

.button--header:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.is-scrolled .button--header:hover,
.site-header--solid .button--header:hover {
  color: var(--burgundy);
}

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

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

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  right: 5px;
  left: 5px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 27px;
}

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

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

.section-pad {
  padding: clamp(92px, 11vw, 170px) var(--page-gutter);
}

.eyebrow {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 14px;
  color: var(--burgundy);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.19em;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  padding-block: 5px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--burgundy);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: gap 180ms ease;
}

.text-link:hover {
  gap: 15px;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 50px) var(--page-gutter) 70px;
  place-items: center;
  overflow: hidden;
  background: var(--burgundy-deep);
  color: var(--white);
  text-align: center;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 48%;
  animation: hero-in 1.6s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(26, 8, 12, 0.54) 0%, rgba(40, 5, 12, 0.2) 44%, rgba(42, 5, 13, 0.72) 100%),
    linear-gradient(90deg, rgba(48, 6, 14, 0.25), transparent 45%, rgba(48, 6, 14, 0.25));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  padding-top: 30px;
  animation: content-in 1s 180ms ease-out both;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(4rem, 9.7vw, 9.5rem);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 em {
  display: inline-block;
  margin-top: 0.08em;
}

.hero__lead {
  width: min(590px, 90%);
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.story {
  display: grid;
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(60px, 7vw, 110px);
  align-items: center;
}

.story h2,
.gallery h2,
.place h2 {
  color: var(--burgundy);
  font-size: clamp(3.6rem, 6vw, 6.7rem);
  letter-spacing: -0.035em;
}

.story__text {
  display: grid;
  margin-top: clamp(42px, 5vw, 70px);
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

.signature {
  max-width: 520px;
  margin-top: 45px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-style: italic;
  line-height: 1.25;
}

.story__visual {
  position: relative;
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.image-frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
}

.image-frame::before,
.image-frame::after {
  position: absolute;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-color: var(--burgundy);
  content: "";
  pointer-events: none;
}

.image-frame::before {
  top: -7px;
  left: -7px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.image-frame::after {
  right: -7px;
  bottom: -7px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.image-frame img {
  width: 100%;
  height: clamp(440px, 42vw, 590px);
  object-fit: cover;
  object-position: center 62%;
}

.image-frame .story__photo {
  object-position: center 38%;
}

.cuisine {
  position: relative;
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  overflow: hidden;
  background: var(--burgundy);
  color: var(--white);
}

.cuisine::before {
  position: absolute;
  inset: 0;
  background-image: url("images/bg.svg");
  background-position: center;
  background-size: 540px auto;
  content: "";
  opacity: 0.04;
}

.cuisine__intro,
.cuisine__collage {
  position: relative;
  z-index: 1;
}

.cuisine__intro {
  max-width: 540px;
  justify-self: end;
}

.cuisine h2,
.reservation h2 {
  color: var(--white);
  font-size: clamp(3.8rem, 7vw, 7.4rem);
  letter-spacing: -0.04em;
}

.cuisine__intro > p:not(.eyebrow) {
  max-width: 455px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.89rem;
  line-height: 1.9;
}

.cuisine__links {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 26px;
}

.cuisine__collage {
  min-height: 620px;
}

.cuisine__main-image {
  position: absolute;
  inset: 0 13% 0 0;
  overflow: hidden;
}

.cuisine__main-image img,
.cuisine__side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cuisine__side-image {
  position: absolute;
  right: 0;
  bottom: -45px;
  width: 36%;
  height: 52%;
  padding: 9px;
  background: var(--cream);
}

.cuisine__note {
  position: absolute;
  top: 28px;
  right: 1%;
  z-index: 2;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  transform: rotate(8deg);
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.05;
  text-align: center;
}

.gallery {
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
}

.gallery__heading {
  display: flex;
  margin-bottom: clamp(58px, 7vw, 100px);
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.gallery__heading > p {
  max-width: 410px;
  padding-bottom: 15px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.45;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 28px);
  align-items: start;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  height: clamp(350px, 41vw, 560px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--cream);
  cursor: zoom-in;
}

.gallery-card--tall {
  height: clamp(440px, 52vw, 690px);
}

.gallery-card--wide {
  grid-column: span 8;
  height: clamp(380px, 46vw, 610px);
}

.gallery-card:nth-child(2) {
  margin-top: 80px;
}

.gallery-card:nth-child(3) {
  margin-top: 25px;
}

.gallery-card:nth-child(5) {
  margin-top: -55px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  transform: translateY(8px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--burgundy);
  font-size: 0.57rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card:hover span,
.gallery-card:focus-visible span {
  transform: translateY(0);
  opacity: 1;
}

.instagram-cta {
  display: grid;
  margin-top: clamp(60px, 8vw, 110px);
  padding: 34px 0;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--burgundy);
}

.instagram-cta__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.instagram-cta > span:nth-child(2) {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.5rem);
  font-style: italic;
}

.instagram-cta small {
  display: block;
  margin-bottom: 2px;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.lightbox {
  width: min(92vw, 900px);
  max-height: 92vh;
  padding: 48px 18px 18px;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(24, 5, 9, 0.94);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  max-height: calc(92vh - 70px);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.place {
  display: grid;
  min-height: 780px;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.place__image {
  min-height: 780px;
}

.place__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.place__content {
  position: relative;
  display: grid;
  min-height: 780px;
  padding: clamp(70px, 8vw, 130px);
  place-items: center;
}

.place__content > div {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.place__bear {
  position: absolute;
  right: 1vw;
  bottom: -2vw;
  width: min(31vw, 430px);
  height: auto;
  opacity: 0.1;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.place address {
  margin-top: 42px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-style: normal;
  line-height: 1.35;
}

.place__hours {
  display: flex;
  max-width: 430px;
  margin: 32px 0 36px;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--burgundy);
}

.place__hours span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.place__hours strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.reservation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(65px, 9vw, 140px);
  align-items: center;
  overflow: hidden;
  background: var(--burgundy-deep);
  color: var(--white);
}

.reservation::after {
  position: absolute;
  top: -220px;
  right: -100px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.reservation__heading,
.reservation-module {
  position: relative;
  z-index: 1;
}

.reservation-module {
  display: grid;
  min-height: 300px;
  padding: clamp(32px, 5vw, 65px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.reservation-module__number {
  align-self: start;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.reservation-module__label {
  margin-bottom: 12px;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.reservation-module h3 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
}

.reservation-module div > p:last-child {
  max-width: 430px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.reservation-module__mark {
  align-self: end;
  font-family: var(--serif);
  font-size: 2.7rem;
}

.site-footer {
  background: var(--burgundy);
  color: var(--white);
}

.footer-shell {
  display: grid;
  width: min(100%, calc(var(--content-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding: 78px var(--page-gutter) 30px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 45px;
}

.footer__brand img {
  width: 96px;
  height: auto;
  padding: 0;
  background: transparent;
  filter: brightness(0) invert(1);
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  line-height: 1.7;
}

.footer__column h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer__column a:hover,
.footer__bottom a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__bottom {
  display: grid;
  margin-top: 50px;
  padding-top: 26px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__bottom p:last-child {
  text-align: right;
}

.footer__bottom--main {
  grid-template-columns: 1fr auto;
}

.footer__bottom--main a {
  justify-self: end;
}

.mobile-booking-shell {
  display: contents;
}

.mobile-booking {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 90;
  display: none;
  min-height: 54px;
  padding: 16px 20px;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(52, 7, 16, 0.28);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.reveal {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 750ms ease;
}

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

.legal-page {
  background: var(--cream);
}

.legal-main {
  width: min(100%, calc(1080px + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding: calc(var(--header-height) + 80px) var(--page-gutter) 120px;
}

.legal-nav {
  display: flex;
  align-items: center;
}

.legal-hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 150px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  color: var(--burgundy);
  font-size: clamp(4.7rem, 10vw, 9rem);
  letter-spacing: -0.045em;
}

.legal-hero > p:last-child {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.legal-section {
  display: grid;
  padding: clamp(70px, 9vw, 120px) 0;
  grid-template-columns: 100px 1fr;
  gap: 45px;
  border-bottom: 1px solid var(--line);
}

.legal-section__number {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.legal-section h2 {
  margin-bottom: 45px;
  color: var(--burgundy);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.legal-list {
  margin: 0;
}

.legal-list > div {
  display: grid;
  padding: 18px 0;
  grid-template-columns: minmax(180px, 0.48fr) 1fr;
  gap: 35px;
  border-top: 1px solid var(--line);
}

.legal-list dt {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-list dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.45;
}

.legal-list a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-copy {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.9;
}

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

@keyframes hero-in {
  from {
    transform: scale(1.08);
    opacity: 0.55;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes content-in {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1050px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 125px var(--page-gutter) 100px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    transform: translateY(-102%);
    background: var(--cream);
    color: var(--burgundy);
    font-family: var(--serif);
    font-size: clamp(2.3rem, 7vw, 4rem);
    font-weight: 500;
    line-height: 1;
    text-transform: none;
    letter-spacing: -0.02em;
    transition: transform 380ms cubic-bezier(0.7, 0, 0.2, 1);
  }

  .menu-open .main-nav {
    transform: translateY(0);
  }

  .menu-open .site-header {
    color: var(--burgundy);
  }

  .main-nav .instagram-link {
    position: absolute;
    bottom: 40px;
    left: var(--page-gutter);
  }

  .main-nav .button--header {
    width: min(100%, 420px);
    margin-top: 18px;
    border-color: var(--burgundy);
    background: var(--burgundy);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .story {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 55px;
  }

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

  .cuisine {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 55px;
  }

  .cuisine__collage {
    min-height: 540px;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  body {
    padding-bottom: 74px;
  }

  body.reservations-paused {
    padding-bottom: 0;
  }

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

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

  .hero {
    min-height: 92svh;
    padding-bottom: 105px;
    place-items: end center;
    text-align: left;
  }

  .hero__image {
    object-position: 54% center;
  }

  .hero__content {
    width: 100%;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16.5vw, 5.5rem);
  }

  .hero__lead {
    width: 100%;
    margin: 24px 0 0;
    font-size: 1.12rem;
  }

  .hero__actions {
    display: grid;
    margin-top: 30px;
    justify-content: stretch;
    gap: 20px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-self: start;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .story__visual {
    max-width: none;
  }

  .image-frame img {
    height: min(118vw, 640px);
    object-position: center;
  }

  .image-frame .story__photo {
    object-position: center;
  }

  .story h2,
  .gallery h2,
  .place h2 {
    font-size: clamp(3.4rem, 15vw, 5.1rem);
  }

  .story__text {
    margin-top: 38px;
    gap: 18px;
  }

  .cuisine {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .cuisine h2,
  .reservation h2 {
    font-size: clamp(3.5rem, 15vw, 5.3rem);
  }

  .cuisine__intro {
    justify-self: start;
  }

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

  .cuisine__collage {
    min-height: 470px;
  }

  .cuisine__main-image {
    right: 10%;
  }

  .cuisine__side-image {
    bottom: -28px;
    width: 42%;
  }

  .cuisine__note {
    top: -35px;
    width: 98px;
    height: 98px;
    font-size: 1.08rem;
  }

  .gallery__heading {
    margin-bottom: 52px;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .gallery__heading > p {
    padding-bottom: 0;
  }

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

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--tall {
    grid-column: span 1;
    height: 57vw;
    min-height: 250px;
  }

  .gallery-card:first-child,
  .gallery-card--wide {
    grid-column: 1 / -1;
    height: 112vw;
    max-height: 570px;
  }

  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(5) {
    margin-top: 0;
  }

  .gallery-card span {
    display: none;
  }

  .instagram-cta {
    padding: 26px 0;
  }

  .instagram-cta__icon {
    width: 46px;
    height: 46px;
  }

  .instagram-cta > span:nth-child(2) {
    overflow: hidden;
    font-size: 1.15rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .place__image,
  .place__content {
    min-height: 600px;
  }

  .place__content {
    padding: 80px var(--page-gutter);
  }

  .place__bear {
    right: -60px;
    bottom: -20px;
    width: 320px;
  }

  .reservation-module {
    min-height: 350px;
    grid-template-columns: 1fr auto;
  }

  .reservation-module__number {
    grid-column: 1 / -1;
  }

  .footer-shell {
    padding-bottom: 45px;
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__column:nth-child(4) {
    grid-column: 1 / -1;
  }

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

  .footer__bottom p:last-child {
    text-align: left;
  }

  .mobile-booking {
    display: flex;
  }

  .legal-page {
    padding-bottom: 0;
  }

  .legal-main {
    padding-top: calc(var(--header-height) + 45px);
    padding-bottom: 80px;
  }

  .legal-hero h1 {
    font-size: clamp(4.4rem, 22vw, 6.4rem);
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-section h2 {
    margin-bottom: 32px;
  }

  .legal-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .legal-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .section-pad {
    padding-top: 82px;
    padding-bottom: 82px;
  }

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

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--tall,
  .gallery-card:first-child {
    grid-column: 1;
    height: 118vw;
    max-height: 550px;
  }

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

  .footer__brand,
  .footer__column:nth-child(4) {
    grid-column: 1;
  }

  .reservation-module {
    grid-template-columns: 1fr;
  }
}

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