:root {
  --mlb-ink: #211d19;
  --mlb-ink-soft: #312820;
  --mlb-cream: #f2ead8;
  --mlb-paper: #fbf6ea;
  --mlb-paper-deep: #e8dbc1;
  --mlb-brass: #8a571f;
  --mlb-brass-bright: #b9823b;
  --mlb-forest: #263b33;
  --mlb-rust: #8a3f2b;
  --mlb-text: #3c3027;
  --mlb-muted: #665442;
  --mlb-line: rgba(43, 33, 24, .22);
  --mlb-max: 1180px;
  --mlb-shadow: 0 22px 55px -38px rgba(25, 18, 12, .65);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.mlb-menu-open { overflow: hidden; }
body { margin: 0; background: var(--mlb-ink); }
img, video, image-slot { max-width: 100%; }
button, input, textarea { font: inherit; }

.mlb-site {
  position: relative;
  background: var(--mlb-cream) !important;
  color: var(--mlb-ink) !important;
  font-family: "EB Garamond", Georgia, serif !important;
  font-size: 18px;
  line-height: 1.62;
}

/* Scroll-drawn Marda Line route */
.mlb-route-enabled { position: relative; }

.mlb-route-map,
.mlb-route-stops {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  pointer-events: none;
  z-index: 24;
}

.mlb-route-map {
  overflow: visible;
  filter: drop-shadow(0 1px 0 rgba(255, 249, 234, .52));
}

.mlb-route-track,
.mlb-route-progress {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.mlb-route-track {
  stroke: rgba(117, 82, 45, .24);
  stroke-width: 5px;
  stroke-dasharray: 1 9;
  stroke-linecap: round;
}

.mlb-route-progress {
  stroke: var(--mlb-brass-bright);
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mlb-route-tram {
  filter: drop-shadow(0 2px 2px rgba(248, 240, 222, .62));
}

.mlb-tram-silhouette {
  fill: #181512;
  stroke: rgba(248, 240, 222, .9);
  stroke-width: 1.1px;
  vector-effect: non-scaling-stroke;
}

.mlb-tram-roof-detail,
.mlb-tram-pantograph,
.mlb-tram-nose,
.mlb-tram-side-windows {
  fill: none;
  stroke: rgba(248, 240, 222, .82);
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.mlb-tram-side-windows {
  stroke-width: 1.35px;
  stroke-dasharray: 3 2;
}

.mlb-tram-roof-panel {
  fill: rgba(248, 240, 222, .12);
  stroke: rgba(248, 240, 222, .72);
  stroke-width: .8px;
  vector-effect: non-scaling-stroke;
}

.mlb-tram-coupler {
  fill: #181512;
  stroke: rgba(248, 240, 222, .84);
  stroke-width: .8px;
  vector-effect: non-scaling-stroke;
}

.mlb-tram-trailer { opacity: .94; }

.mlb-route-stop {
  position: absolute;
  display: flex;
  align-items: center;
  transform: translate(-7px, -7px);
  color: var(--mlb-muted);
  opacity: .56;
  transition: color .35s ease, opacity .35s ease;
}

.mlb-route-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 2px solid var(--mlb-brass-bright);
  border-radius: 50%;
  background: var(--mlb-ink);
  box-shadow: 0 0 0 3px rgba(251, 246, 234, .72);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.mlb-route-label {
  position: absolute;
  right: 19px;
  padding: 4px 10px 3px 8px;
  border-right: 1px solid currentColor;
  background: rgba(248, 240, 222, .9);
  box-shadow: 5px 5px 0 rgba(33, 29, 25, .08);
  color: var(--mlb-ink-soft);
  font-family: "Marcellus SC", serif;
  font-size: 10px;
  letter-spacing: .18em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.mlb-route-stop.is-reached { opacity: 1; }
.mlb-route-stop.is-reached .mlb-route-dot { background: var(--mlb-brass-bright); }
.mlb-route-stop.is-current .mlb-route-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(251, 246, 234, .86), 0 0 0 7px rgba(185, 130, 59, .24);
}

@media (max-width: 1419px) {
  .mlb-route-label { display: none; }
}

@media (max-width: 979px) {
  .mlb-route-track { stroke-width: 4px; }
  .mlb-route-progress { stroke-width: 2px; }
  .mlb-route-dot {
    width: 10px;
    height: 10px;
    flex-basis: 10px;
  }
  .mlb-route-stop { transform: translate(-5px, -5px); }
  .mlb-route-map,
  .mlb-route-stops { z-index: 18; }
}

@media (prefers-reduced-motion: reduce) {
  .mlb-route-progress { transition: none; }
  .mlb-route-stop,
  .mlb-route-dot { transition: none; }
}

/* Experimental print-press scroll reveal — isolated for one-step rollback */
.mlb-print-reveal {
  position: relative;
  isolation: isolate;
}

.mlb-print-active .mlb-print-reveal::before {
  content: "";
  position: absolute;
  top: 18px;
  left: clamp(28px, 8vw, 118px);
  right: clamp(28px, 8vw, 118px);
  height: 1px;
  z-index: 18;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--mlb-brass), transparent);
  opacity: 0;
  transform: scaleX(.08);
  transform-origin: center;
}

.mlb-print-active .mlb-print-reveal.is-printing::before {
  opacity: .72;
  transform: scaleX(1);
  transition: transform .48s cubic-bezier(.2, .76, .24, 1), opacity .28s ease;
}

.mlb-print-active .mlb-print-piece {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity .56s ease var(--mlb-print-delay, 110ms),
    transform .66s cubic-bezier(.18, .78, .22, 1) var(--mlb-print-delay, 110ms);
}

.mlb-print-active .mlb-print-reveal.is-printed .mlb-print-piece {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mlb-print-active .mlb-print-reveal.is-printing .mlb-print-piece {
  will-change: opacity, transform;
}

.mlb-print-active .mlb-print-image {
  opacity: .52;
  transform: scale3d(.985, .985, 1);
  transition:
    opacity .58s ease .16s,
    transform .72s cubic-bezier(.22, .72, .2, 1) .16s;
}

.mlb-print-active .mlb-print-reveal.is-printed .mlb-print-image {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.mlb-print-active .mlb-print-reveal.is-printed .mlb-print-headline {
  animation: mlb-ink-settle .68s cubic-bezier(.2, .74, .22, 1) .08s both;
}

.mlb-print-roller {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 19;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent 3%, var(--mlb-brass) 24%, #d0a35f 50%, var(--mlb-brass) 76%, transparent 97%);
  box-shadow: 0 5px 18px rgba(50, 32, 18, .2);
  transform: translate3d(0, 0, 0);
}

.mlb-print-reveal.is-printing .mlb-print-roller {
  animation: mlb-print-sweep .82s cubic-bezier(.22, .68, .2, 1) both;
}

@keyframes mlb-print-sweep {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  14% { opacity: .88; }
  76% { opacity: .34; }
  100% { transform: translate3d(0, var(--mlb-print-travel), 0); opacity: 0; }
}

@keyframes mlb-ink-settle {
  0% {
    opacity: .25;
    transform: translate3d(2px, 6px, 0) skewY(-.25deg);
    text-shadow: -2px 0 rgba(138, 63, 43, .22), 2px 0 rgba(38, 59, 51, .17);
  }
  58% {
    opacity: 1;
    transform: translate3d(-1px, 1px, 0) skewY(0);
    text-shadow: -1px 0 rgba(138, 63, 43, .12), 1px 0 rgba(38, 59, 51, .1);
  }
  100% {
    opacity: 1;
    transform: none;
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mlb-print-active .mlb-print-piece,
  .mlb-print-active .mlb-print-image {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mlb-print-active .mlb-print-reveal::before,
  .mlb-print-roller { display: none; }

  .mlb-print-active .mlb-print-reveal.is-printed .mlb-print-headline { animation: none; }
}

.mlb-site [style*="font-size:9px"],
.mlb-site [style*="font-size: 9px"] { font-size: 11.5px !important; }
.mlb-site [style*="font-size:10px"],
.mlb-site [style*="font-size: 10px"] { font-size: 12px !important; }
.mlb-site [style*="font-size:11px"],
.mlb-site [style*="font-size: 11px"] { font-size: 12.5px !important; }
.mlb-site [style*="font-size:12px"],
.mlb-site [style*="font-size: 12px"] { font-size: 13px !important; }

.mlb-site a:focus-visible,
.mlb-site button:focus-visible,
.mlb-header a:focus-visible,
.mlb-header button:focus-visible,
.mlb-footer a:focus-visible,
.mlb-footer button:focus-visible,
.mlb-footer input:focus-visible {
  outline: 3px solid var(--mlb-brass-bright);
  outline-offset: 4px;
}

.mlb-field-label {
  color: #efe2c5;
  font-family: "Marcellus SC", serif;
  font-size: 12px;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mlb-calendar-mobile-hint {
  display: none;
  margin: 0 0 8px;
  color: #111;
  font-family: "Special Elite", monospace;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mlb-page-hero {
  min-height: 300px;
  display: grid;
  place-items: center;
  border-bottom: 3px solid var(--mlb-brass);
}

.mlb-page-hero h1,
.mlb-simple-hero h1 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif !important;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.mlb-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: min(220px, 40vw);
  height: 13px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, var(--mlb-brass) 0 4px, transparent 4.5px) center/13px 13px no-repeat,
    linear-gradient(var(--mlb-brass), var(--mlb-brass)) center/100% 1px no-repeat;
  z-index: 4;
}

.mlb-text-grid,
.mlb-contact-grid,
.mlb-dogs-grid {
  max-width: 1100px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr) !important;
  gap: clamp(38px, 6vw, 72px) !important;
  align-items: center;
}

.mlb-section-heading {
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.mlb-section-heading::before {
  content: "";
  width: 116px;
  height: 11px;
  display: block;
  margin: 0 auto 18px;
  background:
    radial-gradient(circle, var(--mlb-brass) 0 3.5px, transparent 4px) center/11px 11px no-repeat,
    linear-gradient(var(--mlb-brass), var(--mlb-brass)) center/100% 1px no-repeat;
}

.mlb-card {
  border: 1px solid var(--mlb-line) !important;
  border-radius: 0 !important;
  background: var(--mlb-paper) !important;
  box-shadow: var(--mlb-shadow) !important;
  position: relative;
  overflow: hidden;
}

.mlb-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--mlb-brass);
  z-index: 2;
}

.mlb-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 30px 65px -42px rgba(25, 18, 12, .8) !important;
}

.mlb-btn,
.mlb-btn-solid,
.mlb-btn-ghost,
.mlb-add {
  min-height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 600;
}

.mlb-btn-solid {
  background: var(--mlb-brass) !important;
  border-color: var(--mlb-brass) !important;
  color: #fffaf0 !important;
}

.mlb-add {
  background: var(--mlb-brass);
  border-color: var(--mlb-brass);
  color: #fffaf0;
}

.mlb-btn-solid:hover,
.mlb-add:hover {
  background: var(--mlb-forest) !important;
  border-color: var(--mlb-forest) !important;
}

/* Compact shared header */
.mlb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 80;
  border-bottom: 1px solid rgba(242, 234, 216, .15);
  background: rgba(31, 28, 24, .97);
  color: var(--mlb-cream);
  font-family: "Marcellus", serif;
  backdrop-filter: blur(14px);
}

.mlb-header-rail {
  background: var(--mlb-forest);
  color: #e9dec7;
  border-bottom: 1px solid rgba(242, 234, 216, .12);
  font-family: "Marcellus SC", serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
  padding: 7px 18px;
}

.mlb-header-main {
  max-width: 1240px;
  min-height: 82px;
  margin: 0 auto;
  padding: 10px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.mlb-header-logo {
  display: block;
  padding: 2px 3px;
  background: transparent;
  border: 0;
}

.mlb-header-logo img {
  display: block;
  width: auto;
  height: 54px;
}

.mlb-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.mlb-header-nav a,
.mlb-mobile-nav a {
  color: #f3e9d4;
  font-size: 13px;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.mlb-header-nav a {
  position: relative;
  padding: 10px 0;
}

.mlb-header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--mlb-brass-bright);
  transition: right .22s ease;
}

.mlb-header-nav a:hover { color: #fff8e8; }
.mlb-header-nav a:hover::after { right: 0; }
.mlb-header-nav a[aria-current="page"],
.mlb-mobile-nav a[aria-current="page"] { color: #fff8e8; }
.mlb-header-nav a[aria-current="page"]::after { right: 0; }

.mlb-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mlb-header-phone {
  color: #d8c9ad;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.mlb-header-order {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--mlb-brass-bright);
  color: #fff4df;
  font-size: 12px;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.mlb-header-order:hover {
  background: var(--mlb-brass);
  color: #fff;
}

.mlb-menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid rgba(242, 234, 216, .35);
  background: transparent;
  color: #fff5e2;
  cursor: pointer;
}

.mlb-menu-toggle span,
.mlb-menu-toggle span::before,
.mlb-menu-toggle span::after {
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
  content: "";
}
.mlb-menu-toggle span { position: relative; }
.mlb-menu-toggle span::before { position: absolute; top: -6px; }
.mlb-menu-toggle span::after { position: absolute; top: 6px; }
.mlb-menu-toggle[aria-expanded="true"] span { background: transparent; }
.mlb-menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.mlb-menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.mlb-menu-toggle span::before,
.mlb-menu-toggle span::after { transition: top .2s ease, transform .2s ease; }

.mlb-mobile-nav {
  display: none;
  border-top: 1px solid rgba(242, 234, 216, .16);
  background: var(--mlb-ink);
  padding: 12px 24px 22px;
}

.mlb-mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(242, 234, 216, .12);
}

.mlb-mobile-nav .mlb-header-order {
  margin-top: 16px;
  border-bottom: 1px solid var(--mlb-brass-bright);
  justify-content: center;
}

/* Homepage */
.mlb-hero {
  min-height: clamp(520px, 68vh, 700px) !important;
  border-bottom: 3px solid var(--mlb-brass);
}

.mlb-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  width: min(330px, 62vw);
  height: 13px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, #d19a53 0 4px, transparent 4.5px) center/13px 13px no-repeat,
    linear-gradient(rgba(225, 190, 139, .72), rgba(225, 190, 139, .72)) center/100% 1px no-repeat;
}

.mlb-hero-copy {
  max-width: 880px !important;
  padding: 96px 28px 110px !important;
}

.mlb-hero-copy h1 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif !important;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 84px) !important;
  letter-spacing: .005em;
}

