/* The Dining Car — modern classic-diner design (red, white & a touch of blue) */
:root {
  --paper: #ffffff;
  --paper-warm: #faf7f2;
  --red: #c0121b;
  --red-dark: #8e0d13;
  --blue: #1e4a9a;
  --ink: #262220;
  --ink-soft: #5f5751;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", system-ui, sans-serif;
  background: var(--paper-warm);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.06rem;
}

h1, h2, h3, .deco { font-family: "Limelight", cursive; font-weight: 400; letter-spacing: .02em; }

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

a { color: var(--red-dark); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- top bar ---------- */
.topbar {
  background: var(--red-dark);
  color: #fff;
  font-size: .92rem;
  text-align: center;
  padding: .45rem 1rem;
  letter-spacing: .04em;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }

/* ---------- nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--red);
  border-bottom: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 1.4rem;
}
.brand {
  color: #fff; text-decoration: none;
  font-family: "Limelight", cursive; font-size: 1.45rem; line-height: 1.1;
  display: flex; align-items: center; gap: .7rem;
}
.brand img { height: 54px; width: auto; border-radius: 6px; }
.brand small { display: block; font-family: "Jost", sans-serif; font-size: .68rem; letter-spacing: .34em; text-transform: uppercase; color: #ffd9db; }
.nav-links { display: flex; gap: 1.6rem; align-items: center; list-style: none; }
.nav-links a {
  color: #fff; text-decoration: none; text-transform: uppercase;
  letter-spacing: .12em; font-size: .92rem; padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { border-bottom-color: #fff; }
.nav-links .call-btn {
  background: #fff; color: var(--red-dark); font-weight: 600;
  padding: .5rem 1.1rem; border-radius: 999px; border-bottom: none;
}
.nav-links .call-btn:hover { background: #ffe8e9; }
#nav-toggle { display: none; }
.hamburger { display: none; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; }

@media (max-width: 760px) {
  .hamburger { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--red); flex-direction: column; gap: 0;
    padding: .5rem 0 1rem; border-bottom: 3px solid var(--blue);
  }
  #nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links li { width: 100%; text-align: center; padding: .55rem 0; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 62vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(rgba(46,8,10,.55), rgba(46,8,10,.68)), var(--hero-img, var(--red-dark)) center/cover no-repeat;
  color: #fff; padding: 5rem 1.5rem;
}
.hero-inner { max-width: 780px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 1rem; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.hero .tagline { font-size: clamp(1.05rem, 2.5vw, 1.4rem); letter-spacing: .06em; font-style: italic; color: #ffe3e4; margin-bottom: 2rem; }
.hero .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero .hero-logo { max-width: 340px; width: 70%; margin: 0 auto 1.4rem; height: auto; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; font-size: .95rem;
  padding: .8rem 1.8rem; border-radius: 999px; transition: transform .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: #fff; color: var(--red-dark); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; }

/* page hero (interior pages) */
.hero.small { min-height: 34vh; padding: 3.5rem 1.5rem; }

/* logo hero (home page) */
.hero.light {
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, #f6f0e7 65%, #efe6d8 100%);
  color: var(--ink);
  overflow: hidden;
}
.hero .skyline {
  position: absolute; bottom: -2px; left: 0; width: 100%; height: 46%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero.light .hero-logo { max-width: 520px; width: 88%; margin-bottom: 1.8rem; }
.hero.light .tagline { color: var(--red-dark); }
.hero.light .btn-gold { background: var(--red); color: #fff; }
.hero.light .btn-outline { border-color: var(--red); color: var(--red-dark); }

/* ---------- order online buttons ---------- */
.order-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.order-buttons .btn { color: #fff; }
.btn-doordash { background: #eb1700; }
.btn-ubereats { background: #06c167; }
.btn-grubhub { background: #f63440; }

/* ---------- deco divider ---------- */
.divider {
  display: flex; align-items: center; justify-content: center; gap: .9rem;
  margin: 0 auto 1.6rem; color: var(--blue);
}
.divider::before, .divider::after { content: ""; height: 2px; width: 70px; background: var(--blue); }
.divider .diamond { width: 10px; height: 10px; background: var(--red); transform: rotate(45deg); }

/* ---------- sections ---------- */
section { padding: 4rem 1.5rem; }
.container { max-width: 1050px; margin: 0 auto; }
.narrow { max-width: 760px; }
.center { text-align: center; }
section h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--red); margin-bottom: .6rem; text-align: center; }
.section-sub { text-align: center; color: var(--ink-soft); font-style: italic; margin-bottom: 2.2rem; }

.alt { background: #fff; }
.dark { background: var(--red); color: #fff; }
.dark h2 { color: #fff; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: #fff; border-radius: 14px; padding: 1.8rem;
  box-shadow: 0 4px 18px rgba(38,34,28,.08);
  border-top: 4px solid var(--red);
  border: 1px solid #eee4da; border-top: 4px solid var(--red);
}
.card h3 { color: var(--red-dark); font-size: 1.2rem; margin-bottom: .7rem; }
.card p, .card ul { color: var(--ink-soft); font-size: .99rem; }
.card ul { padding-left: 1.15rem; }

/* photo gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .9rem; }
.gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; box-shadow: 0 3px 12px rgba(38,34,28,.15); }
.gallery img.wide { grid-column: 1 / -1; height: 360px; }

/* menu image pages */
.menu-pages { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.menu-pages a img { width: 100%; border-radius: 10px; box-shadow: 0 4px 16px rgba(38,34,28,.18); transition: transform .15s ease; }
.menu-pages a img:hover { transform: scale(1.02); }

/* ---------- menu (typed) ---------- */
.menu-section h3 {
  color: var(--blue); font-size: 1.35rem; text-align: center;
  margin: 2.4rem 0 1.2rem;
}
.menu-item { display: flex; align-items: baseline; gap: .6rem; margin-bottom: .85rem; }
.menu-item .name { font-weight: 600; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted #d8ccc0; }
.menu-item .price { font-weight: 600; color: var(--red-dark); white-space: nowrap; }
.menu-item-desc { color: var(--ink-soft); font-size: .93rem; margin: -.6rem 0 .9rem; }

.menu-note {
  text-align: center; color: var(--ink-soft); font-size: .92rem;
  font-style: italic; max-width: 720px; margin: 0 auto 1.4rem;
}
.menu-cols { column-count: 2; column-gap: 3rem; }
@media (max-width: 700px) { .menu-cols { column-count: 1; } }
.mi { break-inside: avoid; margin-bottom: .35rem; }
.badge {
  display: inline-block; background: var(--blue); color: #fff;
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 4px; padding: .1rem .4rem; vertical-align: middle; margin-left: .3rem;
}
.menu-jump {
  position: sticky; top: 68px; z-index: 40;
  background: #fff; border-bottom: 1px solid #eadfd3;
  display: flex; gap: 1.2rem; overflow-x: auto; padding: .6rem 1.2rem;
  -webkit-overflow-scrolling: touch;
}
.menu-jump a {
  white-space: nowrap; text-decoration: none; color: var(--red-dark);
  font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}
.menu-jump a:hover { color: var(--blue); }
.fine-print { text-align: center; color: var(--ink-soft); font-size: .82rem; max-width: 780px; margin: 2.5rem auto 0; }

/* ---------- info strip ---------- */
.info-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; text-align: center; }
.info-strip h3 { color: #fff; font-size: 1.1rem; margin-bottom: .5rem; }
.info-strip p { font-size: .98rem; }
.info-strip a { color: #fff; font-weight: 600; }

/* ---------- map ---------- */
.map-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 18px rgba(38,34,28,.15); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- video embeds ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.video-grid .vid { position: relative; padding-top: 56.25%; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(38,34,28,.18); }
.video-grid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- footer ---------- */
footer { background: var(--red-dark); color: #fff; padding: 3rem 1.5rem 2rem; text-align: center; }
footer .deco { color: #fff; font-size: 1.35rem; margin-bottom: .4rem; }
footer p { font-size: .95rem; margin-bottom: .35rem; }
footer a { color: #fff; text-decoration: underline; }
footer .fine { margin-top: 1.4rem; font-size: .8rem; color: #f3b9bc; }
