@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --bc-red: #c91f2c;
  --bc-red-dark: #7d1320;
  --bc-wine: #4f1630;
  --bc-ink: #2c2025;
  --bc-muted: #6f6266;
  --bc-cream: #fbf6ed;
  --bc-sand: #eadcc4;
  --bc-leaf: #2f745f;
  --bc-white: #fffefa;
  --bc-line: rgba(79, 22, 48, .14);
  --bc-shadow: 0 24px 70px rgba(86, 32, 41, .13);
  --bc-radius-sm: .75rem;
  --bc-radius: 1.5rem;
  --bc-radius-lg: 2.5rem;
  --bc-container: 76rem;
  --bc-display: 'Fraunces', Georgia, serif;
  --bc-body: 'DM Sans', sans-serif;
  /* App bar + sticky header. Heroes subtract this so they fill exactly one
     screen without pushing the fold. */
  --bc-chrome: 7.6rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--bc-ink); background: var(--bc-cream); font: 400 1rem/1.65 var(--bc-body); }
body.bc-modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid #e7a82d; outline-offset: 4px; }
[hidden] { display: none !important; }

.bc-container { width: min(calc(100% - 2rem), var(--bc-container)); margin-inline: auto; }
.bc-skip-link { position: fixed; z-index: 1000; top: .5rem; left: .5rem; padding: .75rem 1rem; background: var(--bc-ink); color: #fff; transform: translateY(-150%); }
.bc-skip-link:focus { transform: translateY(0); }
.bc-app-bar { display: grid; place-items: center; min-height: 2rem; padding: .25rem 1rem; color: #fff; background: var(--bc-wine); }
.bc-app-bar__button { border: 0; padding: 0; color: inherit; background: none; cursor: pointer; font-size: .8rem; font-weight: 600; letter-spacing: .02em; }
.bc-site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--bc-line); background: rgba(251, 246, 237, .9); backdrop-filter: blur(18px); }
.bc-site-header__inner { min-height: 5.4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.bc-brand img { width: min(21rem, 42vw); max-height: 3.1rem; object-fit: contain; object-position: left center; }
.bc-navigation { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.bc-navigation a { position: relative; font-size: .9rem; font-weight: 650; text-decoration: none; }
.bc-navigation a::after { content: ''; position: absolute; right: 0; bottom: -.35rem; left: 0; height: 2px; background: var(--bc-red); transform: scaleX(0); transition: transform .25s ease; transform-origin: right; }
.bc-navigation a:hover::after { transform: scaleX(1); transform-origin: left; }
.bc-menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.bc-menu-toggle__icon, .bc-menu-toggle__icon::before, .bc-menu-toggle__icon::after { display: block; width: 1.6rem; height: 2px; background: currentColor; content: ''; }
.bc-menu-toggle__icon { position: relative; margin-left: .6rem; }
.bc-menu-toggle__icon::before { position: absolute; top: -.45rem; }
.bc-menu-toggle__icon::after { position: absolute; top: .45rem; }

.bc-page-shell { overflow: clip; }
.bc-eyebrow { margin: 0 0 .65rem; color: var(--bc-red); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, h4, h5, h6 { font-family: var(--bc-display); line-height: 1.05; letter-spacing: -.03em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 6vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
p { text-wrap: pretty; }
.bc-button { display: inline-flex; justify-content: center; align-items: center; min-height: 3.2rem; padding: .8rem 1.35rem; border: 1px solid transparent; border-radius: var(--bc-radius-sm); color: #fff; background: var(--bc-red); font-weight: 700; text-decoration: none; box-shadow: 0 12px 30px rgba(201, 31, 44, .2); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.bc-button:hover { transform: translateY(-2px); background: var(--bc-red-dark); box-shadow: 0 16px 38px rgba(201, 31, 44, .28); }
.bc-button:active { transform: translateY(0); }
.bc-button--secondary { border-color: var(--bc-line); color: var(--bc-wine); background: rgba(255, 255, 255, .62); box-shadow: none; }

.bc-trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem 2.4rem; padding: 1.25rem; border-block: 1px solid var(--bc-line); background: rgba(255,255,255,.48); }
.bc-trust-strip img { width: auto; max-width: 9rem; max-height: 2.35rem; object-fit: contain; }
.bc-trust-strip a { color: var(--bc-leaf); text-decoration: none; }

.bc-footer { padding: 4.5rem 0 1.5rem; border-top: 1px solid var(--bc-line); background: #f1e5d3; }
.bc-footer__grid { display: grid; grid-template-columns: 1.1fr 1.4fr .7fr; gap: 3rem; align-items: start; }
.bc-footer__brand { width: 13rem; margin-bottom: 1rem; }
.bc-footer__grid p { max-width: 34ch; color: var(--bc-muted); }
.bc-footer__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem 1.4rem; }
.bc-footer__links a { text-decoration: none; font-size: .9rem; font-weight: 600; }
.bc-footer__registered { display: grid; justify-items: start; gap: .5rem; font-size: .75rem; }
.bc-footer__registered img { width: 9rem; }
.bc-footer__bottom { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid var(--bc-line); color: var(--bc-muted); font-size: .78rem; }
.bc-support { position: fixed; z-index: 45; right: 1rem; bottom: 1rem; width: 3.5rem; border-radius: 50%; filter: drop-shadow(0 12px 20px rgba(40,88,65,.24)); transition: transform .2s ease; }
.bc-support:hover { transform: translateY(-3px) scale(1.03); }

.bc-modal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 1rem; }
.bc-modal__backdrop { position: absolute; inset: 0; background: rgba(38, 21, 28, .62); backdrop-filter: blur(6px); }
.bc-modal__dialog { position: relative; width: min(100%, 34rem); padding: clamp(2rem, 5vw, 3.5rem); border: 1px solid rgba(255,255,255,.5); border-radius: var(--bc-radius-lg); background: var(--bc-white); box-shadow: var(--bc-shadow); }
.bc-modal__dialog h2 { margin: 0; font-size: clamp(2rem, 7vw, 3.2rem); }
.bc-modal__close { position: absolute; top: 1rem; right: 1rem; width: 2.6rem; height: 2.6rem; border: 1px solid var(--bc-line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.6rem; }
.bc-modal__actions { display: grid; gap: .75rem; margin-top: 1.5rem; }
.bc-store-link { padding: .85rem 1rem; border-radius: .8rem; color: #fff; background: var(--bc-ink); text-align: center; text-decoration: none; font-weight: 700; }
.bc-empty-state { min-height: 65vh; display: grid; place-content: center; justify-items: start; }

@media (max-width: 820px) {
  .bc-site-header__inner { min-height: 4.5rem; }
  .bc-brand img { width: 12rem; }
  .bc-menu-toggle { display: inline-flex; align-items: center; }
  .bc-menu-toggle__label { font-size: .8rem; font-weight: 700; }
  .bc-navigation { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 1.25rem 1rem 1.5rem; border-bottom: 1px solid var(--bc-line); background: var(--bc-cream); box-shadow: var(--bc-shadow); }
  .bc-navigation[data-open] { display: grid; }
  .bc-navigation a { padding: .55rem 1rem; }
  .bc-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

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