:root {
  --brick: #c23718;
  --brick-dark: #8d2513;
  --wine: #30140f;
  --wood: #211310;
  --mustard: #cda13e;
  --cream: #f6f0e6;
  --paper: #fffaf2;
  --ink: #251a16;
  --muted: #685a53;
  --line: rgba(48, 20, 15, 0.24);
  --header-height: 80px;
  --shell: min(1240px, calc(100% - 48px));
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

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

a,
button {
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}

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

figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
  text-wrap: balance;
}

h2 {
  max-width: 14ch;
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 5.5vw, 5.35rem);
  letter-spacing: -0.045em;
}

p {
  max-width: 60ch;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--wine);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.98);
}

.wordmark {
  display: block;
  width: clamp(190px, 15vw, 224px);
  line-height: 0;
  text-decoration: none;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  margin-right: 28px;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: var(--brick);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--brick);
  color: #fff;
  background: var(--brick);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  border-color: var(--brick-dark);
  background: var(--brick-dark);
}

.button--compact {
  min-height: 42px;
  padding: 10px 18px;
}

.button--light {
  border-color: var(--paper);
  color: var(--wine);
  background: var(--paper);
}

.button--light:hover {
  border-color: var(--mustard);
  background: var(--mustard);
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--brick);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 40%) minmax(0, 60%);
  height: calc(100svh - var(--header-height));
  min-height: 720px;
  background: var(--cream);
}

.hero > * {
  min-width: 0;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(52px, 7vw, 110px) clamp(34px, 5vw, 80px) clamp(44px, 5vw, 78px);
  overflow: clip;
}

.hero__content > :not(.hero__frame) {
  width: min(100%, 520px);
  margin-inline: auto;
}

.hero__frame {
  position: absolute;
  top: 12%;
  right: 9%;
  bottom: 14%;
  left: 7%;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  pointer-events: none;
}

.hero__frame::after {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 58%;
  height: 38%;
  border-right: 1px solid var(--brick);
  border-bottom: 1px solid var(--brick);
  content: "";
}

.hero h1 {
  position: relative;
  max-width: 8ch;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
  letter-spacing: -0.06em;
}

.hero__lead {
  position: relative;
  max-width: 29rem;
  margin-bottom: 30px;
  font-size: clamp(1.06rem, 1.4vw, 1.28rem);
}

.hero__actions {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: clamp(46px, 7vh, 76px);
  gap: 24px;
}

.hero__details {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  gap: 20px;
}

.hero__details div {
  min-width: 0;
}

.hero__details dt {
  margin-bottom: 4px;
  color: var(--brick);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__details dd {
  margin-inline-start: 0;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero__media {
  min-height: 0;
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
}

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

.image-frame {
  position: relative;
}

.image-frame::after {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: 8px;
  width: 45%;
  height: 38%;
  border-right: 1px solid var(--mustard);
  border-bottom: 1px solid var(--mustard);
  content: "";
  pointer-events: none;
}

.restaurant {
  padding-block: clamp(76px, 8vw, 120px);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(14px, 1.8vw, 28px);
}

.editorial-grid > * {
  min-width: 0;
}

.editorial-copy {
  grid-column: 1 / span 4;
  padding-right: clamp(8px, 2vw, 28px);
}

.editorial-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.editorial-copy .text-link {
  margin-top: 14px;
}

.editorial-main {
  grid-column: 5 / span 5;
  aspect-ratio: 4 / 5;
}

.editorial-main img {
  object-position: 46% center;
}

.editorial-detail {
  grid-column: 10 / span 3;
  aspect-ratio: 4 / 5;
  margin-top: 72px;
}

.editorial-detail img {
  object-position: center;
}

.cuisine {
  padding-block: clamp(84px, 10vw, 150px);
  color: var(--cream);
  background: var(--wine);
}

.cuisine__heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 90px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(246, 240, 230, 0.25);
  gap: 48px;
}

.cuisine__heading > * {
  min-width: 0;
}

.cuisine__heading h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.cuisine__heading p {
  margin-bottom: 24px;
  color: rgba(246, 240, 230, 0.78);
  font-size: 1.08rem;
}

.cuisine__triptych {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  align-items: start;
  gap: clamp(14px, 2vw, 28px);
}

.cuisine__triptych > * {
  min-width: 0;
}

.dish {
  margin: 0;
  overflow: hidden;
}

.dish--wide {
  aspect-ratio: 1 / 1;
}

.dish--tall {
  aspect-ratio: 4 / 5;
  margin-top: 84px;
}

.dish--service {
  aspect-ratio: 4 / 5;
  margin-top: 20px;
}

.dish img,
.gallery-item img,
.hero__media img,
.editorial-main img,
.editorial-detail img {
  filter: contrast(1.03) saturate(0.96);
}

.dish--service img {
  object-position: center 25%;
}

.gallery {
  padding-block: clamp(90px, 12vw, 180px);
}

.gallery__intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 84px);
  gap: 40px;
}

