:root {
  --red: #d0121a;
  --red-deep: #9e0c12;
  --ink: #171412;
  --ink-soft: #3d3833;
  --paper: #f6f2ec;
  --paper-2: #ebe4da;
  --ash: #cfc6ba;
  --line: rgba(23, 20, 18, 0.12);
  --white: #fffdf9;
  --shadow: 0 24px 60px rgba(23, 20, 18, 0.18);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(208, 18, 26, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(23, 20, 18, 0.06), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(23, 20, 18, 0.42);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 253, 249, 0.08);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(246, 242, 236, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled .logo {
  color: var(--red);
  text-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.16);
  border: 1px solid rgba(255, 253, 249, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled .nav {
  background: rgba(23, 20, 18, 0.05);
  border-color: var(--line);
  box-shadow: none;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav a:hover {
  background: rgba(255, 253, 249, 0.18);
}

.site-header.is-scrolled .nav a {
  color: var(--ink-soft);
}

.site-header.is-scrolled .nav a:hover {
  background: rgba(208, 18, 26, 0.08);
  color: var(--ink);
}

.nav a::after {
  display: none;
}

.nav a:hover::after {
  transform: none;
}

.header-phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  white-space: nowrap;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(208, 18, 26, 0.92);
  box-shadow: 0 8px 20px rgba(208, 18, 26, 0.28);
}

.site-header.is-scrolled .header-phone {
  color: var(--white);
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--white);
  transition: background 0.3s ease;
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  animation: hero-zoom 14s var(--ease) forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 20, 18, 0.35) 0%, rgba(23, 20, 18, 0.55) 45%, rgba(23, 20, 18, 0.82) 100%),
    linear-gradient(90deg, rgba(208, 18, 26, 0.28), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 8rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vw, 5rem);
  max-width: 56rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-place {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 249, 0.78);
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  margin: 1.1rem 0 1.75rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 253, 249, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-ghost {
  border-color: rgba(255, 253, 249, 0.45);
  color: var(--white);
  background: rgba(23, 20, 18, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 253, 249, 0.1);
  border-color: var(--white);
}

.menu-section {
  display: block;
}

.menu-section .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.menu-section,
.about-section,
.contact-section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  animation: rise 0.8s var(--ease) both;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.section-head h2,
.about-copy h2,
.contact-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-copy {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-copy a {
  color: var(--red);
  font-weight: 600;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 2.25rem;
  padding: 0.55rem 0.35rem;
  border: 0;
  width: min(90vw, 70rem);
  max-width: 100%;
  box-sizing: border-box;
  position: sticky;
  top: 4.4rem;
  z-index: 15;
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
}

.menu-tab {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.menu-tab::after {
  display: none;
}

.menu-tab:hover {
  border-color: rgba(208, 18, 26, 0.35);
  color: var(--ink);
}

.menu-tab.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(208, 18, 26, 0.25);
}

.menu-panels {
  width: 100%;
  display: grid;
  gap: 2rem;
}

.menu-panel {
  display: grid;
  gap: 1.35rem;
  width: min(90vw, 70rem);
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  scroll-margin-top: 8.5rem;
}

.menu-category-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.menu-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.35rem 1.5rem 1.15rem;
  box-shadow: 0 10px 30px rgba(23, 20, 18, 0.05);
  width: 100%;
}

.menu-group-title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: none;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  column-gap: 0.65rem;
  row-gap: 0.35rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(23, 20, 18, 0.06);
  animation: none;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item-info {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  min-width: 0;
  grid-column: 1;
}

.menu-item-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.menu-item-gram {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}

.menu-item-dots {
  display: none;
}

.menu-item-price {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--red);
  white-space: nowrap;
  grid-column: 2;
}

.item-cart-controls {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.add-cart-btn {
  appearance: none;
  border: 1px solid rgba(208, 18, 26, 0.35);
  background: rgba(208, 18, 26, 0.08);
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.add-cart-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.item-qty-box {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.item-cart-controls.has-qty .add-cart-btn {
  display: none;
}

.item-cart-controls.has-qty .item-qty-box {
  display: inline-flex;
}

.qty-btn {
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.qty-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.item-qty,
.qty-val {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.menu-empty {
  padding: 2.5rem 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.about-points li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
}

.about-figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-figure img {
  width: 100%;
  height: min(520px, 70vw);
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.about-figure:hover img {
  transform: scale(1.04);
}

.reviews-section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.55), transparent);
}

.reviews-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.reviews-score-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--red);
}

.reviews-score-meta {
  text-align: left;
}

.reviews-score-meta p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.stars {
  color: #f4b400;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1;
}

.stars-sm {
  font-size: 0.85rem;
}

.reviews-track-wrap {
  position: relative;
}

.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
  pointer-events: none;
}

.reviews-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.reviews-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 0.35rem clamp(1.25rem, 4vw, 3rem) 1rem;
}

.reviews-track::-webkit-scrollbar {
  height: 6px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: rgba(208, 18, 26, 0.35);
  border-radius: 999px;
}

.review-card {
  flex: 0 0 min(84vw, 22rem);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.2rem 1.2rem 1.3rem;
  box-shadow: 0 10px 28px rgba(23, 20, 18, 0.06);
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(208, 18, 26, 0.12);
  color: var(--red);
  font-weight: 700;
}

