:root {
  --green: #004033;
  --green-deep: #002d25;
  --green-soft: #0d5548;
  --gold: #d9a540;
  --gold-dark: #a87419;
  --ink: #1d1d1b;
  --cream: #f6f0e6;
  --paper: #fffaf2;
  --beige: #e9dfd2;
  --line: rgba(29, 29, 27, 0.16);
  --shadow: 0 20px 60px rgba(22, 16, 10, 0.12);
  --header-height: 82px;
  --page: min(1240px, calc(100vw - 64px));
  --serif: "Cinzel", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.012em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.85rem, 4.6vw, 5.15rem);
  max-width: 13ch;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2.05rem, 3.7vw, 4.25rem);
  max-width: 17ch;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.2rem;
}

address {
  font-style: normal;
}

.no-break {
  white-space: nowrap;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--green);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section-pad {
  padding: clamp(76px, 8vw, 130px) 0;
}

.section-shell {
  min-width: 0;
}

.header-inner > *,
.hero > *,
.editorial-grid > *,
.table-gallery > *,
.reservation-layout > *,
.info-grid > *,
.brunch-gallery > * {
  min-width: 0;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  padding: 0.78rem 1.15rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.button-primary:hover {
  background: var(--green-soft);
  border-color: var(--green-soft);
}

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

.button-gold:hover {
  background: #e4b85f;
  border-color: #e4b85f;
}

.button-outline {
  color: var(--green);
  border-color: var(--green);
  background: transparent;
}

.button-outline:hover {
  color: white;
  background: var(--green);
}

.button-ghost-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
}

.button-ghost-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-block;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(246, 240, 230, 0.97);
  border-bottom: 1px solid rgba(0, 64, 51, 0.14);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(12, 25, 19, 0.08);
}

.header-inner {
  width: min(1480px, calc(100vw - 36px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 165px;
}

.brand img {
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(9px, 1.25vw, 19px);
}

.primary-nav .nav-link {
  position: relative;
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold-dark);
  transition: right 180ms ease;
}

.primary-nav .nav-link:hover::after,
.primary-nav .nav-link:focus-visible::after {
  right: 0;
}

.primary-nav .button {
  min-height: 42px;
  padding: 0.72rem 0.88rem;
  font-size: 0.66rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--green);
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.floating-reservation {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 940;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 14px 36px rgba(0, 45, 37, 0.24);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.floating-reservation:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 45, 37, 0.3);
  background: #e4b85f;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--green);
  overflow: clip;
}

.hero-copy {
  min-height: min(790px, calc(100svh - var(--header-height)));
  padding: clamp(58px, 7vw, 112px) clamp(52px, 7vw, 112px) clamp(58px, 7vw, 112px) clamp(34px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.hero-copy h1 {
  color: white;
}

.hero-kicker {
  max-width: 38ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.07em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.hero-media {
  min-height: calc(100svh - var(--header-height));
  margin: 0;
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-height));
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 38%;
}

.restaurant-section {
  background: var(--paper);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 9vw, 150px);
}

.editorial-copy {
  padding-left: clamp(0px, 4vw, 64px);
}

.editorial-copy h2 {
  max-width: 18ch;
}

.editorial-copy p,
.reservation-copy p {
  max-width: 58ch;
  color: #4a443e;
}

.photo-frame {
  position: relative;
  margin: 0;
  padding: 18px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 45%;
}

.cuisine-section {
  background: var(--cream);
  overflow: clip;
}

.table-heading {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 92px);
}

.table-heading h2 {
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 0;
}

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

.table-photo {
  margin: 0;
  overflow: hidden;
  background: #d8d2c9;
}

.table-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.table-photo:hover img {
  transform: scale(1.018);
}

.table-photo-a {
  grid-column: 1 / span 4;
  grid-row: 1;
  margin-top: 54px;
}