.mlb-hero-copy p { max-width: 640px !important; }

.mlb-info-grid {
  max-width: var(--mlb-max) !important;
  display: grid !important;
  grid-template-columns: 1.25fr .85fr .9fr !important;
}

.mlb-info-item { padding: 42px 36px !important; }
.mlb-line-story { padding-top: 76px !important; padding-bottom: 48px !important; }

.mlb-experience-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
}

.mlb-experience-grid .mlb-card image-slot { height: 255px !important; }
.mlb-experience-grid .mlb-card > div { text-align: left !important; }

.mlb-beer-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.mlb-beer {
  align-items: stretch !important;
  text-align: left !important;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--mlb-line);
}

.mlb-beer .mlb-medal {
  width: 100% !important;
  height: 146px !important;
  border: 1px solid var(--mlb-line) !important;
  border-radius: 0 !important;
  background: var(--mlb-paper) !important;
  box-shadow: none !important;
}

.mlb-beer .mlb-medal > div:first-child {
  inset: 8px !important;
  border-color: rgba(138, 87, 31, .45) !important;
  border-radius: 0 !important;
}
.mlb-beer .mlb-medal * { color: var(--mlb-ink) !important; }
.mlb-beer h3 { max-width: none !important; margin-top: 18px !important; }

/* Inner page structure */
.mlb-simple-hero {
  position: relative;
  background: var(--mlb-ink) !important;
  padding: 58px 28px 50px !important;
  border-bottom: 3px solid var(--mlb-brass);
}

