/* Design 1 — chrome and vinyl diner (light). Cream paper, logo cherry, chrome hairlines, checker kick. */

:root {
  --font-gothic: "Oswald", "Franklin Gothic Medium", "Arial Narrow", Impact, sans-serif;
  --font-script: "Yellowtail", "Brush Script MT", "Segoe Script", cursive;
  --font-body: "Source Serif 4", "Source Serif Pro", "Iowan Old Style", Georgia, serif;
  --paper: #f6edd8;
  --paper-deep: #efe2c4;
  --paper-lift: #fff8ea;
  --ink: #1c1410;
  --ink-soft: #5a4a40;
  --cherry: #b20b2b;
  --cherry-deep: #8a0822;
  --cherry-soft: rgba(178, 11, 43, 0.1);
  --cream: #fff7ea;
  --chrome-hi: #f4f5f7;
  --chrome-mid: #c8ccd2;
  --chrome-lo: #8d939c;
  --line: #d8cbb0;
  --line-strong: #c4b38e;
  --star: #c9a227;
  --shadow: 0 16px 40px rgba(28, 20, 16, 0.1);
  --measure: 72rem;
  --pad: 1.35rem;
  --header-h: 4.75rem;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  min-height: 100vh;
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse at 12% -10%, rgba(178, 11, 43, 0.07), transparent 42%),
    radial-gradient(ellipse at 92% 8%, rgba(255, 255, 255, 0.55), transparent 36%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(80, 50, 20, 0.018) 2px,
      rgba(80, 50, 20, 0.018) 3px
    );
  color: var(--ink);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 80;
  padding: 0.4rem 0.7rem;
  background: var(--cherry);
  color: #fff;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(var(--measure), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

/* Chrome hairline + checker */

.chrome-rail {
  height: 7px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    var(--chrome-hi) 18%,
    var(--chrome-mid) 46%,
    #9aa1aa 52%,
    #e7eaee 78%,
    var(--chrome-lo) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(28, 20, 16, 0.18);
}

.checker {
  height: 48px;
  background: repeating-conic-gradient(#141414 0% 25%, #f7f3ea 0% 50%) 0 0 / 24px 24px;
}

.vinyl-stitch,
.vinyl-band {
  height: 36px;
  background-color: var(--cherry);
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0 10px,
      rgba(255, 247, 234, 0.62) 10px 12px,
      transparent 12px 22px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 10px,
      rgba(255, 247, 234, 0.42) 10px 12px,
      transparent 12px 22px
    );
  background-size: auto 2px, auto 2px;
  background-position: center 11px, center 23px;
  background-repeat: repeat-x;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.28),
    inset 0 -1px 0 rgba(28, 20, 16, 0.22);
}

.diner-break {
  display: block;
}

#menu > .diner-break {
  margin: 1.6rem 0 0.35rem;
}

/* Draft banner — small line, those two words only */

.draft-banner {
  padding: 0.22rem 0.75rem;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font-gothic);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper-lift);
  box-shadow: 0 1px 0 var(--chrome-mid), 0 8px 24px rgba(28, 20, 16, 0.06);
}

.bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 3.1rem;
  height: 2.55rem;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid var(--cherry-deep);
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--cherry);
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-gothic);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-script {
  font-family: var(--font-script);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--cherry);
  text-transform: none;
}

.nav-main {
  display: none;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
  font-family: var(--font-gothic);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-main a { text-decoration: none; }
.nav-main a:hover { color: var(--cherry); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-strong);
  background: var(--cream);
}
.nav-toggle svg { width: 1.15rem; height: 1.15rem; }

.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.4rem var(--pad) 1rem;
  background: var(--paper-lift);
  border-top: 1px solid var(--line);
  font-family: var(--font-gothic);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-drawer[hidden] { display: none; }
.nav-drawer a {
  text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 860px) {
  .nav-main { display: flex; }
  .nav-actions { margin-left: 0; }
  .nav-toggle,
  .nav-drawer { display: none !important; }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  font-family: var(--font-gothic);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 1rem; height: 1rem; }

