/* ===========================================================
   Bright Bloom Avenue — design tokens
   =========================================================== */
:root {
	--bba-bg: #F5F1EA;
	--bba-card-bg: #FAF7F2;
	--bba-ink: #24211F;
	--bba-ink-dark: #1A1816;
	--bba-sand: #DDD3C5;
	--bba-terracotta: #B8735A;
	--bba-terracotta-hover: #a2624b;
	--bba-terracotta-light: #C47D64;
	--bba-terracotta-light-hover: #b06a52;
	--bba-brown: #3B302B;
	--bba-hero-accent: #E5987D;
	--bba-trustpilot: #00B67A;
	--bba-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bba-bg);
	color: var(--bba-ink);
	font-family: var(--bba-font);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--bba-font); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: var(--bba-font); cursor: pointer; }
input, textarea, button { font-family: var(--bba-font); }
::selection { background: var(--bba-terracotta); color: #fff; }

.bba-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.bba-container--narrow { max-width: 900px; }
@media (min-width: 768px) { .bba-container { padding: 0 48px; } }

/* Eyebrow */
.bba-eyebrow { display: flex; align-items: center; gap: 12px; }
.bba-eyebrow--hero { flex-direction: row-reverse; justify-content: flex-end; }
.bba-eyebrow__text { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--bba-terracotta); }
.bba-eyebrow__text--sm { font-size: 9px; letter-spacing: .2em; }
.bba-eyebrow__line { width: 40px; height: 1.5px; background: var(--bba-terracotta); }

.bba-readmore { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bba-terracotta); }
.bba-readmore--sm { font-size: 10px; }
a:hover .bba-readmore { text-decoration: underline; }

.bba-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 14px 28px; border-radius: 999px; border: none;
	font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
	transition: background-color .2s ease; text-align: center;
}
.bba-btn--terracotta { background: var(--bba-terracotta); color: #fff; }
.bba-btn--terracotta:hover { background: var(--bba-terracotta-hover); }
.bba-btn--terracotta-light { background: var(--bba-terracotta-light); color: #fff; padding: 14px 30px; }
.bba-btn--terracotta-light:hover { background: var(--bba-terracotta-light-hover); }
.bba-btn--block { width: 100%; }

.bba-pill-btn {
	display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
	background: rgba(221,211,197,.5); border-radius: 999px;
	font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
	color: var(--bba-ink-dark); transition: color .2s ease, background-color .2s ease;
}
.bba-pill-btn:hover { background: var(--bba-sand); color: var(--bba-terracotta); }
.bba-pill-btn svg { color: var(--bba-terracotta); }
.bba-pill-btn--outline { background: transparent; border: 1px solid var(--bba-ink); padding: 10px 20px; }
.bba-pill-btn--outline:hover { background: var(--bba-ink); color: var(--bba-bg); }
.bba-pill-btn--outline svg { color: currentColor; }

.bba-tag { padding: 5px 10px; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; border: 1px solid rgba(0,0,0,.4); }

.bba-category-badge {
	display: inline-block; padding: 6px 16px; margin-bottom: 12px;
	background: var(--bba-terracotta); color: #fff; border-radius: 999px;
	font-size: 10px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase;
}
.bba-category-badge:hover { background: var(--bba-terracotta-hover); }

/* ===========================================================
   Header
   =========================================================== */
.bba-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	padding: 24px 0;
	background: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.3), transparent);
	color: #fff;
	transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.bba-header--light,
.bba-header.is-scrolled {
	background: rgba(245,241,234,.95);
	backdrop-filter: blur(8px);
	color: var(--bba-ink-dark);
	border-bottom: 1px solid var(--bba-sand);
	box-shadow: 0 1px 2px rgba(0,0,0,.04);
	padding: 16px 0;
}
.bba-header__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
@media (min-width: 768px) { .bba-header__inner { padding: 0 48px; } }

.bba-logo { display: block; line-height: 1; }
.bba-logo__main { display: block; font-size: 24px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.bba-logo__sub { display: block; margin-top: 6px; font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--bba-sand); }
.bba-header--light .bba-logo__sub, .bba-header.is-scrolled .bba-logo__sub { color: var(--bba-terracotta); }
.bba-logo:hover .bba-logo__main { color: var(--bba-sand); }
.bba-header--light .bba-logo:hover .bba-logo__main, .bba-header.is-scrolled .bba-logo:hover .bba-logo__main { color: var(--bba-terracotta); }
.bba-logo--dark { color: var(--bba-ink-dark); }
.bba-logo--dark .bba-logo__sub { color: var(--bba-terracotta); }
.bba-logo--dark:hover .bba-logo__main { color: var(--bba-terracotta); }

.bba-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .bba-nav { display: flex; } }
.bba-nav__link { position: relative; padding: 4px 0; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; opacity: .9; }
.bba-nav__link:hover { opacity: 1; }
.bba-header--light .bba-nav__link, .bba-header.is-scrolled .bba-nav__link { opacity: 1; }
.bba-header--light .bba-nav__link:hover, .bba-header.is-scrolled .bba-nav__link:hover { color: var(--bba-terracotta); }
.bba-nav__link.is-active { font-weight: 700; }
.bba-nav__link.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: currentColor; }