.review-top strong {
  display: block;
  font-size: 0.95rem;
}

.review-g {
  opacity: 0.9;
}

.review-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.contact-info address {
  font-style: normal;
  margin: 1.5rem 0 1.75rem;
  display: grid;
  gap: 1.15rem;
  color: var(--ink-soft);
}

.contact-info strong {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info a {
  color: var(--red);
  font-weight: 600;
}

.hours-note {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contact-map {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-soft);
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.footer-copy {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.order-fab,
.cart-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.75rem 1.2rem 0.75rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(208, 18, 26, 0.35);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

.cart-fab:hover,
.order-fab:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(208, 18, 26, 0.4);
}

.cart-fab svg,
.order-fab-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.cart-fab-meta {
  min-width: 3.4rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.85rem;
  background: var(--white);
  color: var(--red);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
}

.cart-fab-meta strong {
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-fab-meta small {
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(23, 20, 18, 0.45);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(100%, 26rem);
  height: 100%;
  background: var(--paper);
  box-shadow: -16px 0 40px rgba(23, 20, 18, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.3s var(--ease);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-empty {
  margin: 1.5rem 0;
  color: var(--ink-soft);
  text-align: center;
}

.cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.cart-line {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
}

.cart-line-info strong {
  display: block;
  font-size: 0.98rem;
}

.cart-line-meta {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-remove {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.cart-footer {
  padding: 1rem 1.25rem 1.35rem;
  border-top: 1px solid var(--line);
  background: var(--white);
  display: grid;
  gap: 0.75rem;
}

.cart-summary {
  display: grid;
  gap: 0.45rem;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.cart-summary strong {
  font-size: 1.15rem;
  color: var(--red);
}

.cart-hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.cart-order-btn {
  width: 100%;
  text-align: center;
}

.cart-order-btn.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.btn-ghost-dark {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
}

.btn-ghost-dark:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

body.cart-open {
  overflow: hidden;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-phone {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0.85rem 1.1rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav,
  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.35rem 1.1rem 1.1rem;
    border-radius: 0;
    background: rgba(246, 242, 236, 0.98);
    border: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(23, 20, 18, 0.08);
  }

  .nav.is-open a {
    color: var(--ink);
    padding: 0.95rem 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
  }

  .nav.is-open a:hover {
    background: transparent;
  }

  .nav.is-open a:last-child {
    border-bottom: 0;
  }

  .nav-phone {
    display: block;
    color: var(--red) !important;
  }

  .site-header.is-open {
    background: rgba(246, 242, 236, 0.98);
  }

  .site-header.is-open .logo {
    color: var(--red);
  }

  .site-header.is-open .nav-toggle span {
    background: var(--ink);
  }

  .hero-content {
    padding: 5.5rem 1.1rem 2.75rem;
  }

  .brand {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .hero-lead {
    margin-bottom: 1.35rem;
    font-size: 1.02rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 0.45rem);
    min-width: 0;
  }

  .menu-section,
  .about-section,
  .contact-section {
    padding: 3.25rem 1.1rem;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-copy {
    font-size: 0.98rem;
  }

  .menu-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
    margin: 0 auto 1.5rem;
    padding: 0.55rem 0.4rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    scroll-snap-type: none;
    top: 3.7rem;
  }

  .menu-tab {
    grid-column: span 2;
    width: 100%;
    font-size: 0.82rem;
    padding: 0.6rem 0.45rem;
    text-align: center;
    white-space: nowrap;
  }

  .menu-tab:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .menu-tab:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .menu-panel {
    gap: 1.15rem;
    max-width: 100%;
  }

  .menu-group {
    padding: 1.05rem 1rem 0.85rem;
    border-radius: 0.95rem;
  }

  .menu-group-title {
    margin-bottom: 0.75rem;
    padding-bottom: 0.55rem;
    font-size: 1.3rem;
  }

  .menu-list {
    max-width: none;
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 0.7rem 0;
    gap: 0.35rem 0.45rem;
    align-items: center;
  }

  .menu-item-name {
    font-size: 0.95rem;
  }

  .menu-item-gram {
    font-size: 0.74rem;
  }

  .menu-item-price {
    font-size: 0.92rem;
  }

  .item-cart-controls {
    grid-column: 3;
    justify-content: flex-end;
  }

  .add-cart-btn {
    width: auto;
    padding: 0.38rem 0.55rem;
    font-size: 0.72rem;
  }

  .item-qty-box {
    width: auto;
    justify-content: flex-end;
    gap: 0.25rem;
    padding: 0;
  }

  .qty-btn {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 0.95rem;
  }

  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-figure img {
    height: 240px;
  }

  .about-points {
    margin-top: 1.25rem;
  }

  .contact-info address {
    margin: 1.15rem 0 1.35rem;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 280px;
    border-radius: 0.95rem;
  }

  .site-footer {
    padding: 2rem 1.1rem 5.5rem;
  }

  .cart-fab,
  .order-fab {
    right: 1rem;
    bottom: 1rem;
    min-height: 3rem;
    padding: 0.7rem 1.1rem 0.7rem 0.95rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
