/* Jin Asian Fusion — Wheat Ridge. Lacquer, cream, brass, orchid from their pad thai plate. */

:root {
  --ink: #14110f;
  --lacquer: #1c1412;
  --stage: #241818;
  --brass: #c4a265;
  --brass-deep: #9a7a3d;
  --orchid: #6e3d68;
  --chili: #9a2f2a;
  --cream: #f6efe4;
  --paper: #fbf6ee;
  --mute: #5c534c;
  --line: #d8cbb8;
  --wrap: min(1080px, calc(100% - 1.6rem));
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  text-wrap: balance;
  color: var(--lacquer);
}
h1 { font-size: clamp(2.2rem, 8vw, 4.15rem); font-style: italic; }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 0.5rem 0.8rem; z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }
.wrap { width: var(--wrap); margin-inline: auto; }
.eyebrow, .kicker {
  font-family: var(--sans);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--chili);
  margin: 0 0 0.55rem;
}
.lede { font-size: 1.12rem; color: var(--mute); max-width: 40rem; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(20, 17, 15, 0.94);
  backdrop-filter: blur(12px);
  color: var(--cream);
}
.header-inner {
  display: flex; align-items: center; gap: 0.7rem; min-height: 70px;
}
.logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--cream);
  min-width: 0;
}
.mark {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
}
.logo-word {
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.05;
  font-weight: 600;
  font-style: italic;
}
.logo-word span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9bba6;
  font-weight: 650;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: 1.15rem; }
.nav a {
  text-decoration: none;
  font-weight: 550;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.nav a[aria-current="page"], .nav a:hover { color: var(--brass); }
.header-cta { margin-left: 0.1rem; }
.menu-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  border: 1px solid rgba(246,239,228,0.35); background: transparent;
  cursor: pointer; color: var(--cream);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: currentColor;
  margin: 0 auto; position: relative; content: "";
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 0; cursor: pointer;
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  padding: 0.85rem 1.15rem;
  border-radius: 1px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: var(--brass-deep); color: #fff8ee; }
.btn-chili { background: var(--chili); color: #fff8f2; }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ghost {
  background: transparent; color: inherit;
  border: 1.5px solid currentColor;
}
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hero {
  position: relative;
  min-height: min(92vh, 840px);
  display: grid;
  align-items: end;
  color: var(--paper);
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 52% 42%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20,17,15,0.88) 0%, rgba(20,17,15,0.22) 46%, rgba(20,17,15,0.42) 100%),
    linear-gradient(90deg, rgba(20,17,15,0.55) 0%, transparent 50%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 2.2rem 0 2.6rem;
  max-width: 40rem;
}
.hero .eyebrow { color: var(--brass); }
.hero h1 { color: var(--paper); max-width: 16ch; }
.hero .lede { color: #ece3d4; }
.as-said {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--brass);
  margin: 0 0 1rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: #d4c8b4;
}
.hero-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 1.12rem;
  color: #fff;
  font-weight: 600;
  font-style: italic;
}

section { padding: 3.15rem 0; }
.band-paper { background: var(--paper); }
.band-ink { background: var(--ink); color: var(--cream); }
.band-ink h2, .band-ink h3 { color: var(--paper); }
.band-ink .kicker { color: var(--brass); }
.band-ink .lede { color: #c9bba6; }
.band-stage { background: var(--stage); color: var(--cream); }
.band-stage h2 { color: var(--paper); }
.band-orchid { background: var(--orchid); color: #f8eef6; }
.band-orchid h2 { color: #f8eef6; }

.split { display: grid; gap: 1.6rem; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
}

.setlist {
  background: var(--paper);
  color: var(--ink);
  padding: 1.45rem 1.3rem 1.5rem;
  border: 1px solid var(--line);
  position: relative;
}
.setlist::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--brass);
}
.setlist h3 { margin-bottom: 0.4rem; font-style: italic; }
.setlist p { color: var(--mute); font-size: 0.98rem; }
.setlist dl { margin: 0.7rem 0 0; }
.setlist dt {
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--chili);
  margin-top: 0.65rem;
}
.setlist dd { margin: 0.1rem 0 0; }

.quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.8vw, 2.25rem);
  line-height: 1.26;
  margin: 0;
  max-width: 24ch;
}
.quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
  color: #e8c8e0;
}

.cards { display: grid; gap: 1rem; }
@media (min-width: 700px) {
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .cards.two { grid-template-columns: repeat(2, 1fr); }
}
.slab {
  background: var(--paper);
  padding: 1.35rem 1.2rem 1.45rem;
  border-top: 4px solid var(--brass);
}
.slab .num {
  font-family: var(--display);
  font-style: italic;
  color: var(--orchid);
  font-size: 1.45rem;
  display: block;
  margin-bottom: 0.35rem;
}
.slab p { color: var(--mute); font-size: 0.98rem; }

.menu-block { margin-bottom: 2.4rem; }
.menu-block h2 { margin-bottom: 0.25rem; }
.menu-note { color: var(--mute); margin-bottom: 1rem; max-width: 40rem; }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-list h3 {
  font-size: 1.15rem;
  margin: 0;
  font-style: italic;
}
.menu-list .price {
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  color: var(--orchid);
}
.menu-list p {
  grid-column: 1 / -1;
  color: var(--mute);
  font-size: 0.95rem;
  margin: 0;
}

.list {
  margin: 0.6rem 0 0;
  padding: 0 0 0 1.1rem;
  color: var(--mute);
}
.list li { margin: 0.25rem 0; }

.contact-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list span {
  display: block;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--chili);
  margin-bottom: 0.15rem;
}
.contact-list a { font-weight: 650; }

form {
  display: grid; gap: 0.4rem;
  background: var(--paper);
  padding: 1.3rem 1.2rem 1.4rem;
  border: 1px solid var(--line);
}
label {
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-top: 0.35rem;
}
input, textarea {
  font: inherit;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  border-radius: 1px;
}
textarea { min-height: 8rem; resize: vertical; }
.note { font-size: 0.88rem; color: var(--mute); }
.contact-grid { display: grid; gap: 1.6rem; }
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.05fr; align-items: start; }
}

.page-hero { padding: 2.5rem 0 0.3rem; }
.page-hero h1 { max-width: 16ch; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.pillars span {
  display: block;
  text-align: center;
  padding: 0.9rem 0.4rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(0.95rem, 2.6vw, 1.3rem);
  font-weight: 600;
}

.site-footer {
  background: var(--ink);
  color: #a89a88;
  padding: 2rem 0 5.6rem;
  font-size: 0.92rem;
}
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem;
  justify-content: space-between; align-items: flex-start;
}
.footer-brand {
  font-family: var(--display);
  font-style: italic;
  color: var(--paper);
  font-size: 1.2rem;
}

.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ink);
  box-shadow: 0 -6px 20px rgba(20,17,15,0.28);
}
.callbar a {
  text-align: center;
  padding: 0.85rem 0.4rem;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--cream);
}
.callbar a:first-child { background: var(--chili); color: #fff8f2; }
@media (min-width: 860px) {
  .callbar { display: none; }
  .site-footer { padding-bottom: 2.2rem; }
}

@media (max-width: 859px) {
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--lacquer);
    flex-direction: column; align-items: stretch;
    padding: 0.6rem 1rem 1rem;
    gap: 0;
    border-top: 1px solid rgba(246,239,228,0.15);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.8rem 0.2rem; border-bottom: 1px solid rgba(246,239,228,0.12); }
  .nav .btn { margin-top: 0.75rem; }
}
