:root {
  --ink: #080405;
  --ink-2: #12090d;
  --surface: #1a1014;
  --line: rgba(255, 255, 255, 0.14);
  --text: #fff8f2;
  --muted: #cfc1c8;
  --magenta: #b3529e;
  --hot-pink: #ff3fc2;
  --amber: #ffbe54;
  --red: #ff4d35;
  --teal: #1dd8bd;
  --green: #89e06d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(8, 4, 5, 0.9), rgba(8, 4, 5, 0.36));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(220px, 48vw);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 248, 242, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a,
.nav-action {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--hot-pink);
}

.nav-action {
  border: 1px solid rgba(255, 63, 194, 0.56);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(255, 63, 194, 0.18);
}

.nav-action:hover,
.nav-action:focus-visible {
  background: rgba(255, 63, 194, 0.14);
}

.hero {
  position: relative;
  min-height: 88svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(18px, 5vw, 72px) 86px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/night-market-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 4, 5, 0.96) 0%, rgba(8, 4, 5, 0.78) 34%, rgba(8, 4, 5, 0.24) 68%),
    linear-gradient(0deg, rgba(8, 4, 5, 0.96) 0%, rgba(8, 4, 5, 0) 32%),
    radial-gradient(circle at 20% 34%, rgba(255, 63, 194, 0.28), transparent 28%);
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow,
.menu-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  max-width: 12ch;
  font-size: clamp(4.2rem, 12vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 26px rgba(255, 63, 194, 0.42),
    0 8px 42px rgba(0, 0, 0, 0.72);
}

h2 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(2.1rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: #f7e7df;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--hot-pink), var(--red));
  color: white;
  box-shadow: 0 16px 44px rgba(255, 63, 194, 0.28);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(8, 4, 5, 0.46);
  color: white;
}

.button.disabled {
  cursor: default;
  opacity: 0.78;
  pointer-events: none;
}

.button.full {
  width: 100%;
}

.ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(8, 4, 5, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 242, 0.8);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  background: var(--hot-pink);
  box-shadow: 0 0 18px var(--hot-pink);
}

.section-band {
  scroll-margin-top: 92px;
  padding: clamp(68px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro {
  background:
    linear-gradient(135deg, rgba(179, 82, 158, 0.2), transparent 30%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
}

.intro-grid,
.vibe-grid,
.order-grid,
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.intro p:last-child,
.order p,
.vibe-copy p,
.visit p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.section-heading {
  margin-bottom: 34px;
}

.menu {
  background:
    linear-gradient(180deg, #12080d 0%, #080405 100%),
    radial-gradient(circle at 80% 20%, rgba(29, 216, 189, 0.18), transparent 34%);
}

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

.menu-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  gap: 18px;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.menu-card.feature-card {
  grid-column: span 2;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1fr);
  grid-template-rows: auto;
}

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

.menu-image {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #090507;
}

.menu-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 50%, rgba(8, 4, 5, 0.28)),
    radial-gradient(circle at 18% 14%, rgba(255, 63, 194, 0.24), transparent 34%);
  pointer-events: none;
}

.menu-image img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.menu-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.94rem;
  list-style: none;
}

.menu-list.compact {
  gap: 8px;
}

.menu-list li {
  padding-left: 16px;
  border-left: 3px solid rgba(255, 63, 194, 0.72);
}

.menu-list strong {
  display: block;
  color: #fff8f2;
}

.vibe {
  background:
    linear-gradient(135deg, rgba(29, 216, 189, 0.14), transparent 30%),
    linear-gradient(180deg, #080405, #11090d);
}

.order {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 190, 84, 0.16), transparent 26%),
    linear-gradient(180deg, #080405, #13080d);
}

.order-actions {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.vibe-points {
  display: grid;
  gap: 14px;
}

.vibe-points div,
.visit-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 20px;
}

.vibe-points span {
  display: block;
  margin-bottom: 8px;
  color: var(--hot-pink);
  font-weight: 950;
}

.vibe-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.vibe-points p {
  margin-bottom: 0;
  color: var(--muted);
}

.visit {
  background:
    linear-gradient(90deg, rgba(255, 63, 194, 0.18), transparent 42%),
    #080405;
}

.visit-panel {
  box-shadow: var(--shadow);
}

dl {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}

dt {
  margin-bottom: 2px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: #fff8f2;
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px clamp(18px, 5vw, 72px);
  background: #050203;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
  color: rgba(255, 248, 242, 0.62);
}

.footer-inner img {
  width: 190px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding-top: 118px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 4, 5, 0.98) 0%, rgba(8, 4, 5, 0.72) 58%, rgba(8, 4, 5, 0.24) 100%),
      linear-gradient(0deg, rgba(8, 4, 5, 0.96) 0%, rgba(8, 4, 5, 0) 36%);
  }

  .intro-grid,
  .vibe-grid,
  .order-grid,
  .visit-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card.feature-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand img {
    width: 178px;
  }

  .nav-action {
    padding: 9px 10px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 90svh;
    padding: 104px 16px 82px;
  }

  .hero-media {
    background-position: 62% center;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .menu-card {
    min-height: auto;
    padding: 14px;
  }

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