:root {
  --bc-maroon: #5c1820;
  --bc-maroon-deep: #3a1210;
  --bc-orange: #e99b3f;
  --bc-orange-dark: #c97d28;
  --bc-chili: #c4281c;
  --bc-cocoa: #4a2418;
  --bc-cocoa-deep: #2c150f;
  --bc-masala: #c9853a;
  --bc-cream: #f3e6d2;
  --bc-paper: #f7efe2;
  --bc-ink: #2a1810;
  --bc-muted: #6a5346;
  --bc-line: #dfc8a8;
  --bc-shadow: 0 14px 40px rgba(74, 36, 24, 0.16);
  --bc-serif: "Fraunces", "Palatino Linotype", serif;
  --bc-sans: "Nunito", "Segoe UI", sans-serif;
  --bc-hand: "Kalam", "Comic Sans MS", cursive;
  --bc-wrap: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bc-paper);
  background-image: url("../images/pattern.svg"), url("../images/grain.svg");
  background-size: 240px 240px, 180px 180px;
  color: var(--bc-ink);
  font-family: var(--bc-sans);
  font-size: 17px;
  line-height: 1.7;
}

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

a { color: var(--bc-maroon); text-decoration: none; }
a:hover { color: var(--bc-orange-dark); }

h1, h2, h3, h4 {
  font-family: var(--bc-serif);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--bc-cocoa);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.bc-wrap {
  width: min(calc(100% - 40px), var(--bc-wrap));
  margin-inline: auto;
}

.bc-skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.bc-skip:focus { left: 8px; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.bc-hand {
  font-family: var(--bc-hand);
  font-size: 1.45rem;
  color: var(--bc-chili);
  margin: 0 0 6px;
  font-weight: 700;
}
.bc-hand--light { color: var(--bc-orange); }

.bc-kicker {
  margin: 0 0 10px;
  color: var(--bc-orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bc-lead {
  font-size: 1.12rem;
  color: var(--bc-muted);
  max-width: 38rem;
}

.bc-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 20px;
}
.bc-ornament span {
  display: block;
  height: 2px;
  width: 42px;
  background: var(--bc-orange);
  border-radius: 2px;
}
.bc-ornament i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bc-chili);
  box-shadow: 0 0 0 3px rgba(196, 40, 28, 0.15);
}

.bc-center { text-align: center; margin-top: 28px; }

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}
.bc-btn--sm { min-height: 40px; padding: 0 16px; font-size: 0.75rem; }
.bc-btn--primary {
  background: var(--bc-orange);
  color: #3b1a0a;
}
.bc-btn--primary:hover { background: var(--bc-chili); color: #fff; }
.bc-btn--maroon {
  background: var(--bc-cocoa);
  color: #fff8ef;
}
.bc-btn--maroon:hover { background: var(--bc-maroon-deep); color: #fff; }
.bc-btn--ghost {
  background: transparent;
  border-color: var(--bc-cocoa);
  color: var(--bc-cocoa);
}
.bc-btn--ghost:hover { background: var(--bc-cocoa); color: #fff; }

.bc-wood {
  background-color: #c9a06a;
  background-image:
    url("../images/grain.svg"),
    repeating-linear-gradient(90deg,
      rgba(90, 48, 18, 0.12) 0 2px,
      rgba(255, 236, 200, 0.16) 3px,
      rgba(90, 48, 18, 0.06) 8px,
      transparent 22px);
  background-size: 160px 160px, auto;
}

.bc-paper {
  position: relative;
  background: var(--bc-paper);
  background-image: url("../images/grain.svg");
  background-size: 200px;
}

.bc-scallop {
  height: 22px;
  margin-top: -1px;
  background-color: var(--bc-paper);
  -webkit-mask: url("../images/scallop.svg") repeat-x bottom / 54px 22px;
  mask: url("../images/scallop.svg") repeat-x bottom / 54px 22px;
}
.bc-scallop--cream { background-color: var(--bc-paper); }
.bc-scallop--cocoa { background-color: var(--bc-cocoa); }
.bc-scallop--masala { background-color: var(--bc-masala); }

.bc-spice {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(4px 8px 6px rgba(40, 16, 8, 0.25));
}
.bc-spice--chili { width: 42px; }
.bc-spice--leaf { width: 88px; }

.bc-topbar {
  background: var(--bc-cocoa);
  color: #f6e7d2;
  font-size: 0.86rem;
}
.bc-topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.bc-topbar p { margin: 0; }
.bc-topbar a { color: var(--bc-orange); font-weight: 600; }

.bc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  background: rgba(247, 239, 226, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bc-line);
}
.bc-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 92px;
}
.bc-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bc-nav-list a {
  color: var(--bc-ink);
  font-weight: 600;
  font-size: 0.9rem;
}
.bc-logo img { width: 78px; height: auto; }
.bc-logo--foot img { width: 96px; }
.bc-logo-plate {
  display: inline-flex;
  padding: 10px 12px;
  background: var(--bc-paper);
  border-radius: 12px;
}

.bc-nav-list a:hover,
.bc-nav-list [aria-current="page"] {
  color: var(--bc-maroon);
}

.bc-header__tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bc-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.bc-lang a { color: var(--bc-muted); }
.bc-lang a.is-active {
  color: var(--bc-maroon);
  border-bottom: 2px solid var(--bc-orange);
}

.bc-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
}
.bc-burger i {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--bc-maroon);
}

