@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --wall: #e6e3de;
  --wall-dark: #d3cec7;
  --metal: #1a1a18;
  --metal-soft: #2a2a27;
  --wood: #d1b18a;
  --wood-deep: #ab7f55;
  --moss: #4f6a3f;
  --moss-soft: #6f8a56;
  --text: #1b1a18;
  --muted: #6b6761;
  --accent: #f2c979;
  --accent-soft: #f7d89d;
  --shadow: 0 20px 60px rgba(26, 26, 24, 0.18);
  --nav-height: 80px;
}

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

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: #e6e2dd;
  background-image:
    url('../images/wall-texture.jpg'),
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.65), transparent 38%),
    radial-gradient(circle at 85% 0%, rgba(79, 106, 63, 0.18), transparent 35%),
    linear-gradient(160deg, #f1efec 0%, #e6e2dd 45%, #dbd6ce 100%);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, cover, cover, cover;
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.nav__title,
h1,
h2,
h3,
.hero__title,
.hero-tile__title {
  font-family: 'Bebas Neue', 'Manrope', sans-serif;
  letter-spacing: 0.06em;
}

.grain-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E");
  z-index: 1;
}

.grain-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(26, 26, 24, 0.06) 0,
    rgba(26, 26, 24, 0.06) 1px,
    transparent 1px,
    transparent 18px
  );
  opacity: 0.08;
}

.ambient-orb {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  z-index: 0;
}

.orb-one {
  background: #c9ad88;
  top: -120px;
  left: 5%;
}

.orb-two {
  background: #2c2b27;
  bottom: 10%;
  right: 10%;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(230, 227, 222, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 24, 0.12);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(26, 26, 24, 0.2);
}

.nav__name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__title {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav__tagline {
  font-size: 12px;
  color: var(--muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}

.nav__links a {
  padding: 8px 10px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav__links a:hover {
  background: rgba(26, 26, 24, 0.08);
  color: var(--metal);
}

.nav__cta {
  display: flex;
  gap: 10px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  font-family: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.solid {
  background: linear-gradient(135deg, var(--metal), var(--metal-soft));
  color: #f7f4ef;
  box-shadow: 0 12px 30px rgba(26, 26, 24, 0.35);
}

.btn.ghost {
  background: rgba(26, 26, 24, 0.06);
  color: var(--metal);
  border: 1px solid rgba(26, 26, 24, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(26, 26, 24, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.5fr);
  gap: 24px;
  padding: clamp(24px, 5vw, 48px);
  align-items: stretch;
  min-height: 520px;
  height: clamp(520px, calc(100vh - 80px), 900px);
}

.hero__feature {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  height: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__feature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero__feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.72) 0%, rgba(18, 18, 18, 0.4) 55%, rgba(171, 127, 85, 0.55) 100%);
}

.hero__feature-content {
  position: relative;
  z-index: 1;
  padding: 48px;
  color: #fff9ef;
  display: flex;
  flex-direction: column;
  /* gap: 18px; */
}

.hero__feature-footer {
  position: relative;
  z-index: 1;
  padding: 24px 48px 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent);
}

.hero__address p {
  margin: 0;
  font-weight: 600;
  color: #f7f4ef;
}

.hero__address span {
  color: rgba(247, 244, 239, 0.75);
  font-size: 14px;
}

.hero__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero__socials a {
  padding: 8px;
}

.hero__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 239, 0.55);
  color: #f7f4ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__icon:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.hero__tiles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.hero-tile {
  position: relative;
  border-radius: 24px;
  padding: 24px;
  min-height: 160px;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: center;
  flex: 1;
  min-height: 0;
}

.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-tile > * {
  position: relative;
  z-index: 1;
}

