:root {
  --primary: #63182C;
  --primary-dark: #3f0f1c;
  --accent: #F7B538;
  --accent-2: #2F9E73;
  --cream: #FFF5E8;
  --ink: #1C1014;
  --muted: #7A6A70;
  --white: #fff;
  --shadow: 0 24px 70px rgba(28, 16, 20, .18);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 32px)); }
.section { padding: 96px 0; position: relative; }
.section--cream { background: var(--cream); }
.section--404{
  padding-block: 30svh;
}
.section--lifted { margin-top: -56px; z-index: 3; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading h2, .split h2, .cta-band h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: .94; letter-spacing: -.05em; margin: 8px 0 12px; }
.eyebrow { color: var(--accent); text-transform: uppercase; font-weight: 900; letter-spacing: .12em; font-size: .78rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; padding: 13px 22px; font-weight: 900; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: var(--ink); }
.btn--ghost { color: var(--white); border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.12); backdrop-filter: blur(12px); }
.btn--outline { border: 1px solid rgba(99,24,44,.22); color: var(--primary); background: transparent; }
.btn--light { background: var(--white); color: var(--primary); }
.btn--small { padding: 9px 14px; font-size: .9rem; }
.btn--big { padding: 16px 26px; font-size: 1rem; }
.btn--danger { background: #ffe1e1; color: #8a1717; }
.disabled { pointer-events: none; opacity: .5; }


.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  color: var(--primary);
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}

.site-header.scrolled,
.site-header:hover,
.site-header.menu-open {
  background: rgba(99,24,44,.97);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.quickbar {
  border-bottom: 1px solid rgba(99,24,44,.16);
  font-size: .76rem;
  transition: border-color .3s ease;
    background: rgba(99,24,44,.97);
  color: var(--white);
}

.site-header.scrolled .quickbar,
.site-header:hover .quickbar,
.site-header.menu-open .quickbar {
  border-bottom-color: rgba(255,255,255,.16);
}

.quickbar__inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
  overflow: hidden;
}

.quickbar a,
.quickbar span {
  opacity: .92;
}

.quickbar__status i {
  font-size: .55rem;
}

.quickbar__status i {
  color: var(--accent-2);
}

.quickbar__status.is-closed i {
  color: var(--accent);
}

/* Navbar layout:
   left = logo
   center = nav links
   right = user/cart/order buttons
*/
.navbar {
  height: 76px;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 20px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.brand__logo-slot {
  position: relative;
  width: 92px;
  height: 58px;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.brand__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .25s ease, transform .25s ease;
}

.brand__logo--red {
  opacity: 1;
}

.brand__logo--white {
  opacity: 0;
}

.site-header.scrolled .brand__logo--red,
.site-header:hover .brand__logo--red,
.site-header.menu-open .brand__logo--red {
  opacity: 0;
}

.site-header.scrolled .brand__logo--white,
.site-header:hover .brand__logo--white,
.site-header.menu-open .brand__logo--white {
  opacity: 1;
}

.site-header:hover .brand__logo,
.site-header.scrolled .brand__logo {
  transform: scale(1.02);
}

.nav-menu {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.nav-links {
  justify-self: center;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 850;
  opacity: .92;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transition: width .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  border: 1px solid rgba(99,24,44,.24);
  border-radius: 999px;
  padding: 6px 10px;
  display: flex;
  gap: 6px;
  font-size: .74rem;
  font-weight: 900;
  transition: border-color .3s ease;
}

.site-header.scrolled .lang-switcher,
.site-header:hover .lang-switcher,
.site-header.menu-open .lang-switcher {
  border-color: rgba(255,255,255,.24);
}

.lang-switcher .active {
  color: var(--accent);
}

.icon-link,
.cart-pill {
  min-width: 38px;
  min-height: 38px;
  border-radius: 999px;
  background: rgba(99,24,44,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease;
}

.site-header.scrolled .icon-link,
.site-header.scrolled .cart-pill,
.site-header:hover .icon-link,
.site-header:hover .cart-pill,
.site-header.menu-open .icon-link,
.site-header.menu-open .cart-pill {
  background: rgba(255,255,255,.14);
}

.icon-link:hover,
.cart-pill:hover {
  transform: translateY(-2px);
}

.cart-pill {
  gap: 7px;
  padding: 0 12px;
}

.nav-order-btn {
  white-space: nowrap;
}

.button-reset {
  border: 0;
  color: inherit;
  cursor: pointer;
}

.inline-form {
  margin: 0;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(99,24,44,.12);
  color: #fff
}

.site-header.scrolled .nav-toggle,
.site-header:hover .nav-toggle,
.site-header.menu-open .nav-toggle {
  background: rgba(255,255,255,.14);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: .25s;
}

.hero { min-height: 100svh; position: relative; display: grid; align-items: center; overflow: hidden; color: var(--white); }
.hero__video, .hero::before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ''; background: url('/assets/images/hero-yummy.svg') center/cover fixed; z-index: -3; }
.hero__video { z-index: -2; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(84, 0, 0, 0.22), rgba(42, 0, 0, 0.95)); z-index: -1; }
.hero__content { padding-top: 120px; max-width: 980px; }
.hero h1 { font-size: clamp(3.3rem, 8vw, 8.8rem); line-height: .86; letter-spacing: -.08em; margin: 14px 0 22px; }
.hero p { max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.35rem); opacity: .94; }
.hero__actions, .hero__meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__meta span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 10px 14px; backdrop-filter: blur(12px); }

