@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/fraunces-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/instrument-sans-latin.woff2") format("woff2");
}

:root {
  --ink: #0d0d0c;
  --paper: #f4f1e9;
  --white: #fff;
  --gold: #866438;
  --gold-light: #c9ad7e;
  --muted: #67645e;
  --line: #dfdcd4;
  --shell: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-height: 82px;
  --display: "Fraunces", Georgia, serif;
  --sans: "Instrument Sans", Arial, sans-serif;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: var(--sans);
}

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

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: rgba(183, 146, 88, 0.24);
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: calc(var(--header-height) * -1);
  padding: max(8px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) 8px max(20px, env(safe-area-inset-left));
  color: var(--white);
  border: 0;
  background: linear-gradient(180deg, rgba(13, 13, 12, 0.58), rgba(13, 13, 12, 0));
  box-shadow: none;
  backdrop-filter: none;
  transition: color 180ms ease-out, background-color 180ms ease-out;
}

.site-header[data-tone="light"] {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(244, 241, 233, 0.82), rgba(244, 241, 233, 0));
}

.site-header.is-light:not([data-tone="light"]) {
  color: var(--ink);
  background: transparent;
}

.site-header.is-scrolled {
  color: var(--white);
}

.site-header[data-tone="light"].is-scrolled,
.site-header.is-light.is-scrolled {
  color: var(--ink);
}

.brand {
  flex: 0 0 74px;
  width: 74px;
  height: 68px;
  overflow: visible;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.2);
  transform-origin: left center;
}

.site-header[data-tone="light"] .brand img,
.site-header.is-light .brand img {
  filter: brightness(0);
}

.site-header[data-tone="light"].is-scrolled .brand img {
  filter: brightness(0);
}

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.primary-nav .nav-book {
  min-width: 88px;
  min-height: 44px;
  border: 1px solid currentColor;
  margin-left: 0;
  padding-inline: 13px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 13px 19px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out;
}

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

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

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

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.home-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 48px) var(--gutter) 58px;
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.76), rgba(13, 13, 12, 0.22) 74%),
    url("/images/nina-hero-classic-crust-v2.jpg") 58% center / cover no-repeat;
  color: var(--white);
}

.hero-copy {
  width: min(100%, 760px);
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1 {
  max-width: 10.5ch;
  margin: 0 auto 30px;
  font-family: var(--display);
  font-size: clamp(3.05rem, 12.5vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.01;
  text-wrap: balance;
}

.nina-section,
.editorial-section {
  display: grid;
  background: var(--white);
}

.split-copy,
.editorial-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-height) + 28px) var(--gutter) 34px;
}

.split-copy h2,
.editorial-copy h2 {
  width: 100%;
  max-width: min(11ch, 100%);
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 11vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.03;
  text-wrap: balance;
}