.hero-tile__title {
  margin: 0;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-tile__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-tile__arrow {
  font-size: 26px;
  font-weight: 600;
  align-self: flex-end;
}

.hero-tile--menu {
  background-image: url('../images/hoki-restaurant-interior-8.jpg');
}

.hero-tile--reservation {
  background-image: url('../images/hoki-restaurant-logo-bg.jpg');
}

.hero-tile--space {
  background-image: url('../images/hoki-restaurant-interior-7.jpg');
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(247, 244, 239, 0.8);
  margin: 0px;
}

.hero__title {
  font-size: 320%;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  color: #fff9ef;
  line-height: normal;
}

.hero__subtitle {
  margin: 0 0 20px;
  color: rgba(247, 244, 239, 0.85);
  font-size: 17px;
  max-width: 460px;
}

.hero__feature-content .btn.ghost {
  background: rgba(247, 244, 239, 0.2);
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.delayed {
  opacity: 0;
  transform: translateY(14px);
  animation: riseIn 0.9s ease forwards;
  animation-delay: var(--delay, 2s);
}

.delay-title { --delay: 0.8s; }
.delay-eyebrow { --delay: 0.86s; }
.delay-subtitle { --delay: 0.92s; }
.delay-actions { --delay: 0.98s; }
.delay-badges { --delay: 1.04s; }

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

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

.section {
  padding: 80px 48px;
  position: relative;
  z-index: 2;
}

.section__header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section__header h2 {
  margin: 8px 0;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--metal);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--moss);
  margin: 0;
}

.lede {
  color: #4d4944;
  margin: 0;
}

.deliver__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.deliver__card {
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(230, 227, 222, 0.92)),
    repeating-linear-gradient(90deg, rgba(26, 26, 24, 0.05) 0, rgba(26, 26, 24, 0.05) 1px, transparent 1px, transparent 16px);
  border: 1px solid rgba(26, 26, 24, 0.1);
  box-shadow: 0 18px 50px rgba(26, 26, 24, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.deliver__card h3 {
  margin: 0 0 6px;
  line-height: 1;
}

.deliver__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deliver__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deliver__brand h3 {
  margin: 0;
}
.deliver__brand p {
  margin: 0;
}

.deliver__brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  padding: 10px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deliver__card ul {
  padding-left: 20px;
  margin: 0;
  color: #403b36;
  display: grid;
  gap: 6px;
}

.pill {
  background: rgba(26, 26, 24, 0.12);
  color: var(--metal);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.deliver__card--wolt {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.deliver__card--wolt::after {
  display: none;
}

.deliver__card--wolt .deliver__brand img {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.deliver__card--wolt .pill {
  background: rgba(69, 156, 218, 0.25);
  color: #459cda;
  border: 1px solid rgba(69, 156, 218, 0.4);
}

.deliver__card--wolt ul,
.deliver__card--wolt h3,
.deliver__card--wolt p {
  color: inherit;
}

.deliver__card--wolt .btn.solid {
  background: #459cda;
  color: #001423;
  box-shadow: 0 15px 40px rgba(69, 156, 218, 0.35);
}

.deliver__card--bolt {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.deliver__card--bolt ul,
.deliver__card--bolt h3,
.deliver__card--bolt p {
  color: inherit;
}

.deliver__card--bolt .pill {
  background: rgba(71, 132, 93, 0.15);
  color: #47845d;
  border: 1px solid rgba(71, 132, 93, 0.3);
}

.deliver__card--bolt .btn.ghost {
  background: rgba(71, 132, 93, 0.1);
  border: 1px solid rgba(71, 132, 93, 0.6);
  color: #47845d;
  box-shadow: 0 15px 35px rgba(71, 132, 93, 0.25);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

.about__label {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about__signal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(26, 26, 24, 0.08);
  color: var(--metal);
  border: 1px solid rgba(26, 26, 24, 0.16);
}

.about__content h2 {
  margin: 8px 0 12px;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.about__highlights--rail {
  grid-template-columns: 1fr;
}

.highlight {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(230, 227, 222, 0.9)),
    repeating-linear-gradient(90deg, rgba(26, 26, 24, 0.08) 0, rgba(26, 26, 24, 0.08) 2px, transparent 2px, transparent 14px);
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(26, 26, 24, 0.1);
  box-shadow: 0 12px 24px rgba(26, 26, 24, 0.12);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.highlight > * {
  position: relative;
  z-index: 1;
}

.highlight--moss {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45)),
    url('../images/moss-gb.jpg');
  color: #f7f4ef;
}

.highlight--moss span,
.highlight--moss p {
  color: #f7f4ef;
}

.highlight--slat {
  background-image:
    linear-gradient(140deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6)),
    url('../images/wood-slat-wall.jpg');
  color: #f7f4ef;
}

.highlight--slat span,
.highlight--slat p {
  color: #f7f4ef;
}

.highlight span {
  display: inline-block;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.about__visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

.about__frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(26, 26, 24, 0.2);
  transform: perspective(900px) rotateX(1deg) rotateY(-2deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.about__frame:hover {
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(-4px);
  box-shadow: 0 30px 70px rgba(26, 26, 24, 0.25);
}

.about__frame--large {
  height: 380px;
}

.about__frame--medium {
  height: 240px;
}

.about__frame--small {
  height: 160px;
}

.about__stack {
  display: grid;
  gap: 12px;
}

.about__frame--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.about__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.35) 100%);
  mix-blend-mode: multiply;
}

.glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.glow-one {
  background: var(--accent);
  top: -20px;
  right: 10%;
}

.glow-two {
  background: var(--metal);
  bottom: -30px;
  left: 10%;
}

.menu__filters {
  position: sticky;
  top: var(--nav-height, 0px);
  z-index: 9;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 26, 24, 0.25) transparent;
  -webkit-overflow-scrolling: touch;
  background: transparent;
}

.menu__filters::-webkit-scrollbar {
  height: 6px;
}

.menu__filters::-webkit-scrollbar-track {
  background: transparent;
}

.menu__filters::-webkit-scrollbar-thumb {
  background: rgba(26, 26, 24, 0.25);
  border-radius: 999px;
}

.menu__filters.is-sticky {
  background: rgba(230, 227, 222, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 24, 0.12);
}

.filter-btn {
  border: 1px solid rgba(26, 26, 24, 0.18);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.filter-btn.active {
  background: var(--metal);
  color: #f7f4ef;
  box-shadow: 0 10px 24px rgba(26, 26, 24, 0.25);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 240px));
  gap: 14px;
  justify-content: flex-start;
}

.menu__grid--grouped {
  display: block;
}

.menu__grid--drinks {
  display: block;
}

.menu__category {
  padding: 6px 0 28px;
  border-bottom: 1px solid rgba(26, 26, 24, 0.12);
  margin-bottom: 24px;
}

.menu__category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu__category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.menu__category-count {
  font-size: 13px;
  color: var(--muted);
}

.menu__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 240px));
  gap: 14px;
  justify-content: flex-start;
}