.table-photo-a img { object-position: 56% 50%; }
.table-photo-b {
  grid-column: 5 / span 4;
  grid-row: 1;
  margin-top: 0;
}
.table-photo-b img { object-position: 50% 52%; }
.table-photo-c {
  grid-column: 9 / span 4;
  grid-row: 1;
  margin-top: 86px;
}
.table-photo-c img { object-position: 49% 45%; }
.table-photo-d {
  grid-column: 5 / span 4;
  grid-row: 2;
  margin-top: 28px;
}
.table-photo-d img { object-position: 52% 48%; }
.table-photo-e {
  grid-column: 9 / span 4;
  grid-row: 2;
  margin-top: 0;
}
.table-photo-e img { object-position: 54% 56%; }
.table-photo-f {
  grid-column: 1 / span 4;
  grid-row: 2;
  margin-top: 10px;
}
.table-photo-f img { object-position: 50% 48%; }

.table-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(44px, 6vw, 76px);
}

.sharing-section {
  padding: clamp(54px, 6vw, 88px) 0;
  background: var(--paper);
  overflow: clip;
}

.sharing-visual {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 50vw, 720px);
  overflow: clip;
}

.sharing-media {
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0;
}

.sharing-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: 2 / 0.94;
  object-fit: cover;
  object-position: 50% 50%;
}

.sharing-card {
  position: absolute;
  top: 50%;
  right: clamp(30px, 5.5vw, 92px);
  width: min(430px, 34vw);
  transform: translateY(-50%);
  padding: clamp(34px, 4vw, 56px);
  background: var(--green);
  color: white;
  box-shadow: 0 22px 55px rgba(0, 35, 28, 0.18);
}

.sharing-card.reveal {
  transform: translateY(calc(-50% + 22px));
}

.sharing-card.reveal.is-visible {
  transform: translateY(-50%);
}

.sharing-card h2 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  color: white;
  font-size: clamp(1.7rem, 2.4vw, 2.75rem);
}

.sharing-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.brunch-section {
  background: var(--green-deep);
  color: white;
  overflow: clip;
}

.brunch-heading {
  width: min(840px, 100%);
  margin: 0 auto clamp(54px, 7vw, 90px);
  text-align: center;
}

.brunch-heading h2 {
  max-width: none;
  margin-bottom: 0.85rem;
  color: white;
}

.brunch-days {
  margin-bottom: 1.35rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  letter-spacing: 0.04em;
}

.brunch-copy {
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.8);
}

.brunch-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 26px);
  align-items: start;
}

.brunch-photo {
  margin: 0;
  overflow: hidden;
  background: #183c34;
}

.brunch-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.brunch-photo:hover img {
  transform: scale(1.018);
}

.brunch-photo-a { margin-top: 70px; }
.brunch-photo-b { margin-top: 0; }
.brunch-photo-c { margin-top: 42px; }
.brunch-photo-d { margin-top: 92px; }
.brunch-photo-a img { object-position: 50% 54%; }
.brunch-photo-b img { object-position: 52% 45%; }
.brunch-photo-c img { object-position: 50% 48%; }
.brunch-photo-d img { object-position: 50% 50%; }

.private-section {
  background: var(--paper);
}

.private-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.private-kicker {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.private-copy h2 {
  color: var(--green);
  font-size: clamp(1.85rem, 3.7vw, 4.25rem);
  overflow-wrap: anywhere;
}

.private-copy p:not(.private-kicker) {
  max-width: 56ch;
  color: #4a443e;
}

.private-copy .private-intro {
  font-size: 1.15rem;
}

.private-copy .button {
  margin-top: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.private-photo {
  width: 100%;
}

.private-photo img {
  aspect-ratio: 1 / 1;
}

.private-spaces {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 60px);
  margin-top: clamp(48px, 6vw, 80px);
}

.private-space {
  border-top: 1px solid var(--gold-dark);
  padding-top: 24px;
}

.private-capacity {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.private-space h3 {
  color: var(--green);
  line-height: 1.3;
}

.private-space p:last-child {
  color: #4a443e;
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .private-layout,
  .private-spaces {
    grid-template-columns: 1fr;
  }

  .private-photo {
    max-width: 480px;
    justify-self: center;
  }
}

.reservation-section {
  background: var(--beige);
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.92fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: start;
}

.reservation-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.reservation-copy h2 {
  max-width: 16ch;
}

.reservation-event {
  margin-top: 1.4rem;
  margin-bottom: 1.5rem;
}

.reservation-widget {
  min-height: 520px;
  max-width: 100%;
  overflow: hidden;
  padding: clamp(14px, 2vw, 24px);
  background: var(--paper);
  border: 1px solid rgba(0, 64, 51, 0.14);
  box-shadow: var(--shadow);
}

.reservation-widget iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0;
}

.information-section {
  padding-block: clamp(60px, 6vw, 84px);
  background: var(--green);
  color: white;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3.5vw, 58px);
}