.bba-header__actions { display: flex; align-items: center; gap: 8px; }
.bba-icon-btn { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; color: inherit; padding: 8px; border-radius: 999px; }
.bba-search-toggle__label { display: none; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
@media (min-width: 768px) { .bba-search-toggle__label { display: inline; } }
.bba-icon-btn:hover { color: var(--bba-terracotta); }
.bba-menu-toggle { display: inline-flex; }
@media (min-width: 768px) { .bba-menu-toggle { display: none; } }

/* Mobile drawer */
.bba-mobile-drawer {
	position: fixed; inset: 0; z-index: 45; background: var(--bba-bg); color: var(--bba-ink-dark);
	padding: 96px 32px 48px; display: none; flex-direction: column; justify-content: space-between;
}
.bba-mobile-drawer.is-open { display: flex; }
@media (min-width: 768px) { .bba-mobile-drawer { display: none !important; } }
.bba-mobile-drawer__nav { display: flex; flex-direction: column; gap: 24px; }
.bba-mobile-drawer__link { display: flex; align-items: center; justify-content: space-between; font-size: 26px; font-weight: 700; letter-spacing: .04em; }
.bba-mobile-drawer__link.is-active { text-decoration: underline; text-underline-offset: 4px; }
.bba-mobile-drawer__footer { padding-top: 32px; border-top: 1px solid var(--bba-sand); }

/* Overlays (search / subscribe) */
.bba-overlay {
	position: fixed; inset: 0; z-index: 60; background: rgba(26,24,22,.96);
	display: none; align-items: center; justify-content: center; padding: 24px;
}
.bba-overlay.is-open { display: flex; }
.bba-overlay__close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; padding: 8px; }
.bba-overlay__close:hover { color: var(--bba-terracotta); }
.bba-overlay__inner { width: 100%; max-width: 640px; text-align: center; }
.bba-overlay__inner--card { background: var(--bba-bg); color: var(--bba-ink-dark); padding: 48px 32px; text-align: left; max-width: 460px; }
.bba-overlay__title { font-size: 28px; font-weight: 400; margin: 12px 0; }
.bba-overlay__text { color: rgba(36,33,31,.8); line-height: 1.6; margin-bottom: 20px; }
.bba-overlay__subscribe-form { display: flex; flex-direction: column; gap: 12px; }
.bba-overlay__input--rounded { padding: 14px 20px; border: 1px solid var(--bba-sand); border-radius: 999px; background: #fff; font-size: 14px; color: var(--bba-ink-dark); }
.bba-overlay__disclaimer { margin-top: 12px; font-size: 12px; color: rgba(36,33,31,.55); }
.bba-overlay__error:not([hidden]) { color: var(--bba-terracotta-hover); }
.bba-overlay__subscribe-success { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px; background: rgba(184,115,90,.1); border: 1px solid var(--bba-terracotta); border-radius: 10px; color: var(--bba-ink-dark); }
.bba-overlay__subscribe-success svg { color: var(--bba-terracotta); }
.bba-overlay__subscribe-success span { font-size: 14px; font-weight: 600; line-height: 1.5; }
.bba-overlay__subscribe-success .bba-overlay__disclaimer { margin-top: 0; text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 600; color: var(--bba-terracotta); }

/* Search card */
.bba-overlay--search { align-items: flex-start; padding: 60px 24px; overflow-y: auto; }
.bba-search-card {
	position: relative; width: 100%; max-width: 820px; margin: 0 auto;
	background: var(--bba-bg); color: var(--bba-ink-dark);
	border-radius: 18px; padding: 40px 32px 32px;
	box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
@media (min-width: 768px) { .bba-search-card { padding: 48px 48px 40px; } }
.bba-search-card__close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--bba-ink-dark); padding: 8px; }
.bba-search-card__close:hover { color: var(--bba-terracotta); }
.bba-search-card__form { display: flex; align-items: center; gap: 14px; border-bottom: 2px solid var(--bba-terracotta); padding-bottom: 14px; padding-right: 32px; }
.bba-search-card__form svg { color: var(--bba-terracotta); flex-shrink: 0; }
.bba-search-card__input { flex: 1; background: transparent; border: none; outline: none; font-size: 20px; color: var(--bba-ink-dark); }
@media (min-width: 640px) { .bba-search-card__input { font-size: 26px; } }
.bba-search-card__input::placeholder { color: rgba(36,33,31,.4); }
.bba-search-card__cats { margin-top: 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bba-search-card__cats-label { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(36,33,31,.6); margin-right: 4px; }
.bba-search-card__pill { padding: 8px 18px; background: var(--bba-sand); border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--bba-ink-dark); transition: background-color .2s ease, color .2s ease; }
.bba-search-card__pill:hover { background: var(--bba-terracotta); color: #fff; }
.bba-search-card__divider { margin-top: 28px; border-top: 1px solid var(--bba-sand); }
.bba-search-card__section-label { display: block; margin-top: 24px; margin-bottom: 16px; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(36,33,31,.55); }
.bba-search-card__grid { display: grid; grid-template-columns: 1fr; gap: 12px; max-height: 48vh; overflow-y: auto; overflow-x: hidden; }
@media (min-width: 640px) { .bba-search-card__grid { grid-template-columns: 1fr 1fr; } }
.bba-search-result { display: flex; align-items: center; gap: 14px; padding: 10px; border-radius: 10px; background: var(--bba-card-bg); border: 1px solid var(--bba-sand); min-width: 0; }
.bba-search-result:hover { border-color: var(--bba-terracotta); }
.bba-search-result__media { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--bba-sand); }
.bba-search-result__media img { width: 100%; height: 100%; object-fit: cover; }
.bba-search-result__body { flex: 1; min-width: 0; overflow: hidden; }
.bba-search-result__cat { display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bba-terracotta); }
.bba-search-result__body h4 { margin-top: 2px; font-size: 14px; font-weight: 700; color: var(--bba-ink-dark); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bba-search-result__body p { margin-top: 2px; font-size: 12px; color: rgba(36,33,31,.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bba-search-result__arrow { color: var(--bba-terracotta); flex-shrink: 0; }
.bba-search-card__empty { margin-top: 8px; padding: 24px 4px; font-size: 14px; line-height: 1.6; color: rgba(36,33,31,.65); }
.bba-search-result mark { background: rgba(184,115,90,.22); color: inherit; border-radius: 2px; }

/* ===========================================================
   Hero
   =========================================================== */
.bba-hero { position: relative; width: 100%; min-height: 650px; height: 100vh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.bba-hero__bg { position: absolute; inset: 0; z-index: 0; }
.bba-hero__bg img, .bba-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bba-hero__scrim-x { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.45) 55%, rgba(0,0,0,.15)); }
.bba-hero__scrim-y { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75), transparent 55%, rgba(0,0,0,.3)); }
.bba-hero__spacer { position: relative; z-index: 1; padding-top: 112px; }
.bba-hero__content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 24px 64px; width: 100%; }
@media (min-width: 768px) { .bba-hero__content { padding: 0 48px 64px; } }
.bba-hero__inner { max-width: 720px; display: flex; flex-direction: column; gap: 20px; }
.bba-hero__title { font-size: 40px; font-weight: 400; color: #fff; line-height: 1.1; letter-spacing: -.01em; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
@media (min-width: 640px) { .bba-hero__title { font-size: 52px; } }
@media (min-width: 1024px) { .bba-hero__title { font-size: 68px; } }
.bba-hero__subtitle { font-size: 16px; color: rgba(255,255,255,.95); line-height: 1.6; max-width: 620px; }
@media (min-width: 640px) { .bba-hero__subtitle { font-size: 18px; } }
.bba-hero__cta { width: fit-content; margin-top: 4px; }
.bba-hero__scroll { position: relative; z-index: 1; padding-bottom: 24px; display: flex; flex-direction: column; align-items: center; gap: 4px; color: rgba(255,255,255,.6); }
.bba-hero__scroll span { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; }

/* ===========================================================
   Rail sections (shared header rule)
   =========================================================== */
.bba-rail { width: 100%; padding: 40px 24px; max-width: 1280px; margin: 0 auto; border-bottom: 1px solid var(--bba-sand); }
@media (min-width: 768px) { .bba-rail { padding: 48px 48px; } }
.bba-rail__header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.bba-rail__header--tight { margin-bottom: 8px; }
.bba-rail__label { font-size: 15px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--bba-terracotta); }
.bba-rail__label:hover { text-decoration: underline; }
.bba-rail__label--static { color: var(--bba-ink-dark); }
.bba-rail__rule { flex: 1; height: 1px; background: var(--bba-sand); }

