:root {
  --bf-primary: #192b25;
  --bf-surface: #f7f2e8;
  --bf-accent: #c66a35;
  --bf-gold: #e0a83b;
  --bf-ink: #16211d;
  --bf-muted: #5f6a64;
  --bf-paper: #fffaf2;
  --bf-white: #ffffff;
  --bf-line: rgba(25, 43, 37, 0.14);
  --bf-shadow: 0 18px 40px rgba(19, 32, 27, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.bf-container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--bf-white);
  background: var(--bf-primary);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid var(--bf-line);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 10px 24px rgba(19, 32, 27, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bf-primary);
  text-decoration: none;
}

.site-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-brand strong {
  display: block;
  max-width: 320px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.1;
}

.site-brand em {
  display: block;
  max-width: 360px;
  margin-top: 3px;
  color: var(--bf-muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.25;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--bf-primary);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.94rem;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  background: rgba(198, 106, 53, 0.14);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--bf-line);
  border-radius: 6px;
  background: var(--bf-white);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--bf-primary);
}

.bf-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-color: var(--bf-primary);
  background-position: center;
  background-size: cover;
  color: var(--bf-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 1;
  transform: scale(1.02);
  transition: opacity 950ms ease, transform 6200ms ease;
  z-index: 0;
}

.hero-bg-next {
  opacity: 0;
}

.bf-hero.is-transitioning .hero-bg-next {
  opacity: 1;
  transform: scale(1.04);
}

.bf-hero.is-transitioning .hero-bg-current {
  opacity: 0;
}

.page-hero {
  min-height: 430px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 84px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bf-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bf-hero h1,
.section-heading h2,
.intro-grid h2,
.promo-copy h2,
.contact-panel h2,
.content-page h1,
.content-page h2,
.single-menu-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.bf-hero h1 {
  max-width: 680px;
  font-size: 4.1rem;
}

.hero-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.bf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.bf-button-primary {
  color: var(--bf-white);
  background: var(--bf-accent);
}

.bf-button-secondary {
  color: var(--bf-white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.bf-button:hover,
.bf-button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  filter: brightness(0.96);
  outline: 2px solid rgba(224, 168, 59, 0.45);
  outline-offset: 2px;
}

.bf-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(25, 43, 37, 0.15);
}

.intro-band,
.menu-tease,
.location-strip,
.content-page,
.event-list,
.location-grid,
.menu-layout,
.contact-grid,
.single-menu-item,
.archive-page {
  padding: 64px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.promo-copy h2,
.contact-panel h2 {
  color: var(--bf-primary);
  font-size: 2.35rem;
}

.entry-copy {
  color: var(--bf-muted);
}

.entry-copy > *:first-child {
  margin-top: 0;
}

.entry-copy > *:last-child {
  margin-bottom: 0;
}

.entry-copy h2,
.entry-copy h3 {
  color: var(--bf-primary);
}

.promo-row {
  background: var(--bf-paper);
}

.promo-row.is-tinted {
  background: #e9efe9;
}

.promo-inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0;
}

.promo-row.image-right .promo-media {
  order: 2;
}

.promo-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--bf-shadow);
  background: var(--bf-primary);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.promo-row:hover .promo-media img {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(19, 32, 27, 0.16);
}

.promo-copy {
  max-width: 520px;
}

.promo-copy .bf-button {
  margin-top: 18px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.tease-grid,
.location-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tease-card,
.location-mini,
.archive-item {
  display: block;
  padding: 14px;
  color: var(--bf-primary);
  text-decoration: none;
  background: var(--bf-white);
  border: 1px solid var(--bf-line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(25, 43, 37, 0.08);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.tease-card:hover,
.location-mini:hover,
.archive-item:hover,
.menu-card:hover,
.location-card:hover,
.event-row:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 106, 53, 0.32);
  box-shadow: 0 18px 34px rgba(25, 43, 37, 0.12);
}

.tease-card img,
.location-mini img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  background: #e9efe9;
  transition: transform 220ms ease;
}

.tease-card:hover img,
.location-mini:hover img {
  transform: scale(1.015);
}

.tease-card span,
.location-mini strong {
  display: block;
  margin-top: 12px;
  font-weight: 900;
}

.location-mini span {
  display: block;
  margin-top: 4px;
  color: var(--bf-muted);
  font-size: 0.92rem;
}

.content-page {
  max-width: 880px;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.values-row span {
  padding: 10px 14px;
  color: var(--bf-primary);
  background: var(--bf-white);
  border: 1px solid var(--bf-line);
  border-radius: 6px;
  font-weight: 800;
}

.two-column-copy {
  columns: 2 320px;
  column-gap: 42px;
}

.two-column-copy h2 {
  break-after: avoid;
}

.about-content {
  max-width: 1140px;
}

.about-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: start;
}

.about-main-copy {
  max-width: 760px;
}

.about-main-copy h2 {
  margin-top: 28px;
}

.about-main-copy h2:first-child {
  margin-top: 0;
}

