:root {
  --bc-maroon: #5c1820;
  --bc-maroon-deep: #3a1016;
  --bc-orange: #e99b3f;
  --bc-orange-dark: #d8882e;
  --bc-gold: #c9a15b;
  --bc-gold-light: #e8d5a3;
  --bc-gold-deep: #a07d38;
  --bc-saffron: #f0a33a;
  --bc-turmeric: #e8c547;
  --bc-chili: #d94a2b;
  --bc-paprika: #c23b2a;
  --bc-mango: #f2b84b;
  --bc-sage: #5e8f4c;
  --bc-cream: #f7f1e8;
  --bc-paper: #fbf7f0;
  --bc-ink: #241310;
  --bc-muted: #6b574c;
  --bc-line: #e6d8c6;
  --bc-shadow: 0 18px 50px rgba(36, 12, 16, 0.12);
  --bc-serif: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --bc-sans: "Outfit", "Segoe UI", sans-serif;
  --bc-wrap: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 12% 8%, rgba(240, 163, 58, 0.14), transparent 42%),
    radial-gradient(ellipse at 88% 18%, rgba(217, 74, 43, 0.08), transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(94, 143, 76, 0.06), transparent 45%),
    var(--bc-cream);
  color: var(--bc-ink);
  font-family: var(--bc-sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--bc-maroon); text-decoration: none; }
a:hover { color: var(--bc-gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--bc-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--bc-maroon);
  margin: 0 0 0.45em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.85rem); }
h3 { font-size: 1.28rem; }

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-kicker {
  margin: 0 0 12px;
  color: var(--bc-chili);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.bc-kicker--light { color: #ffd27a; }
.bc-kicker--script {
  font-family: var(--bc-serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: #ffc45a;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(240, 163, 58, 0.35);
}

.bc-lead {
  font-size: 1.08rem;
  color: var(--bc-muted);
  max-width: 38rem;
  line-height: 1.75;
}
.bc-lead--light { color: rgba(247, 241, 232, 0.86); }

.bc-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 22px;
}
.bc-ornament span {
  display: block;
  height: 2px;
  width: 42px;
  background: linear-gradient(90deg, var(--bc-chili), var(--bc-saffron), var(--bc-turmeric), var(--bc-sage));
  opacity: 0.85;
}
.bc-ornament i {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--bc-saffron), var(--bc-chili));
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(240, 163, 58, 0.22);
}

