:root {
  --red: #d4291a;
  --red-dark: #9f1c14;
  --cream: #f5f0e8;
  --cream-2: #fff8ef;
  --ink: #1a1a1a;
  --muted: #6c6259;
  --gold: #c9a84c;
  --line: rgba(26, 26, 26, .14);
  --shadow: 0 18px 50px rgba(26, 26, 26, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: 'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .72rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(245, 240, 232, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream-2);
  border: 1px solid var(--line);
}

.brand strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.28rem;
  line-height: .95;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .74rem;
  margin-top: .1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .25rem;
  flex-wrap: wrap;
}

.nav a {
  padding: .58rem .72rem;
  border-radius: 8px;
  color: #3e3934;
  font-size: .9rem;
  font-weight: 700;
}

.nav a:hover,
.nav .nav-cta {
  color: #fff;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 26, 26, .88), rgba(26, 26, 26, .48) 45%, rgba(26, 26, 26, .18)),
    linear-gradient(0deg, rgba(26, 26, 26, .68), rgba(26, 26, 26, .06) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 0 6.2rem;
  color: #fff;
}

.eyebrow {
  margin-bottom: .75rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow { color: #ffd96a; }

h1,
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin-bottom: .85rem;
  font-size: 8.2rem;
  line-height: .78;
}

h2 {
  font-size: 3.8rem;
  line-height: .9;
  margin-bottom: 1rem;
}

h3 {
  margin-bottom: .45rem;
  font-size: 1.15rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .82rem 1.05rem;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button.secondary {
  color: var(--ink);
  background: var(--cream-2);
}

.hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .55);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.hero-strip span {
  padding: .95rem clamp(.8rem, 2vw, 1.5rem);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .24);
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.intro {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  max-width: 760px;
  color: #3d3732;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 1.6rem;
}

.section-heading p,
.combo-copy p,
.launch-panel p,
.mascot-band p {
  color: var(--muted);
}

.menu-section {
  background: var(--cream);
}

.menu-feature {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(280px, 1.05fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: stretch;
  margin-bottom: 1rem;
}

.menu-feature > img,
.menu-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-feature > div,
.menu-card,
.level-grid article,
.combo-list article,
.launch-panel,
.location-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-2);
  box-shadow: 0 10px 34px rgba(26, 26, 26, .08);
}

.menu-feature > div {
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.tag {
  margin-bottom: .5rem;
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem 1rem;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.price-row span {
  color: #403a35;
  font-weight: 700;
}

.price-row strong,
.menu-card strong,
.combo-list strong {
  color: var(--red);
  font-size: 1.15rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  overflow: hidden;
}

.menu-card > div {
  padding: 1.15rem;
}

.menu-card p {
  color: var(--muted);
}

.menu-card-text {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.level-section {
  color: #fff;
  background: var(--ink);
}

.level-section .eyebrow,
.combo-section .eyebrow {
  color: #ffd96a;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
}

.level-grid article {
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 1rem;
  color: #fff;
  background: #241f1c;
  border-color: rgba(255, 255, 255, .12);
}

.level-grid span,
.combo-list span {
  width: fit-content;
  margin-bottom: .8rem;
  padding: .28rem .5rem;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.level-grid strong {
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.level-grid p {
  margin: auto 0 0;
  color: rgba(255, 255, 255, .72);
}

.combo-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: start;
  background: var(--red);
  color: #fff;
}

.combo-copy p {
  color: rgba(255, 255, 255, .86);
}

.combo-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.combo-list article {
  min-height: 235px;
  padding: 1rem;
  color: var(--ink);
}

.combo-list p {
  color: var(--muted);
}

.mascot-band {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(280px, 1.25fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: center;
  background: var(--cream-2);
}

.mascot-band img {
  width: min(420px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.launch-section {
  background: url("assets/mascot-spicy-emotion.png?v=20260514b") right 8% center / min(42vw, 500px) no-repeat, var(--ink);
  color: #fff;
}

.launch-panel {
  max-width: 720px;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: rgba(245, 240, 232, .96);
  color: var(--ink);
}

.location {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
  background: var(--cream);
}

.location-info {
  padding: 1.25rem;
}

.location-info dl {
  margin: 0 0 1.2rem;
}

.location-info div {
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.location-info dt {
  font-weight: 900;
}

.location-info dd {
  margin: .25rem 0 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem clamp(1rem, 5vw, 5rem);
  color: rgba(255, 255, 255, .78);
  background: var(--ink);
}

.footer p {
  margin: 0;
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 6.4rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .nav {
    justify-content: flex-start;
  }

  .menu-grid,
  .combo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .level-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .hero-bg {
    object-position: 44% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(26, 26, 26, .82), rgba(26, 26, 26, .25)),
      linear-gradient(90deg, rgba(26, 26, 26, .76), rgba(26, 26, 26, .18));
  }

  .hero-strip,
  .intro,
  .menu-feature,
  .combo-section,
  .mascot-band,
  .location {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    position: relative;
  }

  .hero-content {
    padding-bottom: 3rem;
  }

  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .menu-feature > img,
  .menu-card img {
    min-height: 260px;
  }

  .launch-section {
    background-size: 320px;
    background-position: right -90px bottom -80px;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: .7rem 1rem;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    max-width: 210px;
  }

  .nav a {
    padding: .5rem .58rem;
    font-size: .82rem;
  }

  .hero-content {
    width: calc(100% - 1.4rem);
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .menu-grid,
  .combo-list,
  .level-grid {
    grid-template-columns: 1fr;
  }
}
