:root {
  --bg: #f8f3fb;
  --paper: #ffffff;
  --ink: #22122d;
  --muted: #715f7e;
  --line: #eadff0;
  --purple: #6c2a87;
  --purple-mid: #4b1460;
  --purple-dark: #2b093a;
  --lavender: #d4bfe5;
  --gold: #f2c25b;
  --charcoal: #19091f;
  --shadow: 0 12px 28px rgba(43, 9, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(43, 9, 58, 0.24), rgba(43, 9, 58, 0.82)), url("pizza-hero.png?v=3");
  background-size: cover;
  background-position: center;
}

.hero__content {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  color: #fff;
  padding: 80px 0 116px;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin-bottom: 18px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(212, 191, 229, 0.36);
  border-radius: 8px;
  background: rgba(43, 9, 58, 0.72);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  width: 78px;
  height: 54px;
  object-fit: contain;
}

.brand-row span {
  color: #ffffff;
  font-weight: 900;
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__text {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: 1.18rem;
  color: #f3e7ff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-weight: 800;
}

.button--primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--purple-dark);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button--facebook {
  border-color: #1877f2;
  background: #1877f2;
  color: #fff;
}

.button--review {
  border-color: var(--gold);
  background: var(--purple-mid);
  color: #fff;
}

main {
  width: min(1120px, calc(100% - 28px));
  margin: -74px auto 0;
  position: relative;
  z-index: 2;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.info-strip article {
  min-height: 94px;
  background: var(--paper);
  padding: 18px;
}

.info-strip span,
.search span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.info-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 18px;
  align-items: end;
  margin-top: 24px;
}

.search input {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  border: 1px solid #d9ccc1;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  box-shadow: 0 6px 16px rgba(23, 20, 20, 0.06);
}

.search input:focus {
  outline: 3px solid rgba(108, 42, 135, 0.22);
  border-color: var(--purple);
}

.notice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.notice-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 7px 10px;
  background: #efe3f6;
  color: var(--purple-mid);
  font-size: 0.9rem;
  font-weight: 700;
}

.feedback-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #dfd0eb;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f2e7f8 100%);
  box-shadow: 0 8px 20px rgba(43, 9, 58, 0.08);
}

.feedback-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.feedback-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.18rem;
}

.feedback-panel p {
  margin: 5px 0 0;
  color: var(--muted);
}

.feedback-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.category-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 0;
  margin-top: 12px;
  background: rgba(248, 243, 251, 0.96);
  backdrop-filter: blur(10px);
}

.category-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dfd0eb;
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--paper);
  color: var(--purple-dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.category-nav a:hover,
.category-nav a:focus {
  border-color: var(--purple);
  color: var(--purple);
}

.menu-root {
  padding: 12px 0 64px;
}

.menu-section {
  scroll-margin-top: 76px;
  padding-top: 24px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 3px solid var(--purple);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: 0;
}

.section-heading span {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 4px 12px rgba(23, 20, 20, 0.05);
}

.item-main {
  min-width: 0;
}

.item-title {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.item-number {
  flex: 0 0 auto;
  min-width: 28px;
  color: var(--purple);
  font-weight: 900;
}

.item-name {
  font-weight: 900;
}

.item-desc {
  margin: 7px 0 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.item-price {
  align-self: start;
  min-width: 76px;
  text-align: right;
  color: var(--purple-mid);
  font-weight: 900;
  white-space: nowrap;
}

.empty {
  margin: 30px 0 80px;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(16px, calc((100vw - 1120px) / 2));
  background: var(--purple-dark);
  color: #fff7ed;
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer span {
  color: var(--lavender);
}

.footer a {
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

@media (max-width: 820px) {
  .hero {
    min-height: 490px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero__text {
    font-size: 1.06rem;
  }

  main {
    width: min(100% - 20px, 680px);
  }

  .info-strip,
  .toolbar,
  .items {
    grid-template-columns: 1fr;
  }

  .notice-list {
    justify-content: flex-start;
  }

  .feedback-panel {
    grid-template-columns: 1fr;
  }

  .feedback-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 455px;
  }

  .hero__content {
    width: calc(100% - 24px);
    padding: 64px 0 104px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .button {
    width: 100%;
  }

  main {
    margin-top: -62px;
  }

  .info-strip article {
    min-height: 78px;
    padding: 14px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .item-price {
    text-align: left;
    margin-left: 36px;
  }

  .section-heading {
    display: block;
  }

  .section-heading span {
    display: block;
    margin-top: 4px;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