.bc-center { text-align: center; margin-top: 36px; }

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}
.bc-btn--sm { min-height: 40px; padding: 0 16px; font-size: 0.7rem; }
.bc-btn--primary {
  background: linear-gradient(180deg, #ffd27a 0%, #f0a33a 45%, #e07a28 100%);
  color: #3a1016;
  border-color: #c86a1e;
  box-shadow: inset 0 1px 0 rgba(255, 248, 230, 0.55), 0 8px 18px rgba(224, 122, 40, 0.28);
}
.bc-btn--primary:hover {
  background: linear-gradient(180deg, #ffe09a 0%, #f5b04a 45%, #f0a33a 100%);
  color: #2a0c10;
}
.bc-btn--maroon {
  background: var(--bc-maroon);
  color: #faf4ea;
}
.bc-btn--maroon:hover {
  background: var(--bc-maroon-deep);
  color: #fff;
}
.bc-btn--ghost {
  background: transparent;
  border-color: var(--bc-maroon);
  color: var(--bc-maroon);
}
.bc-btn--ghost:hover {
  background: var(--bc-maroon);
  color: #faf4ea;
}
.bc-btn--ghost-light {
  background: transparent;
  border-color: rgba(247, 241, 232, 0.72);
  color: #f7f1e8;
}
.bc-btn--ghost-light:hover {
  background: #f7f1e8;
  color: var(--bc-maroon);
}

.bc-gold-strip,
.bc-footer::before,
.bc-cta-band::before {
  background-color: var(--bc-maroon);
  background-image: url("../images/pattern-strip.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}
.bc-gold-strip {
  height: 10px;
  border-bottom: 1px solid rgba(201, 161, 91, 0.35);
}

.bc-sitehead {
  position: sticky;
  top: 0;
  z-index: 50;
}

.bc-topbar {
  background: #1a0c0e;
  color: rgba(247, 241, 232, 0.82);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(218, 171, 88, 0.28);
}
.bc-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.bc-topbar__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  min-width: 0;
}
.bc-topbar__item {
  color: rgba(247, 241, 232, 0.88);
  white-space: nowrap;
}
.bc-topbar a.bc-topbar__item:hover {
  color: #daab58;
}
.bc-topbar__item--mail {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.bc-social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.bc-social__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(218, 171, 88, 0.65);
  background: rgba(92, 24, 32, 0.55);
  color: #daab58;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.bc-social__btn svg {
  width: 15px;
  height: 15px;
}
.bc-social__btn:hover {
  background: #daab58;
  color: #1a0c0e;
  border-color: #daab58;
}
.bc-social__btn--whatsapp {
  background: #25d366;
  border-color: #1ebe57;
  color: #fff;
}
.bc-social__btn--whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

.bc-float-social {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
}
.bc-float-social .bc-social {
  flex-direction: column;
  gap: 10px;
}
.bc-float-social .bc-social__btn {
  width: 42px;
  height: 42px;
  background: #2a1216;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
.bc-float-social .bc-social__btn svg {
  width: 18px;
  height: 18px;
}

.bc-header {
  position: relative;
  background: #241014;
  border-bottom: 1px solid rgba(218, 171, 88, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.bc-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 92px;
}
.bc-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bc-nav-list a {
  color: rgba(247, 241, 232, 0.9);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.bc-logo img { width: 72px; height: auto; }
.bc-logo--foot img { width: 80px; }
.bc-logo-plate {
  display: inline-flex;
  padding: 6px 8px;
  background: var(--bc-paper);
  border-radius: 8px;
  border: 1px solid rgba(201, 161, 91, 0.4);
}

.bc-nav-list a:hover,
.bc-nav-list [aria-current="page"] {
  color: #daab58;
  border-bottom-color: #daab58;
}

.bc-header__tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bc-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.bc-lang a { color: rgba(247, 241, 232, 0.55); }
.bc-lang a.is-active {
  color: #daab58;
  border-bottom: 1px solid #daab58;
}
.bc-lang span { color: rgba(247, 241, 232, 0.35); }

.bc-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
}
.bc-burger i {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: #daab58;
}

.bc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 560px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #2a0e14;
  background-image: url("../images/hero-ai-feast.webp");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #f7f1e8;
  padding: 72px 0 88px;
  text-align: left;
}
.bc-hero--ai {
  background-image: none;
}
.bc-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(1.25) contrast(1.06);
}
.bc-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.bc-hero__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 210, 122, 0.7);
}
.bc-hero__dots i.is-active {
  background: #ffd27a;
  box-shadow: 0 0 0 3px rgba(255, 210, 122, 0.28);
}
.bc-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(52%, 640px);
  background:
    linear-gradient(90deg, rgba(18, 6, 8, 0.88) 0%, rgba(18, 6, 8, 0.55) 70%, transparent 100%),
    url("../images/mandala-gold-ai.webp") left 4% center / min(460px, 72vw) no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.bc-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(18, 6, 8, 0.82) 0%, rgba(18, 6, 8, 0.45) 34%, rgba(18, 6, 8, 0.08) 58%, transparent 78%),
    linear-gradient(180deg, rgba(194, 59, 42, 0.16) 0%, transparent 42%, rgba(240, 163, 58, 0.18) 100%);
  pointer-events: none;
}
.bc-hero .bc-wrap {
  position: relative;
  z-index: 1;
}
.bc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-left: 0;
  margin-right: auto;
}
.bc-hero h1 {
  color: #ffd27a;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(240, 163, 58, 0.35);
}
.bc-hero__subtitle {
  margin: 6px 0 14px;
  color: #ffb86b;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
}
.bc-hero .bc-lead {
  margin-inline: 0;
}
.bc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 8px;
}
.bc-hero__meta {
  margin: 28px 0 0;
  color: rgba(247, 241, 232, 0.68);
  font-size: 0.9rem;
}
.bc-hero__badge {
  position: absolute;
  right: max(24px, 4vw);
  bottom: 28px;
  z-index: 2;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 2px solid #ffd27a;
  background: radial-gradient(circle at 35% 28%, #e07a28 0%, #c23b2a 42%, #3a1016 78%);
  color: #fff6e0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  font-family: var(--bc-serif);
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(194, 59, 42, 0.45), 0 0 0 4px rgba(240, 163, 58, 0.22);
}

.bc-values {
  background:
    linear-gradient(120deg, rgba(240, 163, 58, 0.22), transparent 40%),
    linear-gradient(300deg, rgba(217, 74, 43, 0.28), transparent 45%),
    linear-gradient(180deg, #7a2430 0%, #4a1420 100%);
  color: #f7f1e8;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 210, 122, 0.35);
  border-bottom: 1px solid rgba(255, 210, 122, 0.28);
  position: relative;
  overflow: hidden;
}
.bc-values::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bc-chili), var(--bc-saffron), var(--bc-turmeric), var(--bc-sage), var(--bc-paprika));
}
.bc-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bc-values__item {
  text-align: center;
  padding: 8px 10px;
}
.bc-values__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 50%;
  border: 2px solid currentColor;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}