.gallery__intro > * {
  min-width: 0;
}

.gallery__intro h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.gallery__intro p {
  margin-bottom: 0;
  padding-left: 28px;
  border-left: 1px solid var(--brick);
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(4, clamp(170px, 22vw, 300px));
  gap: clamp(10px, 1.35vw, 20px);
}

.gallery-grid > * {
  min-width: 0;
}

.gallery-item {
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-trigger img {
  transition: transform 350ms ease;
}

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

.gallery-trigger:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: -5px;
}

.gallery-item--a { grid-column: 1 / span 5; grid-row: 1 / span 2; }
.gallery-item--b { grid-column: 6 / span 3; grid-row: 1; }
.gallery-item--c { grid-column: 9 / span 4; grid-row: 1; }
.gallery-item--d { grid-column: 6 / span 4; grid-row: 2; }
.gallery-item--e { grid-column: 10 / span 3; grid-row: 2; }
.gallery-item--f { grid-column: 1 / span 3; grid-row: 3; }
.gallery-item--g { grid-column: 4 / span 4; grid-row: 3; }
.gallery-item--h { grid-column: 8 / span 5; grid-row: 3 / span 2; }
.gallery-item--i { grid-column: 1 / span 4; grid-row: 4; }
.gallery-item--j { grid-column: 5 / span 3; grid-row: 4; }

.gallery-item--a img { object-position: 52% center; }
.gallery-item--b img { object-position: center 60%; }
.gallery-item--c img { object-position: center 68%; }
.gallery-item--d img { object-position: center 52%; }
.gallery-item--e img { object-position: center 45%; }
.gallery-item--f img { object-position: center 56%; }
.gallery-item--g img { object-position: center 60%; }
.gallery-item--h img { object-position: center 63%; }
.gallery-item--i img { object-position: center 48%; }
.gallery-item--j img { object-position: center 55%; }

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  color: var(--paper);
  background: rgba(29, 10, 7, 0.98);
  animation: lightbox-in 280ms ease both;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__dialog {
  position: relative;
  display: grid;
  grid-template-columns: clamp(52px, 6vw, 76px) minmax(0, 1fr) clamp(52px, 6vw, 76px);
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 72px clamp(16px, 2vw, 36px) 26px;
  outline: 0;
}

