:root {
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 72px;
  --radius: 8px;
  --container: 1240px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  line-height: 1.5;
  letter-spacing: 0;
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

body[data-theme="day"] {
  --bg: #f5fbff;
  --surface: #ffffff;
  --surface-2: #e9f6ff;
  --text: #10243a;
  --muted: #5c6f82;
  --line: #cfe2ef;
  --accent: #1479b8;
  --accent-strong: #075c92;
  --accent-soft: #d8efff;
  --header-bg: rgba(248, 252, 255, 0.9);
  --shadow: 0 18px 50px rgba(30, 96, 137, 0.12);
  --hero-filter: brightness(1.02) saturate(0.92);
  --hero-overlay: linear-gradient(90deg, rgba(4, 23, 38, 0.8) 0%, rgba(4, 23, 38, 0.36) 48%, rgba(4, 23, 38, 0.05) 80%);
}

body[data-theme="night"] {
  --bg: #05070b;
  --surface: #0d121b;
  --surface-2: #111d2c;
  --text: #f4f7fb;
  --muted: #a3afbd;
  --line: #253447;
  --accent: #6fb9e9;
  --accent-strong: #d6efff;
  --accent-soft: #12283a;
  --header-bg: rgba(4, 7, 11, 0.9);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --hero-filter: brightness(0.66) saturate(0.9) contrast(1.08);
  --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(3, 8, 15, 0.54) 54%, rgba(3, 8, 15, 0.14) 82%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 64px);
  background: var(--header-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 50px;
  flex: 0 0 58px;
}

.brand-symbol {
  grid-area: 1 / 1;
  width: 46px;
  height: 46px;
  stroke-width: 1.55;
}

.brand-symbol-night,
body[data-theme="night"] .brand-symbol-day {
  display: none;
}

body[data-theme="night"] .brand-symbol-night {
  display: block;
}

.brand-name {
  font: 700 22px/1 var(--font-display);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  transition: color var(--transition);
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a[aria-current="page"] {
  color: var(--text);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button.gallery-header-link,
.icon-button.menu-header-link,
.icon-button.events-header-link {
  display: none;
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.icon-button svg,
.button svg,
.service-item svg,
.address-link svg,
.footer-links svg,
.booking-note svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--bg);
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
}

.theme-toggle button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.theme-toggle button[aria-pressed="true"] {
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.theme-toggle.compact button {
  width: 34px;
  height: 34px;
  padding: 0;
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
}

.theme-toggle.large {
  padding: 4px;
}

.theme-toggle.large button {
  min-width: 106px;
  height: 42px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(820px, 86svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: var(--hero-position, center 52%);
  filter: var(--hero-filter);
  transform: scale(1.01);
  transition: filter 500ms ease;
}

.hero-overlay {
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  margin: 0 0 clamp(76px, 10vh, 116px) clamp(20px, 7vw, 110px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.hero .eyebrow {
  color: #a8dfff;
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font: 700 112px/0.88 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 28px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* The daytime photo carries the visual identity; keep its copy out of the image. */
body[data-theme="day"] .hero .eyebrow,
body[data-theme="day"] .hero h1,
body[data-theme="day"] .hero-copy {
  display: none;
}

body[data-theme="day"] .hero-content {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto clamp(76px, 10vh, 116px);
}

body[data-theme="day"] .hero-actions {
  justify-content: center;
  margin-top: 0;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-strong);
}

body[data-theme="night"] .button.primary:hover {
  color: #06111c;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
}

.button.outline {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 64px);
  bottom: 34px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.section {
  scroll-margin-top: var(--header-height);
}

.section-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.menu-section {
  padding: 90px 0 104px;
  background: var(--bg);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
}

.section-heading h1,
.section-heading h2,
.booking-copy h2,
.location-heading h2,
.drawer-header h2,
.confirmation-dialog h2 {
  margin: 0;
  font: 700 58px/1 var(--font-display);
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.booking-copy > p {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.menu-search {
  position: relative;
  z-index: 24;
  width: min(720px, 100%);
  margin-top: 34px;
}

.menu-search-field {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 10px 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(14, 49, 72, 0.08);
  transition: border-color var(--transition), box-shadow var(--transition);
}

body[data-theme="night"] .menu-search-field {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.menu-search-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}

.menu-search-field > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--accent);
}

.menu-search-field input {
  min-width: 0;
  flex: 1;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
}

.menu-search-field input::placeholder {
  color: var(--muted);
  font-weight: 500;
}

.menu-search-field input:focus {
  border: 0;
  box-shadow: none;
}

.menu-search-field input::-webkit-search-cancel-button {
  display: none;
}

.menu-search-clear {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.menu-search-clear:hover {
  color: var(--text);
  background: var(--surface-2);
}

.menu-search-clear[hidden] {
  display: none;
}

.menu-search-clear svg {
  width: 17px;
  height: 17px;
}

.menu-search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: min(440px, 62vh);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(5, 23, 36, 0.2);
}

.menu-search-results[hidden] {
  display: none;
}

.menu-search-result {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto 20px;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  text-align: left;
}

.menu-search-result:last-child {
  border-bottom: 0;
}

.menu-search-result:hover,
.menu-search-result[aria-selected="true"] {
  background: var(--surface-2);
}

.menu-search-result:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.menu-search-result img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 5px;
  background: var(--surface-2);
}

.menu-search-result img.contain {
  object-fit: contain;
  padding: 4px;
  background: #fff;
}

.menu-search-result-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-search-result-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-search-result-copy strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-search-result-price {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.menu-search-result > svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
}

.menu-search-empty {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.menu-search-empty svg {
  width: 18px;
  height: 18px;
}

.menu-search + .category-tabs {
  margin-top: 24px;
}

.category-tabs {
  display: flex;
  gap: 8px;
  margin: 42px 0 28px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  flex: 0 0 auto;
  min-height: 39px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.category-tab[aria-selected="true"] {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.category-tab-offer {
  color: #151009;
  border-color: #e8b94f;
  background: #f2ca6c;
  box-shadow: 0 8px 22px rgba(232, 185, 79, 0.2);
}

.category-tab-offer::before {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #151009;
  content: "";
}

.category-tab-offer:hover,
.category-tab-offer:focus-visible {
  transform: translateY(-1px);
  color: #090704;
  border-color: #f7d98c;
  outline: none;
  background: #f7d98c;
  box-shadow: 0 10px 26px rgba(232, 185, 79, 0.28);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(14, 49, 72, 0.06);
}

body[data-theme="night"] .menu-card {
  box-shadow: none;
}

.menu-card-media {
  position: relative;
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--surface-2);
  cursor: zoom-in;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.menu-card-media img.contain {
  object-fit: contain;
  padding: 8px;
  background: #fff;
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.035);
}

.menu-card-media:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.menu-card-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #10243a;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), background var(--transition);
}

.menu-card-media:hover .menu-card-zoom {
  transform: scale(1.06);
  background: #fff;
}

.menu-card-zoom svg {
  width: 15px;
  height: 15px;
}

.menu-card-content {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  padding: 17px;
}

.menu-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.menu-card h3 {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 17px;
  line-height: 1.25;
}

.menu-price {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 900;
}

.menu-description {
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.add-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  align-self: flex-end;
  margin-top: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--surface-2);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.add-button:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.add-button svg {
  width: 17px;
  height: 17px;
}

.menu-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.menu-more-wrap[hidden] {
  display: none;
}

.service-strip {
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}

.about-section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.about-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 {
  max-width: 660px;
  margin: 8px 0 22px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.about-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.service-item:last-child {
  border-right: 0;
}

.service-item > svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.service-item div {
  display: flex;
  flex-direction: column;
}

.service-item span {
  color: var(--muted);
  font-size: 13px;
}

.gallery-section {
  padding: 104px 0;
  background: var(--bg);
}

.gallery-page {
  min-height: 100vh;
}

.gallery-heading {
  align-items: end;
}

.gallery-count {
  flex: 0 0 auto;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  margin: 34px 0 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.gallery-filters button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.gallery-filters button:hover {
  color: var(--text);
  border-color: var(--accent);
}

.gallery-filters button[aria-selected="true"] {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 5;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: #101820;
  cursor: pointer;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
  filter: brightness(0.9);
}

.gallery-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.gallery-card-type {
  position: absolute;
  z-index: 1;
}

.gallery-card-type {
  top: 11px;
  right: 11px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(4, 8, 13, 0.64);
  backdrop-filter: blur(8px);
}

.gallery-card-type svg {
  width: 16px;
  height: 16px;
}

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.gallery-more-wrap[hidden] {
  display: none;
}

.gallery-dialog {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: var(--text);
  background: #05070b;
}

.gallery-dialog[open] {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.gallery-dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(4, 8, 13, 0.72);
  backdrop-filter: blur(8px);
}

.gallery-dialog-media {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #05070b;
}

.gallery-dialog-media img,
.gallery-dialog-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.gallery-dialog-controls {
  min-height: 68px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: #05070b;
}

.gallery-dialog-controls span {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.gallery-dialog-controls .icon-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

body.gallery-open {
  overflow: hidden;
}

.events-page {
  min-height: 100vh;
}

.events-intro {
  padding: 104px 0 64px;
  background: var(--bg);
}

.events-intro-inner {
  max-width: 760px;
}

.events-intro h1 {
  margin: 8px 0 14px;
  font: 700 clamp(48px, 7vw, 88px)/0.95 var(--font-display);
}

.events-intro p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.featured-event {
  padding: 72px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.featured-event-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.event-poster-video {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #08101a;
}

.event-poster-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #08101a;
}

.featured-event-copy h2 {
  margin: 10px 0 18px;
  font: 700 clamp(42px, 6vw, 74px)/0.98 var(--font-display);
}

.event-lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

.event-price-row {
  display: flex;
  gap: 12px;
  margin: 28px 0 32px;
}

.event-price-row span {
  min-width: 150px;
  padding: 15px 18px;
  border-left: 3px solid var(--accent);
  background: var(--bg);
}

.event-price-row strong {
  display: block;
  margin-top: 3px;
  font-size: 24px;
}

.event-actions,
.events-footer-action {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-moments {
  padding: 104px 0;
  background: var(--bg);
}

.event-moments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.event-moment {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.event-moment button {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #08101a;
  cursor: zoom-in;
}

.event-moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.event-moment button:hover img {
  transform: scale(1.025);
}

.event-moment > div {
  padding: 22px;
}

.event-moment h3 {
  margin: 0 0 7px;
  font: 700 25px/1.05 var(--font-display);
}

.event-moment p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.events-footer-action {
  justify-content: center;
  margin-top: 38px;
}

.event-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #05070b;
}

.event-dialog[open] {
  display: grid;
  place-items: center;
}

.event-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.event-dialog img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(4, 8, 13, 0.72);
}

.booking-section {
  padding: 104px 0;
  background: var(--surface);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.booking-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.order-preview {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.order-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.order-preview p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.order-preview ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.order-preview li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.booking-form label:not(.checkbox-label) {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.time-field,
.guest-field,
.phone-field {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.time-input-control,
.number-input-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  min-width: 0;
}

.phone-input-control {
  display: grid;
  grid-template-columns: minmax(148px, 0.82fr) minmax(0, 1.18fr);
  gap: 8px;
  min-width: 0;
}

.country-select,
.phone-input-control input {
  min-width: 0;
}

.country-select {
  position: relative;
}

.country-select-trigger {
  width: 100%;
  height: 47px;
  display: grid;
  grid-template-columns: auto auto minmax(16px, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.country-select-trigger:hover,
.country-select-trigger:focus-visible,
.country-select.is-open .country-select-trigger {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

.country-select-trigger > svg {
  width: 16px;
  height: 16px;
  justify-self: end;
  color: var(--muted);
  transition: transform var(--transition);
}

.country-select.is-open .country-select-trigger > svg {
  transform: rotate(180deg);
}

.country-flag-stack {
  min-width: 25px;
  display: inline-flex;
  align-items: center;
}

.country-flag-stack img {
  width: 24px;
  height: 18px;
  flex: 0 0 24px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--text) 16%, transparent);
}

.country-flag-stack img + img {
  margin-left: -8px;
}

.country-select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  width: min(320px, calc(100vw - 48px));
  max-height: 286px;
  display: grid;
  gap: 2px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.country-select-menu[hidden] {
  display: none;
}

.country-select-option {
  width: 100%;
  min-height: 42px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 0;
  border-radius: 4px;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.country-select-option:hover,
.country-select-option:focus-visible,
.country-select-option[aria-selected="true"] {
  outline: none;
  background: var(--surface-2);
}

.country-select-option[aria-selected="true"] {
  color: var(--accent-strong);
}

.country-option-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.time-input-control input,
.number-input-control input {
  min-width: 0;
  border-radius: 5px 0 0 5px;
}

.number-input-control input {
  appearance: textfield;
  -moz-appearance: textfield;
}

.number-input-control input::-webkit-inner-spin-button,
.number-input-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.time-stepper,
.number-stepper {
  display: grid;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 5px 5px 0;
  background: var(--surface);
}

.time-stepper button,
.number-stepper button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.time-stepper button + button,
.number-stepper button + button {
  border-top: 1px solid var(--line);
}

.time-stepper button:hover,
.time-stepper button:focus-visible,
.number-stepper button:hover,
.number-stepper button:focus-visible {
  color: var(--text);
  background: var(--surface-2);
}

.time-stepper svg,
.number-stepper svg {
  width: 14px;
  height: 14px;
}

.optional {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.form-row {
  display: grid;
  gap: 14px;
}

.two-columns {
  grid-template-columns: 1fr 1fr;
}

.booking-identity-row {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.three-columns {
  grid-template-columns: 1.25fr 1fr 0.72fr;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: none;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input,
select {
  height: 47px;
  padding: 0 13px;
}

textarea {
  min-height: 94px;
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.checkbox-label input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.submit-button {
  width: 100%;
  margin-top: 2px;
}

.form-footnote {
  margin: -6px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}

.location-section {
  padding: 96px 0 0;
  background: var(--bg);
}

.location-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 36px;
}

.location-heading > div:first-child {
  min-width: 0;
  flex: 1 1 auto;
}

.location-contact-links {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 18px 28px;
}

.address-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.address-link svg {
  flex: 0 0 auto;
  color: var(--accent);
}

.opening-hours {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(520px, 1.6fr);
  gap: 24px 54px;
  align-items: start;
  padding: 0 0 38px;
}

.opening-hours-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.opening-hours-title > svg {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  color: var(--accent);
}

.opening-hours-title .eyebrow {
  margin-bottom: 6px;
}

.opening-hours-title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
}

.opening-hours-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.opening-hours-list > div {
  min-width: 0;
  padding: 16px 22px 4px;
  border-left: 1px solid var(--line);
}

.opening-hours-list > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.opening-hours-list dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.opening-hours-list dd {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.opening-hours-note {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.map-wrap {
  height: min(520px, 58vw);
  min-height: 360px;
  border-block: 1px solid var(--line);
  filter: saturate(0.72) contrast(0.98);
}

body[data-theme="night"] .map-wrap {
  filter: grayscale(0.45) invert(0.9) hue-rotate(180deg) brightness(0.78) contrast(1.15);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 46px 0;
  background: #05070b;
  color: #f4f7fb;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font: 700 19px/1.2 var(--font-display);
  text-transform: uppercase;
}

.footer-brand span:last-child,
.site-footer p {
  color: #9da8b6;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-footer p {
  justify-self: end;
  margin: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(430px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 26px;
  background: var(--surface);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 280ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  font-size: 40px;
}

.cart-items {
  overflow-y: auto;
  padding: 12px 3px 12px 0;
}

.empty-cart {
  height: 100%;
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
}

.empty-cart svg {
  width: 32px;
  height: 32px;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 64px;
  height: 64px;
  border-radius: 5px;
  object-fit: cover;
}

.cart-line img.contain {
  object-fit: contain;
  padding: 3px;
  background: #fff;
}

.cart-line-copy {
  min-width: 0;
}

.cart-line-copy strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.cart-line-copy span {
  color: var(--muted);
  font-size: 12px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
}

.quantity-control button,
.cart-remove {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.quantity-control button {
  width: 25px;
  height: 25px;
}

.quantity-control svg,
.cart-remove svg {
  width: 13px;
  height: 13px;
}

.cart-remove {
  width: 30px;
  height: 30px;
  color: var(--muted);
}

.cart-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 18px;
}

.checkout-button {
  width: 100%;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cart-footer small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
}

.product-dialog {
  width: min(1040px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(5px);
}

.product-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  color: #10243a;
  background: rgba(255, 255, 255, 0.92);
}

.product-dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  min-height: min(680px, calc(100dvh - 32px));
}

.product-dialog-media {
  min-width: 0;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080b11;
}

.product-dialog-media img {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 32px);
  object-fit: contain;
}

.product-dialog-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 42px 42px;
  overflow-y: auto;
}

.product-dialog-content h2 {
  margin: 7px 0 10px;
  overflow-wrap: anywhere;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.product-dialog-price {
  color: var(--accent);
  font-size: 23px;
}

.product-dialog-description {
  margin: 24px 0;
  color: var(--muted);
}

.product-dialog-fact {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 13px;
  margin: 0 0 28px;
  padding: 17px;
  border-left: 3px solid var(--accent);
  background: var(--surface-2);
}

.product-dialog-fact[hidden] {
  display: none;
}

.product-dialog-fact svg {
  width: 20px;
  color: var(--accent);
}

.product-dialog-fact strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

.product-dialog-fact p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-dialog-add {
  width: 100%;
  margin-top: auto;
}

.confirmation-dialog {
  width: min(470px, calc(100% - 32px));
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.confirmation-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.confirmation-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
}

.confirmation-icon svg {
  width: 26px;
  height: 26px;
}

.confirmation-dialog h2 {
  font-size: 42px;
}

.confirmation-dialog > p:not(.eyebrow) {
  color: var(--muted);
}

.confirmation-code {
  display: block;
  margin: 22px 0;
  color: var(--accent);
  font-size: 24px;
}

.dialog-done {
  min-width: 150px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  background: #101820;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 800;
  transform: translate(-50%, 20px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .icon-button.gallery-header-link,
  .icon-button.menu-header-link,
  .icon-button.events-header-link {
    display: inline-grid;
  }

  .hero h1 {
    font-size: 92px;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-event-layout {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 44px;
  }

  .event-moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
  }

  .location-contact-links {
    flex-wrap: wrap;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-self: end;
  }

  .site-footer p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    gap: 10px;
    padding: 8px 14px;
  }

  .brand-name,
  .instagram-link {
    display: none;
  }

  .brand-mark {
    width: 50px;
    height: 44px;
    flex-basis: 50px;
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
  }

  .header-actions {
    gap: 6px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero > img {
    object-position: var(--hero-position-mobile, 66% center);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 72px;
  }

  body[data-theme="day"] .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 72px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 19px;
  }

  .section-heading h1,
  .section-heading h2,
  .booking-copy h2,
  .location-heading h2 {
    font-size: 44px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 160px;
  }

  .hero-scroll {
    display: none;
  }

  .section-inner {
    width: min(var(--container), calc(100% - 32px));
  }

  .menu-section,
  .gallery-section,
  .booking-section,
  .event-moments {
    padding: 70px 0;
  }

  .events-intro {
    padding: 70px 0 48px;
  }

  .events-intro h1 {
    font-size: 54px;
  }

  .featured-event {
    padding: 56px 0;
  }

  .featured-event-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .event-poster-video {
    max-width: 460px;
  }

  .featured-event-copy h2 {
    font-size: 48px;
  }

  .event-moments-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .location-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-contact-links {
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }

  .opening-hours {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .opening-hours-note {
    grid-column: 1;
  }

  .opening-hours-list {
    grid-template-columns: 1fr;
  }

  .opening-hours-list > div,
  .opening-hours-list > div:first-child {
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .opening-hours-list > div:last-child {
    border-bottom: 0;
  }

  .theme-toggle.large {
    width: 100%;
  }

  .theme-toggle.large button {
    flex: 1;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-dialog {
    width: 100vw;
    max-height: 100dvh;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .product-dialog-layout {
    min-height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 58dvh) auto;
    overflow-y: auto;
  }

  .product-dialog-media {
    min-height: 0;
  }

  .product-dialog-media img {
    max-height: 58dvh;
  }

  .product-dialog-content {
    min-height: 42dvh;
    justify-content: flex-start;
    padding: 32px 22px 24px;
    overflow: visible;
  }

  .product-dialog-content h2 {
    font-size: 38px;
  }

  .product-dialog-description {
    margin: 18px 0;
  }

  .gallery-heading {
    gap: 8px;
  }

  .gallery-count {
    margin: 0;
  }

  .gallery-filters {
    width: calc(100% + 16px);
    margin-top: 28px;
    padding-right: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-dialog {
    width: 100vw;
    height: 100dvh;
  }

  .gallery-dialog-controls {
    min-height: 62px;
    padding: 10px 14px;
  }

  .menu-card-content {
    min-height: 164px;
    padding: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .about-media {
    aspect-ratio: 16 / 10;
  }

  .service-item {
    min-height: 92px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .booking-copy {
    position: static;
  }

  .map-wrap {
    height: 430px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .site-footer p {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .theme-toggle.compact button {
    width: 31px;
    height: 31px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    flex: 0 0 auto;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-search {
    margin-top: 26px;
  }

  .menu-search-field {
    min-height: 52px;
    padding-left: 15px;
  }

  .menu-search-result {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 11px;
    padding-right: 12px;
  }

  .menu-search-result img {
    width: 52px;
    height: 52px;
  }

  .menu-search-result > svg {
    display: none;
  }

  .menu-search-result-price {
    font-size: 13px;
  }

  .gallery-card-type {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }

  .menu-card {
    display: grid;
    grid-template-columns: 124px 1fr;
  }

  .menu-card-media {
    height: 100%;
    aspect-ratio: auto;
  }

  .menu-card-content {
    min-height: 150px;
  }

  .two-columns,
  .three-columns {
    grid-template-columns: 1fr;
  }

  .phone-input-control {
    grid-template-columns: minmax(136px, 0.9fr) minmax(0, 1.1fr);
  }

  .booking-form {
    padding: 22px 18px;
  }

  .confirmation-dialog {
    padding: 38px 24px 28px;
  }

  .cart-drawer {
    padding: 20px 17px;
  }
}

@media (max-width: 340px) {
  .phone-input-control {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
