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

:root {
  --beige: #f4dec2;
  --beige-soft: #f6e8d4;
  --brown: #5a3a27;
  --brown-dark: #3c2418;
  --accent: #c05b5b;
  --accent-soft: #d96c6c;
  --text: #2c1b12;
  --muted: #6b5446;
  --shadow: 0 20px 60px rgba(58, 34, 21, 0.25);
}

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

body {
  margin: 0;
  font-family: 'Sora', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(192, 91, 91, 0.2), transparent 30%),
    linear-gradient(145deg, #f9eddc 0%, #f3d7b5 50%, #f6e1c3 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

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

.orb-two {
  background: #5a3a27;
  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(243, 215, 181, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90, 58, 39, 0.1);
}

.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(58, 34, 21, 0.25);
}

.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(90, 58, 39, 0.1);
  color: var(--brown);
}

.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(--brown), var(--brown-dark));
  color: #fefaf5;
  box-shadow: 0 12px 30px rgba(90, 58, 39, 0.35);
}

.btn.ghost {
  background: rgba(90, 58, 39, 0.12);
  color: var(--brown);
  border: 1px solid rgba(90, 58, 39, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(58, 34, 21, 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.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(90, 58, 39, 0.65) 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: #fff;
}

.hero__address span {
  color: rgba(255, 255, 255, 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(255, 255, 255, 0.5);
  color: #fff;
  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.15) 0%, rgba(0, 0, 0, 0.6) 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/sushi_template.png');
}

.hero-tile--reservation {
  background-image: url('../images/restaurant_ramen_and_sushi.jpg');
}

.hero-tile--space {
  background-image: url('../images/restaurant_interior.jpg');
}

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

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

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

.hero__feature-content .btn.ghost {
  background: rgb(255 235 223 / 44%)
}

.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(--brown);
}

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

.lede {
  color: #4b382d;
  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.8), rgba(244, 222, 194, 0.7));
  border: 1px solid rgba(90, 58, 39, 0.08);
  box-shadow: 0 18px 50px rgba(58, 34, 21, 0.15);
  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: #3c2c23;
  display: grid;
  gap: 6px;
}

.pill {
  background: rgba(90, 58, 39, 0.15);
  color: var(--brown);
  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: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

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

.highlight {
  background: rgba(255, 255, 255, 0.7);
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(90, 58, 39, 0.08);
  box-shadow: 0 12px 24px rgba(58, 34, 21, 0.12);
}

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

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

.about__frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(58, 34, 21, 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(58, 34, 21, 0.25);
}

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

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

.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(--brown);
  bottom: -30px;
  left: 10%;
}

.menu__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.filter-btn {
  border: 1px solid rgba(90, 58, 39, 0.2);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-btn.active {
  background: var(--brown);
  color: #fefaf5;
  box-shadow: 0 10px 24px rgba(58, 34, 21, 0.25);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.menu__grid--grouped {
  display: block;
}

.menu__grid--drinks {
  display: block;
}

.menu__category {
  padding: 6px 0 28px;
  border-bottom: 1px solid rgba(90, 58, 39, 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-fit, minmax(240px, 1fr));
  gap: 14px;
}

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

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

.menu__drink {
  padding: 8px 0 12px;
  border-bottom: 1px solid rgba(90, 58, 39, 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(--brown);
  white-space: nowrap;
}

.menu__drink-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(90, 58, 39, 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: #4b382d;
  font-size: 14px;
}
.menu__card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(58, 34, 21, 0.16);
  border: 1px solid rgba(90, 58, 39, 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(58, 34, 21, 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__number {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brown);
  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(--brown);
  line-height: 1;
}

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

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

.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: #4b382d;
  font-size: 14px;
}

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

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

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.review-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(90, 58, 39, 0.1);
  box-shadow: 0 16px 40px rgba(58, 34, 21, 0.14);
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.review-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 24px 60px rgba(58, 34, 21, 0.25);
}

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

.reviews__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.reviews__backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) brightness(0.85);
}

.reviews__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.7) 0%, rgba(58, 34, 21, 0.4) 50%, rgba(192, 91, 91, 0.35) 100%);
}

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

.reviews .section__header .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.reviews .section__header h2 {
  color: #fff4e7;
}

.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: #fff4e7;
}

.reviews__stats-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.reviews__stats-count {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff4e7;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.25);
}

.reviews__grid {
  margin-top: 20px;
}

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

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

.location__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.location__info {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(90, 58, 39, 0.1);
  display: grid;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(58, 34, 21, 0.16);
}

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

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

.contact__item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(90, 58, 39, 0.08);
  box-shadow: 0 12px 30px rgba(58, 34, 21, 0.12);
}

.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(58, 34, 21, 0.08);
  color: #3c2c23;
}

.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: #fffaf3;
  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(58, 34, 21, 0.35);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(90, 58, 39, 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(243, 215, 181, 0.85);
  border: 1px solid rgba(90, 58, 39, 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: #876f61;
}

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

.modal__variants {
  display: none;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(90, 58, 39, 0.15);
  background: rgba(246, 232, 212, 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: #4b382d;
  font-size: 14px;
}

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

.no-scroll {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .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__visuals,
  .location__grid {
    grid-template-columns: 1fr;
  }

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

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