.lightbox__topbar {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: clamp(16px, 2vw, 36px);
  left: clamp(16px, 2vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(246, 240, 230, 0.18);
}

.lightbox__counter {
  color: rgba(246, 240, 230, 0.72);
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lightbox__close,
.lightbox__nav {
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(246, 240, 230, 0.4);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.lightbox__close {
  width: 42px;
  height: 42px;
}

.lightbox__nav {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  align-self: center;
}

.lightbox__nav--previous {
  justify-self: start;
}

.lightbox__nav--next {
  justify-self: end;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  border-color: var(--brick);
  background: var(--brick);
}

.lightbox__close svg,
.lightbox__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.lightbox__media {
  display: flex;
  grid-column: 2;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
}

.lightbox__image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100svh - 116px);
  object-fit: contain;
  filter: contrast(1.03) saturate(0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reservation {
  position: relative;
  padding-block: clamp(76px, 9vw, 130px);
  color: var(--paper);
  background: var(--brick);
  overflow: clip;
}

.reservation::before,
.reservation::after {
  position: absolute;
  border: 1px solid rgba(255, 250, 242, 0.38);
  content: "";
  pointer-events: none;
}

.reservation::before {
  top: 20px;
  right: 8%;
  width: 20%;
  height: 1px;
}

.reservation::after {
  right: 12%;
  bottom: 0;
  width: 26%;
  height: 32%;
  border-top: 0;
}

.reservation__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px 50px;
}

.reservation__inner > * {
  min-width: 0;
}

.reservation h2 {
  grid-column: 1;
  max-width: 13ch;
  margin-bottom: 0;
}

.reservation p {
  grid-column: 1;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.reservation .button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.information {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  padding-block: clamp(90px, 10vw, 150px);
  gap: clamp(44px, 7vw, 100px);
}

.information > * {
  min-width: 0;
}

.information__title {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.information__title h2 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
}

.information__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}

.info-card {
  min-width: 0;
  padding-top: 20px;
  border-top: 1px solid var(--brick);
}

.info-card h3 {
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card address,
.info-card p,
.info-card > a:not(.text-link) {
  display: block;
  margin-bottom: 22px;
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  border-top: 1px solid rgba(246, 240, 230, 0.16);
  color: rgba(246, 240, 230, 0.78);
  background: var(--wood);
  font-size: 0.78rem;
}

.site-footer p {
  margin-bottom: 0;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 400ms ease, transform 400ms ease;
}

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

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

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

.legal-main {
  min-height: calc(100vh - var(--header-height));
  padding-block: clamp(70px, 9vw, 130px);
}

.legal-main > .text-link {
  margin-bottom: 46px;
}

.legal-main h1 {
  max-width: 10ch;
  margin-bottom: clamp(70px, 9vw, 120px);
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  letter-spacing: -0.055em;
}

.legal-main section {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  padding-block: 42px;
  border-top: 1px solid var(--line);
  gap: 48px;
}

.legal-main section > * {
  min-width: 0;
}

.legal-main section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.legal-list {
  margin-bottom: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

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

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 0.7rem;
  }

  .hero {
    grid-template-columns: minmax(340px, 44%) minmax(0, 56%);
  }

  .editorial-copy {
    grid-column: 1 / span 5;
  }

  .editorial-main {
    grid-column: 6 / span 4;
  }

  .editorial-detail {
    grid-column: 10 / span 3;
  }
}

@media (max-width: 1079px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-areas: "burger logo booking";
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    border-bottom-color: rgba(194, 55, 24, 0.2);
  }

  .wordmark {
    position: absolute;
    left: 50%;
    grid-area: logo;
    justify-self: center;
    width: clamp(146px, 24vw, 190px);
    transform: translateX(-50%);
  }

  .header-booking {
    grid-area: booking;
    justify-self: end;
    min-height: 40px;
    padding: 10px 14px;
    border-color: rgba(48, 20, 15, 0.32);
    color: var(--wine);
    background: transparent;
  }

  .header-booking:hover {
    border-color: var(--brick);
    color: var(--paper);
    background: var(--brick);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    grid-area: burger;
    justify-self: start;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(48, 20, 15, 0.36);
    border-radius: 0;
    background: transparent;
    overflow: hidden;
  }

  .menu-toggle::after {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 4px;
    height: 4px;
    background: var(--brick);
    content: "";
    transition: background-color 200ms ease;
  }

  .menu-toggle:hover {
    border-color: var(--wine);
    background: var(--wine);
  }

  .menu-toggle:hover::after {
    background: var(--mustard);
  }

  .menu-toggle span {
    position: absolute;
    left: 13px;
    width: 21px;
    height: 2px;
    background: var(--wine);
    transform-origin: center;
    transition: width 220ms ease, transform 220ms ease, top 220ms ease, left 220ms ease;
  }

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

  .menu-toggle span:last-child {
    top: 26px;
    left: 20px;
    width: 14px;
  }

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

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

  .menu-toggle:hover span,
  .menu-toggle[aria-expanded="true"] span {
    background: var(--paper);
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: var(--wine);
    background: var(--wine);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 0;
    color: var(--paper);
    background: var(--wine);
    overflow-y: auto;
  }

  .mobile-nav::after {
    position: fixed;
    top: calc(var(--header-height) + 24px);
    right: 18px;
    bottom: 24px;
    width: 1px;
    background: rgba(205, 161, 62, 0.6);
    content: "";
    pointer-events: none;
  }

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

  .mobile-nav__inner {
    display: grid;
    min-height: 100%;
    padding: clamp(28px, 6vh, 54px) 40px 30px 24px;
  }

  .mobile-nav__links {
    align-self: start;
  }

  .mobile-nav__links a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: clamp(58px, 9vh, 78px);
    border-bottom: 1px solid rgba(246, 240, 230, 0.18);
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(2rem, 7vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
  }

  .mobile-nav__links a::after {
    position: absolute;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--mustard);
    border-right: 1px solid var(--mustard);
    content: "";
    transform: rotate(45deg);
    transition: transform 200ms ease;
  }

  .mobile-nav__links a:hover {
    color: var(--mustard);
  }

  .mobile-nav__links a:hover::after {
    transform: translateX(3px) rotate(45deg);
  }

  .mobile-nav__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-self: end;
    margin-top: clamp(28px, 5vh, 48px);
    gap: 18px 24px;
  }

  .mobile-nav__actions .button {
    min-width: 150px;
  }

  .mobile-nav__social {
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-transform: uppercase;
    text-underline-offset: 0.4em;
  }

  .mobile-nav__practical {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-self: end;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(246, 240, 230, 0.18);
    gap: 20px;
  }

  .mobile-nav__practical p {
    margin-bottom: 0;
    color: rgba(246, 240, 230, 0.7);
    font-size: 0.75rem;
    line-height: 1.55;
  }

  .mobile-nav__practical a {
    color: var(--paper);
  }

  body.menu-open .mobile-nav__links a {
    animation: mobile-link-in 320ms both;
  }

  body.menu-open .mobile-nav__links a:nth-child(2) { animation-delay: 35ms; }
  body.menu-open .mobile-nav__links a:nth-child(3) { animation-delay: 70ms; }
  body.menu-open .mobile-nav__links a:nth-child(4) { animation-delay: 105ms; }

  .hero h1 {
    font-size: clamp(3.25rem, 7vw, 5.4rem);
  }

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

  .information__title {
    padding-right: 0;
    padding-bottom: 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@keyframes mobile-link-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .site-header {
    padding-inline: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .hero__content {
    min-height: auto;
    padding: 76px 28px 54px;
  }

  .hero__frame {
    top: 38px;
    right: 18px;
    bottom: 30px;
    left: 18px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.8rem, 12vw, 6rem);
  }

  .hero__details {
    max-width: 34rem;
  }

  .hero__media {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

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

  .editorial-copy {
    grid-column: 1 / span 6;
  }

  .editorial-main {
    grid-column: 7 / span 6;
  }

  .editorial-detail {
    grid-column: 7 / span 3;
    margin-top: 38px;
  }

  .cuisine__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .cuisine__triptych {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .dish--wide {
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    height: 100%;
  }

  .dish--tall,
  .dish--service {
    aspect-ratio: 4 / 3;
    margin-top: 0;
  }

  .gallery__intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .gallery__intro p {
    max-width: 32rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(7, clamp(160px, 40vw, 260px));
  }

  .gallery-item--a { grid-column: 1 / span 4; grid-row: 1 / span 2; }
  .gallery-item--b { grid-column: 5 / span 2; grid-row: 1; }
  .gallery-item--c { grid-column: 5 / span 2; grid-row: 2; }
  .gallery-item--d { grid-column: 1 / span 3; grid-row: 3; }
  .gallery-item--e { grid-column: 4 / span 3; grid-row: 3; }
  .gallery-item--f { grid-column: 1 / span 2; grid-row: 4; }
  .gallery-item--g { grid-column: 3 / span 4; grid-row: 4; }
  .gallery-item--h { grid-column: 1 / span 4; grid-row: 5 / span 2; }
  .gallery-item--i { grid-column: 5 / span 2; grid-row: 5; }
  .gallery-item--j { grid-column: 5 / span 2; grid-row: 6; }

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

  .reservation h2,
  .reservation p,
  .reservation .button {
    grid-column: 1;
    grid-row: auto;
  }

  .reservation .button {
    justify-self: start;
  }

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

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 72px;
  }

  .wordmark {
    width: 146px;
  }

  .header-booking {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.66rem;
  }

  .menu-toggle {
    width: 44px;
    height: 40px;
  }

  .menu-toggle span {
    left: 12px;
  }

  .menu-toggle span:last-child {
    left: 19px;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    left: 12px;
  }

  h2 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero__content {
    padding: 62px 22px 48px;
  }

  .hero h1 {
    max-width: 8ch;
    margin-bottom: 22px;
    font-size: clamp(3.6rem, 17vw, 5.2rem);
  }

  .hero__lead {
    margin-bottom: 24px;
  }

  .hero__actions {
    margin-bottom: 44px;
  }

  .hero__details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__media {
    aspect-ratio: 4 / 5;
  }

  .editorial-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .editorial-copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .editorial-main {
    grid-column: 1 / span 5;
    margin-top: 28px;
  }

  .editorial-detail {
    grid-column: 4 / span 3;
    margin-top: 0;
  }

  .cuisine__triptych {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .dish--wide {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .dish--tall,
  .dish--service {
    aspect-ratio: 3 / 4;
  }

  .gallery__intro p {
    padding-left: 18px;
  }

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

  .gallery-item,
  .gallery-item--a,
  .gallery-item--b,
  .gallery-item--c,
  .gallery-item--d,
  .gallery-item--e,
  .gallery-item--f,
  .gallery-item--g,
  .gallery-item--h,
  .gallery-item--i,
  .gallery-item--j {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-item--a,
  .gallery-item--d,
  .gallery-item--h {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .gallery-item--a img {
    object-position: center 64%;
  }

  .lightbox__dialog {
    display: block;
    padding: 68px 14px 86px;
  }

  .lightbox__topbar {
    top: 14px;
    right: 14px;
    left: 14px;
  }

  .lightbox__close {
    width: 40px;
    height: 40px;
  }

  .lightbox__media {
    width: 100%;
    height: 100%;
  }

  .lightbox__image {
    max-height: calc(100svh - 170px);
  }

  .lightbox__nav {
    position: absolute;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }

  .lightbox__nav--previous {
    left: 22px;
  }

  .lightbox__nav--next {
    right: 22px;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 24px;
    gap: 8px;
  }

  .legal-main h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

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

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

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

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