.info-card {
  min-height: 156px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 24px 0 4px;
  border-top: 1px solid rgba(217, 165, 64, 0.5);
}

.info-card h3 {
  margin: 0;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.info-card-body {
  align-self: start;
  min-width: 0;
}

.info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.info-card a:not(.text-link) {
  color: rgba(255, 255, 255, 0.92);
}

.info-card .text-link {
  align-self: end;
  color: white;
}

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

.footer-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  font-size: 0.78rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

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

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

.legal-header .header-inner {
  grid-template-columns: 220px 1fr auto;
}

.legal-header .button {
  grid-column: 3;
}

.legal-section {
  min-height: calc(100vh - var(--header-height) - 90px);
}

.legal-container {
  width: min(860px, calc(100vw - 48px));
  margin-inline: auto;
}

.legal-container h1 {
  max-width: none;
  color: var(--green);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  margin-bottom: clamp(50px, 7vw, 86px);
}

.legal-container article {
  padding-block: 32px;
  border-top: 1px solid var(--line);
}

.legal-container h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  max-width: none;
}

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

.legal-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}

.legal-list dt {
  font-weight: 600;
  color: var(--green);
}

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

@media (max-width: 1120px) {
  :root {
    --header-height: 76px;
    --page: min(100% - 48px, 980px);
  }

  .header-inner {
    width: calc(100vw - 32px);
    grid-template-columns: minmax(150px, 1fr) auto;
  }

  .brand {
    max-width: 180px;
  }

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

  .primary-nav {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100vw;
    height: 100dvh;
    z-index: 2;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: calc(var(--header-height) + 34px) 24px 34px;
    max-height: 100dvh;
    overflow-y: auto;
    background: var(--green);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav .nav-link {
    width: min(360px, 100%);
    padding: 9px 8px;
    color: white;
    font-family: var(--serif);
    font-size: clamp(1.22rem, 3.2vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: none;
  }

  .primary-nav .nav-link::after {
    display: none;
  }

  .primary-nav .button {
    width: min(290px, calc(100% - 24px));
    min-height: 48px;
    margin-top: 8px;
    font-size: 0.74rem;
  }

  .primary-nav .nav-reserve {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
  }

  .primary-nav .nav-private {
    margin-top: 4px;
    color: white;
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
  }

  body.nav-open .site-header {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.nav-open .brand {
    visibility: hidden;
  }

  body.nav-open .nav-toggle span {
    background: white;
  }

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

  .hero-copy {
    min-height: 540px;
    padding: 70px max(24px, 6vw) 62px;
  }

  .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.75rem, 8.5vw, 5rem);
  }

  .hero-media,
  .hero-media img {
    min-height: 0;
  }

  .hero-media img {
    aspect-ratio: 16 / 11;
    object-position: 50% 40%;
  }

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

  .editorial-copy {
    padding-left: 0;
  }

  .editorial-photo {
    width: min(82%, 560px);
    justify-self: end;
  }

  .table-photo-a,
  .table-photo-b,
  .table-photo-c,
  .table-photo-d,
  .table-photo-e,
  .table-photo-f {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .table-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-photo:nth-child(even) {
    margin-top: 42px;
  }

  .sharing-visual {
    min-height: 560px;
  }

  .sharing-card {
    width: min(430px, 43vw);
    right: 36px;
  }

  .brunch-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brunch-photo-a,
  .brunch-photo-b,
  .brunch-photo-c,
  .brunch-photo-d {
    margin-top: 0;
  }

  .brunch-photo:nth-child(even) {
    margin-top: 38px;
  }

  .reservation-copy {
    position: static;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 42px;
  }

  .info-card {
    min-height: 150px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 36px, 680px);
  }

  .sharing-section {
    padding: 54px 0 0;
  }

  .sharing-visual {
    min-height: 0;
    overflow: visible;
  }

  .sharing-media {
    min-height: 0;
    height: auto;
  }

  .sharing-media img {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: 50% 50%;
  }

  .sharing-card,
  .sharing-card.reveal,
  .sharing-card.reveal.is-visible {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 36px);
    margin: -42px 18px 0 auto;
    transform: none;
    padding: 34px 28px;
  }

  .sharing-card h2 {
    max-width: 15ch;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 70px;
    --page: calc(100% - 32px);
  }

  .section-pad {
    padding: 72px 0;
  }

  .header-inner {
    width: calc(100vw - 24px);
    grid-template-columns: minmax(120px, 1fr) 44px;
  }

  .brand {
    max-width: 150px;
  }

  .brand img {
    height: 44px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .primary-nav {
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 46px);
  }

  .primary-nav .nav-link {
    padding-block: 7px;
    font-size: clamp(1.14rem, 5vw, 1.55rem);
  }

  .floating-reservation {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 46px;
    padding: 0.78rem 1rem;
    font-size: 0.68rem;
  }

  .hero-copy {
    min-height: 500px;
    padding: 56px 22px 48px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 3.55rem);
    margin-bottom: 1.15rem;
  }

  .hero-kicker {
    max-width: 30ch;
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .hero-actions {
    margin-top: 1.65rem;
  }

  .hero-media img {
    aspect-ratio: 4 / 4.7;
    object-position: 50% 40%;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .editorial-photo {
    width: 92%;
  }

  .table-heading {
    margin-bottom: 42px;
  }

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

  .table-photo,
  .table-photo:nth-child(even) {
    width: 100%;
    margin-top: 0;
  }

  .table-photo:nth-child(even) {
    margin-top: 22px;
  }

  .table-photo img {
    aspect-ratio: 4 / 5.2;
  }

  .table-actions {
    margin-top: 40px;
  }

  .sharing-media img {
    aspect-ratio: 4 / 3.2;
  }

  .sharing-card,
  .sharing-card.reveal,
  .sharing-card.reveal.is-visible {
    width: calc(100% - 24px);
    margin: -28px 12px 0 auto;
    padding: 30px 24px;
  }

  .brunch-heading {
    margin-bottom: 44px;
  }

  .brunch-days {
    margin-bottom: 1rem;
  }

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

  .brunch-photo:nth-child(even) {
    margin-top: 22px;
  }

  .brunch-photo img {
    aspect-ratio: 4 / 5.2;
  }

  .reservation-widget {
    min-height: 560px;
    padding: 10px;
  }

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

  .info-card {
    min-height: 0;
    gap: 12px;
    padding: 22px 0 24px;
  }

  .info-card-body {
    min-height: 0;
  }

  .footer-inner {
    min-height: 104px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-right: 105px;
  }

  .legal-container {
    width: calc(100vw - 32px);
  }

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

  .legal-header .header-inner {
    grid-template-columns: minmax(120px, 1fr) auto;
  }

  .legal-header .button {
    grid-column: 2;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .reveal,
  .sharing-card.reveal,
  .sharing-card.reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .table-photo:hover img,
  .brunch-photo:hover img,
  .button:hover,
  .floating-reservation:hover {
    transform: none;
  }
}
