:root {
  color-scheme: light;
  --page: oklch(98.5% 0.008 238);
  --surface: oklch(100% 0 0);
  --surface-soft: oklch(95.5% 0.025 235);
  --text: oklch(29% 0.055 245);
  --muted: oklch(46% 0.045 240);
  --line: oklch(86.5% 0.035 235);
  --accent: oklch(57% 0.165 247);
  --accent-strong: oklch(46% 0.145 247);
  --accent-ink: oklch(100% 0 0);
  --navy: oklch(39% 0.11 245);
  --on-dark: oklch(99% 0.006 235);
  --on-dark-muted: oklch(91% 0.025 235);
  --focus: oklch(66% 0.16 239);
  --shadow: 0 20px 60px oklch(31% 0.08 245 / 0.16);
  --radius: 4px;
  --header-height: 72px;
  --max-width: 1320px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--on-dark);
  transition:
    background-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--on-dark);
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: oklch(46% 0.145 247 / 0.97);
  box-shadow: 0 12px 36px oklch(27% 0.07 245 / 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 32px), var(--max-width));
  height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--on-dark);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  object-fit: cover;
  transition: transform 260ms var(--ease-out);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  color: var(--on-dark);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

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

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

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.social-link:active {
  transform: scale(0.94);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

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

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.86rem;
}

.button-light {
  border-color: var(--on-dark);
  background: var(--on-dark);
  color: var(--accent-strong);
}

.button-outline-light {
  border-color: rgb(255 255 255 / 0.72);
  background: oklch(39% 0.11 245 / 0.28);
  color: var(--on-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 23px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease-drawer);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

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

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

.mobile-menu {
  height: calc(100dvh - var(--header-height));
  padding: 22px 20px 32px;
  background: oklch(46% 0.145 247 / 0.99);
  color: var(--on-dark);
  opacity: 0;
  transform: translateY(-16px) scale(0.985);
  transform-origin: top right;
  transition:
    opacity 180ms var(--ease-out),
    transform 260ms var(--ease-drawer);
}

.mobile-menu.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 13px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.15);
  font-size: clamp(1.6rem, 8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 180ms var(--ease-out),
    transform 260ms var(--ease-drawer);
}

.mobile-menu.is-visible nav a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.is-visible nav a:nth-child(2) {
  transition-delay: 35ms;
}

.mobile-menu.is-visible nav a:nth-child(3) {
  transition-delay: 70ms;
}

.mobile-menu.is-visible nav a:nth-child(4) {
  transition-delay: 105ms;
}

.mobile-menu.is-visible nav a:nth-child(5) {
  transition-delay: 140ms;
}

.mobile-menu-actions {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 180ms var(--ease-out) 130ms,
    transform 260ms var(--ease-drawer) 130ms;
}

