:root {
  --red: #f44336;
  --red-dark: #d93228;
  --ivory: #fffaf4;
  --white: #ffffff;
  --ink: #191817;
  --muted: #6d6862;
  --line: rgba(25, 24, 23, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --header-height: 90px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
}

.nav-shell {
  width: min(100% - 48px, 1480px);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(320px, 30vw, 440px);
  height: 68px;
  object-fit: contain;
  transition: filter 180ms ease;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.8vw, 34px);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav > a:not(.button):not(.social-link) {
  position: relative;
  text-decoration: none;
}

.main-nav > a:not(.button):not(.social-link)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.social-link {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 180ms ease, transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--red);
  transform: rotate(7deg);
}

.social-link img {
  width: 16px;
  height: 16px;
}

.nav-info {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--red);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
}

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

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

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

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  background: var(--ivory);
}

.hero-copy {
  align-self: stretch;
  padding: clamp(72px, 8vw, 128px) clamp(32px, 6vw, 104px) 52px max(32px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-rows: minmax(32px, 1fr) auto auto auto minmax(32px, 1fr) auto;
}

.hero h1,
.restaurant-heading h2,
.cuisine-intro h2,
.gallery-heading h2,
.reservation-copy h2,
.info-title h2,
.legal-title h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.hero h1 {
  grid-row: 2;
  max-width: 760px;
  font-size: clamp(4rem, 7vw, 7.8rem);
}

.hero-intro {
  grid-row: 3;
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.hero-actions {
  grid-row: 4;
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-details {
  grid-row: 6;
  margin-top: 0;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.hero-details p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.hero-details span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: #29221b;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.48));
  content: "";
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual:hover > img {
  transform: scale(1.02);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 34px;
  left: 40px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.restaurant-section {
  position: relative;
  padding: clamp(88px, 9vw, 140px) max(32px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  grid-template-rows: auto auto;
  column-gap: clamp(56px, 7vw, 112px);
  row-gap: 36px;
  align-items: start;
  overflow: hidden;
  background: var(--white);
}

.restaurant-heading,
.restaurant-story,
.restaurant-detail {
  position: relative;
  z-index: 1;
}

.restaurant-heading h2 {
  max-width: 640px;
  font-size: clamp(3.7rem, 6vw, 6.6rem);
}

.restaurant-story {
  max-width: 670px;
}

.restaurant-story p {
  margin: 0 0 24px;
  color: var(--muted);
}

.restaurant-story .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  line-height: 1.25;
}

.service-list {
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-list li {
  padding: 12px 8px 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.restaurant-detail {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  max-width: 520px;
  margin: 0;
  justify-self: end;
}

.restaurant-detail img {
  width: 100%;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cuisine-section {
  padding: clamp(90px, 10vw, 160px) max(32px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.7fr);
  gap: clamp(50px, 7vw, 110px);
  background: var(--red);
  color: var(--white);
}

.cuisine-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
}

.cuisine-intro h2 {
  max-width: 560px;
  font-size: clamp(3.5rem, 6vw, 6.6rem);
}

.cuisine-intro > p {
  max-width: 460px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.78);
}

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

.dish-card {
  position: relative;
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: #9a281f;
}

.dish-card-tall {
  height: 742px;
  max-height: 742px;
  grid-row: span 2;
}

.dish-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.58));
  content: "";
}

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

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

.dish-card figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

.dish-card figcaption strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
}

.gallery-section {
  padding: clamp(88px, 8vw, 128px) max(32px, calc((100vw - 1320px) / 2));
  background: var(--ivory);
}

.gallery-heading {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.gallery-heading h2 {
  color: var(--red);
  font-size: clamp(4.6rem, 8vw, 8rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr)) auto;
  gap: clamp(12px, 1.5vw, 20px);
  align-items: stretch;
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: #ded7cf;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item-featured {
  min-height: clamp(640px, 64vw, 900px);
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-grid > .gallery-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery-grid > .gallery-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.gallery-item-bottom {
  height: clamp(440px, 46vw, 620px);
}

.gallery-grid > .gallery-item:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.gallery-grid > .gallery-item:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}

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

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-item > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: 0;
  border: 0;
  background: rgba(12, 12, 12, 0.97);
  color: var(--white);
  overflow: hidden;
}

.lightbox[open] {
  display: grid;
  grid-template-rows: 72px minmax(0, 1fr) 96px;
}

.lightbox::backdrop {
  background: rgba(15, 13, 12, 0.96);
  backdrop-filter: blur(16px);
}

.lightbox-topbar {
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.lightbox-topbar p {
  margin: 0;
}

.lightbox-stage {
  position: relative;
  min-height: 0;
  padding: 0 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  width: auto;
  max-width: min(78vw, 1180px);
  height: auto;
  max-height: calc(100vh - 204px);
  min-height: 0;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.lightbox-close {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--white);
  content: "";
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(4deg);
}

.lightbox-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.lightbox-control:hover,
.lightbox-control:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.17);
}

