/* ==========================================================
   BPC-DEALS — HolidayPirates-style deals theme
   Brand: Navy (#0a0e1a) + Gold (#c8a14a) accents,
   Deal CTA: Bold Plum (#4B156D) — for primary actions,
   Urgency: Hot Orange (#ff6633) — for badges/discount.
   ========================================================== */

:root {
  --ink: #0a0e1a;
  --ink-soft: #1f2433;
  --muted: #5b6473;
  --line: #e5e7ee;
  --bg: #ffffff;
  --bg-soft: #f5f6fa;
  --bg-warm: #fbf6ec;
  --gold: #c8a14a;
  --gold-deep: #a07e2c;
  --plum: #4B156D;
  --plum-deep: #350E4D;
  --hot: #ff5530;
  --hot-deep: #db3d18;
  --good: #1f9f5f;
  --shadow-sm: 0 1px 2px rgba(10,14,26,.06), 0 2px 6px rgba(10,14,26,.04);
  --shadow-md: 0 4px 10px rgba(10,14,26,.08), 0 16px 32px rgba(10,14,26,.06);
  --radius: 12px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg-soft);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--plum-deep); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ========== TOP NAV ========== */
.bpc-top {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.bpc-top-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}
.bpc-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.bpc-brand-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  font-size: 18px;
}
.bpc-brand-text b { color: var(--gold); }

