:root {
  --bg: #eeeeee;
  --red: #861218;
  --white: #ffffff;
  --black: #000000;

  --text: #0b0b0b;
  --muted: rgba(0, 0, 0, 0.65);
  --muted2: rgba(0, 0, 0, 0.45);

  --radius: 18px;
  --radius2: 26px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow2: 0 12px 40px rgba(0, 0, 0, 0.14);

  --container: 1120px;
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

strong {
  font-weight: 800;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.topbar__badge {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar__text {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
  flex: 1;
}

.topbar__link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.95;
  white-space: nowrap;
}

/* Header */
.header {
  position: sticky;
  top: 44px; /* topbar height */
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(238, 238, 238, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.header.is-scrolled {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
  font-weight: 1000;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__name {
  font-weight: 1000;
  letter-spacing: -0.02em;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 12px;
}

.nav__toggle:focus-visible {
  outline: 3px solid rgba(134, 18, 24, 0.3);
  outline-offset: 2px;
}

.nav__toggleLines {
  position: relative;
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  border-radius: 99px;
}

.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--black);
  border-radius: 99px;
}

.nav__toggleLines::before {
  top: -8px;
}

.nav__toggleLines::after {
  top: 8px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 10px 10px;
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.75);
}

.nav__link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.9);
}

.nav__link.is-active {
  background: rgba(134, 18, 24, 0.12);
  color: var(--red);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition:
    transform 140ms ease,
    filter 140ms ease,
    background 140ms ease,
    border-color 140ms ease;
  user-select: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--lg {
  padding: 14px 18px;
  font-size: 15px;
}

.btn--solid {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--solid:hover {
  filter: brightness(1.03);
}

.btn--outline {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--black);
}

.btn--outline:hover {
  background: rgba(0, 0, 0, 0.03);
}

.btn--ghost {
  background: rgba(0, 0, 0, 0.04);
  color: var(--black);
}

.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.06);
}

.btn--light {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}

.btn--light:hover {
  filter: brightness(0.98);
}

.btn--ghostLight {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--ghostLight:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Pills */
.pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.pill {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.78);
}

.pill--dark {
  background: var(--black);
  color: var(--white);
}