.about-snapshot {
  display: grid;
  gap: 8px;
  padding: 24px;
  color: var(--bf-white);
  background: var(--bf-primary);
  border-radius: 8px;
  box-shadow: var(--bf-shadow);
}

.about-snapshot strong {
  color: var(--bf-gold);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.about-snapshot span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.about-snapshot span:last-child {
  margin-bottom: 0;
}

.about-visual-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 34px;
  align-items: center;
  margin-top: 48px;
}

.about-image-collage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.38fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.about-image-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: var(--bf-primary);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(25, 43, 37, 0.1);
}

.about-image-main {
  grid-row: 1 / span 2;
  aspect-ratio: 16 / 11;
}

.about-image-beans,
.about-image-cup {
  aspect-ratio: 1;
}

.about-image-beans {
  object-position: center 42%;
}

.about-image-cup {
  object-position: center 38%;
}

.about-pullquote {
  padding: 28px 0 28px 28px;
  border-left: 4px solid var(--bf-accent);
}

.about-pullquote p {
  margin: 0;
  color: var(--bf-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.18;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.about-principle {
  min-height: 100%;
  padding: 22px;
  background: var(--bf-white);
  border: 1px solid var(--bf-line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(25, 43, 37, 0.08);
}

.about-principle span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--bf-white);
  background: var(--bf-accent);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.about-principle h2 {
  margin: 0 0 10px;
  color: var(--bf-primary);
  font-size: 1.35rem;
}

.about-principle p {
  margin: 0;
  color: var(--bf-muted);
}

.about-finale {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: 28px;
  align-items: center;
  margin-top: 52px;
  padding: 32px;
  color: var(--bf-white);
  background:
    linear-gradient(135deg, rgba(25, 43, 37, 0.96), rgba(28, 53, 45, 0.9)),
    url("../source/media/locations/northeast.png") center / cover;
  border-radius: 8px;
  box-shadow: var(--bf-shadow);
}

.about-finale .eyebrow {
  color: var(--bf-gold);
}

.about-finale h2 {
  max-width: 680px;
  margin: 0;
  color: var(--bf-white);
  font-size: 2.2rem;
}

.about-finale p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.about-finale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-finale .bf-button-secondary {
  color: var(--bf-white);
  border-color: rgba(255, 255, 255, 0.42);
}

.about-credit-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.about-credit-card strong {
  color: var(--bf-gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.about-credit-card span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.contact-panel,
.contact-form,
.event-row,
.location-card,
.single-menu-item {
  background: var(--bf-white);
  border: 1px solid var(--bf-line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(25, 43, 37, 0.08);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.contact-panel,
.contact-form {
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.bf-hp {
  display: none !important;
}

.form-status {
  margin: 16px 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.form-status.is-success {
  color: #174c2d;
  background: #e3f4e8;
}

.form-status.is-error {
  color: #69211d;
  background: #f7dfdc;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--bf-primary);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bf-line);
  border-radius: 6px;
  color: var(--bf-ink);
  background: var(--bf-paper);
  font: inherit;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.location-card {
  overflow: hidden;
}

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

.location-card > div {
  padding: 22px;
}

.location-card h2,
.event-row h2,
.archive-item h2 {
  margin: 0 0 10px;
  color: var(--bf-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.16;
}

.text-link {
  color: var(--bf-accent);
  font-weight: 900;
  text-decoration: none;
}

.event-list {
  display: grid;
  gap: 16px;
}

.event-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
}

.event-row time {
  display: grid;
  place-items: center;
  align-content: center;
  height: 88px;
  color: var(--bf-white);
  background: var(--bf-primary);
  border-radius: 8px;
  text-align: center;
}

.event-row time span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-row time strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.event-meta {
  margin: 0 0 8px;
  color: var(--bf-accent);
  font-weight: 900;
}

.menu-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.menu-nav {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 8px;
}

.menu-nav a {
  padding: 11px 12px;
  color: var(--bf-primary);
  background: var(--bf-white);
  border: 1px solid var(--bf-line);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.menu-nav a.is-active,
.menu-nav a:hover {
  color: var(--bf-white);
  background: var(--bf-primary);
}

.menu-sections {
  display: grid;
  gap: 58px;
}

.menu-category + .menu-category {
  margin-top: 34px;
}

.menu-category h3 {
  margin: 0 0 16px;
  color: var(--bf-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--bf-white);
  border: 1px solid var(--bf-line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(25, 43, 37, 0.08);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.menu-card-image {
  display: grid;
  place-items: center;
  min-height: 210px;
  background: #17342d;
}

.menu-card-image img {
  width: 82%;
  aspect-ratio: 1;
  object-fit: contain;
}

.menu-card-copy {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
}

.menu-card-copy h4 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
}

.menu-card-copy h4 a {
  color: var(--bf-primary);
  text-decoration: none;
}

.menu-card-copy p {
  margin: 0;
  color: var(--bf-muted);
  font-size: 0.94rem;
}

.menu-card-copy strong,
.single-price {
  color: var(--bf-accent);
  font-weight: 900;
}

.single-menu-item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  margin-top: 64px;
  margin-bottom: 64px;
}

.single-menu-media {
  display: grid;
  place-items: center;
  min-height: 420px;
  border-radius: 8px;
  background: #17342d;
}

.single-menu-media img {
  width: min(420px, 86%);
  aspect-ratio: 1;
  object-fit: contain;
}

.single-menu-copy h1 {
  color: var(--bf-primary);
  font-size: 3rem;
}

.single-price {
  margin: 12px 0;
  font-size: 1.4rem;
}

.archive-list {
  display: grid;
  gap: 16px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #101a17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 30px;
  padding: 54px 0 34px;
}

.footer-logo {
  max-width: 260px;
  max-height: 90px;
  object-fit: contain;
}

.footer-brand p,
.footer-column p {
  margin: 12px 0 0;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--bf-white);
  font-size: 1rem;
}

.site-footer a {
  color: var(--bf-white);
  text-decoration: none;
}

.footer-menu {
  display: grid;
  gap: 6px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.legal-links a {
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--bf-white);
  outline: 2px solid rgba(224, 168, 59, 0.45);
  outline-offset: 3px;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
  color: var(--bf-ink);
  opacity: 0;
  pointer-events: none;
}

.legal-modal.is-open,
.legal-modal:target {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 28, 23, 0.68);
  cursor: default;
}

.legal-modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(78vh, 720px);
  overflow: auto;
  padding: 30px;
  background: var(--bf-paper);
  border: 1px solid var(--bf-line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.legal-modal h2 {
  margin: 0 40px 16px 0;
  color: var(--bf-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.12;
}

.legal-modal-copy {
  color: var(--bf-muted);
}

.legal-modal-copy p {
  margin: 0 0 14px;
}

.legal-modal-copy p:last-child {
  margin-bottom: 0;
}

.legal-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--bf-primary);
  background: var(--bf-white);
  border: 1px solid var(--bf-line);
  border-radius: 6px;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.js [data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal].is-visible {
  animation: bf-rise 520ms ease both;
}

@keyframes bf-rise {
  from {
    opacity: 0.84;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-bg {
    transform: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .bf-hero {
    min-height: 560px;
  }

  .page-hero {
    min-height: 390px;
  }

  .bf-hero h1 {
    font-size: 3rem;
  }

  .intro-grid,
  .promo-inner,
  .contact-grid,
  .menu-layout,
  .about-lead,
  .about-visual-story,
  .about-finale,
  .single-menu-item {
    grid-template-columns: 1fr;
  }

  .promo-row.image-right .promo-media {
    order: 0;
  }

  .tease-grid,
  .location-mini-grid,
  .location-grid,
  .menu-grid,
  .about-principles,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 68px;
  }

  .site-logo {
    width: 46px;
    height: 46px;
  }

  .site-brand strong {
    max-width: 220px;
    font-size: 0.98rem;
  }

  .site-brand em {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 18px;
    background: var(--bf-paper);
    border-bottom: 1px solid var(--bf-line);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-menu {
    display: grid;
    gap: 6px;
  }

  .primary-menu a {
    width: 100%;
    min-height: 46px;
    background: var(--bf-white);
    border: 1px solid var(--bf-line);
  }

  .bf-hero,
  .page-hero {
    min-height: 500px;
  }

  .hero-inner {
    padding: 62px 0;
  }

  .bf-hero h1 {
    font-size: 2.45rem;
  }

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

  .intro-band,
  .menu-tease,
  .location-strip,
  .content-page,
  .event-list,
  .location-grid,
  .menu-layout,
  .contact-grid,
  .single-menu-item,
  .archive-page {
    padding: 42px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .promo-copy h2,
  .contact-panel h2 {
    font-size: 1.95rem;
  }

  .about-pullquote {
    padding: 0 0 0 20px;
  }

  .about-pullquote p {
    font-size: 1.45rem;
  }

  .about-finale {
    padding: 24px;
  }

  .about-finale h2 {
    font-size: 1.8rem;
  }

  .promo-inner {
    gap: 26px;
    padding: 42px 0;
  }

  .tease-grid,
  .location-mini-grid,
  .location-grid,
  .menu-grid,
  .about-principles,
  .footer-grid,
  .menu-nav {
    grid-template-columns: 1fr;
  }

  .about-image-collage {
    grid-template-columns: 1fr 1fr;
  }

  .about-image-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .legal-modal-panel {
    padding: 24px;
  }

  .legal-modal h2 {
    font-size: 1.65rem;
  }

  .menu-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-nav a {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 8px;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .menu-card.has-image {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 132px;
  }

  .menu-card-image {
    min-height: 100%;
  }

  .menu-card-image img {
    width: 88px;
  }

  .menu-card-copy {
    padding: 14px;
    gap: 6px;
  }

  .menu-card-copy h4 {
    font-size: 1rem;
  }

  .menu-card-copy p {
    font-size: 0.9rem;
  }

  .event-row {
    grid-template-columns: 1fr;
  }

  .event-row time {
    width: 88px;
  }

  .single-menu-copy h1 {
    font-size: 2.25rem;
  }

  .footer-bottom {
    display: grid;
  }
}