.mlb-simple-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 160px;
  height: 11px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, var(--mlb-brass) 0 3.5px, transparent 4px) center/11px 11px no-repeat,
    linear-gradient(var(--mlb-brass), var(--mlb-brass)) center/100% 1px no-repeat;
}

.mlb-menu-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 48px 72px !important;
}

.mlb-tap-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px 56px !important;
}

.mlb-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.mlb-gallery-grid > div:first-child image-slot,
.mlb-gallery-grid image-slot { height: 300px !important; }

.mlb-values-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1px !important;
  background: rgba(242, 234, 216, .16);
  border: 1px solid rgba(242, 234, 216, .16);
}
.mlb-values-grid > div {
  padding: 38px 30px;
  background: var(--mlb-ink-soft);
  text-align: left !important;
}
.mlb-values-grid > div > div:nth-child(2) { margin-left: 0 !important; }

.mlb-team-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 26px !important;
}

.mlb-team-grid image-slot {
  width: 100% !important;
  height: 260px !important;
  border: 1px solid var(--mlb-line) !important;
}

.mlb-shop-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
}
.mlb-shop-grid .mlb-card image-slot { height: 300px !important; }
.mlb-shop-grid .mlb-card > div { text-align: left; padding: 24px 24px 26px !important; }

/* Events: keep the newspaper character, reduce the costume effect. */
.mlb-events-clipping {
  clip-path: none !important;
  transform: none !important;
  border: 1px solid rgba(54, 38, 22, .65);
  box-shadow: 0 28px 70px -38px rgba(20, 12, 7, .75) !important;
}
.mlb-events-clipping::before { opacity: .09 !important; }
.mlb-event-stamp { box-shadow: none !important; }
.mlb-event-stamp > div:last-child { font-size: 10.5px !important; }