/* Hero */
.hero {
  padding: 34px 0 26px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.hero__title {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 1000;
  margin: 0;
}

.hero__titleAccent {
  color: var(--red);
  display: inline-block;
}

.hero__subtitle {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
}

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

.hero__meta {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metaCard {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 12px 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.metaCard__label {
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.55);
}

.metaCard__value {
  margin-top: 6px;
  font-weight: 1000;
  letter-spacing: -0.02em;
}

.metaCard__sub {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
}

/* Hero Visual */
.hero__visual {
  display: grid;
  gap: 14px;
}

.heroPoster {
  border-radius: var(--radius2);
  background: url("./assets/kim_circle.png");
  background-size: contain;
  background-repeat: no-repeat;
  color: var(--white);
  box-shadow: var(--shadow2);
  overflow: hidden;
  position: relative;
  padding: 18px;
  height: 340px;
  width: 340px;
  border-radius: 50%;
  margin: auto;
}

.heroPoster__top,
.heroPoster__bottom {
  position: relative;
  z-index: 1;
}

.heroPoster__top {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.stamp {
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stamp--light {
  background: rgba(255, 255, 255, 0.12);
}

.heroPoster__mid {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.posterTitle {
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  font-size: 12px;
}

.posterBig {
  font-size: 56px;
  line-height: 0.9;
  margin-top: 10px;
  font-weight: 1100;
  letter-spacing: -0.06em;
}

.posterBig--outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
  text-stroke: 2px rgba(255, 255, 255, 0.9);
}

.heroPoster__bottom {
  margin-top: 24px;
}

.posterRow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.92;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.posterNote {
  margin-top: 10px;
  font-weight: 800;
  opacity: 0.92;
}

.heroBadges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.badgeCard {
  display: block;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px;
  box-shadow: var(--shadow);
  transition:
    transform 140ms ease,
    filter 140ms ease;
}

.badgeCard:hover {
  transform: translateY(-1px);
}

.badgeCard--dark {
  background: var(--black);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.badgeCard__kicker {
  display: block;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.badgeCard__big {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 1100;
  letter-spacing: -0.02em;
}

.badgeCard__sub {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.section__head {
  margin-bottom: 18px;
}

.section__title {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 40px);
  letter-spacing: -0.04em;
  font-weight: 1100;
  line-height: 1.02;
}

.section__sub {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
  font-weight: 650;
}

/* Cards / grids */
.grid3 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.card--red {
  background: var(--red);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.card__icon {
  font-size: 28px;
}

.card__title {
  margin: 12px 0 0;
  font-weight: 1050;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.card__text {
  margin: 10px 0 0;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 650;
}

.card--red .card__text {
  color: rgba(255, 255, 255, 0.85);
}

.card__cta {
  margin-top: 14px;
}

/* Menu CTA block */
.menuCta {
  margin-top: 14px;
  border-radius: var(--radius2);
  background: var(--black);
  color: var(--white);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menuCta__title {
  margin: 0;
  font-weight: 1100;
  letter-spacing: -0.03em;
  font-size: 20px;
}

.menuCta__text {
  margin: 8px 0 0;
  opacity: 0.85;
  line-height: 1.55;
  max-width: 58ch;
  font-weight: 650;
}

.menuCta__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Location */
.locationGrid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 14px;
  align-items: stretch;
}

.panel {
  background: var(--white);
  border-radius: var(--radius2);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel__title {
  margin: 0;
  font-size: 18px;
  font-weight: 1100;
  letter-spacing: -0.03em;
}

.hours {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
}

.hours__row--closed {
  background: rgba(134, 18, 24, 0.1);
}

.hours__day {
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.hours__time {
  font-weight: 850;
  color: rgba(0, 0, 0, 0.72);
}

.panel__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.panel__note {
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.72);
  font-weight: 650;
}

.mapWrap {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  min-height: 360px;
  background: rgba(0, 0, 0, 0.04);
}

.mapWrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* Quotes */
.quote {
  margin: 0;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0;
  line-height: 1.65;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.78);
}

.quote footer {
  margin-top: 12px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.02em;
}

.quote--red {
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.12);
}

.quote--red p {
  color: rgba(255, 255, 255, 0.9);
}

.quote--red footer {
  color: rgba(255, 255, 255, 0.7);
}

.centerActions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* CTA Section */
.section--cta {
  background: linear-gradient(135deg, var(--red), #5e0f14);
  color: var(--white);
}

.ctaBlock {
  border-radius: 28px;
  padding: 26px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ctaBlock__title {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 40px);
  letter-spacing: -0.04em;
  font-weight: 1150;
  line-height: 1.02;
}

.ctaBlock__text {
  margin: 10px 0 0;
  opacity: 0.9;
  max-width: 70ch;
  line-height: 1.6;
  font-weight: 650;
}

.ctaBlock__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 28px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.4);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.footer__brand {
  font-weight: 1100;
  letter-spacing: -0.03em;
}

.footer__muted {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
}

.footer__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__link {
  font-weight: 950;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}

.footer__link:hover {
  background: rgba(0, 0, 0, 0.06);
}

.footer__bottom {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 750;
}

.footer__dot {
  opacity: 0.4;
}

.badgeCard--delivery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deliveryLinks {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.deliveryBtn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  transition:
    transform 120ms ease,
    filter 120ms ease;
}

.deliveryBtn:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}
.deliveryBtn:first-child {
  background: #ff3008; /* DoorDash red */
  color: white;
}

.deliveryBtn:last-child {
  background: #000000; /* Uber Eats black */
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .heroBadges {
    grid-template-columns: 1fr 1fr;
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }

  .grid3 {
    grid-template-columns: 1fr;
  }

  .locationGrid {
    grid-template-columns: 1fr;
  }

  .menuCta {
    flex-direction: column;
    align-items: flex-start;
  }

  .ctaBlock {
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar__text {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: absolute;
    right: 20px;
    top: calc(44px + 64px); /* topbar + header */
    width: min(92vw, 420px);
    background: rgba(238, 238, 238, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow2);
    border-radius: 20px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__link {
    padding: 12px 12px;
    border-radius: 14px;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    justify-content: space-between;
  }

  .heroPoster {
    min-height: 300px;
  }

  .posterBig {
    font-size: 52px;
  }

  .heroBadges {
    grid-template-columns: 1fr;
  }
}