.split-copy p,
.editorial-copy p {
  max-width: 43ch;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.split-media,
.editorial-media {
  height: 58svh;
  min-height: 0;
  overflow: hidden;
}

.split-media img,
.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nina-portrait img {
  object-position: center 20%;
}

.editorial-photo-right .editorial-media img {
  object-position: center 58%;
}

.editorial-photo-left .editorial-media img {
  object-position: 53% center;
}

.editorial-copy-dark {
  background: var(--ink);
  color: var(--white);
}

.editorial-copy-dark p {
  color: #d8d3ca;
}

.editorial-copy-dark .button-gold {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.page-hero {
  min-height: clamp(310px, 43svh, 430px);
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 46px) 0 38px;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.menu-hero {
  background-image:
    linear-gradient(90deg, rgba(13, 13, 12, 0.82), rgba(13, 13, 12, 0.18)),
    url("/images/nina-carte-white-plate-v3.jpg");
}

.order-hero {
  background-image:
    linear-gradient(90deg, rgba(13, 13, 12, 0.82), rgba(13, 13, 12, 0.18)),
    url("/images/nina-order-white-plate-v4.jpg");
}

.page-hero-copy h1 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(2.65rem, 13vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.page-hero-copy p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.category-nav {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  background: var(--paper);
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  gap: 4px;
  padding: 12px var(--gutter);
}

.category-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 13px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-nav a:active {
  background: var(--gold-light);
}

.cart-count {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-left: 7px;
  background: var(--gold);
  font-size: 10px;
}

.menu-catalog {
  padding-block: clamp(56px, 8vw, 110px) 100px;
}

.catalog-intro {
  display: none;
  gap: 24px;
  align-items: end;
  margin-bottom: 80px;
}

.catalog-intro h2 {
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(3rem, 12vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.catalog-intro p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.menu-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  margin-bottom: 82px;
}

.menu-section:last-of-type {
  margin-bottom: 104px;
}

.menu-section h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.35rem, 10vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-row h3,
.menu-price {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.menu-row p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.menu-price {
  justify-self: end;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.catalog-cta {
  width: 100%;
}

.order-layout {
  display: flex;
  flex-direction: column;
  gap: 54px;
  padding-block: 54px 100px;
}

.order-catalog {
  min-width: 0;
}

.order-row {
  grid-template-columns: minmax(0, 1fr) auto 44px;
  grid-template-areas:
    "name price add"
    "description description description";
  align-items: center;
}

.order-row h3 {
  grid-area: name;
}

.order-row p {
  grid-area: description;
}

.order-row .menu-price {
  grid-area: price;
}

.add-button {
  grid-area: add;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.add-button:active {
  background: var(--ink);
  color: var(--white);
}

.cart {
  order: -1;
  scroll-margin-top: calc(var(--header-height) + 16px);
  width: 100%;
  min-height: min(86vw, 330px);
  align-self: start;
  padding: 24px;
  border: 1px solid #dedbd4;
  background: var(--white);
}

.cart-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.cart h2 {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.cart-summary {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.cart-empty {
  max-width: 28ch;
  color: var(--muted);
  font-size: 14px;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(13, 13, 12, 0.3);
}

.cart-line:first-child {
  border-top: 0;
}

.cart-line-name {
  font-size: 13px;
  line-height: 1.35;
}

.cart-line-name span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.quantity-control {
  display: flex;
  align-items: center;
}

.quantity-control button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
}

.quantity-control span {
  min-width: 24px;
  text-align: center;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-size: 14px;
}

.cart-total strong {
  font-size: 17px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.checkout-button {
  width: 100%;
  margin-top: 18px;
}

.checkout-panel {
  margin-top: 24px;
}

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

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form > p {
  font-size: 13px;
  font-weight: 600;
}

label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #817664;
  border-radius: 0;
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
}

input::placeholder {
  color: #77716a;
  opacity: 1;
}

input:user-invalid,
select:user-invalid {
  border-color: #8f2f27;
}

.form-note,
.data-note {
  color: #50483d;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
}

.checkout-back {
  min-height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.reservation-layout {
  min-height: 100svh;
  display: grid;
  gap: 44px;
  align-items: center;
  padding: calc(var(--header-height) + 52px) var(--gutter) 64px;
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.88), rgba(13, 13, 12, 0.38)),
    url("/images/nina-salle-reservation-v3.jpg") center / cover no-repeat;
}

.reservation-copy {
  color: var(--white);
}

.reservation-copy h1 {
  max-width: 9ch;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(3.35rem, 14vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}

.reservation-copy > p {
  max-width: 39ch;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.hours {
  display: grid;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.hours strong {
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-card {
  width: 100%;
  max-width: 620px;
  padding: clamp(24px, 6vw, 48px);
  background: rgba(244, 241, 233, 0.98);
}

.reservation-form {
  display: grid;
  gap: 18px;
}

.form-pair {
  display: grid;
  gap: 18px;
}

.reservation-form .button {
  width: 100%;
  margin-top: 4px;
}

.reservation-form .button-gold {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.form-status {
  min-height: 1.5em;
  color: #3d352a;
  font-size: 12px;
}

.legal-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px max(var(--gutter), env(safe-area-inset-left)) max(24px, env(safe-area-inset-bottom));
  background: var(--ink);
  color: #d8d3ca;
  font-size: 12px;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.legal-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--white);
  text-underline-offset: 4px;
}

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

.legal-document {
  padding-block: calc(var(--header-height) + 70px) 90px;
}

.legal-document > header {
  max-width: 820px;
  margin-bottom: 64px;
}

.legal-document h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 13vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.legal-document header p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-sections {
  display: grid;
  gap: 38px;
  max-width: 780px;
}

.legal-sections section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-sections h2 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.legal-sections p {
  margin-bottom: 14px;
  color: #3f3b35;
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-sections a {
  display: inline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-update {
  margin-top: 50px;
  color: var(--muted);
  font-size: 12px;
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 50px) var(--gutter) 60px;
  background: var(--ink);
  color: var(--white);
}

.not-found h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 13vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.not-found p {
  max-width: 40ch;
  margin-bottom: 30px;
  color: #d8d3ca;
}

@media (hover: hover) and (pointer: fine) {
  .primary-nav a:hover,
  .category-nav a:hover,
  .text-link:hover {
    color: var(--gold-light);
  }

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

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

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

  .editorial-copy-dark .button-gold:hover,
  .reservation-form .button-gold:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
  }

  .add-button:hover,
  .quantity-control button:hover {
    background: var(--ink);
    color: var(--white);
  }
}

@media (min-width: 641px) {
  :root {
    --header-height: 100px;
  }

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

  .brand {
    flex-basis: 112px;
    width: 112px;
    height: 86px;
  }

  .primary-nav {
    gap: 30px;
  }

  .primary-nav a {
    padding-inline: 0;
    font-size: 13px;
    letter-spacing: 0.045em;
  }

  .primary-nav .nav-book {
    min-width: 112px;
    min-height: 50px;
    padding-inline: 24px;
    font-size: 12px;
  }

  .home-hero {
    background-position: center;
  }

  .catalog-intro {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.6fr);
  }

  .catalog-intro p {
    justify-self: end;
    text-align: right;
  }

  .menu-row {
    grid-template-columns: minmax(160px, 0.9fr) minmax(260px, 2fr) auto;
    gap: 20px;
    align-items: baseline;
    padding-block: 20px;
  }

  .menu-row p {
    grid-column: auto;
  }

  .order-row {
    grid-template-columns: minmax(150px, 0.9fr) minmax(220px, 2fr) auto 44px;
    grid-template-areas: "name description price add";
  }

  .catalog-cta {
    width: auto;
  }

  .form-pair {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .legal-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 801px) {
  .brand img {
    transform: translateX(-18px) scale(1.2);
  }

  .home-hero .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy h1 {
    font-size: clamp(4.3rem, 7.4vw, 7.5rem);
  }

  .nina-section,
  .editorial-section {
    height: 100svh;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .nina-section > *,
  .editorial-section > * {
    min-width: 0;
    min-height: 0;
  }

  .split-copy,
  .editorial-copy {
    padding: calc(var(--header-height) + 58px) clamp(48px, 8vw, 128px) 76px;
  }

  .split-copy h2,
  .editorial-copy h2 {
    font-size: clamp(4rem, 5.8vw, 6.6rem);
    line-height: 0.94;
  }

  .split-copy {
    padding-left: max(var(--gutter), calc((100vw - var(--shell)) / 2));
  }

  .split-copy h2 {
    max-width: 12.5ch;
  }

  .split-media,
  .editorial-media {
    height: 100%;
    min-height: 0;
  }

  .page-hero {
    min-height: clamp(350px, 43svh, 430px);
    padding-bottom: 54px;
  }

  .page-hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 375px);
    align-items: end;
    gap: clamp(42px, 7vw, 100px);
  }

  .page-hero-copy h1 {
    margin-bottom: 0;
    font-size: clamp(4.7rem, 7.2vw, 7rem);
    line-height: 1.02;
  }

  .page-hero-copy p {
    margin-bottom: 7px;
  }

  .category-nav-track {
    width: min(calc(100% - (2 * var(--gutter))), var(--shell));
    min-width: 0;
    justify-content: space-between;
    margin-inline: auto;
    padding-inline: 0;
  }

  .category-nav a {
    padding-inline: 18px;
    font-size: 12px;
  }

  .menu-section h2 {
    white-space: nowrap;
  }

  .order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 330px);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
    padding-block: 72px 120px;
  }

  .cart {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    order: initial;
    min-height: 330px;
  }

  .reservation-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
    gap: clamp(60px, 9vw, 150px);
    padding-block: calc(var(--header-height) + 70px) 80px;
  }

  .reservation-card {
    justify-self: end;
  }

  .legal-document {
    padding-top: calc(var(--header-height) + 86px);
  }

  .legal-sections {
    margin-left: min(22vw, 250px);
  }
}

@media (min-width: 1024px) and (min-height: 650px) and (prefers-reduced-motion: no-preference) {
  html:has(.home-page) {
    scroll-snap-type: y mandatory;
  }

  .snap-section {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .home-hero,
  .page-hero,
  .reservation-layout {
    min-height: 680px;
  }
}

@media (max-width: 800px) {
  .site-header.is-scrolled:not(.is-light):not([data-tone="light"]) {
    background: rgba(13, 13, 12, 0.97);
  }

  .site-header.is-light.is-scrolled,
  .site-header[data-tone="light"].is-scrolled {
    background: rgba(244, 241, 233, 0.98);
  }

  .menu-section h2 {
    text-align: left;
  }
}

@media (max-width: 380px) {
  :root {
    --header-height: 146px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 102px 44px;
    gap: 0;
    padding-block: 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-top: 10px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    gap: 9px;
  }

  .primary-nav a {
    font-size: 12px;
  }
}

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

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

@media print {
  .site-header,
  .category-nav,
  .button,
  .add-button,
  .cart,
  .legal-footer {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .page-hero {
    min-height: 0;
    padding: 24px 0;
    background: none;
    color: #000;
  }

  .menu-catalog {
    padding: 24px 0;
  }

  .menu-section {
    break-inside: avoid;
  }
}