.parallax { background-attachment: fixed; background-position: center; background-size: cover; height: 60svh;}
.parallax--kebab { background-image: linear-gradient(120deg, rgba(99,24,44,.92), rgba(28,16,20,.84)), url('/assets/images/header_doner.jpg'); color: var(--white); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid article { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 24px; transition: transform .25s ease, background .25s ease; }
.feature-grid article:hover { transform: translateY(-8px) rotate(-1deg); background: rgba(255,255,255,.18); }
.feature-grid i { font-size: 2rem; color: var(--accent); }

.gallery-strip { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.gallery-strip__item { position: relative; border-radius: 20px; overflow: hidden; min-height: 150px; }
.gallery-strip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-strip__item:hover img { transform: scale(1.08); }
.gallery-strip__item span { position: absolute; inset: auto 10px 10px; color: var(--white); font-weight: 900; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.category-card { min-height: 310px; border-radius: var(--radius); padding: 24px; color: var(--white); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; box-shadow: var(--shadow); transition: transform .35s ease; }
.category-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(28,16,20,.12), rgba(28,16,20,.82)), var(--bg) center/cover; z-index: -1; transition: transform .45s ease; }
.category-card:hover { transform: translateY(-10px); }
.category-card:hover::before { transform: scale(1.08); }
.category-card__icon { width: 58px; height: 58px; background: var(--accent); color: var(--ink); display: grid; place-items: center; border-radius: 20px; font-size: 1.5rem; margin-bottom: auto; }
.category-card h3 { font-size: 2rem; margin: 18px 0 4px; letter-spacing: -.04em; }
.category-card p { margin: 0; opacity: .9; }
.menu-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card--image { min-height: 420px; border-radius: var(--radius); overflow: hidden; color: var(--white); background-color: var(--primary-dark); position: relative; isolation: isolate; display: flex; align-items: flex-end; box-shadow: var(--shadow); transition: transform .3s ease; }
.menu-card--image:hover { transform: translateY(-9px); }
.menu-card--image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(28,16,20,.1), rgba(28,16,20,.86)), var(--bg) center/cover; z-index: -1; transition: transform .45s ease; }
.menu-card--image:hover::before { transform: scale(1.07); }
.menu-card__body { padding: 26px; }
.menu-card__category { color: var(--accent); font-weight: 900; text-transform: uppercase; font-size: .78rem; letter-spacing: .1em; }
.menu-card h3 { font-size: 2rem; letter-spacing: -.04em; margin: 8px 0; }
.menu-card__bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 16px; }
.menu-card__bottom strong { font-size: 1.4rem; }
.cta-band { background: var(--primary); color: var(--white); padding: 64px 0; }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }

.page-hero { min-height: 58vh; display: flex; align-items: end; color: var(--white); padding: 180px 0 80px;}
.page-hero--menu {
  background-image: linear-gradient(180deg,
   rgba(255, 255, 255, 0.25),
    rgba(44, 2, 13, 0.95)), url('/assets/images/menu.jpg'); 
}

.page-hero--contact {
  background-image: linear-gradient(180deg,
   rgba(255, 255, 255, 0.25),
    rgba(44, 2, 13, 0.95)), url('/assets/images/contact.jpg'); 
}