.menu__allergy {
  margin-top: 18px;
  color: #4d4944;
  font-size: 14px;
  font-style: italic;
}

.link-button {
  border: none;
  background: none;
  color: var(--metal);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0 4px;
}

/* --- New menu layout --- */
.menu-desktop {
  display: block;
}

.menu-mobile {
  display: none;
  position: relative;
}

.menu-swiper {
  position: relative;
  overflow: visible;
}

.menu-swiper__viewport {
  padding: 8px 28px 46px;
  overflow: visible;
}

.menu-swiper .swiper-wrapper {
  align-items: stretch;
}

.menu-swiper .swiper-slide {
  height: auto;
}

.menu-swiper__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(26, 26, 24, 0.12);
  background: rgba(26, 26, 24, 0.92);
  color: #f7f4ef;
  box-shadow: 0 12px 34px rgba(26, 26, 24, 0.28);
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  filter: drop-shadow(0 12px 24px rgba(26, 26, 24, 0.22));
}

.menu-swiper__btn:hover {
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 18px 36px rgba(26, 26, 24, 0.32);
  background: rgba(26, 26, 24, 0.98);
}

.menu-swiper__btn:disabled {
  opacity: 0.4;
  pointer-events: none;
  box-shadow: none;
}

.menu-swiper__btn--prev {
  left: 6px;
}

.menu-swiper__btn--next {
  right: 6px;
}

.menu-swiper__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.menu-swiper__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(26, 26, 24, 0.25);
  opacity: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.menu-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--metal);
  transform: scale(1.15);
}

.menu__card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  gap: 12px;
}

.menu-card__image {
  height: 200px;
  position: relative;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.menu-card__tag {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
}

.menu-card__tag--wide {
  bottom: auto;
  top: 12px;
  background: rgba(26, 26, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f7f4ef;
  text-align: center;
  padding: 10px 14px;
  border-radius: 12px;
}

.menu-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 6px 12px;
  flex: 1;
}

.menu-card__actions {
  margin-top: auto;
  min-height: 46px;
  display: flex;
  align-items: flex-end;
  padding-left: 10px;
}

.menu-card__spacer {
  display: block;
  height: 38px;
}

.menu-modal .modal__dialog {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  height: 82vh;
  max-height: 82vh;
  max-width: 740px;
  width: min(92vw, 740px);
  padding: 42px 16px 18px;
  gap: 14px;
}

.menu-modal__categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 4px 14px;
  margin: 0 -2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 26, 24, 0.25) transparent;
}