/* Beauty split section */
.bba-beauty { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 1024px) { .bba-beauty { grid-template-columns: 5fr 7fr; gap: 32px; } }
.bba-beauty__image { display: block; }
.bba-beauty__image img { aspect-ratio: 4/3; max-height: 288px; width: 100%; object-fit: cover; background: var(--bba-sand); transition: transform .7s ease; }
.bba-beauty__image:hover img { transform: scale(1.05); }
.bba-beauty__view { display: block; margin-top: 8px; text-align: right; font-size: 12px; color: var(--bba-terracotta); font-weight: 500; }
.bba-beauty__body { display: flex; flex-direction: column; gap: 16px; }
.bba-beauty__featured { display: block; padding-bottom: 16px; border-bottom: 1px solid var(--bba-sand); }
.bba-beauty__featured h3 { font-size: 22px; font-weight: 700; color: var(--bba-ink-dark); line-height: 1.3; }
@media (min-width: 768px) { .bba-beauty__featured h3 { font-size: 26px; } }
.bba-beauty__featured:hover h3 { color: var(--bba-terracotta); }
.bba-beauty__featured p { margin-top: 8px; font-size: 16px; line-height: 1.6; }
.bba-beauty__featured .bba-readmore { margin-top: 8px; }
.bba-beauty__list { display: flex; flex-direction: column; }
.bba-beauty__list-item { display: block; padding: 10px 0; border-bottom: 1px solid var(--bba-sand); }
.bba-beauty__list-item:last-child { border-bottom: none; }
.bba-beauty__list-cat { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--bba-terracotta); }
.bba-beauty__list-cat i { width: 6px; height: 6px; border-radius: 50%; background: var(--bba-sand); display: inline-block; }
.bba-beauty__list-item h4 { margin-top: 4px; font-size: 17px; font-weight: 700; color: var(--bba-ink-dark); }
.bba-beauty__list-item:hover h4 { color: var(--bba-terracotta); }
.bba-beauty__list-item p { margin-top: 2px; font-size: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Fashion duo + triptych */
.bba-fashion-duo { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .bba-fashion-duo { grid-template-columns: 1fr 1fr; gap: 40px; } }
.bba-fashion-card { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.bba-fashion-card__media { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bba-sand); }
.bba-fashion-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bba-fashion-card:hover .bba-fashion-card__media img { transform: scale(1.05); }
.bba-fashion-card__badge { position: absolute; top: 16px; left: 16px; background: rgba(36,33,31,.85); color: var(--bba-bg); padding: 4px 12px; font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.bba-fashion-card__badge--sm { top: 12px; left: 12px; padding: 2px 10px; font-size: 9px; border-radius: 999px; }
.bba-fashion-card__body { display: flex; flex-direction: column; gap: 12px; flex: 1; justify-content: space-between; }
.bba-fashion-card__body h3 { font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--bba-ink-dark); }
@media (min-width: 768px) { .bba-fashion-card__body h3 { font-size: 28px; } }
.bba-fashion-card:hover .bba-fashion-card__body h3 { color: var(--bba-terracotta); }
.bba-fashion-card__body p { font-size: 16px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bba-fashion-card__meta { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(221,211,197,.6); font-size: 12px; font-weight: 600; }

.bba-fashion-triptych-wrap { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--bba-sand); }
.bba-fashion-triptych__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.bba-fashion-triptych__header span:first-child { font-size: 10px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--bba-terracotta); }
.bba-fashion-triptych__tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(36,33,31,.5); }
.bba-fashion-triptych { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .bba-fashion-triptych { grid-template-columns: repeat(3, 1fr); } }
.bba-fashion-triptych__card { display: flex; flex-direction: column; gap: 12px; }
.bba-fashion-triptych__media { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bba-sand); }
.bba-fashion-triptych__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bba-fashion-triptych__card:hover .bba-fashion-triptych__media img { transform: scale(1.05); }
.bba-fashion-triptych__card h4 { font-size: 20px; font-weight: 700; color: var(--bba-ink-dark); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bba-fashion-triptych__card:hover h4 { color: var(--bba-terracotta); }
.bba-fashion-triptych__card p { font-size: 16px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Travel grid */
.bba-travel-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 16px; }
@media (min-width: 768px) { .bba-travel-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.bba-travel-card { display: flex; flex-direction: column; gap: 6px; }
.bba-travel-card__media { overflow: hidden; aspect-ratio: 16/10; width: 100%; background: var(--bba-sand); }
.bba-travel-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bba-travel-card:hover .bba-travel-card__media img { transform: scale(1.05); }
.bba-travel-card__eyebrow { display: block; margin-top: 6px; }
.bba-travel-card h3 { margin-top: 4px; font-size: 22px; font-weight: 700; color: var(--bba-ink-dark); line-height: 1.3; }
@media (min-width: 768px) { .bba-travel-card h3 { font-size: 26px; } }
.bba-travel-card:hover h3 { color: var(--bba-terracotta); }
.bba-travel-card p { margin-top: 4px; font-size: 16px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bba-travel-card .bba-fashion-card__meta { margin-top: 6px; }

/* Tech alternating */
.bba-tech-stack { display: flex; flex-direction: column; gap: 40px; margin-top: 8px; }
.bba-tech-stack__divider { border-top: 1px solid rgba(221,211,197,.7); }
.bba-tech-story { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 1024px) { .bba-tech-story { grid-template-columns: 7fr 5fr; gap: 40px; } }
.bba-tech-story--reverse { grid-template-columns: 1fr; }
@media (min-width: 1024px) { .bba-tech-story--reverse { grid-template-columns: 5fr 7fr; } }
.bba-tech-story--reverse .bba-tech-story__media { order: -1; }
@media (min-width: 1024px) { .bba-tech-story--reverse .bba-tech-story__media { order: 2; } .bba-tech-story--reverse .bba-tech-story__body { order: 1; } }
.bba-tech-story__media { overflow: hidden; aspect-ratio: 16/10; width: 100%; background: var(--bba-sand); }
.bba-tech-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bba-tech-story:hover .bba-tech-story__media img { transform: scale(1.05); }
.bba-tech-story__body { display: flex; flex-direction: column; gap: 12px; }
.bba-tech-story__body h3 { font-size: 24px; font-weight: 700; color: var(--bba-ink-dark); line-height: 1.3; }
@media (min-width: 768px) { .bba-tech-story__body h3 { font-size: 28px; } }
.bba-tech-story:hover .bba-tech-story__body h3 { color: var(--bba-terracotta); }
.bba-tech-story__body p { font-size: 16px; line-height: 1.6; }
.bba-tech-story__body .bba-fashion-card__meta { padding-top: 12px; border-top-color: rgba(221,211,197,.7); }

/* Categories browse (was Trending section) */
.bba-categories-browse { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .bba-categories-browse { grid-template-columns: 7fr 5fr; } }
.bba-categories-browse__list { display: flex; flex-direction: column; }
.bba-categories-browse__item { display: flex; flex-direction: column; gap: 12px; padding: 16px 8px; margin: 0 -8px; border-bottom: 1px solid var(--bba-sand); transition: background-color .2s ease; }
@media (min-width: 640px) { .bba-categories-browse__item { flex-direction: row; align-items: center; justify-content: space-between; } }
.bba-categories-browse__item.is-active { background: rgba(221,211,197,.3); border-radius: 4px; padding: 16px; margin: 0; }
.bba-categories-browse__item h3 { font-size: 22px; font-weight: 700; letter-spacing: .02em; color: var(--bba-ink-dark); }
@media (min-width: 768px) { .bba-categories-browse__item h3 { font-size: 26px; } }
.bba-categories-browse__item:hover h3 { color: var(--bba-terracotta); }
.bba-categories-browse__item.is-active h3 { text-decoration: underline; text-decoration-color: var(--bba-terracotta); text-underline-offset: 4px; }
.bba-categories-browse__text p { margin-top: 4px; font-size: 16px; line-height: 1.6; max-width: 420px; }
.bba-categories-browse__meta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; padding-left: 32px; }
@media (min-width: 640px) { .bba-categories-browse__meta { padding-left: 0; } }
.bba-categories-browse__item .bba-tag { border-color: rgba(0,0,0,.4); }
.bba-categories-browse__item:hover .bba-tag { border-color: var(--bba-terracotta); color: var(--bba-terracotta); }
.bba-categories-browse__preview { display: none; position: relative; aspect-ratio: 4/3; background: var(--bba-sand); overflow: hidden; border: 1px solid var(--bba-sand); }
@media (min-width: 1024px) { .bba-categories-browse__preview { display: block; } }
.bba-categories-browse__preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bba-categories-browse__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.25) 60%, transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.bba-categories-browse__preview-title { font-size: 26px; color: #fff; line-height: 1.2; margin-top: 4px; }
.bba-categories-browse__preview-sub { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 300; margin-top: 4px; max-width: 320px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bba-categories-browse__preview .bba-readmore { margin-top: 12px; color: var(--bba-bg); }

/* ===========================================================
   Newsletter
   =========================================================== */
.bba-newsletter { position: relative; width: 100%; background: #1A1816; overflow: hidden; min-height: 460px; display: flex; align-items: center; }
.bba-newsletter__bg { position: absolute; inset: 0; z-index: 0; }
.bba-newsletter__bg img { width: 100%; height: 100%; object-fit: cover; }
.bba-newsletter__scrim-x { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.5) 60%, rgba(0,0,0,.2)); }
.bba-newsletter__scrim-y { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 55%, rgba(0,0,0,.3)); }
.bba-newsletter__inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 56px 24px; width: 100%; }
@media (min-width: 768px) { .bba-newsletter__inner { padding: 80px 56px; } }
.bba-newsletter__content { max-width: 640px; display: flex; flex-direction: column; gap: 20px; }
.bba-newsletter__title { font-size: 32px; font-weight: 400; color: #fff; letter-spacing: -.01em; line-height: 1.15; }
@media (min-width: 768px) { .bba-newsletter__title { font-size: 44px; } }
@media (min-width: 1024px) { .bba-newsletter__title { font-size: 54px; } }
.bba-newsletter__subtitle { font-size: 16px; color: rgba(255,255,255,.9); line-height: 1.6; max-width: 560px; }
@media (min-width: 640px) { .bba-newsletter__subtitle { font-size: 18px; } }
.bba-newsletter__row { display: flex; flex-direction: column; gap: 8px; max-width: 560px; }
@media (min-width: 640px) { .bba-newsletter__row { flex-direction: row; align-items: center; gap: 12px; } }
.bba-newsletter__input { flex: 1; padding: 14px 24px; background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: #fff; font-size: 14px; }
.bba-newsletter__input::placeholder { color: rgba(255,255,255,.7); }
.bba-newsletter__disclaimer { margin-top: 4px; font-size: 13px; color: rgba(255,255,255,.6); font-weight: 300; }
.bba-newsletter__error:not([hidden]) { color: #e8a897; }
.bba-newsletter__success-wrap { padding-top: 4px; }
.bba-newsletter__success { display: inline-flex; align-items: center; gap: 12px; padding: 16px; background: rgba(0,0,0,.6); border: 1px solid var(--bba-terracotta-light); color: #fff; max-width: 560px; }
.bba-newsletter__countdown { margin-top: 10px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--bba-terracotta-light); }
.bba-btn.is-loading { opacity: .7; pointer-events: none; }

/* ===========================================================
   Footer
   =========================================================== */
.bba-footer { width: 100%; background: var(--bba-bg); color: var(--bba-ink-dark); border-top: 1px solid var(--bba-sand); padding: 40px 24px 32px; }
@media (min-width: 768px) { .bba-footer { padding: 40px 48px 32px; } }
.bba-footer__inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.bba-footer__top { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--bba-sand); }
@media (min-width: 1024px) { .bba-footer__top { grid-template-columns: 5fr 7fr; } }
.bba-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.bba-footer__desc { font-size: 14px; line-height: 1.6; max-width: 380px; }
.bba-trustpilot { display: inline-flex; align-items: center; gap: 12px; padding: 8px 12px; background: rgba(255,255,255,.8); border: 1px solid var(--bba-sand); border-radius: 6px; width: fit-content; }
.bba-trustpilot__mark { background: var(--bba-trustpilot); color: #fff; padding: 6px; border-radius: 2px; display: flex; }
.bba-trustpilot__stars-row { display: flex; align-items: center; gap: 6px; }
.bba-trustpilot__excellent { font-size: 12px; font-weight: 700; }
.bba-trustpilot__stars { display: flex; align-items: center; gap: 2px; }
.bba-trustpilot__star { background: var(--bba-trustpilot); padding: 2px; border-radius: 1px; display: flex; }
.bba-trustpilot__rating { display: flex; align-items: center; gap: 6px; font-size: 10px; margin-top: 2px; }
.bba-trustpilot__brand { font-weight: 700; color: var(--bba-trustpilot); }
.bba-footer__nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .bba-footer__nav { grid-template-columns: repeat(3, 1fr); } }
.bba-footer__col { display: flex; flex-direction: column; gap: 16px; }
.bba-footer__col--social { grid-column: span 2; }
@media (min-width: 768px) { .bba-footer__col--social { grid-column: span 1; } }
.bba-footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; }
.bba-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.bba-footer__col a { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.bba-footer__col a:hover { color: var(--bba-terracotta); }
.bba-footer__bottom { font-size: 11px; font-weight: 500; letter-spacing: .08em; }

/* ===========================================================
   Category page
   =========================================================== */
.bba-category-page { padding: 112px 0 96px; min-height: 60vh; }
.bba-category-page__header { padding-bottom: 40px; padding-top: 16px; border-bottom: 1px solid var(--bba-sand); margin-bottom: 48px; }
.bba-breadcrumb { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.bba-breadcrumb a { color: rgba(36,33,31,.6); }
.bba-breadcrumb a:hover { color: var(--bba-terracotta); }
.bba-breadcrumb span:not(.bba-breadcrumb__current) { color: rgba(36,33,31,.4); }
.bba-breadcrumb__current { font-weight: 600; color: var(--bba-terracotta); }
.bba-category-page__title { font-size: 34px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
@media (min-width: 768px) { .bba-category-page__title { font-size: 44px; } }
.bba-category-page__desc { margin-top: 12px; font-size: 15px; line-height: 1.6; max-width: 640px; color: rgba(36,33,31,.8); }

.bba-category-feature { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 56px; border-bottom: 1px solid var(--bba-sand); margin-bottom: 48px; }
@media (min-width: 1024px) { .bba-category-feature { grid-template-columns: 7fr 5fr; align-items: start; } }
.bba-category-feature__media { overflow: hidden; aspect-ratio: 16/10; background: var(--bba-sand); }
.bba-category-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bba-category-feature:hover .bba-category-feature__media img { transform: scale(1.05); }
.bba-category-feature__body { display: flex; flex-direction: column; gap: 14px; padding-top: 4px; }
.bba-category-feature__body h2 { font-size: 30px; font-weight: 600; color: var(--bba-ink-dark); line-height: 1.15; }
@media (min-width: 1024px) { .bba-category-feature__body h2 { font-size: 36px; } }
.bba-category-feature:hover .bba-category-feature__body h2 { color: var(--bba-terracotta); }
.bba-category-feature__body p { font-size: 16px; line-height: 1.6; }
.bba-category-feature__meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(221,211,197,.6); font-size: 12px; font-weight: 600; }

.bba-category-duo { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 56px; border-bottom: 1px solid var(--bba-sand); margin-bottom: 48px; }
@media (min-width: 768px) { .bba-category-duo { grid-template-columns: 1fr 1fr; } }
.bba-category-duo__card { display: flex; flex-direction: column; gap: 10px; }
.bba-category-duo__media { overflow: hidden; aspect-ratio: 16/10; background: var(--bba-sand); }
.bba-category-duo__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bba-category-duo__card:hover .bba-category-duo__media img { transform: scale(1.05); }
.bba-category-duo__card h3 { margin-top: 4px; font-size: 26px; font-weight: 600; color: var(--bba-ink-dark); line-height: 1.25; }
.bba-category-duo__card:hover h3 { color: var(--bba-terracotta); }
.bba-category-duo__card p { font-size: 16px; line-height: 1.6; }

.bba-category-grid-wrap { padding-bottom: 64px; }
.bba-category-grid__label { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--bba-terracotta); margin-bottom: 24px; }
.bba-category-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .bba-category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bba-category-grid { grid-template-columns: repeat(3, 1fr); } }
.bba-category-grid__card { display: flex; flex-direction: column; gap: 8px; }
.bba-category-grid__media { overflow: hidden; aspect-ratio: 16/10; background: var(--bba-sand); }
.bba-category-grid__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bba-category-grid__card:hover .bba-category-grid__media img { transform: scale(1.05); }
.bba-category-grid__card h4 { font-size: 20px; font-weight: 600; color: var(--bba-ink-dark); line-height: 1.3; }
.bba-category-grid__card:hover h4 { color: var(--bba-terracotta); }
.bba-category-grid__card p { font-size: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bba-no-results { padding: 48px 0; font-size: 15px; color: rgba(36,33,31,.7); }

/* ===========================================================
   Single article
   =========================================================== */
.bba-article { width: 100%; padding: 96px 0 56px; }
.bba-article__back-top { margin-bottom: 24px; }
.bba-article__title { font-size: 30px; font-weight: 700; letter-spacing: -.01em; color: var(--bba-ink-dark); line-height: 1.1; margin-bottom: 20px; }
@media (min-width: 640px) { .bba-article__title { font-size: 38px; } }
@media (min-width: 768px) { .bba-article__title { font-size: 46px; } }
.bba-article__intro { font-size: 17px; font-style: italic; font-weight: 500; color: var(--bba-ink-dark); line-height: 1.6; margin-bottom: 24px; border-left: 2px solid var(--bba-terracotta); padding: 4px 0 4px 20px; }
@media (min-width: 768px) { .bba-article__intro { font-size: 20px; } }
.bba-article__hero-media { overflow: hidden; width: 100%; aspect-ratio: 16/10; min-height: 320px; max-height: 640px; background: var(--bba-sand); border: 1px solid var(--bba-sand); margin-bottom: 40px; }
.bba-article__hero-media img { width: 100%; height: 100%; object-fit: cover; }

.bba-article__body { font-size: 16px; line-height: 1.75; }
@media (min-width: 768px) { .bba-article__body { font-size: 18px; } }
.bba-article__body p { margin-bottom: 24px; }
.bba-article__body > p:first-of-type::first-letter { font-size: 3.2em; font-weight: 400; color: var(--bba-terracotta); float: left; line-height: 1; margin-right: 10px; }
.bba-pullquote { margin: 32px 0; padding: 24px 24px; background: rgba(221,211,197,.4); border-left: 4px solid var(--bba-terracotta); }
@media (min-width: 768px) { .bba-pullquote { padding: 24px 40px; } }
.bba-pullquote p { font-size: 20px; font-style: italic; color: var(--bba-ink); line-height: 1.4; margin: 0 0 8px; }
@media (min-width: 768px) { .bba-pullquote p { font-size: 24px; } }
.bba-pullquote cite { display: block; font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--bba-terracotta); font-style: normal; }
.bba-article__inline-media { margin: 40px 0; overflow: hidden; width: 100%; aspect-ratio: 16/10; min-height: 320px; max-height: 620px; background: var(--bba-sand); border: 1px solid var(--bba-sand); }
.bba-article__inline-media img { width: 100%; height: 100%; object-fit: cover; }

.bba-author-box { margin-top: 48px; padding: 24px; background: rgba(221,211,197,.3); border: 1px solid var(--bba-sand); display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
@media (min-width: 768px) { .bba-author-box { flex-direction: row; align-items: flex-start; text-align: left; } }
.bba-author-box__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 1px solid var(--bba-terracotta); flex-shrink: 0; }
.bba-author-box__body h4 { margin-top: 6px; font-size: 20px; font-weight: 600; color: var(--bba-ink-dark); }
.bba-author-box__body p { margin-top: 6px; font-size: 12px; line-height: 1.6; color: rgba(26,24,22,.85); }
.bba-article__back-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--bba-sand); }