.mlb-forest-panel { background: var(--mlb-forest) !important; }

/* Footer */
.mlb-newsletter {
  background: var(--mlb-forest) !important;
  padding: 66px 28px !important;
  border-top: 3px solid var(--mlb-brass);
}

.mlb-newsletter-form {
  min-height: 54px;
  background: rgba(20, 28, 24, .22);
}

.mlb-footer {
  background: var(--mlb-ink) !important;
  padding: 58px 28px 28px !important;
}

.mlb-footer-grid {
  max-width: var(--mlb-max) !important;
  display: grid !important;
  grid-template-columns: 1.45fr .8fr .8fr 1fr !important;
  gap: 44px !important;
}

@media (max-width: 1080px) {
  .mlb-header-main { grid-template-columns: auto 1fr auto; gap: 18px; }
  .mlb-header-nav { gap: 17px; }
  .mlb-header-phone { display: none; }
  .mlb-info-grid { grid-template-columns: 1fr 1fr !important; }
  .mlb-info-item:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(242, 234, 216, .16); }
  .mlb-beer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 32px 22px !important; }
  .mlb-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 40px 26px !important; }
  .mlb-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .mlb-footer-grid { grid-template-columns: 1.4fr 1fr 1fr !important; }
  .mlb-footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .mlb-header-main { min-height: 74px; padding: 8px 20px; grid-template-columns: auto 1fr auto; }
  .mlb-header-logo img { height: 50px; }
  .mlb-header-nav, .mlb-header-actions { display: none; }
  .mlb-menu-toggle { display: grid; grid-column: 3; }
  .mlb-mobile-nav { display: block; }

  .mlb-hero { min-height: 560px !important; }
  .mlb-hero-copy { padding: 82px 22px 92px !important; }
  .mlb-hero-copy h1 { font-size: clamp(43px, 12vw, 64px) !important; }

  .mlb-info-grid { grid-template-columns: 1fr !important; }
  .mlb-info-item { padding: 34px 24px !important; border-right: 0 !important; border-bottom: 1px solid rgba(242, 234, 216, .16); }
  .mlb-info-item:last-child { grid-column: auto; border-bottom: 0; }
  .mlb-info-item [style*="display:flex"] { gap: 18px; }

  .mlb-experience-grid,
  .mlb-values-grid,
  .mlb-gallery-grid { grid-template-columns: 1fr !important; }
  .mlb-experience-grid { gap: 24px !important; }
  .mlb-experience-grid .mlb-card image-slot { height: 310px !important; }
  .mlb-gallery-grid > div:first-child image-slot,
  .mlb-gallery-grid image-slot { height: 340px !important; }

  .mlb-text-grid,
  .mlb-contact-grid,
  .mlb-dogs-grid,
  .mlb-beer-to-go-grid { grid-template-columns: 1fr !important; gap: 38px !important; }

  .mlb-menu-grid,
  .mlb-tap-grid { grid-template-columns: 1fr !important; gap: 0 !important; }

  .mlb-footer-grid { grid-template-columns: 1fr 1fr !important; }
  .mlb-footer-grid > div:first-child,
  .mlb-footer-grid > div:last-child { grid-column: 1 / -1; }

  .mlb-paper-pad { padding: 34px 22px 28px !important; }
  .mlb-calendar-mobile-hint { display: block; }
  .mlb-calendar-scroll {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #111 rgba(17,17,17,.16);
    -webkit-overflow-scrolling: touch;
  }
  .mlb-cal-grid {
    min-width: 760px !important;
  }
}