.menu-modal__category {
  border: 1px solid rgba(26, 26, 24, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: transparent;
  font-weight: 700;
  color: var(--metal);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.menu-modal__category.active {
  background: var(--metal);
  color: #f7f4ef;
}

.menu-modal__category:hover:not(.active) {
  background: rgba(26, 26, 24, 0.08);
  transform: translateY(-2px);
  color: var(--metal);
}

.menu-modal__category:hover {
  color: var(--metal);
}

.menu-modal__category.active:hover {
  color: #f7f4ef;
  background: var(--metal);
  transform: none;
}

.menu-modal__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 6px 2px 2px;
  max-height: 100%;
  min-height: 0;
  overflow-y: auto;
}

.menu-modal__items .menu-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(26, 26, 24, 0.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}
  border: 1px solid rgba(26, 26, 24, 0.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Item modal */
.item-modal .modal__dialog {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 12px;
  max-width: 900px;
  width: min(96vw, 900px);
  padding: 20px 18px 18px;
}

.item-modal__top {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}

.item-modal__top h3 {
  margin: 0;
  font-size: 24px;
}

.item-modal__price {
  margin-left: 0;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(26, 26, 24, 0.92);
  color: #f7f4ef;
  font-weight: 800;
}

.item-modal__top .modal__close {
  margin-left: auto;
}

.item-modal__gallery {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  min-height: 220px;
  max-height: 320px;
}

.item-modal__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.item-modal__slide {
  min-width: 100%;
  height: 100%;
}

.item-modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.item-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(26, 26, 24, 0.8);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.item-modal__nav--prev { left: 12px; }
.item-modal__nav--next { right: 12px; }

.item-modal__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.item-modal__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(26, 26, 24, 0.25);
  padding: 0;
  border: none;
  display: inline-block;
  line-height: 1;
  min-width: 9px;
  min-height: 9px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.item-modal__dot.is-active {
  background: var(--metal);
  transform: scale(1.15);
}

.item-modal__content {
  display: grid;
  gap: 10px;
}

.item-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 4px;
}

.item-modal__header h3 {
  margin: 0;
  font-size: 24px;
}

.item-modal__price {
  font-weight: 700;
  color: var(--accent);
}

.item-modal__subtitle {
  margin: 0;
  color: #5a554f;
  font-size: 14px;
  font-style: italic;
}

.item-modal__desc {
  margin: 0;
  color: #403c36;
}

.item-modal__variants {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid #efeee9;
  display: grid;
  gap: 8px;
}

.item-modal__variants-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2f2c27;
}

.item-modal__variants-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.item-modal__variant {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(26, 26, 24, 0.05);
  display: grid;
  gap: 6px;
}

.item-modal__variant-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.item-modal__variant-head--group {
  grid-template-columns: auto 1fr;
}

.item-modal__variant-code {
  min-width: 26px;
  font-weight: 800;
  color: var(--accent);
}

.item-modal__variant-name {
  font-weight: 700;
  color: #2f2c27;
}

.item-modal__variant-price {
  font-weight: 800;
  color: #2f2c27;
}

.item-modal__variant-desc {
  margin: 0 0 0 34px;
  font-size: 13px;
  color: #5a554f;
}

.item-modal__variant--group {
  background: rgba(26, 26, 24, 0.04);
  border: 1px solid #efeee9;
}

.item-modal__subvariants-list {
  list-style: none;
  margin: 2px 0 0 0;
  padding: 0 0 0 10px;
  display: grid;
  gap: 6px;
}

.item-modal__subvariant {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(26, 26, 24, 0.05);
  display: grid;
  gap: 4px;
}

.item-modal__subtitle:empty,
.item-modal__desc:empty {
  display: none;
}

.item-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-modal__allergens {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: #5a554f;
}

