:root {
  --btp-ink: #0d0b12;
  --btp-deep-teal: #5b21b6;
  --btp-teal: #7c3aed;
  --btp-sky: #8b5cf6;
  --btp-navy: #24123f;
  --btp-sunset: #9333ea;
  --btp-coral: #c084fc;
  --btp-gold: #d8b4fe;
  --btp-sage: #a78bfa;
  --btp-cream: #f6f3fb;
  --btp-sand: #e9e1f4;
  --btp-soft-blue: #f1ebfb;
  --btp-white: #ffffff;
  --btp-muted: #6f6878;
  --btp-line: rgba(13,11,18,.13);
  --btp-shadow: 0 22px 60px rgba(13,11,18,.12);
  --btp-radius-sm: 16px;
  --btp-radius: 28px;
  --btp-radius-lg: 44px;
  --btp-container: 1180px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--btp-ink);
  background: var(--btp-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.btp-site { overflow-x: hidden; }
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
a { color: var(--btp-deep-teal); text-underline-offset: .16em; }
a:hover { color: var(--btp-sunset); }
:focus-visible { outline: 3px solid var(--btp-gold); outline-offset: 4px; }

/* Astra reset / consistency */
.btp-site .site-header,
.btp-site .site-footer { display: none !important; }
.btp-site .site-content,
.btp-site #primary,
.btp-site .ast-container,
.btp-site .site-main { width: 100%; max-width: none; margin: 0; padding: 0; }
.btp-site #primary { float: none; }
.btp-site .entry-content { margin: 0; }
.btp-site .entry-content > * { max-width: none; }
.btp-site .entry-header { display: none; }
.btp-site .ast-article-single { padding: 0; background: transparent; }

.btp-container { width: min(calc(100% - 40px), var(--btp-container)); margin-inline: auto; }
.btp-narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.btp-section { position: relative; padding: clamp(72px, 8vw, 118px) 0; }
.btp-section--compact { padding: clamp(52px, 6vw, 82px) 0; }
.btp-section--cream { background: var(--btp-cream); }
.btp-section--blue { background: var(--btp-soft-blue); }
.btp-section--ink { background: var(--btp-ink); color: var(--btp-white); }
.btp-section--teal { background: var(--btp-deep-teal); color: var(--btp-white); }
.btp-grid { display: grid; gap: 28px; }
.btp-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.btp-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.btp-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.btp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--btp-sunset);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.btp-eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 20px; background: currentColor; }
.btp-section--ink .btp-eyebrow,
.btp-section--teal .btp-eyebrow { color: var(--btp-gold); }