@media (max-width: 560px) {
  .mlb-site { font-size: 17.5px; }
  .mlb-header-rail { font-size: 10px; letter-spacing: .12em; }
  .mlb-header-main { padding-inline: 16px; }
  .mlb-header-logo img { height: 46px; }

  .mlb-page-hero { min-height: 260px; }
  .mlb-simple-hero { padding: 48px 20px 44px !important; }
  .mlb-site > section { padding-left: 20px !important; padding-right: 20px !important; }

  .mlb-hero-copy [style*="display:flex"],
  .mlb-text-grid [style*="display:flex"] { flex-direction: column; align-items: stretch; }
  .mlb-hero-copy .mlb-btn,
  .mlb-text-grid .mlb-btn-solid,
  .mlb-text-grid .mlb-btn-ghost { width: 100%; }

  .mlb-beer-grid,
  .mlb-shop-grid,
  .mlb-team-grid { grid-template-columns: 1fr !important; }
  .mlb-beer .mlb-medal { height: 160px !important; }
  .mlb-shop-grid .mlb-card image-slot { height: 330px !important; }

  .mlb-gallery-grid > div:first-child image-slot,
  .mlb-gallery-grid image-slot { height: 285px !important; }

  .mlb-newsletter form,
  .mlb-newsletter-form { flex-direction: column; border: 0 !important; gap: 10px !important; background: transparent; }
  .mlb-newsletter-form input { min-height: 52px; border: 1px solid rgba(242, 234, 216, .5) !important; }
  .mlb-newsletter-form button { min-height: 52px; }

  .mlb-footer-grid { grid-template-columns: 1fr !important; gap: 34px !important; }
  .mlb-footer-grid > div { grid-column: auto !important; }
}

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