.item-modal__tag {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(26, 26, 24, 0.08);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.allergen-modal__dialog {
  max-width: 720px;
  width: min(92vw, 720px);
  padding: 26px 20px 20px;
  display: grid;
  gap: 12px;
}

.allergen-modal__content {
  max-height: 70vh;
  overflow-y: auto;
}

.allergen-modal__note {
  margin: 0 0 10px 0;
  color: #5a554f;
}

.allergen-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #2a2722;
}

.allergen-list ul {
  margin: 6px 0 0 0;
  padding-left: 16px;
}

.menu-modal__total {
  margin: 0 0 6px 2px;
  font-size: 13px;
  font-style: italic;
  color: #6f6a63;
  line-height: 1.3;
  white-space: nowrap;
}

.menu-card__header h3 {
  margin: 4px 0 0;
  font-size: 22px;
}

.menu-card__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.menu-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 8px 10px;
  border-radius: 12px;
}

.menu-item > div {
  min-width: 0;
}

.menu-item__thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: #e6e2db;
}

.menu-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item__title {
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--metal);
}

.menu-item__subtitle {
  margin: 0;
  color: #5a554f;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-item__price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.menu-card__seeall {
  margin-top: auto;
  align-self: flex-start;
  border: 1px solid rgba(26, 26, 24, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.seeall__count {
  color: #7b756e;
  font-size: 12px;
  margin-left: 6px;
}

.menu-card__seeall:hover {
  background: var(--metal);
  color: #f7f4ef;
  border-color: var(--metal);
}

.menu-mobile__categories {
  position: sticky;
  top: var(--nav-height);
  z-index: 20;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 12px 10px 10px;
  margin-left: -10px;
  margin-right: -10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 26, 24, 0.25) transparent;
  -webkit-overflow-scrolling: touch;
}

.menu-mobile__categories.is-sticky {
  background: linear-gradient(180deg, rgba(230, 227, 222, 0.95), rgba(230, 227, 222, 0.7));
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(26, 26, 24, 0.14);
}

.menu-mobile__category {
  border: 1px solid rgba(26, 26, 24, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  color: var(--metal);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  white-space: nowrap;
  flex: 0 0 auto;
}

.menu-mobile__category.active {
  background: var(--metal);
  color: #f7f4ef;
  box-shadow: 0 10px 26px rgba(26, 26, 24, 0.2);
}

.menu-mobile__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 12px;
}

.menu-mobile .menu-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(26, 26, 24, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(26, 26, 24, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu__drinks-list {
  display: grid;
  gap: 18px;
}

.menu__drink {
  padding: 8px 0 12px;
  border-bottom: 1px solid rgba(26, 26, 24, 0.12);
  cursor: pointer;
}

.menu__drink:last-child {
  border-bottom: none;
}

.menu__drink-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu__drink-name {
  font-weight: 600;
  font-size: 18px;
  color: var(--metal);
  white-space: nowrap;
}

.menu__drink-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(26, 26, 24, 0.4);
  margin-top: -6px;
}

.menu__drink-price {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.menu__drink-desc {
  margin: 6px 0 0;
  color: #4d4944;
  font-size: 14px;
}
.menu__card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26, 26, 24, 0.16);
  border: 1px solid rgba(26, 26, 24, 0.08);
  display: grid;
  grid-template-rows: 180px auto;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu__card:hover {
  transform: translateY(-6px) rotateZ(-0.2deg);
  box-shadow: 0 22px 50px rgba(26, 26, 24, 0.22);
}

.menu__img {
  overflow: hidden;
  position: relative;
}

.menu__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.menu__card:hover .menu__img img {
  transform: scale(1.1);
}

.menu__img-placeholder {
  width: 100%;
  height: 100%;
  background: #d6d6d6;
  border-radius: inherit;
}

.menu__number {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--metal);
  min-width: 27px;
  height: 27px;
  padding: 3px 6px 0 6px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.menu__meta {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu__meta h3 {
  margin: 0;
  color: var(--metal);
  line-height: 1;
}

.menu__meta h3:not(:has(+ .menu__subtitle)) {
  margin-bottom: 4px;
}

.menu__subtitle {
  margin: 0 0 4px 0;
  font-size: 13px;
  color: #7b756e;
}

.menu__meta-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.menu__desc {
  margin: 0;
  color: #4d4944;
  font-size: 14px;
}

@media (max-width: 640px) {
  .menu__grid,
  .menu__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: stretch;
  }
}

.pill--muted {
  background: rgba(26, 26, 24, 0.12);
  color: var(--muted);
  border: 1px solid rgba(26, 26, 24, 0.12);
  font-size: 11px;
  padding: 4px 8px;
}

.pill--price {
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent);
  border: 1px solid rgba(242, 201, 121, 0.35);
  font-size: 11px;
  padding: 4px 8px;
}

.reviews {
  position: relative;
  overflow: hidden;
}

.reviews__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.reviews__media {
  display: grid;
  gap: 16px;
}

.reviews__video-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 24px 60px rgba(26, 26, 24, 0.25);
}

