:root {
  --ink: #1b1712;
  --muted: #6c6257;
  --paper: #f6efe2;
  --paper-strong: #fff8ea;
  --green: #0f3329;
  --green-2: #183f35;
  --gold: #c99345;
  --brass: #e7bf74;
  --brown: #4b2416;
  --line: rgba(27, 23, 18, 0.16);
  --shadow: 0 22px 60px rgba(27, 23, 18, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
  color: #fff8ea;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(15, 51, 41, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 248, 234, 0.62);
  border-radius: 50%;
  color: var(--brass);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 78px) 70px;
  color: #fff8ea;
  background: #10100d;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 18, 14, 0.92) 0%, rgba(9, 18, 14, 0.7) 38%, rgba(9, 18, 14, 0.2) 70%),
    linear-gradient(0deg, rgba(9, 18, 14, 0.8) 0%, rgba(9, 18, 14, 0) 45%);
}

.hero-content {
  position: relative;
  max-width: 940px;
}

.unofficial {
  max-width: max-content;
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(231, 191, 116, 0.78);
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 9.2vw, 8.9rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 30px;
  color: rgba(255, 248, 234, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.menu-row:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--brass);
  color: #21160e;
}

.button.ghost {
  border-color: rgba(255, 248, 234, 0.5);
  color: #fff8ea;
}

.today-panel {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 48px;
  display: grid;
  width: min(340px, calc(100% - 40px));
  gap: 10px;
  padding: 22px;
  border-left: 2px solid var(--brass);
  background: rgba(12, 29, 23, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.today-panel span {
  color: rgba(255, 248, 234, 0.72);
  font-size: 0.88rem;
}

.today-panel strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.22;
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(20px, 6vw, 78px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-heading h2,
.visit h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  line-height: 1;
}

.section-heading p,
.visit p {
  color: var(--muted);
  font-size: 1rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline article {
  min-height: 260px;
  padding: 32px 28px 30px;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: block;
  margin-bottom: 56px;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline h3,
.menu-column h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.45rem;
}

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

.dark {
  background: var(--green);
  color: var(--paper-strong);
}

.inverse p {
  color: rgba(255, 248, 234, 0.7);
}

.menu-board {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(250px, 0.65fr);
  gap: 26px;
  align-items: stretch;
}

.menu-column {
  padding-top: 10px;
}

.menu-column h3 {
  margin-bottom: 18px;
  color: var(--brass);
}

.menu-row {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 248, 234, 0.15);
  background: rgba(255, 248, 234, 0.04);
  color: var(--paper-strong);
  cursor: pointer;
  padding: 18px;
  text-align: left;
  transition: transform 160ms ease, border 160ms ease, background 160ms ease;
}

.menu-row span {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.24rem;
}

.menu-row small {
  color: rgba(255, 248, 234, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-row.is-active {
  border-color: rgba(231, 191, 116, 0.72);
  background: rgba(231, 191, 116, 0.12);
}

.menu-note {
  align-self: stretch;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background:
    linear-gradient(rgba(32, 21, 12, 0.68), rgba(32, 21, 12, 0.68)),
    repeating-linear-gradient(0deg, rgba(255, 248, 234, 0.08) 0, rgba(255, 248, 234, 0.08) 1px, transparent 1px, transparent 12px);
  border: 1px solid rgba(231, 191, 116, 0.3);
}

.menu-note span {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-note p {
  margin: 14px 0 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.25;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.hours-block {
  padding-top: 14px;
}

.hours-block p {
  max-width: 560px;
  margin: 24px 0 40px;
}

.hours-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.hours-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  color: var(--brown);
  font-weight: 900;
  text-transform: uppercase;
}

.hours-list dd {
  margin: 0;
}

.route-card {
  padding: 32px;
  background: var(--paper-strong);
  box-shadow: 0 22px 60px rgba(75, 36, 22, 0.14);
}

.route-card h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

address {
  margin-bottom: 22px;
  font-style: normal;
  font-weight: 700;
}

.contact-links {
  margin-bottom: 26px;
}

.contact-links a {
  border-bottom: 1px solid currentColor;
  color: var(--brown);
  font-weight: 800;
  text-decoration: none;
}

.route-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.route-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  color: var(--muted);
}

.route-list span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.button.route {
  width: 100%;
  background: var(--green);
  color: var(--paper-strong);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 78px);
  background: #140f0b;
  color: rgba(255, 248, 234, 0.72);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--brass);
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 901px) {
  h1 {
    white-space: nowrap;
  }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .hero {
    min-height: 980px;
  }

  .today-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .site-header.is-scrolled {
    padding-block: 10px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 860px;
    padding-top: 170px;
  }

  .today-panel {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .section-heading,
  .timeline,
  .menu-board,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .timeline span {
    margin-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 780px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .section {
    padding-inline: 20px;
  }

  .hours-list div,
  .route-list li,
  .menu-row {
    grid-template-columns: 1fr;
  }

  .route-card {
    padding: 24px;
  }
}

/* Shared Google Maps fix: replace decorative map sketches with real embedded maps. */
.google-map-section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 6vw, 86px) auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
}

.google-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.google-map-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.google-map-copy h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.google-map-copy p:not(.google-map-kicker) {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.google-map-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid currentColor;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.google-map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  background: #e6ebef;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.12);
}

.map-sketch,
.mini-map,
.map-card:not(.google-map-card),
.map-panel:not(.google-map-panel),
.map[aria-label*="map" i] {
  display: none !important;
}

@media (max-width: 760px) {
  .google-map-section {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 560px);
    margin: 36px auto;
  }

  .google-map-frame {
    min-height: 300px;
  }
}

/* Shared real menu fix: menu category buttons now reveal actual menu items. */
.real-menu-section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 6vw, 86px) auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.real-menu-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.real-menu-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.real-menu-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.real-menu-head p:not(.real-menu-kicker) {
  max-width: 540px;
  margin: 0;
  line-height: 1.55;
  opacity: 0.82;
}

.real-menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.real-menu-tab {
  min-height: 42px;
  border: 1px solid rgba(25, 25, 25, 0.18);
  border-radius: 6px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  font: inherit;
  font-weight: 800;
}

.real-menu-tab[aria-selected="true"] {
  background: #151515;
  color: #fff;
  border-color: #151515;
}

.real-menu-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.real-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.real-menu-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.real-menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.45;
  opacity: 0.78;
}

.real-menu-price {
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .real-menu-section {
    width: min(100% - 24px, 560px);
    margin: 36px auto;
    padding: 18px;
  }

  .real-menu-head {
    display: grid;
    align-items: start;
  }

  .real-menu-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .real-menu-tab {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
  }

  .real-menu-panel {
    grid-template-columns: 1fr;
  }
}