.btp-title,
.btp-page-title {
  margin: 0;
  max-width: 880px;
  font-family: ui-rounded, "Avenir Next", "Trebuchet MS", system-ui, sans-serif;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.btp-title { font-size: clamp(2.45rem, 5.6vw, 5rem); }
.btp-page-title { font-size: clamp(2.35rem, 5vw, 4.5rem); }
.btp-h2 {
  margin: 0 0 18px;
  font-family: ui-rounded, "Avenir Next", "Trebuchet MS", system-ui, sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.026em;
  text-wrap: balance;
}
.btp-h3 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.25; letter-spacing: -.01em; }
.btp-lead { margin: 22px 0 0; max-width: 720px; font-size: clamp(1.06rem, 1.5vw, 1.24rem); color: #514a5a; }
.btp-section--ink .btp-lead,
.btp-section--teal .btp-lead { color: rgba(255,255,255,.82); }
.btp-prose { color: #574f61; font-size: 1.04rem; }
.btp-prose p { margin: 0 0 1.15em; }

.btp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--btp-sunset);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(147,51,234,.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btp-button:hover { background: #7e22ce; color: #fff !important; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(147,51,234,.3); }
.btp-button--teal { background: var(--btp-deep-teal); box-shadow: 0 10px 28px rgba(91,33,182,.18); }
.btp-button--teal:hover { background: #4c1d95; }
.btp-button--gold { background: var(--btp-gold); color: var(--btp-ink) !important; box-shadow: 0 10px 28px rgba(216,180,254,.18); }
.btp-button--gold:hover { background: #c4b5fd; color: var(--btp-ink) !important; }
.btp-button--ghost { background: transparent; color: var(--btp-ink) !important; border-color: rgba(13,11,18,.35); box-shadow: none; }
.btp-button--ghost:hover { background: var(--btp-white); border-color: var(--btp-deep-teal); color: var(--btp-deep-teal) !important; }
.btp-section--ink .btp-button--ghost,
.btp-section--teal .btp-button--ghost { color: #fff !important; border-color: rgba(255,255,255,.6); }
.btp-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

.btp-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(13,11,18,.96);
  border-bottom: 1px solid rgba(13,11,18,.08);
  backdrop-filter: blur(16px);
}
.admin-bar .btp-site-header { top: 32px; }
.btp-header-inner { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.btp-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff !important; text-decoration: none !important; flex: 0 0 auto; }
.btp-brand-mark { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #120d18, #7c3aed); box-shadow: 0 8px 25px rgba(91,33,182,.2); }
.btp-brand-mark svg { width: 30px; height: 30px; }
.btp-brand-text strong { display: block; font-size: 1rem; line-height: 1.05; letter-spacing: .04em; text-transform: uppercase; }
.btp-brand-text small { display: block; margin-top: 4px; color: #c4b5fd; font-size: .72rem; font-weight: 700; letter-spacing: .05em; }
.btp-nav { margin-left: auto; }
.btp-nav ul { display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; list-style: none; }
.btp-nav a { color: #f7f3ff; font-size: .92rem; font-weight: 750; text-decoration: none; }
.btp-nav a:hover, .btp-nav a[aria-current="page"] { color: var(--btp-sunset); }
.btp-header-cta { margin-left: 2px; }
.btp-menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid rgba(196,181,253,.28); border-radius: 12px; background: #181320; color: #fff; }
.btp-menu-toggle span, .btp-menu-toggle::before, .btp-menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 4px; background: currentColor; }

.btp-hero { position: relative; overflow: hidden; padding: clamp(60px, 7vw, 96px) 0 clamp(80px, 9vw, 126px); background: linear-gradient(135deg, #ffffff 0%, #f6f3fb 52%, #e9ddf8 100%); }
.btp-hero::after { content: ""; position: absolute; right: -12vw; top: -20vw; width: 60vw; height: 60vw; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.17), rgba(124,58,237,.03) 55%, transparent 70%); pointer-events: none; }
.btp-hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(36px, 6vw, 78px); }
.btp-hero-copy { position: relative; z-index: 2; }
.btp-hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; margin-bottom: 20px; border-radius: 999px; background: rgba(124,58,237,.1); color: var(--btp-deep-teal); font-size: .78rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.btp-hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--btp-sunset); box-shadow: 0 0 0 5px rgba(147,51,234,.12); }
.btp-hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #665f70; font-size: .88rem; font-weight: 700; }
.btp-hero-note span::before { content: "✓"; margin-right: 7px; color: var(--btp-teal); font-weight: 900; }
.btp-hero-media { position: relative; min-height: 560px; z-index: 1; }
.btp-hero-photo { position: absolute; inset: 15px 0 30px 45px; overflow: hidden; border-radius: 50px 50px 140px 50px; box-shadow: var(--btp-shadow); background: var(--btp-sky); transform: rotate(1.2deg); }
.btp-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.btp-hero-shape { position: absolute; left: 0; bottom: 0; width: 190px; height: 190px; border-radius: 45px 95px 55px 95px; background: var(--btp-gold); transform: rotate(-8deg); box-shadow: 0 16px 36px rgba(216,180,254,.25); }
.btp-hero-card { position: absolute; right: -12px; bottom: 42px; width: min(310px, 72%); padding: 22px 24px; border-radius: 22px; background: #fff; box-shadow: 0 18px 50px rgba(13,11,18,.18); transform: rotate(-1.5deg); }
.btp-hero-card strong { display: block; font-size: 1.14rem; line-height: 1.25; }
.btp-hero-card span { display: block; margin-top: 7px; color: var(--btp-muted); font-size: .91rem; }
.btp-track { position: absolute; z-index: 0; width: 470px; height: 90px; opacity: .13; transform: rotate(-12deg); pointer-events: none; }
.btp-track::before, .btp-track::after { content: ""; position: absolute; left: 0; right: 0; height: 24px; background: repeating-linear-gradient(90deg, var(--btp-ink) 0 18px, transparent 18px 34px); clip-path: polygon(0 18%, 100% 0, 100% 82%, 0 100%); }
.btp-track::before { top: 10px; }
.btp-track::after { bottom: 10px; transform: translateX(18px); }
.btp-hero .btp-track { left: -70px; bottom: 18px; }

.btp-value-band { position: relative; margin-top: -50px; z-index: 5; }
.btp-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: var(--btp-radius); overflow: hidden; box-shadow: var(--btp-shadow); background: #fff; }
.btp-value-card { position: relative; min-height: 220px; padding: 32px; text-decoration: none !important; color: inherit !important; transition: transform .22s ease; }
.btp-value-card + .btp-value-card { border-left: 1px solid var(--btp-line); }
.btp-value-card:hover { transform: translateY(-4px); }
.btp-value-card:nth-child(1) .btp-value-icon { background: rgba(147,51,234,.14); color: var(--btp-sunset); }
.btp-value-card:nth-child(2) .btp-value-icon { background: rgba(139,92,246,.14); color: var(--btp-sky); }
.btp-value-card:nth-child(3) .btp-value-icon { background: rgba(216,180,254,.17); color: #7c3aed; }
.btp-value-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; font-size: 1.35rem; font-weight: 900; }
.btp-value-card h3 { margin: 20px 0 7px; font-size: 1.25rem; }
.btp-value-card p { margin: 0; color: var(--btp-muted); }
.btp-value-link { display: inline-flex; margin-top: 17px; color: var(--btp-deep-teal); font-weight: 800; }

.btp-photo-card { overflow: hidden; border-radius: var(--btp-radius-lg); min-height: 520px; background: var(--btp-sand); box-shadow: var(--btp-shadow); }
.btp-photo-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.btp-story-layout { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(40px, 7vw, 88px); }
.btp-story-copy { padding-right: 3vw; }
.btp-stat-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btp-chip { display: inline-flex; align-items: center; min-height: 38px; padding: 6px 13px; border: 1px solid rgba(91,33,182,.18); border-radius: 999px; background: rgba(124,58,237,.07); color: var(--btp-deep-teal); font-size: .83rem; font-weight: 800; }

.btp-card { position: relative; padding: 30px; border: 1px solid var(--btp-line); border-radius: var(--btp-radius); background: #fff; box-shadow: 0 12px 32px rgba(13,11,18,.06); }
.btp-card--soft { background: var(--btp-cream); border-color: transparent; }
.btp-card-number { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 22px; border-radius: 14px; background: var(--btp-ink); color: #fff; font-weight: 900; }
.btp-card:nth-child(2) .btp-card-number { background: var(--btp-teal); }
.btp-card:nth-child(3) .btp-card-number { background: var(--btp-sunset); }
.btp-card:nth-child(4) .btp-card-number { background: var(--btp-sky); }
.btp-card p { margin: 0; color: var(--btp-muted); }
.btp-card-link { display: inline-flex; margin-top: 18px; font-weight: 800; text-decoration: none; }

.btp-program-card { overflow: hidden; min-height: 310px; padding: 32px; border-radius: var(--btp-radius); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.btp-program-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(13,11,18,.78) 80%); }
.btp-program-card > * { position: relative; z-index: 1; }
.btp-program-card:nth-child(1) { background: linear-gradient(135deg, var(--btp-teal), var(--btp-deep-teal)); }
.btp-program-card:nth-child(2) { background: linear-gradient(135deg, var(--btp-sky), var(--btp-navy)); }
.btp-program-card:nth-child(3) { background: linear-gradient(135deg, var(--btp-sunset), #581c87); }
.btp-program-card:nth-child(4) { background: linear-gradient(135deg, var(--btp-gold), #6d28d9); }
.btp-program-card .btp-card-number { background: rgba(255,255,255,.18); backdrop-filter: blur(10px); }
.btp-program-card p { color: rgba(255,255,255,.84); }

.btp-adventure { overflow: hidden; }
.btp-adventure-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 0; align-items: stretch; border-radius: var(--btp-radius-lg); overflow: hidden; background: var(--btp-ink); color: #fff; box-shadow: var(--btp-shadow); }
.btp-adventure-media { min-height: 580px; }
.btp-adventure-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.btp-adventure-copy { position: relative; padding: clamp(42px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.btp-adventure-copy::after { content: ""; position: absolute; right: -85px; bottom: 28px; width: 340px; height: 65px; opacity: .14; background: repeating-linear-gradient(90deg, #fff 0 16px, transparent 16px 31px); transform: rotate(-13deg); }
.btp-adventure-copy .btp-lead { color: rgba(255,255,255,.78); }

.btp-quote { position: relative; padding: 36px 38px; border-radius: 0 var(--btp-radius) var(--btp-radius) 0; border-left: 6px solid var(--btp-gold); background: #fff; box-shadow: 0 10px 30px rgba(13,11,18,.06); font-size: 1.18rem; font-weight: 650; }
.btp-quote cite { display: block; margin-top: 14px; color: var(--btp-muted); font-size: .88rem; font-style: normal; font-weight: 700; }

.btp-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.btp-post-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--btp-line); border-radius: 24px; background: #fff; text-decoration: none !important; color: inherit !important; box-shadow: 0 10px 30px rgba(13,11,18,.06); transition: transform .2s ease, box-shadow .2s ease; }
.btp-post-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(13,11,18,.11); }
.btp-post-card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--btp-sand); }
.btp-post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.btp-post-card:hover img { transform: scale(1.035); }
.btp-post-card-body { padding: 26px; }
.btp-post-meta { margin-bottom: 10px; color: var(--btp-sunset); font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.btp-post-card h3 { margin: 0 0 10px; font-size: 1.3rem; line-height: 1.2; }
.btp-post-card p { margin: 0; color: var(--btp-muted); }

.btp-trust-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 76px); align-items: start; }
.btp-trust-list { display: grid; gap: 14px; }
.btp-trust-item { display: flex; gap: 16px; align-items: flex-start; padding: 19px 20px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.btp-trust-item strong { display: block; margin-bottom: 2px; }
.btp-trust-item span { color: rgba(255,255,255,.72); font-size: .92rem; }
.btp-check { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--btp-gold); color: var(--btp-ink); font-weight: 900; }

.btp-cta { position: relative; overflow: hidden; border-radius: var(--btp-radius-lg); padding: clamp(44px, 7vw, 76px); background: linear-gradient(120deg, var(--btp-deep-teal), var(--btp-navy)); color: #fff; box-shadow: var(--btp-shadow); }
.btp-cta::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -80px; top: -120px; background: rgba(216,180,254,.2); }
.btp-cta::after { content: ""; position: absolute; width: 430px; height: 75px; left: -50px; bottom: -5px; opacity: .14; background: repeating-linear-gradient(90deg, #fff 0 17px, transparent 17px 34px); transform: rotate(-10deg); }
.btp-cta > * { position: relative; z-index: 1; }
.btp-cta .btp-h2 { max-width: 780px; }
.btp-cta p { max-width: 700px; color: rgba(255,255,255,.82); }

.btp-page-hero { position: relative; overflow: hidden; padding: clamp(70px, 8vw, 112px) 0 clamp(60px, 7vw, 92px); background: linear-gradient(135deg, var(--btp-cream), #fff); border-bottom: 1px solid var(--btp-line); }
.btp-page-hero::before { content: ""; position: absolute; inset: auto -90px -34px auto; width: 430px; height: 80px; opacity: .13; background: repeating-linear-gradient(90deg, var(--btp-ink) 0 17px, transparent 17px 34px); transform: rotate(-11deg); }
.btp-breadcrumb { margin-bottom: 20px; font-size: .86rem; color: var(--btp-muted); }
.btp-breadcrumb a { color: var(--btp-muted); }

.btp-icon-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.btp-icon-list li { position: relative; padding-left: 32px; }
.btp-icon-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(124,58,237,.12); color: var(--btp-deep-teal); font-size: .75rem; font-weight: 900; }
.btp-section--ink .btp-icon-list li::before,
.btp-section--teal .btp-icon-list li::before { background: var(--btp-gold); color: var(--btp-ink); }

.btp-notice { margin: 24px 0; padding: 20px 22px; border-radius: 18px; border-left: 5px solid var(--btp-gold); background: #f5f0ff; color: #4c1d95; }
.btp-notice--info { border-left-color: var(--btp-sky); background: var(--btp-soft-blue); color: var(--btp-navy); }
.btp-notice--success { border-left-color: var(--btp-teal); background: #f1ebfb; color: #4c1d95; }
.btp-notice strong { display: block; margin-bottom: 5px; }

.btp-form { display: grid; gap: 18px; }
.btp-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.btp-field label { display: block; margin-bottom: 7px; font-size: .9rem; font-weight: 800; }
.btp-field input,
.btp-field select,
.btp-field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #d7d0df; border-radius: 12px; background: #fff; color: var(--btp-ink); font: inherit;
}
.btp-field textarea { min-height: 150px; resize: vertical; }
.btp-field small { display: block; margin-top: 6px; color: var(--btp-muted); }
.btp-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: #5f5868; }
.btp-checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.btp-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.btp-store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.btp-product-card { overflow: hidden; border: 1px solid var(--btp-line); border-radius: 24px; background: #fff; }
.btp-product-art { aspect-ratio: 4/3; display: grid; place-items: center; font-size: 3.1rem; background: linear-gradient(135deg, var(--btp-cream), var(--btp-soft-blue)); }
.btp-product-card:nth-child(2) .btp-product-art { background: linear-gradient(135deg, #eee6fa, var(--btp-cream)); }
.btp-product-card:nth-child(3) .btp-product-art { background: linear-gradient(135deg, #f0ebf8, #f6f3fb); }
.btp-product-info { padding: 22px; }
.btp-product-info h3 { margin: 0 0 6px; font-size: 1.15rem; }
.btp-product-info p { margin: 0; color: var(--btp-muted); font-size: .92rem; }
.btp-product-badge { display: inline-flex; margin-top: 12px; padding: 5px 10px; border-radius: 999px; background: rgba(124,58,237,.08); color: var(--btp-deep-teal); font-size: .76rem; font-weight: 800; }

.btp-resource-card { min-height: 100%; }
.btp-resource-card .btp-resource-org { color: var(--btp-sunset); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }

.btp-article { width: 100%; padding: clamp(64px, 8vw, 100px) 0; }
.btp-site .entry-content .btp-article-inner,
.btp-article-inner {
  width: min(calc(100% - 40px), 820px);
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.btp-article-meta { margin: 0 0 16px; color: var(--btp-muted); font-size: .92rem; }
.btp-article h1 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.1rem); line-height: 1.04; letter-spacing: -.035em; }
.btp-article h2 { margin: 2.1em 0 .65em; font-size: 1.8rem; line-height: 1.15; }
.btp-article p, .btp-article li { font-size: 1.08rem; color: #51495a; }
.btp-site .entry-content .btp-article-featured,
.btp-article-featured {
  width: min(calc(100% - 40px), 1040px);
  max-width: 1040px;
  margin: 38px auto 0 !important;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--btp-shadow);
}
.btp-article-featured img { display: block; width: 100%; max-height: 620px; object-fit: cover; }
.btp-author-box { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin-top: 54px; padding: 24px; border-radius: 22px; background: var(--btp-cream); }
.btp-author-avatar { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--btp-deep-teal); color: #fff; font-weight: 900; }
.btp-author-box strong { display: block; }
.btp-author-box p { margin: 4px 0 0; font-size: .92rem; }

.btp-site-footer { position: relative; overflow: hidden; padding: 68px 0 24px; background: #09070d; color: #fff; }
.btp-site-footer::before { content: ""; position: absolute; right: -100px; top: 38px; width: 520px; height: 90px; opacity: .08; background: repeating-linear-gradient(90deg, #fff 0 18px, transparent 18px 36px); transform: rotate(-11deg); }
.btp-footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .9fr; gap: 38px; position: relative; }
.btp-footer-brand { max-width: 350px; }
.btp-footer-brand p { color: rgba(255,255,255,.68); }
.btp-footer-title { margin: 0 0 14px; font-size: .88rem; color: var(--btp-gold); text-transform: uppercase; letter-spacing: .09em; }
.btp-footer-links { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.btp-footer-links a { color: rgba(255,255,255,.78); text-decoration: none; }
.btp-footer-links a:hover { color: #fff; }
.btp-footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 15px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); font-size: .82rem; }
.btp-footer-bottom a { color: rgba(255,255,255,.72); }

.btp-skip-link { position: fixed; left: 14px; top: -80px; z-index: 9999; padding: 10px 14px; border-radius: 8px; background: var(--btp-ink); color: #fff !important; font-weight: 800; transition: top .15s ease; }
.btp-skip-link:focus { top: 14px; }
.admin-bar .btp-skip-link:focus { top: 46px; }

@media (max-width: 1080px) {
  .btp-nav ul { gap: 14px; }
  .btp-nav a { font-size: .86rem; }
  .btp-header-cta { display: none; }
  .btp-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .btp-footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .btp-footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .admin-bar .btp-site-header { top: 46px; }
  .btp-menu-toggle { display: block; }
  .btp-nav { display: none; position: absolute; top: 84px; left: 20px; right: 20px; margin: 0; padding: 18px; border: 1px solid var(--btp-line); border-radius: 18px; background: #fff; box-shadow: var(--btp-shadow); }
  .btp-site-header.is-open .btp-nav { display: block; }
  .btp-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
  .btp-nav li + li { border-top: 1px solid var(--btp-line); }
  .btp-nav a { display: block; padding: 12px 4px; font-size: .98rem; }
  .btp-hero-grid, .btp-story-layout, .btp-adventure-grid, .btp-trust-grid { grid-template-columns: 1fr; }
  .btp-hero-media { min-height: 520px; }
  .btp-hero-photo { inset: 15px 25px 25px 65px; }
  .btp-story-copy { padding-right: 0; }
  .btp-value-grid { grid-template-columns: 1fr; }
  .btp-value-card + .btp-value-card { border-left: 0; border-top: 1px solid var(--btp-line); }
  .btp-post-grid, .btp-store-grid { grid-template-columns: repeat(2, 1fr); }
  .btp-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .btp-adventure-media { min-height: 480px; }
}

@media (max-width: 680px) {
  .btp-container, .btp-narrow, .btp-article-inner, .btp-article-featured { width: min(calc(100% - 28px), var(--btp-container)); }
  .btp-section { padding: 66px 0; }
  .btp-header-inner { min-height: 74px; }
  .btp-brand-mark { width: 42px; height: 42px; }
  .btp-brand-text small { display: none; }
  .btp-nav { top: 74px; left: 14px; right: 14px; }
  .btp-hero { padding-top: 48px; }
  .btp-hero-media { min-height: 420px; }
  .btp-hero-photo { inset: 10px 4px 26px 35px; border-radius: 30px 30px 90px 30px; }
  .btp-hero-shape { width: 125px; height: 125px; }
  .btp-hero-card { width: 76%; right: 0; bottom: 28px; padding: 17px 18px; }
  .btp-value-band { margin-top: -32px; }
  .btp-value-card { min-height: 0; padding: 25px; }
  .btp-grid--2, .btp-grid--3, .btp-grid--4, .btp-post-grid, .btp-store-grid, .btp-form-grid { grid-template-columns: 1fr; }
  .btp-photo-card { min-height: 390px; border-radius: 28px; }
  .btp-card { padding: 24px; }
  .btp-program-card { min-height: 270px; }
  .btp-adventure-media { min-height: 390px; }
  .btp-adventure-copy { padding: 32px 26px 46px; }
  .btp-cta { padding: 42px 28px 58px; border-radius: 30px; }
  .btp-footer-grid { grid-template-columns: 1fr; }
  .btp-footer-grid > :last-child { grid-column: auto; }
  .btp-footer-bottom { flex-direction: column; }
  .btp-author-box { grid-template-columns: 1fr; }
}

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

@media print {
  .btp-site-header, .btp-site-footer, .btp-actions, .btp-track { display: none !important; }
  body { color: #000; background: #fff; }
  .btp-section, .btp-page-hero, .btp-article { padding: 24px 0; }
}

/* 2026 black + purple brand refresh */
.btp-brand-logo { display:block; width:220px; max-height:64px; object-fit:contain; object-position:left center; }
.btp-brand--image .btp-brand-text, .btp-brand--image .btp-brand-mark { display:none; }
.btp-site-header { box-shadow: 0 10px 35px rgba(9,7,13,.12); }
.btp-site-header .btp-header-inner { min-height:88px; }
.btp-site-header .btp-button { background:linear-gradient(135deg,#7c3aed,#a855f7); box-shadow:0 10px 30px rgba(124,58,237,.28); }
.btp-site-header .btp-button:hover { background:linear-gradient(135deg,#6d28d9,#9333ea); }
.btp-title strong, .btp-h2 strong { color:#7c3aed; }
.btp-value-band .btp-value-grid { border:1px solid rgba(124,58,237,.12); }
.btp-card, .btp-post-card, .btp-product-card, .btp-quote { border-color:rgba(91,33,182,.13); }
.btp-section--ink { background:linear-gradient(135deg,#09070d,#181022); }
.btp-section--teal { background:linear-gradient(135deg,#24123f,#5b21b6); }
.btp-site-footer { background:linear-gradient(135deg,#07050a,#160d22 60%,#24123f); }
.btp-page-hero { background:linear-gradient(135deg,#f7f4fb,#eee7f8); }
@media (max-width:920px){ .btp-nav { background:#120e18; border-color:rgba(196,181,253,.18); } .btp-nav li + li { border-top-color:rgba(196,181,253,.12); } }
@media (max-width:680px){ .btp-brand-logo { width:175px; max-height:54px; } }
/* Logo legibility refinements */
.btp-site-header { background: rgba(255,255,255,.96); border-bottom:1px solid rgba(91,33,182,.12); }
.btp-site-header .btp-nav a { color:#15111b; }
.btp-site-header .btp-nav a:hover, .btp-site-header .btp-nav a[aria-current="page"] { color:#7c3aed; }
.btp-footer-brand .btp-brand { display:inline-flex; padding:10px 14px; border-radius:16px; background:#fff; }
.btp-footer-brand .btp-brand-logo { width:245px; max-height:78px; }
@media (max-width:920px){ .btp-nav { background:#fff; border-color:rgba(91,33,182,.14); } .btp-nav a { color:#15111b; } .btp-nav li + li { border-top-color:rgba(91,33,182,.10); } }