.reviews__video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.reviews__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.55) 0%, rgba(26, 26, 24, 0.25) 55%, rgba(79, 106, 63, 0.35) 100%);
}

.reviews__video-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(26, 26, 24, 0.7);
  color: #f7f4ef;
  border: 1px solid rgba(247, 244, 239, 0.35);
}

.reviews__stats-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(26, 26, 24, 0.12);
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55)),
    url('../images/moss-gb.jpg');
  background-size: cover;
  background-position: center;
  color: #f7f4ef;
  box-shadow: 0 18px 50px rgba(26, 26, 24, 0.22);
}

.reviews__stats-card h2 {
  margin: 6px 0 10px;
}

.reviews__stats-card .eyebrow {
  color: rgba(247, 244, 239, 0.7);
}

.reviews__stats-card h2,
.reviews__stats-card .reviews__stats-label,
.reviews__stats-card .reviews__stats-value,
.reviews__stats-card .reviews__stats-count {
  color: #f7f4ef;
}

.reviews__stats-card .reviews__stats-count {
  border: 1px solid rgba(247, 244, 239, 0.35);
  background: rgba(26, 26, 24, 0.4);
}

.reviews__stats {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.reviews__stats-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.reviews__stats-value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--metal);
}

.reviews__stats-label {
  color: var(--muted);
  font-size: 14px;
}

.reviews__stats-count {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 24, 0.2);
  color: var(--metal);
  font-weight: 600;
  background: rgba(26, 26, 24, 0.06);
}

.reviews__content {
  position: relative;
  z-index: 1;
}

.reviews__list {
  display: grid;
  gap: 14px;
}

.review-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(26, 26, 24, 0.12);
  box-shadow: 0 12px 30px rgba(26, 26, 24, 0.12);
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--moss), var(--wood-deep));
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(79, 106, 63, 0.1), transparent 35%);
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-card:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 24px 60px rgba(26, 26, 24, 0.2);
}

.review__rating {
  font-weight: 700;
  color: var(--metal);
  margin-bottom: 8px;
}

.review__author {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

.location {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(26, 26, 24, 0.35),
    0 10px 24px rgba(26, 26, 24, 0.2);
}

.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/wood-slat-wall.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.12);
  z-index: 0;
}

.location::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 24px 40px rgba(0, 0, 0, 0.25),
    inset 0 -24px 40px rgba(0, 0, 0, 0.18);
  z-index: 0;
  pointer-events: none;
}

.location__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "intro map"
    "card map";
  gap: 16px;
  align-items: stretch;
  border-radius: 0;
  padding: 18px;
  background: rgba(230, 227, 222, 0.08);
}

.location__panel > * {
  position: relative;
  z-index: 1;
}

.location__intro {
  grid-area: intro;
  background: rgba(26, 26, 24, 0.65);
  border-radius: 18px;
  padding: 18px;
  color: #f7f4ef;
  border: 1px solid rgba(247, 244, 239, 0.18);
}

.location__intro .eyebrow {
  color: rgba(247, 244, 239, 0.75);
}

.location__intro .lede {
  color: rgba(247, 244, 239, 0.85);
}

.location__intro .btn.solid {
  background: linear-gradient(135deg, #f2c979, #d9a85d);
  color: #1a1a18;
  box-shadow: 0 14px 30px rgba(242, 201, 121, 0.35);
}

.location__map {
  grid-area: map;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(26, 26, 24, 0.3);
}

.location__card {
  grid-area: card;
  background: rgba(247, 244, 239, 0.92);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(26, 26, 24, 0.12);
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(26, 26, 24, 0.16);
}

.location__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #f7f4ef;
}

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

.contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.contact__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 26, 24, 0.22);
  height: 320px;
}