.bpc-top-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex; gap: 20px;
  font-size: 14px; font-weight: 600;
  overflow: hidden;
}
.bpc-top-nav a {
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.bpc-top-nav a:hover {
  color: var(--plum);
  border-bottom-color: var(--gold);
}

.bpc-top-actions {
  display: flex !important;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.bpc-top-search {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.bpc-top-search:hover { background: var(--bg-warm); }
.bpc-top-signin {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 600; font-size: 14px;
  padding: 9px 14px;
  white-space: nowrap;
}
.bpc-top-cta {
  flex: 0 0 auto;
  background: var(--plum);
  color: #fff !important;
  font-weight: 700; font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-block;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.bpc-top-cta:hover { background: var(--plum-deep); transform: translateY(-1px); color: #fff !important; }
.bpc-top-burger {
  display: none;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4px;
}
.bpc-top-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--ink);
}

/* ========== CATEGORY ICON STRIP ========== */
.bpc-cats {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.bpc-cats::-webkit-scrollbar { display: none; }
.bpc-cats-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 10px 16px;
  display: flex; gap: 8px;
  justify-content: center;
}
.bpc-cat {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px; font-weight: 600;
  color: var(--ink);
  gap: 4px;
  transition: background .15s, transform .15s;
  min-width: 84px;
}
.bpc-cat:hover { background: var(--bg-warm); transform: translateY(-2px); color: var(--ink); }
.bpc-cat-icon { font-size: 22px; line-height: 1; }

/* ========== MAIN ========== */
.bpc-main { max-width: 1320px; margin: 0 auto; padding: 24px 16px 48px; }

/* ========== HERO + SEARCH ========== */
.bpc-hero {
  background:
    linear-gradient(180deg, rgba(10,14,26,.55) 0%, rgba(10,14,26,.65) 100%),
    url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1800') center/cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 56px 32px 32px;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}
.bpc-hero h1 {
  font-size: 38px; font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.bpc-hero h1 b { color: var(--gold); }
.bpc-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.9);
  margin: 0 auto 28px;
  max-width: 560px;
}
.bpc-hero-search {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(10,14,26,.3);
  max-width: 980px; margin: 0 auto;
  padding: 12px;
  overflow: hidden;
}
.bpc-hero-tabs {
  display: flex; gap: 4px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.bpc-hero-tab {
  background: transparent;
  border: 0;
  padding: 8px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
  white-space: nowrap;
}
.bpc-hero-tab.is-active,
.bpc-hero-tab:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.bpc-hero-fields {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr auto !important;
  gap: 0;
  align-items: stretch;
  padding-top: 12px;
}
.bpc-hero-search .bpc-hero-field {
  padding: 8px 14px !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: flex !important; flex-direction: column !important; gap: 2px;
  text-align: left;
  min-width: 0;
}
.bpc-hero-search .bpc-hero-field:last-of-type { border-right: 0 !important; }
.bpc-hero-search .bpc-hero-field label {
  font-size: 11px !important; font-weight: 700 !important;
  color: var(--muted) !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.bpc-hero-search .bpc-hero-field input,
.bpc-hero-search .bpc-hero-field select {
  border: 0 !important; padding: 4px 0 !important;
  font: inherit !important; font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  background: transparent !important;
  outline: 0 !important;
  border-radius: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  text-align: left !important;
}
.bpc-hero-search .bpc-hero-go {
  background: var(--plum) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 0 28px !important;
  font-weight: 800 !important; font-size: 15px !important;
  border-radius: 10px !important;
  margin: 4px 4px 4px 8px !important;
  min-width: 120px !important;
  white-space: nowrap !important;
  height: auto !important;
  letter-spacing: 0 !important;
}
.bpc-hero-search .bpc-hero-go:hover { background: var(--plum-deep) !important; color: #fff !important; }

/* ========== WIN HERO (monthly prize draw) ========== */
.bpc-win-hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a2138 55%, #2a1840 100%);
  border-radius: var(--radius-lg);
  padding: 44px 32px 32px;
  color: #fff;
  margin-bottom: 36px;
  overflow: hidden;
  position: relative;
}
.bpc-win-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(200,161,74,.18) 0%, rgba(200,161,74,0) 70%);
  pointer-events: none;
}
.bpc-win-hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  .bpc-win-hero-inner { grid-template-columns: 1fr; gap: 28px; }
}

.bpc-win-pill {
  display: inline-block;
  background: rgba(200,161,74,.18);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 14px;
  border: 1px solid rgba(200,161,74,.4);
}
.bpc-win-hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -1px;
  color: #fff;
}
.bpc-win-hero h1 b {
  color: var(--gold);
  background: linear-gradient(180deg, #ffd982 0%, #c8a14a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bpc-win-sub {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  margin: 0 0 22px;
  max-width: 540px;
}
.bpc-win-sub b { color: #fff; }

.bpc-win-form {
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 6px;
  border-radius: 12px;
  max-width: 480px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  margin-bottom: 18px;
}
.bpc-win-form input {
  flex: 1 1 auto;
  border: 0; outline: 0;
  padding: 12px 14px;
  font: inherit; font-size: 14px;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}
.bpc-win-form button {
  background: var(--gold);
  color: var(--ink);
  border: 0;
  padding: 12px 22px;
  font-weight: 800; font-size: 14px;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.bpc-win-form button:hover { background: #d8b56b; transform: translateY(-1px); }

.bpc-win-bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 22px;
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
}
.bpc-win-bullets li { line-height: 1.4; }
.bpc-win-bullets b { color: #fff; }
.bpc-win-bullets a { color: var(--gold); }
.bpc-win-bullets a:hover { color: #ffd982; }
@media (max-width: 720px) {
  .bpc-win-bullets { grid-template-columns: 1fr; }
  .bpc-win-hero h1 { font-size: 38px; }
}

/* Prize card */
.bpc-win-card {
  background: linear-gradient(135deg, #fff7e0 0%, #f4d877 50%, #c8a14a 100%);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px 24px 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.5);
  position: relative;
  transform: rotate(-2deg);
  border: 2px solid #ffd982;
}
.bpc-win-card::before {
  content: "★";
  position: absolute;
  top: -14px; right: -10px;
  background: var(--ink);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.bpc-win-card-top {
  display: flex; justify-content: space-between;
  font-size: 10.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px;
}
.bpc-win-card-month { opacity: .7; }
.bpc-win-card-value {
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
  text-shadow: 0 2px 0 rgba(255,255,255,.5);
}
.bpc-win-card-brand {
  font-size: 17px;
  font-weight: 700;
  margin-top: 4px;
}
.bpc-win-card-spend {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin: 14px 0 14px;
  font-size: 10.5px;
  font-weight: 700;
}
.bpc-win-card-spend span {
  background: rgba(10,14,26,.08);
  padding: 3px 8px;
  border-radius: 4px;
}
.bpc-win-card-foot {
  font-size: 11.5px;
  color: var(--ink-soft);
  padding-top: 12px;
  border-top: 1px dashed rgba(10,14,26,.2);
  text-align: center;
}

/* Tiny secondary search row */
.bpc-win-hero-search {
  display: flex; align-items: center; gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.bpc-win-hero-search-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.bpc-win-hero-search input {
  flex: 1 1 280px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 9px 14px;
  font: inherit; font-size: 13px;
  color: #fff;
  outline: 0;
}
.bpc-win-hero-search input::placeholder { color: rgba(255,255,255,.4); }
.bpc-win-hero-search input:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }
.bpc-win-hero-search button {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 16px;
  font-weight: 700; font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
}
.bpc-win-hero-search button:hover { background: var(--gold); color: var(--ink); }

/* ========== SECTION HEADINGS ========== */
.bpc-section { margin-bottom: 40px; }
.bpc-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.bpc-section-head h2 {
  font-size: 22px; font-weight: 800;
  color: var(--ink); margin: 0;
  letter-spacing: -0.3px;
  position: relative; padding-bottom: 6px;
}
.bpc-section-head h2::after {
  content: ""; position: absolute; bottom: -13px; left: 0;
  width: 48px; height: 3px; background: var(--gold);
  border-radius: 2px;
}
.bpc-section-head a {
  font-size: 13px; font-weight: 700;
  color: var(--plum);
  text-transform: uppercase; letter-spacing: .4px;
}

/* ========== DEAL GRID ========== */
.bpc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1100px) { .bpc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .bpc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .bpc-grid { grid-template-columns: 1fr; } }

/* ========== DEAL CARD (HP-style) ========== */
.bpc-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
  position: relative;
}
.bpc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.bpc-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}
.bpc-card-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.bpc-card:hover .bpc-card-image { transform: scale(1.04); }

.bpc-card-link {
  color: inherit; display: flex; flex-direction: column; height: 100%;
}
.bpc-card-link:hover { color: inherit; }

/* Top-left badge slot — % off / NEW / HOT */
.bpc-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--hot);
  color: #fff;
  font-weight: 800; font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: .3px;
  z-index: 2;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255,85,48,.4);
}
.bpc-card-badge.is-new { background: var(--good); box-shadow: 0 4px 12px rgba(31,159,95,.4); }
.bpc-card-badge.is-tip { background: var(--plum); box-shadow: 0 4px 12px rgba(75,21,109,.4); }

/* Top-right heart */
.bpc-card-fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); z-index: 2;
  box-shadow: 0 2px 6px rgba(10,14,26,.15);
  transition: color .15s, transform .15s;
}
.bpc-card-fav:hover { color: var(--hot); transform: scale(1.1); }
.bpc-card-fav.is-on { color: var(--hot); }