.bc-hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.bc-hero .bc-spice--chili { top: 12%; left: 6%; transform: rotate(-28deg); }
.bc-hero .bc-spice--leaf { bottom: 14%; right: 8%; transform: rotate(18deg); }
.bc-scatter { position: absolute; inset: 0; pointer-events: none; }
.bc-scatter__photo {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--bc-shadow);
}
.bc-scatter__photo--leaf {
  width: min(34vw, 340px);
  height: min(34vw, 340px);
  left: 2%;
  top: 18%;
  border-radius: 48% 52% 45% 55%;
  transform: rotate(-8deg);
}
.bc-scatter__photo--bowl {
  width: min(22vw, 220px);
  height: min(22vw, 220px);
  right: 6%;
  top: 12%;
  border-radius: 50%;
  border: 8px solid #f3e6d2;
}
.bc-scatter__photo--room {
  width: min(20vw, 190px);
  height: min(20vw, 190px);
  right: 10%;
  bottom: 10%;
  border-radius: 50%;
  border: 6px solid rgba(243, 230, 210, 0.9);
}
.bc-hero__center {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding: 28px 24px 32px;
  background: rgba(247, 239, 226, 0.78);
}
.bc-hero__center .bc-ornament,
.bc-hero__center .bc-lead { margin-inline: auto; }
.bc-hero__center h1 { color: var(--bc-cocoa-deep); }
.bc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.bc-hero__visual { text-align: center; }
.bc-hero__disc {
  width: min(100%, 360px);
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bc-orange);
  box-shadow: var(--bc-shadow);
}
.bc-hero__facts {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}
.bc-hero__facts span {
  display: block;
  color: var(--bc-orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bc-section { padding: 72px 0; }
.bc-section--intro { overflow: hidden; }
.bc-section--intro > .bc-spice--chili { left: 2%; top: 18%; transform: rotate(-40deg); }
.bc-section--intro > .bc-spice--leaf { right: 3%; bottom: 10%; transform: rotate(12deg); }
.bc-section--tint {
  background: var(--bc-paper);
  border-block: 1px solid var(--bc-line);
}
.bc-sectionhead { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.bc-sectionhead .bc-ornament { justify-content: center; }

.bc-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bc-intro__portrait {
  position: relative;
  max-width: 420px;
}
.bc-intro__portrait > img:first-child {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 46% 54% 42% 58%;
  box-shadow: var(--bc-shadow);
}
.bc-intro__mascot {
  position: absolute;
  width: 150px;
  right: -18px;
  bottom: -12px;
  filter: drop-shadow(0 10px 12px rgba(0,0,0,.18));
}

.bc-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.bc-split--about { padding-bottom: 48px; }
.bc-mascot { width: min(100%, 340px); margin-inline: auto; }
.bc-split__media--frame {
  background: var(--bc-paper);
  border: 1px solid var(--bc-line);
  padding: 28px;
}

.bc-band { position: relative; padding: 80px 0 70px; }
.bc-band--cocoa {
  background: var(--bc-cocoa);
  color: #f6e7d2;
  text-align: center;
}
.bc-band--cocoa h2,
.bc-band--cocoa p { color: #f6e7d2; }
.bc-band__overlap {
  width: min(220px, 46vw);
  height: min(220px, 46vw);
  margin: -130px auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--bc-paper);
  box-shadow: var(--bc-shadow);
}
.bc-band__overlap img { width: 100%; height: 100%; object-fit: cover; }
.bc-band__copy { max-width: 640px; margin-inline: auto; }
.bc-band--masala {
  background: var(--bc-masala);
  color: var(--bc-cocoa-deep);
}
.bc-band--masala h2 { color: var(--bc-cocoa-deep); }

.bc-thali {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 36px;
  margin-bottom: 12px;
}
.bc-thali__item {
  width: 150px;
  text-align: center;
  color: var(--bc-cocoa-deep);
}
.bc-thali__ring {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 6px solid #f3e6d2;
  box-shadow: 0 10px 24px rgba(60, 24, 10, 0.22);
  margin-bottom: 10px;
}
.bc-thali__item strong {
  font-family: var(--bc-serif);
  font-size: 1.05rem;
}

.bc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bc-card {
  background: var(--bc-paper);
  border: 1px solid var(--bc-line);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
}
.bc-card__img {
  height: 170px;
  background-size: cover;
  background-position: center;
}
.bc-card__body { padding: 16px 18px 20px; }
.bc-card__body p { margin: 0; color: var(--bc-muted); font-size: 0.95rem; }


.bc-visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.bc-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.bc-facts li { margin: 0 0 10px; }

.bc-map {
  min-height: 360px;
  border: 1px solid var(--bc-line);
  background: var(--bc-paper);
}
.bc-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.bc-pagehead {
  padding: 64px 0 32px;
  text-align: center;
  background:
    url("../images/grain.svg"),
    linear-gradient(180deg, #e8d3b0 0%, var(--bc-paper) 100%);
  background-size: 180px, auto;
}
.bc-pagehead .bc-ornament,
.bc-pagehead .bc-lead { margin-inline: auto; }
.bc-pagehead h1 { margin-bottom: 0; }

.bc-narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; padding-bottom: 64px; }
.bc-order-abspos {
  padding-bottom: 64px;
}
.bc-order-abspos .abspos,
.bc-order-abspos .abspos-active-menu,
.bc-order-abspos iframe {
  width: 100%;
  max-width: 100%;
}
.bc-prose { max-width: 42rem; }
.bc-prose p { font-size: 1.05rem; }

.bc-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.bc-subnav a {
  border: 1px solid var(--bc-line);
  background: var(--bc-paper);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bc-maroon);
}
.bc-subnav a:hover { border-color: var(--bc-orange); background: #fff6ea; }

.bc-menu { padding-bottom: 32px; }
.bc-menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 28px;
}
.bc-menu-jump a { font-weight: 600; color: var(--bc-orange-dark); }
.bc-menu-section { margin: 0 0 36px; }
.bc-menu-list { list-style: none; margin: 0; padding: 0; }
.bc-menu-item {
  padding: 14px 0;
  border-bottom: 1px dashed var(--bc-line);
}
.bc-menu-item__top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.bc-menu-item h3 { margin: 0; font-size: 1.25rem; }
.bc-menu-item p { margin: 4px 0 0; color: var(--bc-muted); }
.bc-dots {
  flex: 1;
  border-bottom: 1px dotted var(--bc-line);
  transform: translateY(-6px);
}
.bc-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-maroon);
  white-space: nowrap;
}
.bc-badge--veg { color: #2f6b3a; }
.bc-prices-note { color: var(--bc-muted); font-size: 0.92rem; }
.bc-menu-cta { padding-bottom: 56px; }

.bc-form {
  background: var(--bc-paper);
  border: 1px solid var(--bc-line);
  padding: 28px;
  box-shadow: var(--bc-shadow);
}
.bc-form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 0.92rem;
}
.bc-form input,
.bc-form textarea,
.bc-form select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--bc-line);
  background: #fff;
  padding: 12px 12px;
  font: inherit;
  color: inherit;
}
.bc-form input:focus,
.bc-form textarea:focus {
  outline: 2px solid var(--bc-orange);
  border-color: var(--bc-orange);
}
.bc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.bc-check, .bc-radio {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
}
.bc-check input, .bc-radio input { width: auto; margin-top: 4px; }
.bc-fulfill {
  border: 0;
  padding: 0 0 12px;
  display: flex;
  gap: 18px;
}
.bc-order-items {
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--bc-line);
  padding: 8px 12px;
  margin-bottom: 18px;
  background: #fff;
}
.bc-order-row {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bc-cream);
}
.bc-order-row small {
  display: block;
  font-weight: 400;
  color: var(--bc-muted);
}
.bc-form-msg {
  padding: 10px 12px;
  background: #e8f6ea;
  color: #215c2c;
}
.bc-form-msg.is-error { background: #fdeaea; color: #8a1f1f; }
.is-hidden { display: none; }
.bc-platforms { margin-bottom: 22px; }
.bc-platforms__links { display: flex; flex-wrap: wrap; gap: 8px; }

.bc-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.bc-gallery-filters button {
  border: 1px solid var(--bc-line);
  background: var(--bc-paper);
  color: var(--bc-maroon);
  padding: 8px 16px;
  border-radius: 4px;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}
.bc-gallery-filters button.is-active,
.bc-gallery-filters button:hover {
  background: var(--bc-maroon);
  border-color: var(--bc-maroon);
  color: #fff8ef;
}

.bc-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
  padding-bottom: 48px;
}
.bc-bento__item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bc-maroon-deep);
  color: #fff;
  grid-column: span 4;
  grid-row: span 2;
}
.bc-bento__item--hero { grid-column: span 8; grid-row: span 3; }
.bc-bento__item--tall { grid-column: span 4; grid-row: span 3; }
.bc-bento__item--wide { grid-column: span 8; grid-row: span 2; }
.bc-bento__item--square { grid-column: span 4; grid-row: span 2; }
.bc-bento__item.is-hidden { display: none; }
.bc-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.bc-bento__item:hover img { transform: scale(1.06); }
.bc-bento__meta {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 18px 16px;
  background: linear-gradient(transparent, rgba(42, 12, 16, 0.88));
  transform: translateY(12px);
  opacity: 0.95;
}
.bc-bento__meta strong {
  display: block;
  font-family: var(--bc-serif);
  font-size: 1.35rem;
  font-weight: 600;
}
.bc-bento__meta em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.88rem;
  color: #f3d9b8;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.bc-bento__item:hover .bc-bento__meta em { opacity: 1; }