.bc-values__icon svg {
  width: 30px;
  height: 30px;
}
.bc-values__item:nth-child(1) .bc-values__icon { color: #8fd46a; }
.bc-values__item:nth-child(2) .bc-values__icon { color: #ff8a4c; }
.bc-values__item:nth-child(3) .bc-values__icon { color: #ffd27a; }
.bc-values__item:nth-child(4) .bc-values__icon { color: #ff7a9a; }
.bc-values__item h3 {
  margin: 0 0 6px;
  color: #fff8ea;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--bc-sans);
  font-weight: 600;
}
.bc-values__item p {
  margin: 0;
  color: rgba(255, 244, 225, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
}

.bc-section--specials {
  background:
    url("../images/mandala-gold-ai.webp") right -80px top -60px / min(420px, 55vw) no-repeat,
    url("../images/mandala-gold-ai.webp") left -100px bottom -80px / min(380px, 50vw) no-repeat,
    radial-gradient(circle at 8% 18%, rgba(240, 163, 58, 0.22), transparent 40%),
    radial-gradient(circle at 92% 12%, rgba(217, 74, 43, 0.14), transparent 38%),
    radial-gradient(circle at 70% 88%, rgba(94, 143, 76, 0.12), transparent 42%),
    radial-gradient(circle at 20% 90%, rgba(232, 197, 71, 0.16), transparent 36%),
    linear-gradient(180deg, #fff8ec 0%, #f7efe0 100%);
}
.bc-specials {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.bc-specials__photo {
  position: relative;
}
.bc-specials__photo::after {
  content: "";
  position: absolute;
  inset: auto -10px -10px auto;
  width: 42%;
  height: 42%;
  border: 3px solid var(--bc-saffron);
  border-left: 0;
  border-top: 0;
  pointer-events: none;
}
.bc-specials__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 22px 48px rgba(194, 59, 42, 0.22);
  filter: saturate(1.2) contrast(1.05);
}
.bc-specials__intro {
  text-align: center;
}
.bc-specials__intro h2 {
  background: linear-gradient(90deg, var(--bc-maroon), var(--bc-chili), var(--bc-saffron));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bc-specials__intro .bc-lead {
  margin-inline: auto;
}
.bc-feature-card {
  background: linear-gradient(180deg, #fff 0%, #fff6ea 100%);
  border: 1px solid rgba(240, 163, 58, 0.45);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(194, 59, 42, 0.12);
  position: relative;
}
.bc-feature-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--bc-chili), var(--bc-saffron), var(--bc-turmeric));
}
.bc-feature-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.18);
}
.bc-feature-card__body {
  padding: 22px 22px 26px;
}
.bc-feature-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  color: var(--bc-paprika);
}
.bc-feature-card__body p {
  margin: 0 0 18px;
  color: var(--bc-muted);
  font-size: 0.95rem;
}

.bc-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.bc-footer .bc-social__btn {
  background: rgba(0, 0, 0, 0.25);
}

.bc-section { padding: 88px 0; scroll-margin-top: 108px; }
.bc-section--soft {
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 163, 58, 0.16), transparent 36%),
    radial-gradient(circle at 90% 20%, rgba(217, 74, 43, 0.1), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(94, 143, 76, 0.1), transparent 40%),
    linear-gradient(180deg, #fff9ef 0%, #f6ecdc 100%);
}
.bc-sectionhead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.bc-sectionhead .bc-ornament { justify-content: center; }

.bc-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.bc-split--about {
  padding-bottom: 24px;
  align-items: start;
}
.bc-split__media {
  display: grid;
  justify-items: center;
  gap: 20px;
}
.bc-photo { margin: 0; overflow: hidden; }
.bc-photo img {
  width: 100%;
  min-height: 460px;
  height: 100%;
  object-fit: cover;
}
.bc-mascot {
  width: 150px;
  filter: drop-shadow(0 10px 16px rgba(36, 12, 16, 0.16));
}

.bc-dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bc-dish {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bc-maroon-deep);
  color: #faf4ea;
  box-shadow: 0 14px 28px rgba(92, 24, 32, 0.16);
}
.bc-dish::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
}
.bc-dish:nth-child(6n + 1)::before { background: linear-gradient(90deg, var(--bc-chili), var(--bc-saffron)); }
.bc-dish:nth-child(6n + 2)::before { background: linear-gradient(90deg, var(--bc-saffron), var(--bc-turmeric)); }
.bc-dish:nth-child(6n + 3)::before { background: linear-gradient(90deg, var(--bc-sage), #8fd46a); }
.bc-dish:nth-child(6n + 4)::before { background: linear-gradient(90deg, #5e8f4c, #c8e07a); }
.bc-dish:nth-child(6n + 5)::before { background: linear-gradient(90deg, var(--bc-paprika), #ff7a4c); }
.bc-dish:nth-child(6n + 6)::before { background: linear-gradient(90deg, var(--bc-mango), #fff0a8); }
.bc-dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(1.18) contrast(1.04);
}
.bc-dish:hover { color: #faf4ea; }
.bc-dish:hover img { transform: scale(1.05); }
.bc-dish span {
  position: absolute;
  inset: auto 0 0;
  padding: 52px 18px 18px;
  background: linear-gradient(transparent, rgba(18, 6, 8, 0.88));
  font-family: var(--bc-serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.bc-strip {
  background:
    linear-gradient(120deg, rgba(240, 163, 58, 0.35), transparent 42%),
    linear-gradient(300deg, rgba(217, 74, 43, 0.4), transparent 48%),
    linear-gradient(180deg, #8a2a34 0%, #5c1820 55%, #3a1016 100%);
  color: #f7f1e8;
  text-align: center;
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}
.bc-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--bc-chili), var(--bc-saffron), var(--bc-turmeric), var(--bc-sage), var(--bc-paprika));
}
.bc-strip h2 {
  color: #ffe7b0;
  max-width: 16ch;
  margin-inline: auto;
  text-shadow: 0 2px 18px rgba(240, 163, 58, 0.35);
}
.bc-strip .bc-hero__actions {
  justify-content: center;
  margin-top: 22px;
}

.bc-section--visit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 18% 48%, rgba(201, 161, 91, 0.22), transparent 52%),
    #16090c;
  color: #f7f1e8;
  border-top: 1px solid rgba(201, 161, 91, 0.45);
  border-bottom: 1px solid rgba(201, 161, 91, 0.28);
}
.bc-section--visit::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: max(-80px, calc(50% - 560px));
  top: 50%;
  width: min(720px, 92vw);
  height: min(720px, 92vw);
  transform: translateY(-50%);
  background: url("../images/mandala.png") center / contain no-repeat;
  opacity: 1;
  filter: drop-shadow(0 0 28px rgba(218, 171, 88, 0.28));
  pointer-events: none;
}
.bc-section--visit .bc-wrap {
  position: relative;
  z-index: 1;
}
.bc-section--visit h2 {
  color: #faf4ea;
}
.bc-section--visit .bc-kicker {
  color: var(--bc-gold-light);
}
.bc-section--visit .bc-lead {
  color: rgba(247, 241, 232, 0.84);
}
.bc-section--visit .bc-ornament span {
  background: linear-gradient(90deg, transparent, var(--bc-gold-light), transparent);
}
.bc-section--visit .bc-ornament i {
  background: var(--bc-gold-light);
  box-shadow: 0 0 0 3px rgba(232, 213, 163, 0.22);
}
.bc-visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.bc-section--visit .bc-facts li {
  margin: 0 0 10px;
  padding: 12px 16px;
  border: 1px solid rgba(201, 161, 91, 0.42);
  background: rgba(10, 4, 6, 0.28);
}
.bc-section--visit .bc-facts strong {
  color: var(--bc-gold-light);
}
.bc-section--visit .bc-facts a {
  color: #f7f1e8;
}
.bc-section--visit .bc-facts a:hover {
  color: var(--bc-gold-light);
}
.bc-section--visit .bc-map,
.bc-section--visit .bc-photo {
  border: 1px solid var(--bc-gold);
  box-shadow:
    0 0 0 6px rgba(22, 9, 12, 0.55),
    0 0 0 7px rgba(201, 161, 91, 0.55),
    0 22px 48px rgba(0, 0, 0, 0.38);
}
.bc-section--visit .bc-photo img {
  min-height: 380px;
}
.bc-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.bc-facts li { margin: 0 0 12px; }
.bc-facts strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bc-gold-deep);
  font-weight: 500;
  margin-bottom: 2px;
}

.bc-map {
  min-height: 380px;
  background: var(--bc-paper);
}
.bc-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

.bc-pagehead {
  padding: 72px 0 36px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 161, 91, 0.22);
}
.bc-pagehead .bc-ornament,
.bc-pagehead .bc-lead { margin-inline: auto; }
.bc-pagehead h1 { margin-bottom: 0; }

.bc-narrow {
  width: min(calc(100% - 40px), 760px);
  margin-inline: auto;
  padding-bottom: 80px;
}
.bc-order-abspos { padding-bottom: 80px; }
.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-page > .bc-wrap.bc-prose { padding-bottom: 80px; }

.bc-write {
  padding: 36px 0 88px;
}
.bc-write h2 { margin: 0 0 20px; }
.bc-write .bc-form {
  width: 100%;
  max-width: none;
  padding: 32px;
}
.bc-form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 16px;
}

.bc-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.bc-subnav a {
  border: 1px solid var(--bc-line);
  background: transparent;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--bc-maroon);
}
.bc-subnav a:hover {
  border-color: var(--bc-gold);
  background: #fff;
}

