* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #fbf3e7;
  --paper: #fffaf2;
  --ink: #241b16;
  --muted: #735f50;
  --wine: #8f241c;
  --wine-dark: #681812;
  --gold: #d9a441;
  --white: #fff;
  --line: rgba(36, 27, 22, 0.12);
  --shadow: 0 18px 44px rgba(36, 27, 22, 0.12);
  --radius: 18px;
  --serif: Georgia, "Times New Roman", serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  color: inherit;
}
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.section {
  padding: 88px 0;
}
.section-head {
  max-width: 840px;
  margin-bottom: 44px;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head p,
.story-copy p,
.explain-block p {
  color: var(--muted);
  font-size: 19px;
}
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: center;
}
.center {
  text-align: center;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  margin-bottom: 18px;
}
h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker.dark {
  color: var(--wine);
}
.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(20px, 2.2vw, 26px);
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 243, 231, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(36, 27, 22, 0.06);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}
.brand-logo {
  width: 188px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: rgba(36, 27, 22, 0.78);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: color 0.18s ease;
}
.main-nav a:hover {
  color: var(--wine);
}
.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: background 0.18s ease, transform 0.18s ease;
}
.nav-cta:hover {
  background: var(--wine);
  transform: translateY(-1px);
}
.mobile-menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-primary {
  color: var(--white);
  background: var(--wine);
}
.button-primary:hover {
  background: var(--wine-dark);
}
.button-light {
  color: var(--wine);
  background: var(--white);
}
.button-outline {
  color: var(--wine);
  background: transparent;
  border: 2px solid rgba(143, 36, 28, 0.32);
}
.button-outline:hover {
  border-color: var(--wine);
  background: rgba(143, 36, 28, 0.08);
}
.hero {
  color: var(--white);
}
.hero-home {
  min-height: clamp(520px, 64vh, 620px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 164, 65, 0.2), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(143, 36, 28, 0.16), transparent 30%),
    linear-gradient(135deg, #2f1c14 0%, #6f2119 48%, #9d3b22 100%);
  position:relative;
  overflow:hidden;
}

.hero-home::before{
    content:"";
    position:absolute;
    inset:0;

    background:
      linear-gradient(90deg, rgba(28, 15, 7, 0.42), rgba(40, 22, 10, 0.08) 62%, rgba(255, 255, 255, 0.04)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 84px);

    pointer-events:none;
}

.hero-home > *{
    position:relative;
    z-index:2;
}

.hero-home::after{
    animation:float 8s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }
}

.hero-grid,
.menu-hero-grid {
   display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 88px 0;
}

.hero-home .hero-grid{
    transform: none;
    padding: 44px 0;
}

.hero-home .hero-note{
    margin-top:0;
    justify-self: start;
    transform: none;
}
.hero-copy {
  max-width: 780px;
  padding-top: 0;
}
.hero-home h1 {
  font-size: clamp(48px, 4.8vw, 68px);
}
.hero-home .hero-lead {
  font-size: clamp(18px, 1.45vw, 21px);
}
.hero-note {
  max-width: 360px;
  justify-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}