.bc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 8, 10, 0.92);
  padding: 24px;
}
.bc-lightbox[hidden] { display: none; }
.bc-lightbox figure { margin: 0; max-width: min(92vw, 1100px); text-align: center; }
.bc-lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.bc-lightbox figcaption {
  color: #f6e7d2;
  margin-top: 12px;
  font-family: var(--bc-serif);
  font-size: 1.2rem;
}
.bc-lightbox__close,
.bc-lightbox__nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
}
.bc-lightbox__close { top: 16px; right: 24px; }
.bc-lightbox__prev { left: 12px; }
.bc-lightbox__next { right: 12px; }

.bc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 64px;
}
.bc-gallery figure { margin: 0; overflow: hidden; }
.bc-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.bc-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #ead2a8;
  border: 0;
  padding: 28px 32px;
  margin-bottom: 64px;
}
.bc-cta-band h2 { margin: 0 0 6px; }

.bc-footer {
  background: var(--bc-cocoa-deep);
  color: #f3e6d2;
  padding-top: 48px;
}
.bc-footer a { color: var(--bc-orange); }
.bc-footer a:hover { color: #fff; }
.bc-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}
.bc-footer h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #f6e7d2;
}
.bc-footer .bc-nav-list {
  display: grid;
  justify-content: start;
  gap: 8px;
}
.bc-footer__contact { list-style: none; margin: 0; padding: 0; }
.bc-footer__contact li { margin: 0 0 8px; }
.bc-footer__domains { display: flex; gap: 8px; color: #c9b49a; }
.bc-footer__cta .bc-btn { margin: 6px 8px 0 0; }
.bc-footer__cta .bc-btn--ghost { border-color: #f3e6d2; color: #f3e6d2; }
.bc-footer__bar {
  border-top: 1px solid rgba(243, 230, 210, 0.15);
  padding: 14px 0;
  color: #c9b49a;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .bc-header__inner { grid-template-columns: auto 1fr; }
  .bc-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bc-paper);
    border-bottom: 1px solid var(--bc-line);
    padding: 16px 20px 24px;
  }
  .nav-open .bc-nav { display: block; }
  .bc-nav-list { display: grid; justify-content: start; gap: 12px; }
  .bc-burger { display: block; }
  .bc-header__tools .bc-btn { display: none; }
  .bc-hero__grid,
  .bc-intro,
  .bc-split,
  .bc-visit,
  .bc-footer__grid,
  .bc-cards,
  .bc-gallery,
  .bc-grid-2 { grid-template-columns: 1fr; }
  .bc-scatter__photo--leaf { width: 42vw; height: 42vw; top: auto; bottom: 6%; opacity: 0.55; }
  .bc-scatter__photo--bowl { width: 28vw; height: 28vw; top: 8%; }
  .bc-scatter__photo--room { display: none; }
  .bc-hero { min-height: auto; padding: 48px 0 64px; }
  .bc-intro__mascot { width: 110px; right: 8px; }
  .bc-cards { grid-template-columns: 1fr 1fr; }
  .bc-cta-band { flex-direction: column; text-align: center; }
  .bc-bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 120px; }
  .bc-bento__item--hero,
  .bc-bento__item--wide { grid-column: span 6; }
  .bc-bento__item--tall,
  .bc-bento__item--square,
  .bc-bento__item { grid-column: span 3; }
}

@media (max-width: 640px) {
  .bc-topbar__inner { flex-direction: column; }
  .bc-cards, .bc-gallery { grid-template-columns: 1fr; }
  .bc-header__inner { min-height: 76px; }
  .bc-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bc-bento__item--hero,
  .bc-bento__item--wide,
  .bc-bento__item--tall,
  .bc-bento__item--square,
  .bc-bento__item { grid-column: span 1; grid-row: span 1; }
  .bc-bento__item--hero { grid-row: span 2; }
  .bc-bento__meta em { opacity: 1; }
}
