/* Egg Roll Express — lacquer red + imperial gold takeout theme */
:root {
  --ink: #1a1210;
  --ink-soft: #3d2c28;
  --cream: #faf6f0;
  --paper: #fff9f2;
  --lacquer: #8b1a14;
  --lacquer-deep: #5c0f0b;
  --gold: #d4a017;
  --gold-light: #f0c45a;
  --jade: #2d6a4f;
  --shadow: 0 20px 50px rgba(26, 18, 16, 0.22);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--lacquer-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--lacquer);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--paper);
  font-weight: 600;
  border-radius: var(--radius-md);
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--lacquer-deep) 94%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  line-height: 1.2;
}

.logo span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--paper) 75%, transparent);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--lacquer-deep) !important;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--gold-light);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--paper);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lacquer-deep);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 2px solid var(--gold);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--lacquer-deep) 0%, var(--lacquer) 55%, #6b2018 100%);
  color: var(--paper);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.25), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 4rem 1.25rem 5rem;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.lede {
  font-size: 1.15rem;
  max-width: 34ch;
  color: color-mix(in srgb, var(--paper) 88%, transparent);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--lacquer-deep);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--lacquer-deep);
}

.btn-ghost {
  border-color: color-mix(in srgb, var(--paper) 50%, transparent);
  color: var(--paper);
}

.btn-ghost:hover {
  background: color-mix(in srgb, var(--paper) 12%, transparent);
  color: var(--paper);
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
  max-height: 520px;
  width: 100%;
  object-fit: cover;
}

.section {
  padding: 4rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--lacquer);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.section-alt {
  background: var(--paper);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.dish-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--lacquer) 15%, transparent);
  box-shadow: 0 8px 24px rgba(26, 18, 16, 0.06);
}

.dish-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.dish-card .price {
  color: var(--lacquer);
  font-weight: 700;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: color-mix(in srgb, var(--lacquer) 8%, var(--cream));
  border-radius: var(--radius-md);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lacquer);
}

.visit-panel {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .visit-panel {
    grid-template-columns: 1fr 1fr;
  }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  text-align: left;
}

.menu-category {
  margin-bottom: 2.5rem;
}

.menu-category h3 {
  font-family: var(--font-display);
  color: var(--lacquer-deep);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--ink) 10%, transparent);
}

.menu-note {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.site-footer {
  background: var(--lacquer-deep);
  color: color-mix(in srgb, var(--paper) 85%, transparent);
  padding: 2.5rem 1.25rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer a {
  color: var(--gold-light);
}

.site-footer h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.35rem;
}

.fine-print {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-top: 1.5rem;
  grid-column: 1 / -1;
}

/* Standard pages */
.standard-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.standard-page .section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0.25rem 0 1rem;
}

.rhythm-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 120px;
  margin: 1rem 0;
}

.rhythm-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.rhythm-bar-fill {
  background: var(--lacquer);
  border-radius: 4px 4px 0 0;
  width: 100%;
  max-width: 2.5rem;
  min-height: 8px;
}

.rhythm-bar-label {
  font-size: 0.72rem;
  margin-top: 0.35rem;
}

.insight-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.insight-card {
  border: 1px solid color-mix(in srgb, var(--lacquer) 20%, transparent);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  background: var(--paper);
}

.insight-card strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lacquer);
  margin-bottom: 0.25rem;
}

.parking-map {
  height: 320px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  margin: 1rem 0;
}

.parking-table {
  width: 100%;
  border-collapse: collapse;
}

.parking-table th,
.parking-table td {
  border: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
  padding: 0.55rem;
  text-align: left;
}

details {
  margin: 0.5rem 0;
  border: 1px solid color-mix(in srgb, var(--lacquer) 18%, transparent);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
  background: var(--paper);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.kb-grid {
  display: grid;
  gap: 1.5rem;
}

.kb-section h3 {
  font-family: var(--font-display);
  color: var(--lacquer-deep);
  margin: 0 0 0.5rem;
}

.kb-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.kb-section li {
  margin-bottom: 0.35rem;
}

.open-badge {
  display: inline-block;
  background: var(--jade);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-left: 0.5rem;
}

.gallery-grid .gallery-card {
  margin: 0;
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--lacquer) 12%, transparent);
}

.gallery-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.map-link-ghost {
  color: var(--lacquer-deep) !important;
  border: 2px solid var(--lacquer);
  margin-left: 0.5rem;
}

.menu-board-figure {
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold);
}

.menu-board-figure img {
  width: 100%;
  display: block;
}

.about-photo {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold);
}