.mobile-menu.is-visible .mobile-menu-actions {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-actions {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.mobile-menu-actions .text-link {
  color: var(--on-dark);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: var(--on-dark);
}

.hero-media,
.hero-camera,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
  transform: scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.hero-camera {
  display: block;
  transform: translate3d(0, 0, 0) scale(1.06);
  transform-origin: center;
  transition: transform 700ms var(--ease-out);
  will-change: transform;
}

.hero-media img {
  object-fit: cover;
  object-position: center 52%;
  animation: hero-background-focus 1.15s var(--ease-out) both;
}

.hero-scrim {
  z-index: -2;
  background: rgb(0 0 0 / 0.18);
}

.hero-content {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: calc(var(--header-height) + 36px) 0 clamp(62px, 9vh, 100px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.5rem, 8.2vw, 7.2rem);
  font-weight: 760;
  letter-spacing: -0.058em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--on-dark-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
}

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

.intro-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.intro-strip-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-strip p {
  margin: 0;
  padding: 22px clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.intro-strip p + p {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(78px, 10vw, 140px) 0;
}

.section-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-copy h2,
.visit-content h2,
.reviews-heading h2,
.dialog-heading h2 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 740;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading p,
.dialog-heading p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-section {
  background: var(--page);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(46px, 9vw, 140px);
}

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

.about-copy .section-kicker,
.visit-content .section-kicker,
.dialog-heading .section-kicker {
  color: var(--accent);
}

.about-copy > p:not(.section-kicker) {
  margin: 28px 0 22px;
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--accent-strong);
  font-weight: 760;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition:
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.about-photo {
  position: relative;
  margin: 0;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  z-index: -1;
  border: 1px solid var(--accent);
}

.about-photo picture {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-soft);
  transform-origin: bottom;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform 900ms var(--ease-out);
}

.menu-section {
  background: var(--surface-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.menu-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    border-color 260ms var(--ease-out);
}

.menu-card-photo {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--page);
}

.menu-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.menu-card:first-child .menu-card-photo img {
  object-position: center 48%;
}

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

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

.menu-card-content {
  padding: clamp(22px, 3vw, 34px);
}

.menu-card h3 {
  margin: 0;
  color: var(--accent-strong);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.menu-card-content > p {
  min-height: 52px;
  margin: 12px 0 24px;
  color: var(--muted);
}

.dish-list {
  margin: 0;
}

.dish-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.dish-list > div:last-child {
  border-bottom: 0;
}

.dish-list dt {
  min-width: 0;
  font-weight: 720;
  line-height: 1.35;
}

.dish-list dd {
  margin: 0;
  color: var(--accent-strong);
  font-weight: 800;
  white-space: nowrap;
}

.menu-footer {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.menu-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-section {
  background: var(--page);
}

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

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface-soft);
  cursor: zoom-in;
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.gallery-item:nth-child(1) img {
  object-position: center 45%;
}

.gallery-item:nth-child(2) img {
  object-position: center 47%;
}

.gallery-item:nth-child(3) img {
  object-position: center 49%;
}

.gallery-item:nth-child(4) img {
  object-position: center 50%;
}

.gallery-item:nth-child(5) img {
  object-position: center 50%;
}

.gallery-item:nth-child(6) img {
  object-position: center 52%;
}

.reviews-section {
  background: var(--surface);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.rating-value {
  margin: 0;
  color: var(--accent-strong);
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.78;
}

.rating-label {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.review {
  min-width: 0;
  padding: 32px clamp(20px, 3vw, 38px) 8px;
  transition:
    background-color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.review + .review {
  border-left: 1px solid var(--line);
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-soft);
}

.review-meta h3 {
  margin: 0;
  font-size: 1rem;
}

.review-meta p {
  margin: 2px 0 0;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.review-text {
  min-height: 82px;
  margin: 24px 0 12px;
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1.55;
}

.visit-section {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  background: var(--page);
}

.visit-map {
  min-height: 680px;
  background: var(--surface-soft);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 680px;
}

.visit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(32px, 7vw, 110px);
}

.visit-content address {
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
  font-size: 1.05rem;
}

.visit-phone {
  width: fit-content;
  margin-top: 14px;
  color: var(--accent-strong);
  font-size: 1.5rem;
  font-weight: 780;
  text-decoration: none;
}

.hours {
  max-width: 520px;
  margin-top: 36px;
}

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

.hours dl {
  margin: 0;
}

.hours dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

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

.hours dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

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

.hours-note {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  background: var(--accent-strong);
  color: var(--on-dark);
}

.footer-inner {
  width: min(calc(100% - 32px), var(--max-width));
  min-height: 210px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 48px;
}

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

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.footer-brand p,
.footer-contact p {
  margin: 0;
}

.footer-name {
  font-size: 1.35rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p:last-child,
.footer-contact p {
  color: var(--on-dark-muted);
  font-size: 0.9rem;
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-contact a {
  font-weight: 760;
  text-decoration: none;
}

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

.footer-nav > a:not(.social-link) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
}

dialog {
  padding: 0;
  border: 0;
  color: var(--text);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 180ms var(--ease-out),
    transform 260ms var(--ease-drawer),
    overlay 260ms allow-discrete,
    display 260ms allow-discrete;
}

dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

dialog.is-closing {
  opacity: 0;
  transform: translateY(12px) scale(0.975);
}

@starting-style {
  dialog[open] {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
}

dialog::backdrop {
  background: oklch(25% 0.07 245 / 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition:
    opacity 220ms var(--ease-out),
    overlay 260ms allow-discrete,
    display 260ms allow-discrete;
}

dialog[open]::backdrop {
  opacity: 1;
}

dialog.is-closing::backdrop {
  opacity: 0;
}

@starting-style {
  dialog[open]::backdrop {
    opacity: 0;
  }
}

.booking-dialog {
  width: min(calc(100% - 24px), 860px);
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.dialog-close,
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition:
    background-color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.dialog-close span,
.lightbox-close span {
  grid-area: 1 / 1;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.dialog-close span:first-child,
.lightbox-close span:first-child {
  transform: rotate(45deg);
}

.dialog-close span:last-child,
.lightbox-close span:last-child {
  transform: rotate(-45deg);
}

.dialog-heading {
  max-width: 620px;
  padding-right: 48px;
}

.booking-form {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 720;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  color: var(--text);
  transition:
    border-color 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.booking-form textarea {
  min-height: 104px;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 88%, transparent);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--focus);
  outline: 2px solid color-mix(in srgb, var(--focus) 35%, transparent);
  outline-offset: 1px;
}

.booking-form [aria-invalid="true"] {
  border-color: #bd2d35;
}

.form-helper,
.form-status {
  margin: 0;
  font-size: 0.86rem;
}

.form-helper {
  color: var(--muted);
}

.form-status {
  min-height: 1.4em;
  color: var(--accent-strong);
  font-weight: 700;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lightbox {
  width: min(calc(100% - 20px), 1180px);
  max-width: 1180px;
  max-height: calc(100dvh - 20px);
  overflow: hidden;
  background: transparent;
}

.lightbox-shell {
  position: relative;
  min-height: min(84dvh, 900px);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  background: oklch(25% 0.07 245);
  color: var(--on-dark);
}

.lightbox-close {
  border-color: rgb(255 255 255 / 0.28);
  background: oklch(32% 0.08 245 / 0.74);
  color: var(--on-dark);
}

.lightbox figure {
  min-width: 0;
  margin: 0;
  padding: 24px 0;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(84dvh - 90px);
  margin: 0 auto;
  object-fit: contain;
}

.lightbox figcaption {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--on-dark-muted);
  font-size: 0.9rem;
  text-align: center;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  justify-self: center;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.08);
  color: var(--on-dark);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
}

.js .about-photo.reveal picture {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 900ms var(--ease-out) 80ms;
}

.js .about-photo.reveal img {
  transform: scale(1.09);
}

.js .about-photo.reveal.is-visible picture {
  clip-path: inset(0);
}

.js .about-photo.reveal.is-visible img {
  transform: scale(1);
}

.menu-grid .reveal:nth-child(2),
.reviews-list .reveal:nth-child(2) {
  transition-delay: 65ms;
}

.menu-grid .reveal:nth-child(3),
.reviews-list .reveal:nth-child(3) {
  transition-delay: 130ms;
}

.gallery-grid .reveal:nth-child(3n + 2) {
  transition-delay: 55ms;
}

.gallery-grid .reveal:nth-child(3n + 3) {
  transition-delay: 110ms;
}

@media (hover: hover) and (pointer: fine) {
  .brand-link:hover .brand-mark {
    transform: rotate(-4deg) scale(1.08);
  }

  .social-link:hover {
    background: rgb(255 255 255 / 0.12);
    transform: translateY(-2px);
  }

  .button:hover {
    border-color: var(--accent-strong);
    background: var(--accent-strong);
    box-shadow: 0 10px 24px oklch(31% 0.08 245 / 0.16);
    transform: translateY(-2px);
  }

  .button-light:hover {
    border-color: oklch(93% 0.025 235);
    background: oklch(93% 0.025 235);
    color: var(--accent-strong);
  }

  .button-outline-light:hover {
    border-color: var(--on-dark);
    background: oklch(39% 0.11 245 / 0.62);
  }

  .button-secondary:hover {
    border-color: var(--accent);
    background: var(--surface-soft);
    color: var(--text);
  }

  .text-link:hover {
    color: var(--accent);
    transform: translateX(4px);
  }

  .menu-card:hover {
    z-index: 1;
    border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
    box-shadow: 0 24px 48px oklch(31% 0.08 245 / 0.15);
    transform: translateY(-8px);
  }

  .menu-card:hover .menu-card-photo img {
    transform: scale(1.055);
  }

  .gallery-item:hover {
    z-index: 1;
    box-shadow: 0 24px 48px oklch(31% 0.08 245 / 0.2);
    transform: translateY(-8px) rotate(0.45deg);
  }

  .gallery-item:nth-child(even):hover {
    transform: translateY(-8px) rotate(-0.45deg);
  }

  .gallery-item:hover img {
    transform: scale(1.065);
  }

  .review:hover {
    background: var(--surface-soft);
    transform: translateY(-4px);
  }

  .dialog-close:hover,
  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: color-mix(in srgb, currentColor 12%, transparent);
    transform: scale(1.06);
  }
}

.dialog-close:active,
.lightbox-close:active,
.lightbox-nav:active,
.gallery-item:active {
  transform: scale(0.96);
}

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

@media (min-width: 768px) {
  .hero-content {
    padding-top: calc(var(--header-height) + 50px);
  }

  .js .hero .eyebrow,
  .js .hero h1,
  .js .hero-copy,
  .js .hero-actions {
    opacity: 1;
    transform: translateY(0);
    animation: hero-in 760ms var(--ease-out) forwards;
  }

  .js .hero h1 {
    animation-delay: 90ms;
  }

  .js .hero-copy {
    animation-delay: 170ms;
  }

  .js .hero-actions {
    animation-delay: 250ms;
  }
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-background-focus {
  0% {
    opacity: 0.62;
    transform: scale(1.18) rotate(0.7deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav,
  .header-book {
    display: none;
  }

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

  .menu-toggle {
    display: grid;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 54px;
  }

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

  .visit-content {
    padding: 64px 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 26px;
    padding: 44px 0;
  }

  .footer-contact {
    grid-column: 1;
  }

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

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

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

  .header-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand-link {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions > .social-link {
    display: none;
  }

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

  .hero-media img {
    object-position: center 50%;
  }

  .hero-content {
    width: min(calc(100% - 32px), var(--max-width));
    padding: calc(var(--header-height) + 28px) 0 max(44px, env(safe-area-inset-bottom));
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(3.25rem, 15vw, 5.1rem);
    line-height: 0.92;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  .intro-strip-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .intro-strip p {
    padding: 14px 20px;
    text-align: left;
  }

  .intro-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about-copy h2,
  .visit-content h2,
  .reviews-heading h2,
  .dialog-heading h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

  .about-photo {
    width: calc(100% - 18px);
  }

  .about-photo::before {
    inset: 14px -14px -14px 14px;
  }

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

  .menu-card-content > p {
    min-height: 0;
  }

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

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

  .reviews-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

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

  .review {
    padding: 28px 0;
  }

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

  .review-text {
    min-height: 0;
  }

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

  .visit-map,
  .visit-map iframe {
    min-height: 420px;
  }

  .visit-content {
    padding: 72px 20px;
  }

  .hours dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hours dd {
    text-align: left;
  }

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

  .footer-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0;
  }

  .footer-contact,
  .footer-nav {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .dialog-shell {
    padding: 64px 20px 28px;
  }

  .dialog-heading {
    padding-right: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .form-actions .button {
    width: 100%;
  }

  .lightbox-shell {
    min-height: calc(100dvh - 20px);
    grid-template-columns: 54px minmax(0, 1fr) 54px;
  }

  .lightbox figure {
    padding: 64px 0 28px;
  }

  .lightbox figure img {
    max-height: calc(100dvh - 170px);
  }

  .lightbox-nav {
    width: 42px;
    height: 50px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 3.18rem;
  }

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

  .hero-actions .button {
    min-height: 46px;
  }

  .lightbox-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .lightbox-nav {
    width: 38px;
  }
}

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

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

  .hero-camera {
    transform: scale(1.06) !important;
    transition: none !important;
    will-change: auto;
  }

  .hero-media img {
    animation: none !important;
    transform: none;
    will-change: auto;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .button-outline-light,
  dialog::backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