.lightbox-control span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 1.5px solid var(--white);
  border-left: 1.5px solid var(--white);
}

.lightbox-previous {
  left: 24px;
}

.lightbox-previous span {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.lightbox-next {
  right: 24px;
}

.lightbox-next span {
  transform: translate(-65%, -50%) rotate(135deg);
}

.lightbox-thumbnails {
  padding: 14px 24px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}

.lightbox-thumbnails button {
  width: 56px;
  height: 64px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.48;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.lightbox-thumbnails button:hover,
.lightbox-thumbnails button:focus-visible {
  opacity: 0.82;
}

.lightbox-thumbnails button[aria-selected="true"] {
  border-color: var(--red);
  opacity: 1;
  transform: translateY(-3px);
}

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

.reservation-section {
  padding: clamp(88px, 9vw, 132px) max(32px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.66fr);
  gap: clamp(64px, 8vw, 128px);
  align-items: center;
  background: var(--red);
  color: var(--white);
}

.reservation-copy {
  max-width: 650px;
}

.reservation-copy h2 {
  font-size: clamp(4rem, 7vw, 7.4rem);
}

.reservation-copy > p {
  max-width: 510px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.78);
}

.phone-link {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-decoration: none;
}

.reservation-widget {
  width: 100%;
  max-width: 520px;
  min-height: 0;
  padding: clamp(42px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: end;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(83, 18, 13, 0.2);
}

.widget-kicker {
  margin: 0 0 28px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.opentable-widget {
  min-height: 380px;
}

.opentable-widget > div,
.opentable-widget iframe {
  width: 100% !important;
}

.info-section {
  padding: clamp(100px, 11vw, 176px) max(32px, calc((100vw - 1480px) / 2));
  background: var(--white);
}

.info-title {
  margin-bottom: 64px;
  max-width: 900px;
}

.info-title h2 {
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.info-card {
  min-height: 340px;
  padding: 34px clamp(22px, 3vw, 48px) 34px 0;
}

.info-card + .info-card {
  padding-left: clamp(22px, 3vw, 48px);
  border-left: 1px solid var(--line);
}

.info-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.05;
}

.info-card > p:not(.small-note) {
  margin: 0 0 28px;
  color: var(--muted);
}

.info-card a:not(.text-link) {
  color: var(--ink);
}

.info-card .small-note {
  font-size: 0.75rem;
}

.opening-hours {
  margin: 0 0 28px;
}

.hours-group + .hours-group {
  margin-top: 24px;
}

.hours-service {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours-group dl {
  margin: 0;
}

.hours-group dl > div {
  padding: 9px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.hours-group dt,
.hours-group dd {
  margin: 0;
}

.hours-group dt {
  color: var(--muted);
}

.hours-group dd {
  flex: 0 0 auto;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

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

.footer-inner {
  width: min(100% - 48px, 1480px);
  min-height: 340px;
  margin: 0 auto;
  padding: 60px 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 38px 60px;
  align-items: end;
}

.footer-brand {
  justify-self: start;
}

.footer-brand img {
  width: 128px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-inner > p:not(.copyright) {
  margin: 0;
  align-self: start;
  justify-self: end;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.copyright {
  margin: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

/* Mentions légales */
.legal-page {
  background: var(--ivory);
}

.legal-hero {
  min-height: calc(100vh - var(--header-height));
  padding: clamp(88px, 10vw, 150px) max(32px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 8vw, 130px);
}

.legal-title {
  position: sticky;
  top: calc(var(--header-height) + 54px);
  align-self: start;
}

.legal-title h1 {
  max-width: 500px;
  color: var(--red);
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.legal-title > p {
  margin: 28px 0;
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 28px;
}

.legal-card {
  padding: clamp(32px, 5vw, 68px);
  background: var(--white);
  border-top: 4px solid var(--red);
}

.legal-number {
  margin: 0 0 32px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.legal-card h2 {
  margin: 0 0 42px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
}

.legal-card dl {
  margin: 0;
}

.legal-card dl div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  border-top: 1px solid var(--line);
}

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

.legal-card dd {
  margin: 0;
}

@media (max-width: 1120px) {
  .brand img {
    width: clamp(270px, 30vw, 336px);
    height: 52px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.69rem;
  }

  .nav-info {
    padding-left: 16px;
  }

  .restaurant-section {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  }

  .restaurant-detail {
    max-width: 410px;
  }

  .gallery-item-featured {
    min-height: clamp(580px, 70vw, 820px);
  }

  .gallery-item-bottom {
    height: clamp(400px, 48vw, 560px);
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 78px;
  }

  .nav-shell {
    width: min(100% - 32px, 1480px);
    min-height: var(--header-height);
  }

  .brand img {
    width: min(250px, 60vw);
    height: 40px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .burger-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 50%;
    background: var(--red);
    transition: background 220ms ease, transform 220ms ease;
  }

  .burger-icon i {
    display: block;
    width: 19px;
    height: 1px;
    background: var(--white);
    transition: transform 220ms ease;
  }

  .menu-toggle:hover .burger-icon,
  .menu-toggle:focus-visible .burger-icon {
    transform: scale(1.05);
  }

  .menu-toggle[aria-expanded="true"] .burger-icon i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .burger-icon i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  body.menu-open .site-header {
    background: var(--red);
    border-bottom-color: rgba(255, 255, 255, 0.24);
  }

  body.menu-open .brand {
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  body.menu-open .brand img {
    filter: brightness(0) invert(1);
  }

  body.menu-open .menu-toggle {
    color: var(--white);
  }

  body.menu-open .burger-icon {
    background: var(--white);
  }

  body.menu-open .burger-icon i {
    background: var(--red);
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    height: calc(100vh - var(--header-height));
    padding: 42px 32px 70px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--red);
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 9vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    text-transform: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 220ms ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav > a:not(.button):not(.social-link)::after {
    background: var(--white);
  }

  .main-nav > a {
    padding: 10px 0;
  }

  .main-nav .social-link {
    width: 52px;
    height: 52px;
    margin-top: 20px;
    align-self: flex-start;
    border-color: rgba(255, 255, 255, 0.52);
  }

  .main-nav .social-link img {
    width: 22px;
    height: 22px;
    filter: invert(1);
  }

  .main-nav .nav-info {
    margin-top: 18px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    border-left: 0;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .main-nav .button {
    min-height: 56px;
    margin-top: 18px;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-color: var(--white);
    background: var(--white);
    color: var(--red);
  }

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

  .hero-copy {
    min-height: calc(74vh - var(--header-height));
    padding: 70px 24px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

  .hero-intro {
    font-size: 1.35rem;
  }

  .hero-details {
    margin-top: 48px;
    padding-top: 0;
  }

  .hero-visual {
    min-height: 82vh;
  }

  .restaurant-section {
    padding: 100px 24px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .restaurant-story {
    max-width: 620px;
    padding-top: 0;
  }

  .restaurant-detail {
    display: block;
    grid-column: 1;
    grid-row: auto;
    width: min(70%, 400px);
    margin-left: auto;
  }

  .cuisine-section {
    padding: 100px 24px;
    grid-template-columns: 1fr;
  }

  .cuisine-intro {
    position: static;
  }

  .gallery-section {
    padding: 100px 24px;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }

  .gallery-item-featured {
    min-height: min(92vw, 720px);
  }

  .gallery-item-bottom {
    height: min(58vw, 480px);
  }

  .lightbox[open] {
    grid-template-rows: 64px minmax(0, 1fr) 86px;
  }

  .lightbox-topbar {
    padding: 0 16px;
  }

  .lightbox-stage {
    padding: 0 56px;
  }

  .lightbox-image {
    max-width: calc(100vw - 112px);
    max-height: calc(100vh - 176px);
  }

  .lightbox-control {
    width: 46px;
    height: 46px;
  }

  .lightbox-previous {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-thumbnails {
    padding-right: 16px;
    padding-left: 16px;
    justify-content: flex-start;
  }

  .reservation-section {
    padding: 100px 24px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .reservation-copy {
    padding: 0;
  }

  .reservation-widget {
    max-width: 620px;
    min-height: 0;
    padding: 48px 32px;
    justify-self: start;
  }

  .info-section {
    padding: 100px 24px;
  }

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

  .info-card {
    min-height: auto;
    padding: 32px 0 44px;
  }

  .info-card + .info-card {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .legal-nav {
    display: none;
  }

  .mobile-back {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .legal-hero {
    padding: 82px 24px 100px;
    grid-template-columns: 1fr;
  }

  .legal-title {
    position: static;
  }
}

@media (max-width: 580px) {
  .menu-label {
    display: none;
  }

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

  .hero-details {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-visual {
    min-height: 68vh;
  }

  .hero-visual figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    flex-direction: column;
    gap: 4px;
  }

  .restaurant-heading h2,
  .cuisine-intro h2,
  .reservation-copy h2,
  .info-title h2 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .restaurant-detail {
    width: 88%;
  }

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

  .dish-card,
  .dish-card-tall {
    height: min(112vw, 460px);
    max-height: 460px;
    grid-row: auto;
  }

  .gallery-heading h2 {
    font-size: clamp(4.3rem, 21vw, 6.5rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item-featured,
  .gallery-item-bottom,
  .gallery-grid > .gallery-item:nth-child(n) {
    height: auto;
    min-height: 0;
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .reservation-widget {
    min-height: 0;
    padding: 40px 20px;
  }

  .footer-inner {
    width: min(100% - 32px, 1480px);
    grid-template-columns: 1fr;
  }

  .footer-inner > p:not(.copyright),
  .copyright {
    justify-self: start;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .legal-card dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

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