.page-hero--faq {
  background-image: linear-gradient(180deg,
   rgba(255, 255, 255, 0.25),
    rgba(44, 2, 13, 0.95)), url('/assets/images/faq.jpg'); 
}


.page-hero h1 { font-size: clamp(3rem, 7vw, 7.5rem); line-height: .88; letter-spacing: -.08em; margin: 12px 0; }
.page-hero p { max-width: 720px; font-size: 1.2rem; }
.category-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; position: sticky; top: 120px; z-index: 50; }
.category-tab { border: 1px solid rgba(99,24,44,.18); background: var(--white); color: var(--primary); padding: 12px 18px; border-radius: 999px; font-weight: 900; cursor: pointer; }
.category-tab.active, .category-tab:hover { background: var(--primary); color: var(--white); }
.menu-category-panel { display: none; }
.menu-category-panel.active { display: block; }
.menu-category-hero { min-height: 380px; border-radius: var(--radius); overflow: hidden; color: var(--white); padding: 34px; display: flex; align-items: end; background: linear-gradient(rgba(28,16,20,.1), rgba(28,16,20,.75)), var(--bg) center/cover; margin-bottom: 20px; box-shadow: var(--shadow); }
.menu-category-hero h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: .95; letter-spacing: -.05em; margin: 6px 0; }
.menu-list { display: grid; gap: 16px; }
.menu-line { background: var(--white); border-radius: 24px; padding: 14px; display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; align-items: center; box-shadow: 0 12px 38px rgba(28,16,20,.08); transition: transform .25s ease, box-shadow .25s ease; }
.menu-line:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-line img { width: 92px; height: 92px; border-radius: 20px; object-fit: cover; }
.menu-line__title { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; }
.menu-line h3 { margin: 0; font-size: 1.3rem; }
.menu-line p { margin: 4px 0 8px; color: var(--muted); }
.menu-line__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.menu-line__tags span { background: var(--cream); color: var(--primary); border-radius: 999px; padding: 4px 9px; font-size: .75rem; font-weight: 900; }
.menu-line__form { display: flex; gap: 8px; }
.menu-line__form input, .cart-item input { width: 68px; border: 1px solid rgba(99,24,44,.18); border-radius: 999px; padding: 9px 10px; text-align: center; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-card { border: 0; padding: 0; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow); background: var(--white); }
.gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s ease; }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card span { position: absolute; inset: auto 14px 14px; background: rgba(99,24,44,.86); color: var(--white); border-radius: 999px; padding: 8px 13px; font-weight: 900; }
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,.86); display: grid; place-items: center; padding: 32px; }
.lightbox img { max-height: 86vh; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox__close { position: absolute; top: 24px; right: 24px; width: 50px; height: 50px; border: 0; border-radius: 999px; background: var(--white); color: var(--primary); font-size: 1.4rem; cursor: pointer; }

.faq-layout, .contact-grid, .checkout-grid, .dashboard-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 28px; align-items: start; }
.accordion details, .info-card, .contact-card, .form-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.accordion details + details { margin-top: 14px; }
.accordion summary { font-weight: 1000; cursor: pointer; font-size: 1.15rem; }
.minimum-list, .footer-hours { list-style: none; padding: 0; margin: 0; }
.minimum-list li, .footer-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid rgba(99,24,44,.1); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map-card { border-radius: var(--radius); overflow: hidden; min-height: 460px; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 460px; border: 0; }
.form-card label { display: grid; gap: 6px; font-weight: 900; margin-bottom: 14px; }
.form-card input, .form-card select, .form-card textarea { border: 1px solid rgba(99,24,44,.18); border-radius: 16px; padding: 12px 14px; background: #fff; width: 100%; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.span-2 { grid-column: span 2; }
.promo-box { background: var(--cream); color: var(--primary); border-radius: 18px; padding: 14px; font-weight: 900; }
.auth-section { min-height: 100vh; display: grid; place-items: center; padding-top: 170px; }
.auth-card { width: min(520px, calc(100% - 32px)); }
.cart-list { display: grid; gap: 14px; }
.cart-item { background: var(--white); border-radius: 24px; padding: 14px; display: grid; grid-template-columns: 86px 1fr auto; gap: 14px; align-items: center; }
.cart-item img { width: 86px; height: 86px; object-fit: cover; border-radius: 18px; }
.cart-summary { background: var(--white); border-radius: var(--radius); padding: 28px; margin-top: 18px; box-shadow: var(--shadow); }
.empty-state { text-align: center; background: var(--white); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow); }
.big-icon { font-size: 4rem; color: var(--accent-2); }
.section--success { min-height: 100vh; display: grid; place-items: center; background: var(--cream); padding-top: 160px; }