.bc-menu { padding-bottom: 16px; }
.bc-menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 32px;
}
.bc-menu-jump a { font-weight: 500; color: var(--bc-gold-deep); }
.bc-menu-section { margin: 0 0 40px; }
.bc-menu-list { list-style: none; margin: 0; padding: 0; }
.bc-menu-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--bc-line);
}
.bc-menu-item__top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.bc-menu-item h3 { margin: 0; font-size: 1.3rem; }
.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.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  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: 72px; }

.bc-form {
  background: #fff;
  border: 1px solid var(--bc-line);
  padding: 28px;
}
.bc-form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 0.9rem;
}
.bc-form input,
.bc-form textarea,
.bc-form select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--bc-line);
  background: var(--bc-paper);
  padding: 12px;
  font: inherit;
  color: inherit;
  border-radius: 2px;
}
.bc-form input:focus,
.bc-form textarea:focus {
  outline: 1px solid var(--bc-gold);
  border-color: var(--bc-gold);
  background: #fff;
}
.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: 400;
}
.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: transparent;
  color: var(--bc-maroon);
  padding: 8px 16px;
  font: inherit;
  font-weight: 500;
  font-size: 0.86rem;
  cursor: pointer;
}
.bc-gallery-filters button.is-active,
.bc-gallery-filters button:hover {
  background: var(--bc-maroon);
  border-color: var(--bc-maroon);
  color: #faf4ea;
}

