:root {
  --red: #ee302b;
  --red-dark: #b71f18;
  --brown: #5b1f0c;
  --brown-dark: #2b0d05;
  --purple: #4b1d54;
  --cream: #fff7ec;
  --cream-dark: #f3e4d0;
  --white: #ffffff;
  --black: #111111;
  --gray: #666666;

  --radius: 20px;
  --shadow: 0 14px 34px rgba(43, 13, 5, 0.14);
  --shadow-soft: 0 8px 20px rgba(43, 13, 5, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--black);
  padding-bottom: 72px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  background: rgba(255, 247, 236, 0.96);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 6px 18px rgba(43, 13, 5, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-wrap {
  display: block;
  flex: 0 0 auto;
}

.logo {
  width: 230px;
  max-width: 100%;
  display: block;
}

.top-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  font-weight: 900;
  border: 2px solid var(--brown);
  box-shadow: 0 6px 0 rgba(91, 31, 12, 0.22);
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 6px 0 rgba(183, 31, 24, 0.35);
}

.btn-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.btn-disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* HERO */

.hero {
  background:
    linear-gradient(rgba(43, 13, 5, 0.72), rgba(43, 13, 5, 0.72)),
    radial-gradient(circle at top left, #ee302b, #4b1d54 65%);
  color: var(--white);
  padding: 54px 0 64px;
}

.hero-inner {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.hero .eyebrow {
  color: #ffd6bd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(34px, 8vw, 66px);
  line-height: 0.95;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-text {
  font-size: 18px;
  line-height: 1.5;
  max-width: 680px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* QUICK ACTIONS */

.quick-actions {
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid rgba(91, 31, 12, 0.08);
}

.quick-card span {
  display: block;
  font-size: 26px;
  margin-bottom: 6px;
}

.quick-card strong {
  display: block;
  color: var(--brown);
  text-transform: uppercase;
}

/* MENU */

.menu-section {
  padding: 58px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 22px;
}

.section-title h2 {
  font-size: clamp(34px, 7vw, 58px);
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 0;
}

/* CATEGORY TABS */

.category-tabs-wrap {
  position: sticky;
  top: 96px;
  z-index: 40;
  background: rgba(255, 247, 236, 0.97);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 8px 24px rgba(43, 13, 5, 0.10);
  backdrop-filter: blur(10px);
  margin: 0 calc(50% - 50vw) 28px;
}

.category-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 18px 20px 22px;
  max-width: 1180px;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs a {
  flex: 0 0 auto;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: var(--white);
  color: var(--brown);
  border: 2px solid rgba(91, 31, 12, 0.16);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: center;
  transition: 0.2s ease;
}

.category-tabs a:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  color: var(--red);
}

.category-tabs a.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

/* MENU LIST */

.menu-list {
  display: grid;
  gap: 16px;
}

.menu-category {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(91, 31, 12, 0.08);
}

.category-toggle {
  width: 100%;
  border: 0;
  background: var(--purple);
  color: var(--white);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.category-toggle span {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-toggle small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #f3d5ff;
  letter-spacing: 0.5px;
}

.category-toggle strong {
  font-size: 28px;
  line-height: 1;
  transition: 0.2s ease;
}

.category-content {
  display: none;
  padding: 8px 18px 18px;
}

.menu-category.active .category-content {
  display: block;
}

.menu-category.active .category-toggle strong {
  transform: rotate(45deg);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px dashed rgba(91, 31, 12, 0.24);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item h3 {
  color: var(--brown);
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 6px;
}

.menu-item p {
  color: var(--black);
  line-height: 1.38;
  margin-bottom: 0;
}

.item-price {
  color: var(--red);
  font-size: 21px;
  font-weight: 900;
  white-space: nowrap;
}

/* MEATS BOX */

.meats-box {
  background: var(--white);
  border: 3px solid var(--purple);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.meats-box h3 {
  color: var(--purple);
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 8px;
}

.meats-box p {
  margin-bottom: 0;
  line-height: 1.6;
}

/* ORDER */

.order-section {
  padding: 44px 0;
  background:
    linear-gradient(rgba(43, 13, 5, 0.9), rgba(43, 13, 5, 0.9)),
    radial-gradient(circle at top right, #ee302b, #2b0d05);
}

.order-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.order-card h2 {
  color: var(--purple);
  font-size: clamp(30px, 7vw, 50px);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.order-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

/* VISIT */

.visit-section {
  padding: 58px 0;
}

.visit-grid {
  display: grid;
  gap: 24px;
}

.visit-grid h2 {
  color: var(--purple);
  font-size: 34px;
  text-transform: uppercase;
}

.visit-grid p {
  line-height: 1.5;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.map-box {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* FOOTER */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 30px 0 90px;
}

.footer-inner {
  display: grid;
  gap: 14px;
  text-align: center;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #ffd6bd;
  font-weight: 900;
}

/* MOBILE STICKY */

.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 66px;
  background: var(--red);
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.18);
}

.mobile-sticky a {
  color: var(--white);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-sticky a:last-child {
  border-right: 0;
}

/* TABLET & DESKTOP */

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  html {
    scroll-padding-top: 178px;
  }

  .top-actions {
    display: flex;
  }

  .mobile-sticky {
    display: none;
  }

  .hero {
    padding: 82px 0;
  }

  .quick-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .menu-list {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .category-content {
    display: block;
  }

  .category-toggle strong {
    display: none;
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .logo {
    width: 300px;
  }

  .menu-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-tabs {
    justify-content: center;
  }
}