.admin-main { padding-top: 80px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; }
.admin-header h1 { font-size: clamp(2.2rem, 5vw, 5rem); line-height: .95; letter-spacing: -.06em; margin: 0; }
.admin-shop-toggle, .admin-stats, .admin-panel, .admin-table { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); margin-bottom: 22px; }
.admin-shop-toggle { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.admin-shop-toggle input[type="text"], .admin-shop-toggle input:not([type]) { min-width: 280px; border: 1px solid rgba(99,24,44,.18); border-radius: 999px; padding: 10px 14px; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.admin-stats article { background: var(--cream); border-radius: 20px; padding: 18px; }
.admin-stats strong { display: block; font-size: 2.4rem; color: var(--primary); }
.order-card, .user-row, .mini-order { display: grid; grid-template-columns: 1fr auto auto auto; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(99,24,44,.1); }
.admin-menu-form { margin-bottom: 24px; }
.admin-menu-row { display: grid; grid-template-columns: 70px 1.2fr 1fr .7fr 1.5fr auto auto; gap: 10px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(99,24,44,.1); }
.admin-menu-row img { width: 70px; height: 60px; object-fit: cover; border-radius: 12px; }
.admin-table input, .admin-table select { border: 1px solid rgba(99,24,44,.18); border-radius: 12px; padding: 9px; }

.flash-stack { position: fixed; top: 132px; right: 20px; z-index: 2200; display: grid; gap: 10px; }
.flash { padding: 13px 16px; border-radius: 18px; box-shadow: var(--shadow); background: var(--white); font-weight: 900; }
.flash--success { border-left: 6px solid var(--accent-2); }
.flash--error { border-left: 6px solid #d64545; }
.flash--info { border-left: 6px solid var(--accent); }

.footer { background: var(--ink); color: var(--white); padding: 70px 0 20px; }
.footer__grid { display: grid; grid-template-columns: 1.1fr .8fr 1.2fr .8fr; gap: 30px; }
.footer__brand { font-size: 2.2rem; font-weight: 1000; color: var(--accent); }
.footer a { color: var(--white); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px; background: rgba(255,255,255,.12); }
.footer__bottom { text-align: center; opacity: .7; padding-top: 32px; }
pre { overflow: auto; text-align: left; background: #111; color: #fff; padding: 16px; border-radius: 16px; }

@media (max-width: 980px) {
  .quickbar__inner {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .navbar {
    height: 76px;
    display: flex;
    justify-content: space-between;
  }

  .brand__logo-slot {
    width: 82px;
    height: 52px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 112px;
    left: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: none;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
  }

  .nav-menu.open {
    display: grid;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }

  .nav-actions {
    justify-self: stretch;
    flex-wrap: wrap;
    justify-content: center;
  }

  .lang-switcher,
  .icon-link,
  .cart-pill {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.24);
  }

  .split,
  .faq-layout,
  .contact-grid,
  .checkout-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .category-grid,
  .menu-card-grid,
  .gallery-grid,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-tabs {
    top: 104px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .category-tab {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .section { padding: 66px 0; }
  .hero h1 { font-size: clamp(3rem, 18vw, 5rem); }
  .hero__content { padding-top: 150px; }
  .gallery-strip, .feature-grid, .category-grid, .menu-card-grid, .gallery-grid, .footer__grid, .admin-stats, .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .menu-line { grid-template-columns: 72px 1fr; }
  .menu-line img { width: 72px; height: 72px; }
  .menu-line__form { grid-column: 1 / -1; }
  .menu-line__title { display: block; }
  .cta-band__inner, .admin-header { flex-direction: column; align-items: flex-start; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item form { grid-column: 1 / -1; }
  .admin-menu-row, .order-card, .user-row { grid-template-columns: 1fr; }
  .footer-hours li, .minimum-list li { display: block; }
}
@media (max-width: 640px) {
  .quickbar {
    display: none;
  }

  .navbar {
    height: 74px;
  }

  .nav-menu {
    top: 84px;
  }

  .brand__logo-slot {
    width: 76px;
    height: 48px;
  }

  .nav-order-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .parallax, .hero::before { background-attachment: scroll; }
}



.credits-link {
  color: #ad8330 !important;
  text-decoration: none;
}

.credits-link i {
  color: #ad8330;
}


/* =========================
   Font size reduction pass
   ========================= */

/* General text sizing */
body {
  font-size: 0.96rem;
  line-height: 1.55;
}

p {
  font-size: 0.98rem;
}

/* Section headings */
.section-heading h2,
.split h2,
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.eyebrow {
  font-size: 0.72rem;
}

/* Buttons */
.btn {
  padding: 11px 19px;
  font-size: 0.92rem;
}

.btn--small {
  padding: 8px 13px;
  font-size: 0.82rem;
}

.btn--big {
  padding: 14px 23px;
  font-size: 0.94rem;
}

/* Header / navbar */
.quickbar {
  font-size: 0.76rem;
}

.brand {
  font-size: 1.18rem;
}

.nav-links a {
  font-size: 0.92rem;
}

.lang-switcher {
  font-size: 0.74rem;
}

/* Home hero */
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero p {
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
}

/* Page hero */
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.page-hero p {
  font-size: 1.05rem;
}

/* Category cards */
.category-card h3 {
  font-size: 1.55rem;
}

.category-card p {
  font-size: 0.94rem;
}

.category-card__icon {
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
}

/* Menu cards */
.menu-card h3 {
  font-size: 1.55rem;
}

.menu-card__category {
  font-size: 0.7rem;
}

.menu-card__bottom strong {
  font-size: 1.18rem;
}

/* Menu page */
.menu-category-hero h2 {
  font-size: clamp(1.7rem, 3.4vw, 3.2rem);
}

.menu-line h3 {
  font-size: 1.12rem;
}

.menu-line p {
  font-size: 0.92rem;
}

.menu-line__tags span {
  font-size: 0.68rem;
}

/* FAQ / cards / forms */
.accordion summary {
  font-size: 1rem;
}

.form-card label {
  font-size: 0.92rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  font-size: 0.94rem;
}

/* Admin */
.admin-header h1 {
  font-size: clamp(1.9rem, 4vw, 3.8rem);
}

.admin-stats strong {
  font-size: 1.9rem;
}

/* Footer */
.footer__brand {
  font-size: 1.7rem;
}

.footer {
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  body {
    font-size: 0.94rem;
  }

  .section-heading h2,
  .split h2,
  .cta-band h2 {
    font-size: clamp(1.75rem, 9vw, 2.8rem);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
    line-height: 0.92;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 13vw, 3.8rem);
  }

  .page-hero p {
    font-size: 0.98rem;
  }

  .category-card h3,
  .menu-card h3 {
    font-size: 1.35rem;
  }

  .menu-category-hero h2 {
    font-size: clamp(1.6rem, 10vw, 2.6rem);
  }

  .admin-header h1 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .footer__brand {
    font-size: 1.45rem;
  }
}



/* =========================
   Legal pages
   ========================= */

.legal-hero {
  background-image:
    linear-gradient(120deg, rgba(28,16,20,.85), rgba(99,24,44,.72)),
    url('/assets/images/page-hero.svg');
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.legal-card,
.legal-side-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card {
  padding: 34px;
}

.legal-side-card {
  padding: 26px;
  position: sticky;
  top: 140px;
  display: grid;
  gap: 14px;
}

.legal-card h2 {
  color: var(--primary);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.035em;
  margin: 34px 0 12px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-side-card h3,
.cookie-settings-box h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin: 0 0 6px;
}

.legal-card a {
  color: var(--primary);
  font-weight: 900;
}

.legal-list {
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

.legal-note,
.cookie-settings-box {
  background: var(--cream);
  border-left: 6px solid var(--accent);
  border-radius: 18px;
  padding: 16px;
  margin: 22px 0;
}

.legal-updated {
  color: var(--muted);
  font-weight: 800;
}

/* =========================
   Cookie banner
   ========================= */

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4000;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border: 1px solid rgba(99,24,44,.14);
  border-radius: 26px;
  box-shadow: 0 24px 80px rgba(28,16,20,.24);
  padding: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--accent);
  font-size: 1.45rem;
}

.cookie-banner__content h2 {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.cookie-banner__content p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.cookie-banner__links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  font-size: .86rem;
  font-weight: 900;
}

.cookie-banner__links a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.cookie-btn-light {
  background: var(--white);
}

@media (max-width: 780px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 24px;
  }

  .legal-side-card {
    position: static;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}