.bc-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 56px;
}
.bc-bento__item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bc-maroon-deep);
  color: #fff;
  aspect-ratio: 4 / 3;
  grid-column: auto;
  grid-row: auto;
}
.bc-bento__item--hero,
.bc-bento__item--tall,
.bc-bento__item--wide,
.bc-bento__item--square {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4 / 3;
}
.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.05); }
.bc-bento__item:hover { color: #fff; }
.bc-bento__meta {
  position: absolute;
  inset: auto 0 0;
  padding: 32px 18px 16px;
  background: linear-gradient(transparent, rgba(18, 6, 8, 0.88));
}
.bc-bento__meta strong {
  display: block;
  font-family: var(--bc-serif);
  font-size: 1.25rem;
  font-weight: 600;
}
.bc-bento__meta em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.86rem;
  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(18, 6, 8, 0.94);
  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;
}
.bc-lightbox figcaption {
  color: #f6e7d2;
  margin-top: 12px;
  font-family: var(--bc-serif);
  font-size: 1.25rem;
}
.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: 10px;
  padding-bottom: 64px;
}
.bc-gallery figure { margin: 0; overflow: hidden; }
.bc-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.bc-cta-band {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--bc-maroon);
  color: #f7f1e8;
  padding: 44px 36px 32px;
  margin-bottom: 80px;
}
.bc-cta-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 16px;
}
.bc-cta-band h2 { margin: 0 0 6px; color: #faf4ea; }
.bc-cta-band p { margin: 0; color: rgba(247, 241, 232, 0.72); }

.bc-footer {
  background: var(--bc-maroon-deep);
  color: #eadcc8;
  padding-top: 0;
}
.bc-footer::before {
  content: "";
  display: block;
  height: 18px;
}
.bc-footer a { color: var(--bc-gold-light); }
.bc-footer a:hover { color: #fff; }
.bc-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 40px;
}
.bc-footer h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #faf4ea;
}
.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__bar {
  border-top: 1px solid rgba(201, 161, 91, 0.28);
  padding: 16px 0;
  color: #c9b49a;
  font-size: 0.86rem;
}

