/* ── PAGE TOKENS ─────────────────────────────────────────────────────── */
:root {
  --bc-navy:       #0e2d45;
  --bc-navy-deep:  #07192a;
  --bc-gold:       #ffc21a;
  --bc-gold-light: #ffd24d;
  --bc-cream:      #f5f0e8;
  --bc-white:      #ffffff;
  --bc-text:       #3d4a58;
  --bc-text-light: #6b7a8d;
  --bc-border:     rgba(14,45,69,0.10);
  --bc-radius:     8px;
  --bc-shadow:     0 4px 20px rgba(14,45,69,0.10);
  --bc-transition: 0.25s ease;
}
.bc-page * { box-sizing: border-box; }
.bc-page { font-family: var(--font-body); color: var(--bc-text); }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.bc-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  max-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bc-navy-deep);
}
.bc-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.05);
}
.bc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,25,42,0.72) 0%, rgba(7,25,42,0.18) 70%);
  pointer-events: none;
}
.bc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.bc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.bc-hero__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--bc-gold);
}
.bc-hero__eyebrow span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-gold);
}
.bc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--bc-white);
  line-height: 1.1;
  margin: 0 0 12px;
  font-family: var(--font-body);
}
.bc-hero h1 em {
  font-style: normal;
  color: var(--bc-gold);
}
.bc-hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}

/* ── LAYOUT ────────────────────────────────────────────────────────────── */
.bc-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

/* ── REGION SECTION ────────────────────────────────────────────────────── */
.bc-region { margin-bottom: 52px; }
.bc-region:last-child { margin-bottom: 0; }

.bc-region__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--bc-border);
}
.bc-region__icon {
  font-size: 1.4rem;
  line-height: 1;
}
.bc-region__title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bc-gold);
  margin: 0;
}
.bc-region__count {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--bc-text-light);
  font-weight: 500;
}

/* ── COUNTRY GRID ──────────────────────────────────────────────────────── */
.bc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

/* ── COUNTRY CARD ──────────────────────────────────────────────────────── */
.bc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 16px 18px;
  text-decoration: none !important;
  color: var(--bc-navy) !important;
  transition: border-color var(--bc-transition),
              box-shadow var(--bc-transition),
              transform var(--bc-transition);
  position: relative;
  overflow: hidden;
}
.bc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--bc-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--bc-transition);
}
.bc-card:hover {
  border-color: rgba(255,194,26,0.4);
  box-shadow: 0 6px 24px rgba(14,45,69,0.12);
  transform: translateY(-2px);
}
.bc-card:hover::before { transform: scaleY(1); }

.bc-card__flag {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}
.bc-card__body { flex: 1; min-width: 0; }
.bc-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--bc-navy);
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bc-card__note {
  font-size: 0.75rem;
  color: var(--bc-text-light);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bc-card__arrow {
  font-size: 0.8rem;
  color: rgba(255,194,26,0.5);
  flex-shrink: 0;
  transition: color var(--bc-transition), transform var(--bc-transition);
}
.bc-card:hover .bc-card__arrow {
  color: var(--bc-gold);
  transform: translateX(3px);
}

/* ── COMING SOON CARD ─────────────────────────────────────────────────── */
.bc-card--soon {
  opacity: 0.52;
  cursor: default;
  pointer-events: none;
}
.bc-card--soon::before { display: none; }
.bc-card--soon .bc-card__note { font-style: italic; }

/* ── INTRO NOTE ───────────────────────────────────────────────────────── */
.bc-note {
  background: var(--bc-navy);
  border-radius: var(--bc-radius);
  padding: 28px 32px;
  margin-bottom: 48px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.bc-note__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.bc-note__body { flex: 1; }
.bc-note__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-gold);
  margin: 0 0 6px;
}
.bc-note__text {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}
.bc-note__text a {
  color: var(--bc-gold);
  text-decoration: none;
}
.bc-note__text a:hover { text-decoration: underline; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .bc-wrap { padding: 36px 20px 60px; }
  .bc-hero__content { padding: 0 20px; }
  .bc-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
  .bc-note { flex-direction: column; gap: 12px; padding: 20px; }
}
@media (max-width: 480px) {
  .bc-grid { grid-template-columns: 1fr 1fr; }
  .bc-card { padding: 12px 14px; gap: 10px; }
  .bc-card__flag { font-size: 1.4rem; }
}