.btn-ghost {
  border-color: var(--line-strong);
  background: var(--cream);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--cherry); color: var(--cherry); }

.btn-accent {
  background: var(--cherry);
  color: #fff8ee;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-accent:hover { background: var(--cherry-deep); }

.btn-lg { padding: 0.8rem 1.25rem; font-size: 0.95rem; }

/* Hero — full-bleed photo rotator under cream/cherry copy */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 34rem;
  padding: 2.8rem 0 2.6rem;
  background: var(--paper);
}

.hero-photos {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.58) contrast(0.92) brightness(1.08);
  transition: opacity 1.1s ease;
}

.hero-photo.is-on { opacity: 1; }

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246, 237, 216, 0.82) 0%, rgba(246, 237, 216, 0.46) 48%, rgba(246, 237, 216, 0.2) 100%),
    linear-gradient(180deg, rgba(246, 237, 216, 0.18) 0%, rgba(246, 237, 216, 0.1) 38%, rgba(246, 237, 216, 0.58) 74%, var(--paper) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-gothic);
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 14ch;
  text-shadow: 0 1px 0 rgba(255, 248, 234, 0.75);
}
.hero-copy h1 em {
  display: block;
  margin-top: 0.2em;
  font-family: var(--font-script);
  font-size: 0.62em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cherry);
  line-height: 1.05;
}

.eyebrow {
  margin-bottom: 0.55rem;
  font-family: var(--font-gothic);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cherry);
}