@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-color: #241014;
    border-bottom: 1px solid rgba(218, 171, 88, 0.35);
    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-topbar__item--mail,
  .bc-topbar__item--hours { display: none; }
  .bc-hero { min-height: 420px; padding: 64px 0 48px; }
  .bc-hero__badge { width: 96px; height: 96px; font-size: 0.62rem; bottom: 16px; }
  .bc-values__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .bc-specials { grid-template-columns: 1fr; }
  .bc-specials__photo img { height: 260px; }
  .bc-float-social { display: none; }
  .bc-split,
  .bc-visit,
  .bc-footer__grid,
  .bc-gallery,
  .bc-grid-2,
  .bc-dishes { grid-template-columns: 1fr 1fr; }
  .bc-split,
  .bc-visit,
  .bc-footer__grid,
  .bc-grid-2 { grid-template-columns: 1fr; }
  .bc-section--visit::before {
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
    width: min(560px, 120vw);
    height: min(560px, 120vw);
    opacity: 0.55;
  }
  .bc-photo img { min-height: 320px; }
  .bc-cta-band { flex-direction: column; text-align: center; }
  .bc-bento { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .bc-gold-strip { height: 8px; }
  .bc-footer::before { height: 14px; }
  .bc-topbar__meta { gap: 6px 12px; }
  .bc-topbar__item--addr { display: none; }
  .bc-dishes,
  .bc-gallery { grid-template-columns: 1fr; }
  .bc-values__grid { grid-template-columns: 1fr; }
  .bc-form__row { grid-template-columns: 1fr; }
  .bc-header__inner { min-height: 72px; }
  .bc-hero { min-height: 400px; aspect-ratio: auto; }
  .bc-hero__badge { display: none; }
  .bc-section { padding: 64px 0; }
  .bc-bento { grid-template-columns: 1fr; }
  .bc-bento__item,
  .bc-bento__item--hero,
  .bc-bento__item--wide,
  .bc-bento__item--tall,
  .bc-bento__item--square { aspect-ratio: 4 / 3; }
  .bc-bento__meta em { opacity: 1; }
}