.hero-note p {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-note h2 {
  margin-top: 10px;
  font-size: 31px;
}
.hero-note span {
  color: rgba(255, 255, 255, 0.82);
}
.favorite-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}
.favorite-card,
.review-card,
.menu-card,
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.favorite-card {
  overflow: hidden;
}
.favorite-card.large {
  grid-row: span 2;
}
.food-image {
  min-height: 260px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(36, 27, 22, 0.55);
  background:
    linear-gradient(135deg, rgba(36, 27, 22, 0.1), rgba(143, 36, 28, 0.18)),
    #d7c0a0;
  font-size: 22px;
  font-weight: 900;
}
.food-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.favorite-card.large .food-image {
  min-height: 470px;
}
.food-content {
  padding: 28px;
}
.food-content p,
.menu-card p,
.review-card p {
  color: var(--muted);
}
.badge {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.story-section,
.gallery-section,
.spotlight-section {
  background: #f0dfc8;
}
.story-text p{
    margin-bottom:24px;
    line-height:1.9;
}

.story-text strong{
    display:block;
    margin-bottom:10px;
    color:var(--ink);
    font-size:20px;
}
.story-copy p{
    margin-bottom:24px;
    line-height:1.9;
}

.story-copy strong{
    display:block;
    margin-bottom:10px;
    color:var(--ink);
    font-size:20px;
}
.photo-frame{
    overflow:hidden;
    border-radius:34px;
    padding:0;
}

.photo-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.story-copy p {
  margin-bottom: 18px;
  font-size:18px;
}
.reviews-section {
  background: var(--paper);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  padding: 30px;
}
.review-card p {
  margin: 14px 0 18px;
  font-size: 19px;
}
.review-card strong {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stars {
  color: var(--gold);
  font-weight: 900;
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.category-preview-grid,
.category-grid,
.menu-card-grid {
  display: grid;
  gap: 20px;
}
.category-preview-grid {
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 34px;
}
.category-tile {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  text-decoration: none;
  font-size: 34px;
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.category-tile:hover {
  border-color: rgba(143, 36, 28, 0.28);
  transform: translateY(-3px);
}
.category-tile span {
  display: block;
  font-size: 16px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 240px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 27, 22, 0.12), rgba(217, 164, 65, 0.2)),
    #cfb18b;
  border-radius: var(--radius);
  font-size: 20px;
  font-weight: 900;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.56));
}
.gallery-item figcaption {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: start;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.menu-hero {
  color: var(--white);
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(217, 164, 65, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #2a1d16, #6d1d17);
}
.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}
.breadcrumb a {
  color: var(--white);
}
.category-grid {
  grid-template-columns: repeat(4, 1fr);
}
.category-card {
  min-height: 190px;
  padding: 26px;
  cursor: pointer;
  transition: 0.2s;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-icon {
  margin-bottom: 20px;
  font-size: 42px;
}
.category-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}
.menu-card-grid {
  grid-template-columns: repeat(3, 1fr);
}
#menu-grid.menu-card-grid {
  display: block;
}
.menu-category-section {
  scroll-margin-top: 104px;
}
.menu-category-section + .menu-category-section {
  margin-top: 54px;
}
.menu-category-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 10px 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.menu-category-head .kicker {
  flex-basis: 100%;
  margin-bottom: 0;
}
.menu-category-head h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
}
.menu-category-head span {
  color: var(--muted);
  font-weight: 900;
}
.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}
.menu-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.menu-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: #f0dfc8;
  border-radius: 20px;
  font-size: 30px;
}
.menu-tag {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}
.menu-card p {
  margin-bottom: 20px;
}
.allergen-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.allergen-title {
  margin-right: 2px;
}
.allergen-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  color: var(--wine);
  background: #f7ead7;
  border: 1px solid #ead4b7;
  border-radius: 999px;
  line-height: 1;
}
.allergen-pill b {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  font-size: 10px;
}
.allergen-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  max-width: 820px;
  margin: 34px auto 0;
  padding: 18px 22px;
  color: var(--muted);
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.allergen-legend strong {
  color: var(--ink);
}
.allergen-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.allergen-legend b {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  font-size: 11px;
}
.allergen-legend small {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.price {
  color: var(--wine);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.filter-button {
  padding: 12px 17px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}
.filter-button.active {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}
.empty-state {
  display: none;
  margin-top: 32px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}
.sticky-food-photo {
  position: sticky;
  top: 110px;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(217, 164, 65, 0.35),
      transparent 26%
    ),
    linear-gradient(135deg, rgba(143, 36, 28, 0.18), rgba(36, 27, 22, 0.12)),
    #cfb08a;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.sticky-food-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sticky-food-photo span {
  color: rgba(36, 27, 22, 0.58);
  font-size: 24px;
  font-weight: 900;
}
.explain-block {
  padding: 42px 0;
  border-bottom: 1px solid rgba(36, 27, 22, 0.16);
}
.explain-block span {
  color: var(--wine);
  font-weight: 900;
}
.footer {
  padding: 72px 0;
  color: var(--white);
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 42px;
}
.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
}
.footer-brand .brand-logo {
  width: 210px;
  opacity: 0.95;
}
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}
.footer h3 {
  margin-bottom: 14px;
  font-size: 20px;
}
.quick-jump-group {
  display: none;
}
@media (max-width: 1040px) {

.hero-home .hero-grid{
    transform: none;
}

.hero-home .hero-note{
     transform: none;
}

.mobile-menu-button {
    display: inline-flex;
}
.main-nav,
.nav-cta {
    display: none;
}
.main-nav.is-open {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 82px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.hero-grid,
.menu-hero-grid,
.split,
.footer-grid {
    grid-template-columns: 1fr;
}
.hero-note {
    justify-self: start;
}
.favorite-grid,
.review-grid,
.menu-card-grid,
.menu-category-grid,
.category-grid {
    grid-template-columns: repeat(2, 1fr);
}
.category-preview-grid {
    grid-template-columns: repeat(3, 1fr);
}
  .sticky-food-photo {
    position: relative;
    top: 0;
    min-height: 420px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }
}
@media (max-width: 640px) {
  .menu-page-main {
    display: flex;
    flex-direction: column;
  }
  .menu-page-main #kategoriak {
    order: 2;
  }
  .menu-page-main #kedvencek {
    order: 3;
  }
  .menu-page-main .spotlight-section {
    order: 4;
    display: none;
  }
  .menu-page-main #teljes-etlap {
    order: 5;
  }
  .container {
    width: min(100% - 40px, 1180px);
  }
  .nav {
    min-height: 68px;
    position: relative;
    justify-content: center;
  }
  .brand {
    max-width: 62vw;
  }
  .brand-logo {
    width: min(165px, 100%);
  }
  .mobile-menu-button {
    position: absolute;
    right: 0;
  }
  .section {
    padding: 54px 0;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .section-head p,
  .story-copy p,
  .explain-block p {
    font-size: 16px;
    line-height: 1.55;
  }
  .hero-grid,
  .menu-hero-grid {
    padding: 58px 0;
  }
  .hero-home {
    min-height: auto;
  }
  .hero-copy {
    padding-top: 12px;
  }
  h1 {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.04;
  }
  .hero-home h1 {
    font-size: clamp(38px, 11vw, 46px);
  }
  h2 {
    font-size: clamp(28px, 8.8vw, 36px);
  }
  h3 {
    font-size: 21px;
  }
  .kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }
  .hero-home .hero-lead {
    font-size: 16px;
  }
  .button {
    width: 100%;
  }
  .button-row {
    gap: 12px;
  }
  .menu-card-grid,
  .menu-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .review-grid,
  .category-preview-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .favorite-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .favorite-grid::-webkit-scrollbar {
    display: none;
  }
  .favorite-card {
    width: 100%;
    scroll-snap-align: none;
  }
  .favorite-card.large {
    grid-row: auto;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .category-card {
    min-height: 128px;
  }
  .category-icon {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .category-card h3 {
    font-size: 18px;
  }
  .category-card span {
    font-size: 13px;
    line-height: 1.35;
  }
  .photo-frame {
    min-height: 240px;
  }
  .favorite-card .food-image,
  .favorite-card.large .food-image {
    min-height: 128px;
  }
  .favorite-card .food-content {
    padding: 14px;
  }
  .favorite-card .food-content h3 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: 15px;
    line-height: 1.12;
  }
  .favorite-card .food-content p {
    font-size: 13px;
    line-height: 1.42;
  }
  .badge {
    font-size: 9px;
    letter-spacing: 0.08em;
  }
  .review-card {
    min-height: auto;
  }
  .guestbook-section .section-head {
    margin-bottom: 22px;
  }
  .guestbook-section .section-head h2 {
    font-size: clamp(24px, 7.2vw, 30px);
  }
  .guestbook-section .section-head p:not(.kicker) {
    font-size: 14px;
    line-height: 1.45;
  }
  .guestbook-section .review-card:first-child {
    display: none;
  }
  .review-card p {
    font-size: 13px;
    line-height: 1.45;
  }
  .review-card strong {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .stars {
    font-size: 13px;
  }
  .category-tile {
    min-height: 108px;
    padding: 14px;
    font-size: 26px;
  }
  .category-tile span {
    font-size: 13px;
    line-height: 1.25;
  }
  .gallery-item {
    min-height: 170px;
  }
  .gallery-item figcaption {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 13px;
  }
  .hero-note,
  .menu-card,
  .review-card {
    padding: 16px;
    border-radius: 18px;
  }
  .menu-card {
    min-height: auto;
    padding: 14px;
    overflow: hidden;
  }
  .menu-card-top {
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
  }
  .menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 19px;
    flex: 0 0 36px;
  }
  .menu-tag {
    max-width: calc(100% - 44px);
    padding: 3px 5px;
    background: rgba(247, 234, 215, 0.78);
    border-radius: 999px;
    font-size: 7px;
    letter-spacing: 0.035em;
    line-height: 1.2;
    overflow-wrap: normal;
    word-break: normal;
    text-align: right;
  }
  .menu-card h3 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: 15px;
    line-height: 1.14;
  }
  .menu-card p {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.38;
  }
  .menu-card .price {
    font-size: 15px;
  }
  .allergen-row {
    gap: 5px;
    margin-bottom: 12px;
    font-size: 10px;
  }
  .allergen-title {
    flex-basis: 100%;
  }
  .allergen-pill {
    padding: 4px 6px;
    font-size: 10px;
  }
  .allergen-pill b {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }
  .category-card {
    padding: 16px;
    border-radius: 18px;
  }
  .hero-note h2 {
    font-size: 34px;
  }
  .footer {
    padding: 42px 0;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer-grid > div:first-child {
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
    margin-bottom: 10px;
  }
  .footer-brand .brand-logo {
    width: 165px;
  }
  .footer h3 {
    margin-bottom: 8px;
    font-size: 17px;
  }
  .footer p,
  .footer a {
    font-size: 14px;
    line-height: 1.5;
  }
  .quick-jump-group {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .quick-jump-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 15px;
    color: var(--white);
    background: var(--wine);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(36, 27, 22, 0.28);
    font-size: 13px;
    font-weight: 900;
  }
  .quick-jump-group.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-page .quick-jump-button:first-child:not(:last-child) {
    display: none;
  }
}