.hero-lede {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 1.12rem;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero-badge {
  justify-self: start;
  width: min(14rem, 56vw);
  border: 1px solid var(--cherry-deep);
  box-shadow:
    0 0 0 6px var(--cream),
    0 0 0 7px var(--chrome-mid),
    var(--shadow);
}

@media (min-width: 800px) {
  .hero { min-height: 38rem; padding: 3.4rem 0 3rem; }
  .hero-inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
  .hero-badge { width: 16.5rem; }
}

/* Fact strip — hours, address, telephone */

.facts {
  background: var(--paper-lift);
}

.facts.band-cherry {
  background: var(--cherry);
  color: #fff8ee;
}
.facts.band-cherry .fact-k {
  color: #fff8ee;
  opacity: 0.86;
}
.facts.band-cherry .fact-v,
.facts.band-cherry a {
  color: #fff8ee;
}
.facts.band-cherry .fact {
  border-color: rgba(255, 248, 234, 0.22);
}
.facts.band-cherry a:hover {
  color: var(--cream);
}

.facts-grid {
  display: grid;
  gap: 0;
}

.fact {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.fact:last-child { border-bottom: 0; }

.fact-k {
  font-family: var(--font-gothic);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cherry);
}
.fact-v {
  margin-top: 0.28rem;
  font-size: 1.02rem;
}
.fact a { text-decoration: none; }
.fact a:hover { color: var(--cherry); }

@media (min-width: 800px) {
  .facts-grid {
    grid-template-columns: 1.1fr 1.4fr 0.9fr;
    gap: 1.5rem;
  }
  .fact {
    padding: 1.4rem 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding-right: 1.4rem;
  }
  .fact:last-child { border-right: 0; padding-right: 0; }
}

/* Sections */

.section { padding: 3rem 0; }
.section-tight { padding: 2.4rem 0; }

.band-cherry {
  background: var(--cherry);
  color: #fff8ee;
}
.band-cherry .eyebrow,
.band-cherry h2,
.band-cherry .lede { color: #fff8ee; }
.band-cherry .lede { opacity: 0.9; }

.band-paper {
  background: var(--paper-lift);
  border-block: 1px solid var(--line);
}

.display {
  font-family: var(--font-gothic);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.lede {
  margin-top: 0.7rem;
  max-width: 38rem;
  color: var(--ink-soft);
}

/* Menu */

.menu-head { margin-bottom: 1.25rem; }

.menu-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1.3rem 0 1.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  font-family: var(--font-gothic);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.pill:hover,
.pill:focus-visible {
  border-color: var(--cherry);
  color: var(--cherry);
  background: var(--paper-lift);
}

.menu-section {
  padding: 1.6rem 0 0.4rem;
  scroll-margin-top: 6.75rem;
}
.menu-section + .menu-section {
  border-top: 1px solid var(--line);
  margin-top: 1.1rem;
}

.menu-section h3 {
  display: inline-block;
  margin-bottom: 0.2rem;
  padding-bottom: 0.28rem;
  font-family: var(--font-gothic);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cherry);
  border-bottom: 3px solid var(--cherry);
}

.subhead {
  margin: 1.15rem 0 0.35rem;
  font-family: var(--font-gothic);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.menu-list { list-style: none; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px dotted var(--line-strong);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item.is-extra[hidden] { display: none; }

.menu-more {
  display: inline-flex;
  margin: 0.75rem 0 0.2rem;
  padding: 0.2rem 0;
  font-family: var(--font-gothic);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.menu-more:hover,
.menu-more:focus-visible { color: var(--cherry-deep); }

.item-name {
  font-size: 1.05rem;
  font-weight: 600;
}
.item-desc {
  grid-column: 1 / -1;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.item-price {
  font-family: var(--font-gothic);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cherry);
  white-space: nowrap;
}

@media (min-width: 720px) {
  .menu-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }
  .menu-section { grid-column: auto; }
}

/* Reviews */

.reviews-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .reviews-grid {
    grid-template-columns: minmax(16rem, 22rem) 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.review-rotator { width: 100%; overflow: hidden; }
.review-stage {
  width: 100%;
  height: 13rem;
  overflow: hidden;
}
@media (min-width: 40rem) {
  .review-stage { height: 13.75rem; }
}
.review-rotator.is-open { overflow: visible; }
.review-rotator.is-open .review-stage {
  height: auto;
  overflow: visible;
}

.review-card,
.review-stage .review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 1.05rem 1.15rem 1rem;
  background: var(--paper-lift);
  border: 1px solid var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    var(--shadow);
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.review-rotator.is-open .review-card {
  height: auto;
}

.review-card.is-in { animation: fade-in 0.4s ease; }
.review-card.is-out { opacity: 0; transition: opacity 0.35s; }

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.review-source-pill {
  border-radius: 999px;
  background: var(--cherry-soft);
  padding: 0.22rem 0.6rem;
  font-family: var(--font-gothic);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cherry);
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--star);
}
.review-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--star);
}

.review-quote {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 0.7rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.4;
}
@media (min-width: 40rem) {
  .review-quote { font-size: 1.18rem; }
}
.review-card.is-open .review-quote {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-more {
  flex-shrink: 0;
  margin-top: 0.55rem;
  font-family: var(--font-gothic);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
}

.review-who {
  flex-shrink: 0;
  margin-top: 0.55rem;
  font-size: 0.92rem;
  font-style: normal;
  color: var(--ink-soft);
}
.review-name { font-weight: 600; color: var(--ink); }
.review-date { color: var(--ink-soft); }

.review-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.1rem;
}
.review-count {
  font-family: var(--font-gothic);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}
.review-arrows { display: flex; gap: 0.5rem; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  color: var(--ink);
}
.icon-btn:hover { border-color: var(--cherry); color: var(--cherry); }
.icon-btn svg { width: 1rem; height: 1rem; }

/* Order + Visit */

.split {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.panel {
  padding: 1.5rem 1.4rem 1.6rem;
  background: var(--paper-lift);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 #fff, var(--shadow);
}

.panel h2 { margin-bottom: 0.55rem; }

.panel p + p { margin-top: 0.7rem; }

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.addr {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 1.05rem;
}

/* Footer */

.site-footer {
  background: var(--paper-lift);
}
.footer-inner {
  display: grid;
  gap: 0.55rem;
  padding: 1.6rem 0 1.8rem;
  text-align: center;
}
.footer-name {
  font-family: var(--font-gothic);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cherry);
}
.footer-legal {
  margin-top: 0.4rem;
  font-family: var(--font-gothic);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--cherry); }