/* Mobile adaptation pass */
@media (max-width: 820px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  body { -webkit-text-size-adjust: 100%; }
  input, textarea, select { font-size: 16px !important; }

  .mlb-header { backdrop-filter: none; }
  .mlb-header-rail {
    padding: 6px 12px;
    font-size: 9.5px;
    line-height: 1.35;
    letter-spacing: .1em;
  }
  .mlb-header-main {
    min-height: 68px;
    padding: 6px 16px;
    gap: 10px;
  }
  .mlb-header-logo,
  .mlb-header-logo picture { display: block; }
  .mlb-header-logo img { height: 48px; }
  .mlb-menu-toggle { width: 44px; height: 44px; }
  .mlb-mobile-nav {
    max-height: calc(100dvh - 102px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 6px 20px 18px;
  }
  .mlb-mobile-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 12px 2px;
  }
  .mlb-mobile-nav .mlb-header-order { margin-top: 12px; }

  .mlb-site > section[data-route-label] { scroll-margin-top: 102px; }
  .mlb-site > section:not(.mlb-hero):not(.mlb-page-hero):not(.mlb-simple-hero) {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .mlb-section-heading { margin-bottom: 38px !important; }
  .mlb-page-hero { height: 280px !important; min-height: 280px; }
  .mlb-simple-hero { padding: 46px 22px 42px !important; }

  .mlb-card:hover,
  .mlb-beer:hover .mlb-medal { transform: none !important; }
  .mlb-experience-grid .mlb-card image-slot { height: 280px !important; }
  .mlb-text-grid > image-slot,
  .mlb-dogs-grid > image-slot,
  .mlb-beer-to-go-grid > image-slot {
    height: min(78vw, 380px) !important;
  }

  .mlb-menu-grid > div + div {
    margin-top: 36px;
    padding-top: 40px;
    border-top: 1px solid var(--mlb-line);
  }
  .mlb-tap-item { min-width: 0; }
  .mlb-values-grid > div { padding: 30px 24px; }
  .mlb-contact-grid form { min-width: 0; }
  .mlb-contact-grid input,
  .mlb-contact-grid textarea { width: 100%; }
  .mlb-faq-q { min-height: 60px; font-size: 20px !important; padding: 17px 0 !important; }

  .mlb-newsletter { padding: 58px 22px !important; }
  .mlb-footer { padding: 48px 22px 26px !important; }
}

@media (max-width: 560px) {
  .mlb-site { font-size: 17px; line-height: 1.58; }
  .mlb-header-main { min-height: 64px; padding-inline: 13px; }
  .mlb-header-logo img { height: 43px; }
  .mlb-menu-toggle { width: 44px; height: 44px; }
  .mlb-mobile-nav { padding-inline: 16px; }

  .mlb-hero { min-height: max(500px, calc(100svh - 102px)) !important; }
  .mlb-hero-copy { padding: 62px 18px 82px !important; }
  .mlb-hero-copy h1 { font-size: clamp(40px, 13vw, 56px) !important; }
  .mlb-hero-copy p { font-size: 18px !important; line-height: 1.45 !important; }
  .mlb-page-hero { height: 250px !important; min-height: 250px; }
  .mlb-simple-hero { padding: 42px 18px 38px !important; }

  .mlb-site > section:not(.mlb-hero):not(.mlb-page-hero):not(.mlb-simple-hero) {
    padding: 54px 18px !important;
  }
  .mlb-line-story { padding-top: 56px !important; padding-bottom: 40px !important; }
  .mlb-section-heading { margin-bottom: 32px !important; }

  .mlb-info-item { padding: 30px 20px !important; }
  .mlb-info-item [style*="justify-content:space-between"] { gap: 14px; }
  .mlb-experience-grid .mlb-card image-slot { height: 248px !important; }
  .mlb-experience-grid .mlb-card > div { padding: 24px 22px 26px !important; }
  .mlb-beer-grid { gap: 26px !important; }

  .mlb-menu-item-line {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start !important;
    gap: 6px 12px !important;
  }
  .mlb-menu-item-line > span:nth-child(2) { display: none; }
  .mlb-menu-page p[style*="max-width:90%"] { max-width: 100% !important; }
  .mlb-tap-item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start !important;
    gap: 8px 12px !important;
    padding: 16px 0 !important;
  }
  .mlb-tap-item > span:nth-child(2) { display: none; }
  .mlb-tap-item > div span { display: block; }
  .mlb-tap-item > div span + span { margin: 3px 0 0 !important; }

  .mlb-gallery-grid > div:first-child image-slot,
  .mlb-gallery-grid image-slot,
  .mlb-text-grid > image-slot,
  .mlb-dogs-grid > image-slot,
  .mlb-beer-to-go-grid > image-slot { height: min(74vw, 320px) !important; }
  .mlb-team-grid image-slot { height: min(78vw, 310px) !important; }
  .mlb-shop-grid .mlb-card image-slot { height: min(86vw, 340px) !important; }

  .mlb-site section .mlb-btn,
  .mlb-site section .mlb-btn-solid,
  .mlb-site section .mlb-btn-ghost,
  .mlb-site section .mlb-add {
    width: 100%;
    min-height: 50px;
  }
  .mlb-contact-grid button { width: 100% !important; min-height: 50px; }

  .mlb-newsletter { padding: 52px 18px !important; }
  .mlb-footer { padding: 44px 18px 24px !important; }
  .mlb-footer-grid { gap: 30px !important; }
  .mlb-footer > div:last-child {
    margin-top: 36px !important;
    align-items: flex-start;
    flex-direction: column;
  }

  .mlb-route-track { stroke-width: 3px; }
  .mlb-route-progress { stroke-width: 1.75px; }
  .mlb-route-tram { filter: none; }
}

/* Contrast and form focus corrections. */
.mlb-site section[style*="background:#f4ecd8"] [style*="color:#a8762f"],
.mlb-site section[style*="background:#efe2c5"] [style*="color:#a8762f"],
.mlb-site .mlb-card [style*="color:#a8762f"] {
  color: var(--mlb-brass) !important;
}

.mlb-contact-grid input:focus-visible,
.mlb-contact-grid textarea:focus-visible,
.mlb-newsletter-form input:focus-visible {
  outline: 3px solid var(--mlb-brass-bright) !important;
  outline-offset: 3px;
}

.mlb-footer > div:last-child { color: #ae9a78 !important; }

@media (max-width: 380px) {
  .mlb-header-rail { font-size: 8.5px; letter-spacing: .065em; padding-inline: 8px; }
  .mlb-header-main { padding-inline: 10px; }
  .mlb-header-logo img { height: 39px; }
  .mlb-menu-toggle { width: 40px; height: 40px; }
  .mlb-hero-copy h1 { font-size: 39px !important; }
  .mlb-paper-name { font-size: 31px !important; }
  .mlb-cal-day:has(.mlb-event-stamp) { grid-template-columns: 44px minmax(0, 1fr) !important; }
}