/* Bottom-left mini-tag strip overlaid on image */
.bpc-card-icons {
  position: absolute;
  bottom: 8px; left: 8px;
  display: flex; gap: 4px;
  z-index: 2;
}
.bpc-card-icon {
  background: rgba(255,255,255,.92);
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--ink);
}

/* Bottom-right From £XXX price pill */
.bpc-card-price {
  position: absolute;
  bottom: 8px; right: 8px;
  background: var(--ink);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  display: flex; align-items: baseline; gap: 4px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(10,14,26,.3);
}
.bpc-card-price-from {
  font-size: 9px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gold);
}
.bpc-card-price-suffix {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.7);
}

/* Card body */
.bpc-card-body {
  padding: 12px 14px 14px;
  display: flex; flex-direction: column;
  flex: 1 1 auto; gap: 8px;
}
.bpc-card-tag {
  font-size: 10.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--plum);
  display: flex; align-items: center; gap: 4px;
}
.bpc-card-tag::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
  display: inline-block;
}
.bpc-card-title {
  font-size: 14.5px; font-weight: 700;
  color: var(--ink);
  margin: 0; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bpc-card-excerpt {
  font-size: 12.5px; color: var(--muted);
  margin: 0; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 auto;
}
.bpc-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px; color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

/* ========== POST PAGE (minimal v1 — Phase 2 overhaul later) ========== */
.bpc-post-page {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.bpc-post-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--line);
}
.bpc-post-tag {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  color: var(--plum);
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 12px;
}
.bpc-post-title {
  font-size: 34px; font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px; line-height: 1.15;
  letter-spacing: -0.5px;
}
.bpc-post-excerpt {
  font-size: 16px; color: var(--muted);
  margin: 0 0 18px; line-height: 1.5;
}
.bpc-post-meta {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted); font-size: 13px;
}
.bpc-post-meta img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover;
}
.bpc-post-meta .author { color: var(--ink); font-weight: 700; }
.bpc-post-feature {
  max-height: 460px; overflow: hidden;
}
.bpc-post-feature img {
  width: 100%; height: 100%; object-fit: cover;
}
.bpc-post-body { padding: 32px 36px 40px; }
.bpc-post-body p, .bpc-post-body li { font-size: 16px; line-height: 1.7; }
.bpc-post-body h2 {
  font-size: 24px; font-weight: 800;
  color: var(--ink);
  margin: 32px 0 14px;
  letter-spacing: -0.3px;
}
.bpc-post-body h3 {
  font-size: 19px; font-weight: 700;
  color: var(--ink);
  margin: 24px 0 10px;
}
.bpc-post-body a { color: var(--plum); border-bottom: 1px solid rgba(75,21,109,.25); }
.bpc-post-body a:hover { border-bottom-color: var(--plum); }
.bpc-post-body img { border-radius: 10px; margin: 18px 0; }
.bpc-post-body .bpc-cta {
  display: inline-block;
  background: var(--plum) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  border-bottom: 0 !important;
}
.bpc-post-body .bpc-cta:hover { background: var(--plum-deep) !important; color: #fff !important; }

/* ========== NEWSLETTER BAND ========== */
.bpc-newsletter-band {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2138 100%);
  color: #fff;
  padding: 40px 24px;
  margin-top: 48px;
}
.bpc-nl-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) { .bpc-nl-inner { grid-template-columns: 1fr; } }
.bpc-nl-inner h3 {
  font-size: 24px; font-weight: 800; margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.bpc-nl-inner h3::after {
  content: " ✈"; color: var(--gold);
}
.bpc-nl-inner p {
  margin: 0; color: rgba(255,255,255,.8); font-size: 14px;
}
.bpc-nl-form {
  display: flex; gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.bpc-nl-form input {
  flex: 1 1 auto;
  border: 0; outline: 0;
  padding: 12px 14px;
  font: inherit; font-size: 14px;
  color: var(--ink);
}
.bpc-nl-form button {
  background: var(--gold);
  color: var(--ink);
  border: 0;
  padding: 12px 22px;
  font-weight: 800; font-size: 14px;
  border-radius: 8px;
  white-space: nowrap;
}
.bpc-nl-form button:hover { background: var(--gold-deep); color: #fff; }

/* ========== FOOTER ========== */
.bpc-footer {
  background: var(--ink);
  color: #fff;
  padding: 48px 24px 24px;
}
.bpc-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) {
  .bpc-footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.bpc-footer-col h5 {
  font-size: 12px; font-weight: 800;
  color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px;
  margin: 0 0 14px;
}
.bpc-footer-col a {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: 13.5px;
  padding: 4px 0;
}
.bpc-footer-col a:hover { color: var(--gold); }
.bpc-footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 14px; color: #fff;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.bpc-footer-brand b { color: var(--gold); }
.bpc-footer-tagline {
  color: rgba(255,255,255,.55);
  font-size: 13px; font-style: italic;
  margin: 0;
}
.bpc-footer-base {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.5);
  padding-top: 24px;
  gap: 16px; flex-wrap: wrap;
}

/* ========== MOBILE NAV ========== */
@media (max-width: 1024px) {
  .bpc-top-nav { display: none; }
  .bpc-top-burger { display: flex; }
  .bpc-top-cta { padding: 8px 12px; font-size: 12px; }
  .bpc-top-signin { display: none; }
  body.bpc-menu-open .bpc-top-nav {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 16px 24px;
    box-shadow: 0 12px 30px rgba(10,14,26,.15);
    gap: 0;
  }
  body.bpc-menu-open .bpc-top-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 720px) {
  .bpc-hero h1 { font-size: 28px; }
  .bpc-hero { padding: 36px 16px 16px; }
  .bpc-hero-fields { grid-template-columns: 1fr; }
  .bpc-hero-field { border-right: 0; border-bottom: 1px solid var(--line); }
  .bpc-hero-field:last-of-type { border-bottom: 0; }
  .bpc-hero-go { margin: 8px; }
  .bpc-section-head h2 { font-size: 18px; }
  .bpc-post-header, .bpc-post-body { padding: 24px 20px; }
  .bpc-post-title { font-size: 26px; }
}

/* ========== PAGINATION ========== */
.bpc-pager {
  display: flex; gap: 12px; justify-content: center;
  margin: 32px 0;
}
.bpc-pager a, .bpc-pager span {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700; font-size: 14px;
  color: var(--ink);
}
.bpc-pager a:hover { background: var(--plum); color: #fff !important; border-color: var(--plum); }

/* ========== UTILITIES ========== */
.bpc-hidden { display: none !important; }
.bpc-only-mobile { display: none; }
@media (max-width: 720px) { .bpc-only-mobile { display: block; } .bpc-hide-mobile { display: none; } }