/* ===========================================================
   Info pages (About / Contact / Legal)
   =========================================================== */
.bba-info-page { width: 100%; padding: 128px 0 72px; min-height: 60vh; }
.bba-info-page__header { display: flex; flex-direction: column; gap: 16px; padding-bottom: 32px; border-bottom: 1px solid var(--bba-sand); margin-bottom: 40px; }
@media (min-width: 768px) { .bba-info-page__header { flex-direction: row; align-items: center; justify-content: space-between; } }
.bba-info-page__header h1 { font-size: 30px; font-weight: 700; letter-spacing: -.01em; text-transform: uppercase; color: var(--bba-ink-dark); }
@media (min-width: 768px) { .bba-info-page__header h1 { font-size: 44px; } }

.bba-about__intro { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
@media (min-width: 1024px) { .bba-about__intro { grid-template-columns: 1fr 1fr; } }
.bba-about__copy { display: flex; flex-direction: column; gap: 20px; }
.bba-about__copy h2 { font-size: 30px; font-weight: 700; line-height: 1.25; color: var(--bba-ink-dark); }
@media (min-width: 768px) { .bba-about__copy h2 { font-size: 40px; } }
.bba-about__copy p { font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
@media (min-width: 768px) { .bba-about__copy p { font-size: 18px; } }
.bba-about__media { position: relative; aspect-ratio: 16/10; background: var(--bba-sand); overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.08); border: 1px solid var(--bba-sand); }
.bba-about__media img { width: 100%; height: 100%; object-fit: cover; }
.bba-about__mission { background: var(--bba-brown); color: var(--bba-bg); padding: 40px; border-left: 4px solid var(--bba-terracotta); }
@media (min-width: 768px) { .bba-about__mission { padding: 48px; } }
.bba-about__mission blockquote { margin: 16px 0 0; font-size: 22px; line-height: 1.5; color: var(--bba-bg); }
@media (min-width: 768px) { .bba-about__mission blockquote { font-size: 26px; } }

.bba-contact { background: var(--bba-bg); border: 1px solid var(--bba-sand); display: grid; grid-template-columns: 1fr; overflow: hidden; }
@media (min-width: 1024px) { .bba-contact { grid-template-columns: 5fr 7fr; } }
.bba-contact__media { position: relative; min-height: 320px; background: var(--bba-sand); }
@media (min-width: 1024px) { .bba-contact__media { min-height: 640px; } }
.bba-contact__media img { width: 100%; height: 100%; object-fit: cover; }
.bba-contact__form-wrap { padding: 32px 24px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .bba-contact__form-wrap { padding: 48px; } }
.bba-contact__form h2 { font-size: 36px; font-weight: 400; color: var(--bba-ink-dark); letter-spacing: -.01em; margin: 8px 0; }
@media (min-width: 640px) { .bba-contact__form h2 { font-size: 44px; } }
.bba-contact__lede { font-size: 16px; line-height: 1.6; color: rgba(36,33,31,.85); margin-bottom: 20px; }
@media (min-width: 640px) { .bba-contact__lede { font-size: 18px; } }
.bba-form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .bba-form-grid { grid-template-columns: 1fr 1fr; } }
.bba-field { margin-top: 16px; }
.bba-form-grid .bba-field { margin-top: 0; }
.bba-field label { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--bba-ink-dark); }
.bba-field input, .bba-field textarea {
	width: 100%; padding: 12px 16px; background: var(--bba-card-bg); border: 1px solid var(--bba-sand);
	font-size: 14px; color: var(--bba-ink-dark); border-radius: 2px;
}
.bba-field input::placeholder, .bba-field textarea::placeholder { color: rgba(36,33,31,.4); }
.bba-field input:focus, .bba-field textarea:focus { outline: none; border-color: var(--bba-terracotta); background: #fff; }
.bba-contact__form button[type="submit"] { margin-top: 20px; }
.bba-contact__success { padding: 48px 0; text-align: center; }
.bba-contact__success svg { color: var(--bba-terracotta); margin: 0 auto 16px; }
.bba-contact__success-icon { animation: bba-bounce 1s infinite; }
@keyframes bba-bounce {
	0%, 100% { transform: translateY(-12%); animation-timing-function: cubic-bezier(.8,0,1,1); }
	50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,.2,1); }
}
@media (prefers-reduced-motion: reduce) {
	.bba-contact__success-icon { animation: none; }
}
.bba-contact__success h3 { font-size: 28px; font-weight: 400; color: var(--bba-ink-dark); margin-bottom: 12px; }
.bba-contact__success p { font-size: 15px; color: rgba(36,33,31,.8); max-width: 420px; margin: 0 auto 24px; line-height: 1.6; }
.bba-contact__countdown { font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--bba-terracotta); margin: -8px auto 16px; }
.bba-field__error { margin-top: 4px; font-size: 13px; color: #b3402c; }

.bba-legal { max-width: 900px; margin: 0 auto; background: #fff; padding: 32px 24px; border: 1px solid var(--bba-sand); }
@media (min-width: 768px) { .bba-legal { padding: 56px; } }
.bba-legal p { font-size: 14px; line-height: 1.7; color: rgba(26,24,22,.85); margin-bottom: 14px; }
.bba-legal h3 { font-size: 20px; font-weight: 600; color: var(--bba-ink-dark); margin: 28px 0 10px; }
.bba-legal h3:first-child { margin-top: 0; }
@media (min-width: 768px) { .bba-legal h3 { font-size: 24px; } }
.bba-legal h4 { font-size: 17px; font-weight: 600; color: var(--bba-ink-dark); margin: 18px 0 6px; }
.bba-legal ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.bba-legal li { font-size: 14px; line-height: 1.7; color: rgba(26,24,22,.85); margin-bottom: 6px; }
.bba-legal a { color: var(--bba-terracotta); text-decoration: underline; font-weight: 500; }

/* ===========================================================
   404
   =========================================================== */
.bba-404 { width: 100%; padding: 152px 0 80px; min-height: 70vh; }
.bba-404__hero { text-align: center; max-width: 620px; margin: 0 auto; padding-bottom: 64px; border-bottom: 1px solid var(--bba-sand); }
.bba-404__digits { display: block; font-size: 96px; font-weight: 700; line-height: 1; letter-spacing: -.02em; color: var(--bba-sand); }
@media (min-width: 640px) { .bba-404__digits { font-size: 140px; } }
.bba-404__eyebrow { justify-content: center; margin-top: 8px; }
.bba-404__title { margin-top: 20px; font-size: 26px; font-weight: 700; color: var(--bba-ink-dark); line-height: 1.25; }
@media (min-width: 640px) { .bba-404__title { font-size: 32px; } }
.bba-404__desc { margin-top: 14px; font-size: 15px; line-height: 1.65; color: rgba(36,33,31,.75); }
.bba-404__search { margin-top: 32px; display: flex; align-items: center; gap: 10px; background: var(--bba-card-bg); border: 1px solid var(--bba-sand); border-radius: 999px; padding: 8px 8px 8px 20px; }
.bba-404__search svg { color: var(--bba-terracotta); flex-shrink: 0; }
.bba-404__search-input { flex: 1; background: transparent; border: none; outline: none; font-size: 14px; color: var(--bba-ink-dark); min-width: 0; }
.bba-404__search-input::placeholder { color: rgba(36,33,31,.4); }
.bba-404__search .bba-btn { padding: 12px 22px; flex-shrink: 0; }
.bba-404__actions { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.bba-404__cats { margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.bba-404__cats-label { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(36,33,31,.55); }
.bba-404__recent { margin-top: 56px; }
.bba-404__recent .bba-rail__header { margin-bottom: 32px; }
