:root {
  --bg: #0e0e0e;
  --paper: #161616;
  --soft: #1c1c1c;
  --ink: #ffffff;
  --muted: #a3a3a3;
  --line: #2c2c2c;
  --red: #e60019;
  --red-deep: #b80014;
  --red-soft: rgba(230, 0, 25, 0.16);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --max: 1080px;
  --font-display: "Anton", "Impact", system-ui, sans-serif;
  --font-sans: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(230, 0, 25, 0.22), transparent 55%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 700;
}

nav {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

nav a:hover,
nav a.is-active {
  color: var(--ink);
}

.hero,
.hub {
  padding: 2.2rem 0 2.5rem;
}

.logo-sign {
  width: min(400px, 90vw);
  margin: 0 auto 1.4rem;
  background: #111;
  border-radius: 22px;
  overflow: hidden;
  padding: 0.4rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.logo-sign img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

.kicker {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.hero h1,
.hub h1,
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero h1,
.hub h1 {
  text-align: center;
  font-size: clamp(2.3rem, 8vw, 3.6rem);
  margin-bottom: 0.7rem;
}

.lede {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
}

.red-rule {
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  margin: 0 auto 1.3rem;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
}

.stars {
  color: #ffd000;
  letter-spacing: 0.08em;
}

.badge-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}

.actions {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem auto 0;
  width: min(100%, 420px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.btn:active {
  transform: scale(0.98);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 28px rgba(230, 0, 25, 0.35);
}

.btn-red:hover {
  background: var(--red-deep);
}

.btn-line {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: #fff;
}

.btn-line:hover {
  border-color: var(--red);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.social-row {
  display: grid;
  gap: 0.6rem;
  width: min(100%, 420px);
  margin: 1rem auto 0;
}

.social-row.two {
  grid-template-columns: 1fr 1fr;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 0.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 700;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
}

.quick-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  width: min(100%, 420px);
  margin: 0.9rem auto 0;
}

.quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem 0.35rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.quick svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.7;
}

.section {
  padding: 2.8rem 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--line);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head p {
  color: var(--muted);
  max-width: 36rem;
}

.address {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.2rem 1.1rem;
}

.address p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.address p:last-child {
  border-bottom: 0;
}

.address strong {
  color: var(--muted);
  font-weight: 700;
  min-width: 7rem;
}

.address span,
.address a {
  text-align: right;
}

.site-footer {
  padding: 1.6rem 0 2.2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-panel {
  width: min(100%, 480px);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem 1.15rem 1.4rem;
  box-shadow: var(--shadow);
}

.star-picker {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.4rem 0 0.7rem;
}

.star-picker button {
  background: transparent;
  border: 0;
  color: #3f3f3f;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.star-picker button.is-on,
.star-picker button.is-hover {
  color: #ffd000;
}

.hint {
  text-align: center;
  color: var(--muted);
  margin-bottom: 0.9rem;
  min-height: 1.3em;
}

.review-panel label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.review-panel textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0f0f0f;
  padding: 0.9rem 1rem;
  margin-bottom: 0.9rem;
  outline: none;
}

.review-panel textarea:focus {
  border-color: var(--red);
}

.thanks {
  text-align: center;
}

.thanks h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0.4rem 0 0.6rem;
  text-transform: uppercase;
}

.hidden {
  display: none !important;
}

.menu-shot {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.menu-board {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.05rem 1.2rem;
  margin-bottom: 0.9rem;
}

.menu-board h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.menu-board .price-tag {
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.menu-board ul {
  list-style: none;
}

.menu-board li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-board li:last-child {
  border-bottom: 0;
}