.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.contact__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.45) 0%, rgba(26, 26, 24, 0.2) 60%, rgba(79, 106, 63, 0.25) 100%);
}

.contact__media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(26, 26, 24, 0.7);
  color: #f7f4ef;
  border: 1px solid rgba(247, 244, 239, 0.35);
  z-index: 1;
}

.contact__details .section__header {
  margin-bottom: 18px;
}

.contact__item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(26, 26, 24, 0.08);
  box-shadow: 0 12px 30px rgba(26, 26, 24, 0.12);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact__item a {
  font-weight: 600;
  color: var(--metal);
}

.contact__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(26, 26, 24, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--metal);
  flex: 0 0 auto;
}

.label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer {
  padding: 28px 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(26, 26, 24, 0.08);
  color: #403b36;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.footer__brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.footer__links {
  display: flex;
  gap: 12px;
}

.footer__note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
  padding: 20px;
  overflow-y: auto;
}

.modal.open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  background: #f3f1ed;
  border-radius: 18px;
  max-width: 860px;
  width: min(90vw, 860px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  padding: 14px;
  z-index: 1;
  box-shadow: 0 22px 60px rgba(26, 26, 24, 0.35);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(26, 26, 24, 0.08);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.modal__media {
  border-radius: 14px;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100%;
  min-height: 300px;
  background: #000;
}

.slider__track {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slide.active {
  opacity: 1;
}

.slider__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(230, 227, 222, 0.85);
  border: 1px solid rgba(26, 26, 24, 0.3);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
}

.slider__control.prev { left: 12px; }
.slider__control.next { right: 12px; }

.modal__content {
  padding: 10px;
  display: grid;
  gap: 10px;
}

.modal__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal__heading h3 {
  margin: 0;
  line-height: 1;
}

.modal__subtitle {
  margin: 0;
  font-size: 14px;
  color: #7b756e;
}

.modal__subdesc {
  margin: 0;
  font-size: 15px;
  color: #6d6862;
}

.modal__variants {
  display: none;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(26, 26, 24, 0.15);
  background: rgba(230, 227, 222, 0.6);
}

.modal__variants-title {
  margin: 0 0 6px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal__variants-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
  color: #4d4944;
  font-size: 14px;
}

.modal__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 1024px) {
  :root {
    --nav-height: 72px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .hero__feature {
    aspect-ratio: auto;
    min-height: 460px;
  }

  .hero__feature-content,
  .hero__feature-footer {
    padding: 32px;
  }

  .nav {
    padding: 14px 20px;
    gap: 12px;
  }

  .nav__links {
    display: none;
  }

  .section {
    padding: 64px 20px;
  }

  .about,
  .location__panel,
  .reviews__layout,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .location__panel {
    grid-template-areas:
      "intro"
      "map"
      "card";
  }

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

  .menu-desktop {
    display: none;
  }

  .menu-mobile {
    display: block;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  p,
  li,
  .hero__subtitle,
  .section__header .lede,
  .deliver__card p,
  .menu__desc,
  .menu__drink-desc,
  .menu__allergy,
  .review-card p,
  .contact__item,
  .location__info,
  .modal__subdesc {
    font-size: 1rem;
  }

  h1,
  .hero__title {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.15;
  }

  h2,
  .section__header h2,
  .about__content h2 {
    font-size: clamp(22px, 7vw, 26px);
  }

  h3 {
    font-size: 18px;
  }

  .nav__cta {
    display: none;
  }

  .hero {
    padding: 0 0 28px;
    width: 100%;
  }

  .hero__feature-content,
  .hero__feature-footer {
    padding: 22px;
  }

  .hero__feature {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .hero__feature-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__socials {
    width: 100%;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .hero__tiles {
    gap: 12px;
    display: none;
  }

  .section {
    padding: 32px 10px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 24px 20px;
  }

  .deliver__card .pill {
    display: none;
  }

  .about__highlights {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .about__highlights .highlight:last-child {
    grid-column: 1 / -1;
  }

  .menu__category-header .eyebrow {
    color: var(--text);
  }

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

  .about__highlights--rail {
    grid-template-columns: 1fr;
  }
}


.menu-modal__items .menu-item:hover,
.menu__card .menu-item:hover {
  background: rgba(26, 26, 24, 0.04);
  transform: translateY(-2px);
}
