:root {
  color-scheme: light;
  --paper: #f6f0e5;
  --paper-deep: #e9dfcf;
  --ink: #2f1e16;
  --ink-soft: #68574b;
  --line: #cdbda6;
  --accent: #b59349;
  --accent-dark: #80652d;
  --white: #fffaf0;
  --radius: 4px;
  --header-height: 72px;
  --shell: min(1180px, calc(100% - 40px));
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background-color 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.site-header.is-scrolled {
  color: var(--white);
  background: var(--ink);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgb(47 30 22 / 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 220ms var(--ease-out);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}

.desktop-nav a,
.desktop-nav button {
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a:not(.social-link) {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a:not(.social-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.nav-book {
  appearance: none;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  padding: 10px 14px;
  cursor: pointer;
}

.nav-book:hover,
.nav-book:focus-visible {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  transition: transform 180ms var(--ease-out), background-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgb(255 255 255 / 0.14);
}

.site-header.is-scrolled .social-link:hover,
.site-header.is-scrolled .social-link:focus-visible {
  background: rgb(255 250 240 / 0.14);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: center 46%;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.32) 0%, rgb(0 0 0 / 0.20) 50%, rgb(0 0 0 / 0.14) 100%);
}

.hero-content {
  width: var(--shell);
  margin: 0 auto;
  padding: 0 0 clamp(56px, 8vw, 98px);
}

.hero-kicker,
.eyebrow,
.dialog-kicker {
  margin: 0 0 16px;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.8rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero-copy {
  max-width: 500px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  font-weight: 600;
  text-shadow: 0 1px 20px rgb(0 0 0 / 0.25);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:active,
.nav-book:active,
.nav-toggle:active,
.gallery-item:active,
.dialog-close:active,
.lightbox-close:active,
.lightbox-nav:active {
  transform: translateY(1px) scale(0.97);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
  color: var(--white);
  border-color: var(--accent-dark);
}

.button-ghost {
  color: var(--white);
  background: rgb(0 0 0 / 0.18);
  border-color: rgb(255 255 255 / 0.80);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgb(0 0 0 / 0.30);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

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

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

.trust-strip {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--accent);
}

.trust-strip > * {
  position: relative;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px clamp(18px, 3vw, 36px);
  text-decoration: none;
  border-right: 1px solid rgb(181 147 73 / 0.42);
  overflow: hidden;
  transition: color 220ms ease, background-color 220ms ease;
}

.trust-strip > *::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.trust-strip > *:last-child {
  border-right: 0;
}

.trust-strip a:hover,
.trust-strip a:focus-visible {
  background: #443126;
}

.trust-strip strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.trust-strip span {
  color: #e8dcc9;
  font-size: 0.87rem;
}

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

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 8vw, 112px);
  align-items: center;
  padding-block: clamp(84px, 12vw, 156px);
}

.portrait-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.portrait-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter 500ms ease;
}

.about-media img {
  object-position: center 52%;
}

.about-copy h2,
.menu-section h2,
.gallery-section h2,
.reviews-section h2,
.visit-copy h2,
.dialog h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.about-copy p {
  max-width: 60ch;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.text-link {
  margin-top: 30px;
  padding: 0 0 4px;
  appearance: none;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--accent);
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.menu-section {
  padding-block: clamp(82px, 10vw, 136px);
  color: var(--white);
  background: var(--ink);
}

.eyebrow {
  color: var(--accent-dark);
}

.menu-section .eyebrow {
  color: var(--accent);
}

.section-intro {
  max-width: 54ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.menu-section .section-intro,
.menu-section .menu-actions p {
  color: #e8dcc9;
}

.menu-section .button-dark {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.menu-section .button-dark:hover,
.menu-section .button-dark:focus-visible {
  color: var(--white);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
  margin-top: 52px;
}

.menu-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  border-top: 4px solid var(--accent);
  overflow: hidden;
}

.menu-media {
  border-radius: 0;
}

.menu-card:nth-child(1) .menu-media img {
  object-position: center 45%;
}

.menu-card:nth-child(2) .menu-media img {
  object-position: center 52%;
}

.menu-card:nth-child(3) .menu-media img {
  object-position: center 58%;
}

.menu-card-copy {
  flex: 1;
  padding: 26px;
}

.menu-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.menu-card-copy > p {
  min-height: 52px;
  margin: 12px 0 22px;
  color: var(--ink-soft);
}

.menu-card dl {
  margin: 0;
}

.menu-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.menu-card dt,
.menu-card dd {
  margin: 0;
}

.menu-card dt {
  font-weight: 750;
}

.menu-card dd {
  text-align: right;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.menu-actions p {
  max-width: 38ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.gallery-section {
  padding-block: clamp(84px, 11vw, 148px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.gallery-item {
  --gallery-tilt: -0.45deg;
  position: relative;
  appearance: none;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 300ms var(--ease-out);
}

.gallery-item:nth-child(even) {
  --gallery-tilt: 0.45deg;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(14px) scale(0.88);
  transition: opacity 180ms ease, transform 260ms var(--ease-out);
}

.gallery-item img {
  transition: transform 700ms var(--ease-out), filter 300ms ease;
}

.gallery-item:nth-child(1) img { object-position: center 45%; }
.gallery-item:nth-child(2) img { object-position: center 48%; }
.gallery-item:nth-child(3) img { object-position: center 52%; }
.gallery-item:nth-child(4) img { object-position: center 50%; }
.gallery-item:nth-child(5) img { object-position: center 48%; }
.gallery-item:nth-child(6) img { object-position: center 46%; }

.reviews-section {
  padding-block: clamp(80px, 10vw, 132px);
  background: var(--paper-deep);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  padding: 34px clamp(22px, 3vw, 38px) 38px;
  border-right: 1px solid var(--line);
  transition: background-color 220ms ease, transform 260ms var(--ease-out);
}

.review:last-child {
  border-right: 0;
}

.stars {
  margin: 0;
  color: var(--accent-dark);
  letter-spacing: 0.12em;
}

.review blockquote {
  margin: 20px 0 24px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--paper);
}

.review-author {
  margin: 0;
  font-weight: 800;
}

.review a {
  color: var(--ink);
  text-underline-offset: 4px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  min-height: 720px;
}

.visit-map {
  min-height: 520px;
  overflow: hidden;
  background: var(--paper-deep);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  border: 0;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 94px);
  color: var(--white);
  background: var(--ink);
}

.visit-copy address {
  margin-top: 32px;
  font-style: normal;
  font-size: 1.1rem;
}

.visit-phone {
  width: fit-content;
  margin-top: 16px;
  color: var(--accent-dark);
  font-size: 1.45rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.visit-copy .visit-phone {
  color: var(--accent);
}

.opening-hours {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.visit-copy .opening-hours {
  border-color: rgb(181 147 73 / 0.48);
}

.opening-hours h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.opening-hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 7px 0;
}

.opening-hours strong {
  text-align: right;
}

.visit-note {
  max-width: 46ch;
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.visit-copy .visit-note {
  color: #e8dcc9;
}

.visit-copy .button-outline {
  color: var(--white);
  border-color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 44px max(20px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--accent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  border-radius: var(--radius);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 1.25rem;
}

.footer-brand span,
.footer-contact p {
  color: #e8dcc9;
  font-size: 0.88rem;
}

.footer-contact p {
  margin: 0 0 6px;
}

.footer-contact a {
  font-weight: 800;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-nav > a:not(.social-link) {
  text-decoration: none;
  font-weight: 700;
}

.dialog {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgb(0 0 0 / 0.30);
}

.dialog[open] {
  animation: dialog-enter 360ms var(--ease-out) both;
}

.dialog::backdrop {
  background: rgb(18 17 15 / 0.78);
}

.dialog[open]::backdrop {
  animation: backdrop-enter 240ms ease both;
}

.dialog-panel {
  position: relative;
  padding: clamp(30px, 6vw, 64px);
}

.dialog-panel-wide {
  width: 100%;
}

.menu-dialog {
  width: min(1100px, calc(100% - 28px));
}

.dialog-close,
.lightbox-close,
.lightbox-nav {
  appearance: none;
  min-height: 44px;
  padding: 9px 12px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), color 160ms ease, background-color 160ms ease;
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.dialog-kicker {
  color: var(--accent-dark);
}

.reservation-dialog h2 {
  padding-right: 90px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.form-grid label > span {
  font-weight: 750;
}

.form-wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #8b877f;
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgb(181 147 73 / 0.36);
  outline-offset: 1px;
  border-color: var(--accent-dark);
}

input::placeholder,
textarea::placeholder {
  color: #6b675f;
}

.form-error,
.form-status {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--accent);
  background: var(--paper-deep);
  color: var(--ink);
}

.form-submit {
  margin-top: 22px;
}

.menu-dialog-note {
  margin: 16px 0 28px;
  color: var(--ink-soft);
}

.full-menu-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.full-menu-pages img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}

.lightbox-dialog {
  width: min(1200px, calc(100% - 20px));
  max-height: calc(100svh - 20px);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.lightbox-panel {
  position: relative;
  height: calc(100svh - 20px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.lightbox-panel figure {
  min-width: 0;
  max-height: calc(100svh - 80px);
  display: grid;
  place-items: center;
  gap: 10px;
  margin: 0;
}

.lightbox-panel img {
  max-width: 100%;
  max-height: calc(100svh - 130px);
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  will-change: transform, opacity, filter;
}

.lightbox-panel figcaption {
  text-align: center;
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
}

.visually-hidden {
  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;
}

:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover img,
  .brand:focus-visible img {
    transform: rotate(-4deg) scale(1.08);
  }

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

  .button:hover,
  .nav-book:hover,
  .social-link:hover,
  .dialog-close:hover,
  .lightbox-close:hover,
  .lightbox-nav:hover {
    transform: translateY(-3px);
  }

  .trust-strip > *:hover::after,
  .trust-strip > *:focus-visible::after {
    transform: scaleX(1);
  }

  .text-link:hover,
  .text-link:focus-visible {
    color: var(--accent-dark);
    transform: translateX(5px);
  }

  .menu-card:hover .menu-media img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.03);
  }

  .gallery-item:hover,
  .gallery-item:focus-visible {
    z-index: 1;
  }

  .gallery-item:hover img,
  .gallery-item:focus-visible img {
    transform: scale(1.065);
    filter: saturate(1.08) contrast(1.03);
  }

  .gallery-item:hover::after,
  .gallery-item:focus-visible::after {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .review:hover {
    background: var(--paper);
    transform: translateY(-5px);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 12px;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: grid;
    padding: 12px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgb(35 30 24 / 0.16);
  }

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

  .mobile-nav a,
  .mobile-nav button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px;
    color: inherit;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    text-align: left;
    font-weight: 800;
  }

  .mobile-nav > *:last-child {
    border-bottom: 0;
  }

  .mobile-nav .mobile-social {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border-bottom: 0;
  }

  .mobile-nav .mobile-social:hover,
  .mobile-nav .mobile-social:focus-visible {
    background: var(--paper-deep);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-media {
    width: min(100%, 540px);
  }

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

  .menu-card {
    width: min(100%, 580px);
  }

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

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

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

  .review:last-child {
    border-bottom: 0;
  }

  .visit-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .visit-map {
    min-height: 520px;
  }

  .visit-copy {
    padding: 70px max(20px, calc((100vw - 760px) / 2));
  }

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

  .footer-nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 68px;
    --shell: calc(100% - 28px);
  }

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

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

  .hero {
    align-items: flex-end;
  }

  .hero-image {
    object-position: 51% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgb(0 0 0 / 0.32) 0%, rgb(0 0 0 / 0.20) 56%, rgb(0 0 0 / 0.14) 100%);
  }

  .hero-content {
    padding-bottom: max(42px, env(safe-area-inset-bottom));
  }

  .hero h1 {
    font-size: clamp(4.5rem, 23vw, 6.4rem);
  }

  .hero-copy {
    max-width: 22rem;
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip > * {
    min-height: 102px;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > *:nth-child(2) {
    border-right: 0;
  }

  .trust-strip > *:nth-child(3),
  .trust-strip > *:nth-child(4) {
    border-bottom: 0;
  }

  .about,
  .gallery-section {
    padding-block: 78px;
  }

  .menu-section,
  .reviews-section {
    padding-block: 74px;
  }

  .about-copy h2,
  .menu-section h2,
  .gallery-section h2,
  .reviews-section h2,
  .visit-copy h2,
  .dialog h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

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

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

  .visit-map {
    min-height: 430px;
  }

  .visit-copy {
    padding: 64px 20px;
  }

  .opening-hours p {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .opening-hours strong {
    text-align: left;
  }

  .visit-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .footer-nav {
    grid-column: auto;
  }

  .form-grid,
  .full-menu-pages {
    grid-template-columns: 1fr;
  }

  .dialog-panel {
    padding: 28px 20px 36px;
  }

  .dialog-close {
    top: 12px;
    right: 12px;
  }

  .reservation-dialog h2 {
    padding-right: 0;
    margin-top: 56px;
  }

  .lightbox-panel {
    grid-template-columns: 1fr 1fr;
    align-content: center;
  }

  .lightbox-panel figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-image {
    animation: hero-image-enter 1400ms var(--ease-out) both;
  }

  .hero-content > * {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(34px);
    animation: hero-enter 860ms var(--ease-out) forwards;
  }

  .hero-content > *:nth-child(2) { animation-delay: 90ms; }
  .hero-content > *:nth-child(3) { animation-delay: 180ms; }
  .hero-content > *:nth-child(4) { animation-delay: 270ms; }

  .mobile-nav:not([hidden]) {
    animation: mobile-nav-enter 220ms var(--ease-out) both;
    transform-origin: top right;
  }

  .motion-ready .reveal-rise {
    opacity: 0;
    transform: translateY(42px) scale(0.975);
    transition: opacity 700ms ease, transform 850ms var(--ease-out);
  }

  .motion-ready .reveal-slide {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 700ms ease, transform 900ms var(--ease-out);
  }

  .motion-ready .reveal-clip {
    opacity: 1;
  }

  .motion-ready .reveal-clip > img,
  .motion-ready .reveal-clip > iframe {
    opacity: 0.55;
    clip-path: inset(0 0 100% 0);
    transform: scale(1.035);
    transition: opacity 700ms ease, clip-path 950ms var(--ease-in-out), transform 950ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .motion-ready .reveal-rise,
  .motion-ready .reveal-slide {
    transition-delay: var(--reveal-delay, 0ms);
  }

  .motion-ready .reveal-rise.is-visible,
  .motion-ready .reveal-slide.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
  }

  .motion-ready .reveal-clip.is-visible > img,
  .motion-ready .reveal-clip.is-visible > iframe {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }

  @keyframes hero-enter {
    to {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
    }
  }

  @keyframes hero-image-enter {
    from {
      filter: blur(6px) saturate(0.88);
      transform: scale(1.09);
    }
    to {
      filter: blur(0) saturate(1);
      transform: scale(1);
    }
  }

  @keyframes mobile-nav-enter {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes dialog-enter {
    from {
      opacity: 0;
      transform: translateY(26px) scale(0.965);
      filter: blur(5px);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }

  @keyframes backdrop-enter {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

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