/* ==========================================================================
   BB Timber — main stylesheet
   Palette taken from the logo: copper band #A5652E, charcoal trees #3D3D3D.
   ========================================================================== */

:root {
	--bbt-copper: #a5652e;
	--bbt-copper-dark: #8a5223;
	--bbt-copper-light: #d69d63;
	--bbt-copper-soft: #f6ece1;
	--bbt-charcoal: #3d3d3d;
	--bbt-ink: #1e1915;
	--bbt-ink-2: #29221d;
	--bbt-cream: #fbf8f4;
	--bbt-sand: #f3ebe1;
	--bbt-white: #fff;
	--bbt-text: #3d3d3d;
	--bbt-muted: #6e665f;
	--bbt-line: #e8dfd4;
	--bbt-line-dark: rgba(255, 255, 255, 0.1);
	--bbt-font-head: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
	--bbt-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--bbt-radius-sm: 12px;
	--bbt-radius: 18px;
	--bbt-radius-lg: 26px;
	--bbt-shadow-sm: 0 10px 30px -14px rgba(30, 25, 21, 0.22);
	--bbt-shadow: 0 28px 60px -24px rgba(30, 25, 21, 0.35);
	--bbt-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--bbt-container: 1260px;
}

/* Base ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--bbt-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--bbt-text);
	background: var(--bbt-cream);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--bbt-font-head);
	color: var(--bbt-ink);
	line-height: 1.15;
	margin: 0 0 0.5em;
	font-weight: 700;
	letter-spacing: -0.015em;
}
h1 em, h2 em, h3 em { font-style: normal; color: var(--bbt-copper); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
figure { margin: 0; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--bbt-copper); outline-offset: 3px; }
::selection { background: var(--bbt-copper); color: #fff; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto; margin: 0;
	top: 12px; left: 12px; z-index: 999;
	padding: 12px 20px; background: #fff; color: var(--bbt-ink); border-radius: 8px;
}

.bbt-container {
	width: 100%;
	max-width: var(--bbt-container);
	margin-inline: auto;
	padding-inline: clamp(18px, 4vw, 32px);
}

.bbt-section { position: relative; padding-block: clamp(76px, 10vw, 130px); }
.bbt-section--dark { background: var(--bbt-ink); color: rgba(255, 255, 255, 0.68); }
.bbt-section--dark h2, .bbt-section--dark h3 { color: #fff; }
.bbt-section--dark h2 em { color: var(--bbt-copper-light); }
.bbt-section--sand { background: var(--bbt-sand); }

/* Typography helpers ----------------------------------------------------- */
.bbt-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	font-family: var(--bbt-font-head);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bbt-copper);
}
.bbt-eyebrow::before { content: ""; width: 30px; height: 2px; border-radius: 2px; background: currentColor; }
.bbt-section--dark .bbt-eyebrow, .bbt-testimonials .bbt-eyebrow { color: var(--bbt-copper-light); }

.bbt-title { font-size: clamp(32px, 4.4vw, 54px); margin-bottom: 0.4em; }
.bbt-lead { font-size: clamp(16px, 1.3vw, 18px); color: var(--bbt-muted); }
.bbt-section--dark .bbt-lead { color: rgba(255, 255, 255, 0.62); }

.bbt-section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.bbt-section-head--center { max-width: 720px; margin-inline: auto; text-align: center; }
.bbt-section-head--center .bbt-eyebrow::after { content: ""; width: 30px; height: 2px; border-radius: 2px; background: currentColor; }
.bbt-section-head--split {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 32px 64px;
}
.bbt-section-head--split .bbt-section-head__main { max-width: 640px; }
.bbt-section-head--split .bbt-title { margin-bottom: 0; }
.bbt-section-head__side {
	display: flex;
	align-items: center;
	gap: 28px;
	max-width: 520px;
}
.bbt-section-head__side .bbt-lead { margin: 0; }

/* Buttons ---------------------------------------------------------------- */
.bbt-btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 7px 7px 7px 26px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	font-family: var(--bbt-font-head);
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	transition: background 0.35s var(--bbt-ease), color 0.35s, border-color 0.35s, transform 0.35s var(--bbt-ease), box-shadow 0.35s;
}
.bbt-btn__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	transition: transform 0.45s var(--bbt-ease), background 0.35s, color 0.35s;
}
.bbt-btn:hover { transform: translateY(-2px); }
.bbt-btn:hover .bbt-btn__icon { transform: rotate(45deg); }

.bbt-btn--primary { background: var(--bbt-copper); color: #fff; box-shadow: 0 14px 30px -12px rgba(165, 101, 46, 0.75); }
.bbt-btn--primary:hover { background: var(--bbt-copper-dark); }
.bbt-btn--dark { background: var(--bbt-ink); color: #fff; }
.bbt-btn--dark .bbt-btn__icon { background: var(--bbt-copper); }
.bbt-btn--dark:hover { background: var(--bbt-copper); }
.bbt-btn--dark:hover .bbt-btn__icon { background: var(--bbt-ink); }
.bbt-btn--ghost { border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.06); color: #fff; backdrop-filter: blur(6px); }
.bbt-btn--ghost:hover { background: #fff; color: var(--bbt-ink); }
.bbt-btn--ghost:hover .bbt-btn__icon { background: var(--bbt-copper); color: #fff; }
.bbt-btn--light { background: #fff; color: var(--bbt-ink); }
.bbt-btn--light .bbt-btn__icon { background: var(--bbt-copper); color: #fff; }
.bbt-btn--light:hover { background: var(--bbt-ink); color: #fff; }
.bbt-btn--outline { border-color: var(--bbt-line); color: var(--bbt-ink); background: #fff; }
.bbt-btn--outline .bbt-btn__icon { background: var(--bbt-copper-soft); color: var(--bbt-copper); }
.bbt-btn--outline:hover { border-color: var(--bbt-ink); background: var(--bbt-ink); color: #fff; }
.bbt-btn--outline:hover .bbt-btn__icon { background: var(--bbt-copper); color: #fff; }

.bbt-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--bbt-font-head);
	font-size: 15px;
	font-weight: 600;
	color: var(--bbt-ink);
}
.bbt-link svg { transition: transform 0.3s var(--bbt-ease); }
.bbt-link:hover { color: var(--bbt-copper); }
.bbt-link:hover svg { transform: translateX(5px); }

/* Masthead: topbar + header overlay the first section --------------------- */
.bbt-masthead { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.admin-bar .bbt-masthead { top: 32px; }

.bbt-topbar { border-bottom: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.78); font-size: 13.5px; }
.bbt-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 46px; }
.bbt-topbar__info { display: flex; min-width: 0; gap: 28px; list-style: none; }
.bbt-topbar__info li { min-width: 0; }
.bbt-topbar__info a, .bbt-topbar__info span, .bbt-topbar__hours { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.bbt-topbar__info li:last-child span { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.bbt-topbar__info li:last-child span svg { display: inline-block; margin-right: 8px; vertical-align: -3px; }
.bbt-topbar__right { flex: none; }
.bbt-topbar__info a:hover { color: #fff; }
.bbt-topbar svg { color: var(--bbt-copper-light); }
.bbt-topbar__right { display: flex; align-items: center; gap: 22px; }

.bbt-social { display: flex; gap: 8px; list-style: none; }
.bbt-social a {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #fff;
	transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.bbt-social a:hover { background: var(--bbt-copper); border-color: var(--bbt-copper); transform: translateY(-2px); }
.bbt-topbar .bbt-social svg { color: currentColor; }

.bbt-header { color: #fff; }
.bbt-header__inner { display: flex; align-items: center; gap: 28px; min-height: 90px; transition: min-height 0.3s; }
.bbt-header.is-stuck {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	color: var(--bbt-ink);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: saturate(1.4) blur(14px);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.45);
	animation: bbtSlideDown 0.5s var(--bbt-ease);
}
.admin-bar .bbt-header.is-stuck { top: 32px; }
.bbt-header.is-stuck .bbt-header__inner { min-height: 74px; }
@keyframes bbtSlideDown { from { transform: translateY(-100%); } to { transform: none; } }

/* Logo */
.bbt-logo { display: inline-flex; align-items: center; gap: 12px; flex: none; color: inherit; }
.bbt-logo__mark { width: 58px; height: 58px; flex: none; filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2)); transition: transform 0.5s var(--bbt-ease); }
.bbt-logo:hover .bbt-logo__mark { transform: rotate(-8deg); }
.bbt-logo__text { display: flex; flex-direction: column; line-height: 1; }
.bbt-logo__name { font-family: var(--bbt-font-head); font-size: 23px; font-weight: 800; letter-spacing: 0.05em; }
.bbt-logo__tag { margin-top: 6px; font-size: 9.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.72; }
.bbt-logo--custom img { width: auto; max-height: 72px; }
.bbt-header.is-stuck .bbt-logo__mark { width: 50px; height: 50px; }

/* Nav */
.bbt-nav { margin-left: auto; }
.bbt-menu { display: flex; gap: 2px; list-style: none; }
.bbt-menu > li { position: relative; }
.bbt-menu a { display: block; padding: 10px 16px; font-family: var(--bbt-font-head); font-size: 15.5px; font-weight: 500; white-space: nowrap; }
.bbt-menu > li > a { position: relative; }
.bbt-menu > li > a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--bbt-copper-light);
	transform: translateX(-50%) scale(0);
	transition: transform 0.3s var(--bbt-ease);
}
.bbt-menu > li:hover > a::after,
.bbt-menu > .current-menu-item > a::after,
.bbt-menu > .current_page_item > a::after { transform: translateX(-50%) scale(1); }
.bbt-menu > li:hover > a, .bbt-menu > .current-menu-item > a { color: var(--bbt-copper-light); }
.bbt-header.is-stuck .bbt-menu > li:hover > a,
.bbt-header.is-stuck .bbt-menu > .current-menu-item > a { color: var(--bbt-copper); }
.bbt-header.is-stuck .bbt-menu > li > a::after { background: var(--bbt-copper); }

.bbt-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	padding: 8px;
	list-style: none;
	background: #fff;
	color: var(--bbt-ink);
	border-radius: 14px;
	box-shadow: var(--bbt-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s, transform 0.3s var(--bbt-ease), visibility 0.3s;
}
.bbt-menu li:hover > .sub-menu, .bbt-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.bbt-menu .sub-menu a { border-radius: 10px; font-size: 15px; }
.bbt-menu .sub-menu a:hover { background: var(--bbt-copper-soft); color: var(--bbt-copper-dark); }

.bbt-nav__extra { display: none; }

.bbt-header__actions { display: flex; align-items: center; gap: 20px; }
.bbt-header__call { display: flex; align-items: center; gap: 12px; }
.bbt-header__call-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.bbt-header__call:hover .bbt-header__call-icon { background: var(--bbt-copper); border-color: var(--bbt-copper); color: #fff; }
.bbt-header__call small { display: block; font-size: 12px; line-height: 1.3; opacity: 0.7; }
.bbt-header__call strong { font-family: var(--bbt-font-head); font-size: 15.5px; font-weight: 600; line-height: 1.3; }
.bbt-header.is-stuck .bbt-header__call-icon { border-color: transparent; background: var(--bbt-copper-soft); color: var(--bbt-copper); }
.bbt-header__cta { padding-left: 22px; font-size: 15px; }
.bbt-header__cta .bbt-btn__icon { width: 38px; height: 38px; }

.bbt-burger {
	display: none;
	position: relative;
	z-index: 70;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: transparent;
}
.bbt-burger span:not(.screen-reader-text) {
	position: absolute;
	left: 14px;
	right: 14px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 0.35s var(--bbt-ease), opacity 0.2s, top 0.35s var(--bbt-ease);
}
.bbt-burger span:nth-child(1) { top: 16px; }
.bbt-burger span:nth-child(2) { top: 22.5px; right: 20px; }
.bbt-burger span:nth-child(3) { top: 29px; }
.bbt-header.is-stuck .bbt-burger { border-color: var(--bbt-line); }
.bbt-nav-open .bbt-burger { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.bbt-nav-open .bbt-burger span:nth-child(1) { top: 22.5px; transform: rotate(45deg); }
.bbt-nav-open .bbt-burger span:nth-child(2) { opacity: 0; }
.bbt-nav-open .bbt-burger span:nth-child(3) { top: 22.5px; transform: rotate(-45deg); }

.bbt-nav-backdrop { position: fixed; inset: 0; z-index: 55; background: rgba(15, 12, 10, 0.55); backdrop-filter: blur(2px); }

/* Hero ------------------------------------------------------------------- */
.bbt-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100svh;
	padding-top: 190px;
	overflow: hidden;
	color: #fff;
	background: var(--bbt-ink);
}
.bbt-hero__media { position: absolute; inset: 0; }
.bbt-hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); animation: bbtHeroZoom 16s ease-out forwards; }
@keyframes bbtHeroZoom { to { transform: scale(1); } }
.bbt-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(100deg, rgba(22, 17, 13, 0.95) 0%, rgba(22, 17, 13, 0.82) 38%, rgba(22, 17, 13, 0.4) 100%),
		linear-gradient(0deg, rgba(22, 17, 13, 0.95) 0%, rgba(22, 17, 13, 0) 45%);
}
.bbt-hero > :not(.bbt-hero__media) { position: relative; z-index: 2; }
.bbt-hero__inner {
	display: grid;
	flex: 1;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
	align-items: center;
	gap: 56px;
}
.bbt-eyebrow--pill {
	padding: 8px 18px 8px 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.14em;
}
.bbt-eyebrow--pill::before { width: 8px; height: 8px; border-radius: 50%; background: var(--bbt-copper-light); box-shadow: 0 0 0 4px rgba(214, 157, 99, 0.25); }
.bbt-hero__title {
	max-width: 820px;
	margin-bottom: 24px;
	color: #fff;
	font-size: clamp(42px, 6.4vw, 84px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.03em;
}
.bbt-hero__title em { color: var(--bbt-copper-light); }
.bbt-hero__text { max-width: 580px; margin-bottom: 38px; font-size: clamp(16px, 1.4vw, 19px); color: rgba(255, 255, 255, 0.76); }
.bbt-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.bbt-hero__stats { display: flex; flex-wrap: wrap; gap: 20px 44px; list-style: none; }
.bbt-hero__stats li { padding-left: 18px; border-left: 2px solid var(--bbt-copper); }
.bbt-hero__stats strong { display: block; font-family: var(--bbt-font-head); font-size: clamp(28px, 3vw, 38px); font-weight: 700; line-height: 1.05; color: #fff; }
.bbt-hero__stats span { font-size: 14px; color: rgba(255, 255, 255, 0.62); }

.bbt-hero__card {
	justify-self: end;
	width: 100%;
	max-width: 390px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bbt-radius-lg);
	background: rgba(30, 25, 21, 0.45);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.bbt-hero__card-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 20px; border-radius: 16px; background: var(--bbt-copper); }
.bbt-hero__card h2 { margin-bottom: 8px; color: #fff; font-size: 23px; }
.bbt-hero__card p { font-size: 15px; color: rgba(255, 255, 255, 0.68); }
.bbt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; list-style: none; }
.bbt-chips li { padding: 6px 14px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; background: rgba(255, 255, 255, 0.07); font-size: 13.5px; }
.bbt-hero__card-call { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.bbt-hero__card-call-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--bbt-copper); transition: transform 0.4s var(--bbt-ease); }
.bbt-hero__card-call:hover .bbt-hero__card-call-icon { transform: rotate(-15deg) scale(1.06); }
.bbt-hero__card-call small { display: block; font-size: 12.5px; color: rgba(255, 255, 255, 0.6); }
.bbt-hero__card-call strong { font-family: var(--bbt-font-head); font-size: 18px; font-weight: 600; }

.bbt-hero__services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 72px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.bbt-service {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 30px 26px 34px;
	transition: background 0.4s;
}
.bbt-service + .bbt-service { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.bbt-service::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--bbt-copper-light);
	transition: width 0.6s var(--bbt-ease);
}
.bbt-service:hover { background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent); }
.bbt-service:hover::before { width: 100%; }
.bbt-service__icon { display: grid; flex: none; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: rgba(214, 157, 99, 0.15); color: var(--bbt-copper-light); transition: background 0.35s, color 0.35s; }
.bbt-service:hover .bbt-service__icon { background: var(--bbt-copper); color: #fff; }
.bbt-service__body { flex: 1; }
.bbt-service__title { display: block; margin-bottom: 4px; font-family: var(--bbt-font-head); font-size: 19px; font-weight: 600; color: #fff; }
.bbt-service__text { display: block; font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.bbt-service__arrow { opacity: 0.4; transition: opacity 0.3s, transform 0.4s var(--bbt-ease); }
.bbt-service:hover .bbt-service__arrow { opacity: 1; transform: rotate(45deg); color: var(--bbt-copper-light); }

.bbt-hero__anim { opacity: 0; transform: translateY(26px); animation: bbtFadeUp 0.9s var(--bbt-ease) forwards; }
.bbt-hero__content .bbt-hero__anim:nth-child(2) { animation-delay: 0.1s; }
.bbt-hero__content .bbt-hero__anim:nth-child(3) { animation-delay: 0.2s; }
.bbt-hero__content .bbt-hero__anim:nth-child(4) { animation-delay: 0.3s; }
.bbt-hero__content .bbt-hero__anim:nth-child(5) { animation-delay: 0.4s; }
.bbt-hero__card.bbt-hero__anim { animation-delay: 0.5s; }
@keyframes bbtFadeUp { to { opacity: 1; transform: none; } }

/* Marquee ---------------------------------------------------------------- */
.bbt-marquee { position: relative; overflow: hidden; padding: 22px 0; background: var(--bbt-copper); color: #fff; }
.bbt-marquee__track { display: flex; width: max-content; animation: bbtMarquee 45s linear infinite; }
.bbt-marquee:hover .bbt-marquee__track { animation-play-state: paused; }
.bbt-marquee__list { display: flex; align-items: center; list-style: none; }
.bbt-marquee__list li {
	display: flex;
	align-items: center;
	gap: 30px;
	padding-right: 30px;
	font-family: var(--bbt-font-head);
	font-size: clamp(20px, 2.3vw, 30px);
	font-weight: 600;
	white-space: nowrap;
}
.bbt-marquee__list li:nth-child(even) { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85); }
.bbt-marquee__list svg { color: rgba(255, 255, 255, 0.7); }
@keyframes bbtMarquee { to { transform: translateX(-50%); } }

/* About ------------------------------------------------------------------ */
.bbt-about__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px, 7vw, 100px); }
.bbt-about__media { position: relative; isolation: isolate; padding: 0 0 80px 24px; }
.bbt-about__pattern {
	position: absolute;
	top: -26px;
	left: 0;
	z-index: -1;
	width: 58%;
	height: 62%;
	border-radius: var(--bbt-radius-lg);
	background: repeating-linear-gradient(45deg, rgba(165, 101, 46, 0.22) 0 2px, transparent 2px 13px);
}
.bbt-about__img { overflow: hidden; border-radius: var(--bbt-radius-lg); box-shadow: var(--bbt-shadow); }
.bbt-about__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--bbt-ease); }
.bbt-about__img:hover img { transform: scale(1.06); }
.bbt-about__img--main { width: 76%; aspect-ratio: 4 / 5; }
.bbt-about__img--sub { position: absolute; right: 0; bottom: 0; width: 50%; aspect-ratio: 1; border: 10px solid var(--bbt-cream); }

.bbt-ring-badge {
	position: absolute;
	top: 12%;
	right: 5%;
	display: grid;
	place-items: center;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: var(--bbt-ink);
	color: #fff;
	box-shadow: var(--bbt-shadow);
}
.bbt-ring-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: bbtSpin 20s linear infinite; }
.bbt-ring-badge text { fill: rgba(255, 255, 255, 0.85); font-family: var(--bbt-font-head); font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; }
.bbt-ring-badge__center { position: relative; display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: var(--bbt-copper); text-align: center; line-height: 1; }
.bbt-ring-badge__center strong { font-family: var(--bbt-font-head); font-size: 28px; font-weight: 700; }
.bbt-ring-badge__center small { margin-top: -14px; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; }
@keyframes bbtSpin { to { transform: rotate(360deg); } }

.bbt-about__subtitle { margin: 30px 0 18px; font-size: 19px; }
.bbt-checklist { display: grid; gap: 14px; margin: 0 0 38px; list-style: none; }
.bbt-checklist li { display: flex; align-items: flex-start; gap: 14px; font-weight: 500; color: var(--bbt-ink); }
.bbt-checklist__icon { display: grid; flex: none; place-items: center; width: 26px; height: 26px; margin-top: 1px; border-radius: 50%; background: var(--bbt-copper); color: #fff; }
.bbt-delivery .bbt-checklist { margin-top: 28px; }

.bbt-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 30px; }
.bbt-callbox { display: flex; align-items: center; gap: 14px; }
.bbt-callbox__icon { display: grid; place-items: center; width: 54px; height: 54px; border: 1.5px dashed var(--bbt-copper); border-radius: 50%; color: var(--bbt-copper); transition: background 0.3s, color 0.3s; }
.bbt-callbox:hover .bbt-callbox__icon { background: var(--bbt-copper); border-style: solid; color: #fff; }
.bbt-callbox small { display: block; font-size: 13px; color: var(--bbt-muted); }
.bbt-callbox strong { font-family: var(--bbt-font-head); font-size: 18px; font-weight: 600; color: var(--bbt-ink); }

/* Woods carousel --------------------------------------------------------- */
.bbt-woods { background: #fff; overflow: hidden; }
.bbt-woods::before {
	content: "";
	position: absolute;
	top: -240px;
	right: -240px;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: repeating-radial-gradient(circle, transparent 0 22px, rgba(165, 101, 46, 0.07) 22px 24px);
	pointer-events: none;
}

.bbt-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 3 * 24px) / 4);
	gap: 24px;
	margin: -12px -6px 0;
	padding: 12px 6px 28px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}
.bbt-carousel__track::-webkit-scrollbar { display: none; }
.bbt-carousel__track > * { scroll-snap-align: start; }
.bbt-carousel__progress { position: relative; height: 3px; margin-top: 12px; overflow: hidden; border-radius: 3px; background: var(--bbt-line); }
.bbt-carousel__progress span { display: block; width: 30%; height: 100%; border-radius: 3px; background: var(--bbt-copper); transition: transform 0.2s linear; }
.is-static .bbt-carousel__progress, .is-static .bbt-arrows { display: none; }

.bbt-arrows { display: flex; flex: none; gap: 10px; }
.bbt-arrow {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border: 1.5px solid var(--bbt-line);
	border-radius: 50%;
	background: #fff;
	color: var(--bbt-ink);
	transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
}
.bbt-arrow:hover:not(:disabled) { background: var(--bbt-ink); border-color: var(--bbt-ink); color: #fff; }
.bbt-arrow:disabled { opacity: 0.35; cursor: not-allowed; }

.bbt-wood-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 26px 28px;
	border: 1px solid var(--bbt-line);
	border-radius: var(--bbt-radius-lg);
	background: var(--bbt-cream);
	text-align: center;
	transition: transform 0.5s var(--bbt-ease), box-shadow 0.5s, background 0.5s, border-color 0.5s;
}
.bbt-wood-card:hover { transform: translateY(-8px); border-color: transparent; background: #fff; box-shadow: var(--bbt-shadow); }
.bbt-wood-card__img {
	width: 76%;
	aspect-ratio: 1;
	margin-bottom: 24px;
	overflow: hidden;
	border-radius: 50%;
	box-shadow: 0 0 0 8px #fff, 0 22px 40px -16px rgba(30, 25, 21, 0.55);
	transition: transform 1s var(--bbt-ease);
}
.bbt-wood-card__img img { width: 100%; height: 100%; object-fit: cover; }
.bbt-wood-card:hover .bbt-wood-card__img { transform: rotate(25deg) scale(1.04); }
.bbt-tag {
	display: inline-block;
	margin-bottom: 12px;
	padding: 5px 13px;
	border-radius: 999px;
	background: var(--bbt-copper-soft);
	color: var(--bbt-copper-dark);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.bbt-wood-card__title { margin-bottom: 8px; font-size: 22px; }
.bbt-wood-card__title a:hover { color: var(--bbt-copper); }
.bbt-wood-card p { flex: 1; margin-bottom: 18px; font-size: 14.5px; line-height: 1.65; color: var(--bbt-muted); }
.bbt-woods__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Features --------------------------------------------------------------- */
.bbt-features { overflow: hidden; }
.bbt-features::before {
	content: "";
	position: absolute;
	left: -300px;
	bottom: -300px;
	width: 760px;
	height: 760px;
	border-radius: 50%;
	background: repeating-radial-gradient(circle, transparent 0 26px, rgba(255, 255, 255, 0.035) 26px 28px);
	pointer-events: none;
}
.bbt-features__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(330px, auto); gap: 20px; }
.bbt-feature-img { position: relative; overflow: hidden; border-radius: var(--bbt-radius-lg); }
.bbt-feature-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--bbt-ease); }
.bbt-feature-img:hover img { transform: scale(1.08); }
.bbt-feature-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 36px 34px;
	overflow: hidden;
	border: 1px solid var(--bbt-line-dark);
	border-radius: var(--bbt-radius-lg);
	background: var(--bbt-ink-2);
	transition: transform 0.5s var(--bbt-ease), border-color 0.5s;
}
.bbt-feature-card:hover { transform: translateY(-6px); border-color: rgba(214, 157, 99, 0.5); }
.bbt-feature-card__top { display: flex; align-items: flex-start; justify-content: space-between; }
.bbt-feature-card__icon { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 20px; background: rgba(214, 157, 99, 0.14); color: var(--bbt-copper-light); transition: transform 0.5s var(--bbt-ease); }
.bbt-feature-card:hover .bbt-feature-card__icon { transform: rotate(-10deg) scale(1.05); }
.bbt-feature-card__num { font-family: var(--bbt-font-head); font-size: 60px; font-weight: 700; line-height: 0.9; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22); }
.bbt-feature-card h3 { margin-bottom: 10px; font-size: 25px; }
.bbt-feature-card p { margin: 0; font-size: 15px; color: rgba(255, 255, 255, 0.62); }
.bbt-feature-card--accent { border-color: transparent; background: var(--bbt-copper); }
.bbt-feature-card--accent:hover { border-color: transparent; }
.bbt-feature-card--accent .bbt-feature-card__icon { background: rgba(255, 255, 255, 0.16); color: #fff; }
.bbt-feature-card--accent .bbt-feature-card__num { -webkit-text-stroke-color: rgba(255, 255, 255, 0.45); }
.bbt-feature-card--accent p { color: rgba(255, 255, 255, 0.85); }

/* Responsibility --------------------------------------------------------- */
.bbt-resp__grid { display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: clamp(48px, 7vw, 100px); }
.bbt-resp__media { position: relative; isolation: isolate; padding: 0 34px 34px 0; }
.bbt-resp__media::before { content: ""; position: absolute; right: 0; bottom: 0; z-index: -1; width: 72%; height: 76%; border-radius: var(--bbt-radius-lg); background: var(--bbt-copper); }
.bbt-resp__img { aspect-ratio: 4 / 4.7; overflow: hidden; border-radius: var(--bbt-radius-lg); }
.bbt-resp__img img { width: 100%; height: 100%; object-fit: cover; }

.bbt-chip-float {
	position: absolute;
	left: -26px;
	bottom: 80px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 22px 16px 16px;
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--bbt-shadow);
	animation: bbtFloat 5s ease-in-out infinite;
}
.bbt-chip-float--right { left: auto; right: 28px; bottom: -30px; }
.bbt-chip-float__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--bbt-copper); color: #fff; }
.bbt-chip-float strong { display: block; font-family: var(--bbt-font-head); font-size: 19px; line-height: 1.2; color: var(--bbt-ink); }
.bbt-chip-float small { font-size: 13px; color: var(--bbt-muted); }
@keyframes bbtFloat { 50% { transform: translateY(-10px); } }

.bbt-counters {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	margin: 34px 0 38px;
	overflow: hidden;
	border: 1px solid var(--bbt-line);
	border-radius: var(--bbt-radius);
	background: var(--bbt-line);
}
.bbt-counter { padding: 24px 26px; background: var(--bbt-cream); transition: background 0.3s; }
.bbt-counter:hover { background: #fff; }
.bbt-counter__num { display: flex; align-items: baseline; font-family: var(--bbt-font-head); font-size: clamp(34px, 3.6vw, 46px); font-weight: 700; line-height: 1; color: var(--bbt-ink); }
.bbt-counter__num em { margin-left: 2px; font-style: normal; color: var(--bbt-copper); }
.bbt-counter__label { margin-top: 8px; font-size: 14px; color: var(--bbt-muted); }

/* Process ---------------------------------------------------------------- */
.bbt-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; list-style: none; }
.bbt-steps::before { content: ""; position: absolute; top: 46px; left: 12.5%; right: 12.5%; border-top: 2px dashed rgba(165, 101, 46, 0.35); }
.bbt-step { position: relative; padding: 0 10px; text-align: center; }
.bbt-step__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	margin: 0 auto 26px;
	border-radius: 50%;
	background: #fff;
	color: var(--bbt-copper);
	box-shadow: var(--bbt-shadow-sm);
	transition: background 0.4s, color 0.4s, transform 0.5s var(--bbt-ease);
}
.bbt-step:hover .bbt-step__icon { transform: translateY(-8px); background: var(--bbt-copper); color: #fff; }
.bbt-step__num {
	position: absolute;
	top: -4px;
	right: -6px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 3px solid var(--bbt-sand);
	border-radius: 50%;
	background: var(--bbt-ink);
	color: #fff;
	font-family: var(--bbt-font-head);
	font-size: 12.5px;
	font-weight: 600;
}
.bbt-step h3 { margin-bottom: 8px; font-size: 21px; }
.bbt-step p { margin: 0; font-size: 15px; color: var(--bbt-muted); }

/* Delivery --------------------------------------------------------------- */
.bbt-delivery__grid { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: clamp(48px, 6vw, 88px); }
.bbt-delivery__media { position: relative; }
.bbt-delivery__img { aspect-ratio: 16 / 11; overflow: hidden; border-radius: var(--bbt-radius-lg); box-shadow: var(--bbt-shadow); }
.bbt-delivery__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--bbt-ease); }
.bbt-delivery__media:hover img { transform: scale(1.05); }

/* Testimonials ----------------------------------------------------------- */
.bbt-trees-divider, .bbt-footer-trees { line-height: 0; color: var(--bbt-ink); margin-bottom: -1px; }
.bbt-treeline { display: block; width: 100%; height: clamp(70px, 9vw, 140px); }

.bbt-testimonials { position: relative; overflow: hidden; padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px); background: var(--bbt-ink); color: rgba(255, 255, 255, 0.7); }
.bbt-testimonials h2 { color: #fff; }
.bbt-testimonials h2 em { color: var(--bbt-copper-light); }
.bbt-testimonials__bg { position: absolute; inset: 0; opacity: 0.12; }
.bbt-testimonials__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.bbt-testimonials__watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--bbt-font-head);
	font-size: clamp(90px, 17vw, 260px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
	white-space: nowrap;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
	pointer-events: none;
}
.bbt-testimonials .bbt-container { position: relative; }

.bbt-rating { display: flex; align-items: center; gap: 14px; padding: 10px 22px 10px 12px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 999px; background: rgba(255, 255, 255, 0.05); }
.bbt-rating > strong { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--bbt-copper); color: #fff; font-family: var(--bbt-font-head); font-size: 20px; }
.bbt-rating small { display: block; font-size: 13px; color: rgba(255, 255, 255, 0.6); white-space: nowrap; }
.bbt-stars { display: inline-flex; gap: 3px; color: #f0b25a; }

.bbt-testimonials .bbt-arrow { border-color: rgba(255, 255, 255, 0.2); background: transparent; color: #fff; }
.bbt-testimonials .bbt-arrow:hover:not(:disabled) { border-color: var(--bbt-copper); background: var(--bbt-copper); }
.bbt-testimonials .bbt-carousel__progress { background: rgba(255, 255, 255, 0.12); }
.bbt-carousel__track--testi { grid-auto-columns: calc((100% - 2 * 24px) / 3); }

.bbt-testi-card {
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 34px 32px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--bbt-radius-lg);
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
	transition: border-color 0.4s, background 0.4s, transform 0.5s var(--bbt-ease);
}
.bbt-testi-card:hover { transform: translateY(-6px); border-color: rgba(214, 157, 99, 0.5); background: rgba(255, 255, 255, 0.07); }
.bbt-testi-card__top { display: flex; align-items: center; justify-content: space-between; }
.bbt-testi-card__quote { color: var(--bbt-copper); opacity: 0.7; }
.bbt-testi-card blockquote { flex: 1; margin: 0; font-size: 17px; line-height: 1.75; color: rgba(255, 255, 255, 0.86); }
.bbt-testi-card__author { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.bbt-testi-card__author strong { display: block; font-family: var(--bbt-font-head); font-size: 17px; font-weight: 600; color: #fff; }
.bbt-testi-card__author small { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); }
.bbt-avatar { display: grid; flex: none; place-items: center; width: 54px; height: 54px; overflow: hidden; border-radius: 50%; background: linear-gradient(135deg, var(--bbt-copper-light), var(--bbt-copper-dark)); color: #fff; font-family: var(--bbt-font-head); font-weight: 600; }
.bbt-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Blog cards ------------------------------------------------------------- */
.bbt-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bbt-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--bbt-line);
	border-radius: var(--bbt-radius-lg);
	background: #fff;
	transition: transform 0.5s var(--bbt-ease), box-shadow 0.5s;
}
.bbt-card:hover { transform: translateY(-8px); box-shadow: var(--bbt-shadow); }
.bbt-card__media { position: relative; display: block; aspect-ratio: 4 / 3; margin: 10px 10px 0; overflow: hidden; border-radius: calc(var(--bbt-radius-lg) - 8px); background: var(--bbt-sand); }
.bbt-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--bbt-ease); }
.bbt-card:hover .bbt-card__media img { transform: scale(1.08); }
.bbt-card__date { position: absolute; top: 14px; left: 14px; padding: 10px 13px 9px; border-radius: 14px; background: #fff; text-align: center; line-height: 1; box-shadow: var(--bbt-shadow-sm); }
.bbt-card__date strong { display: block; font-family: var(--bbt-font-head); font-size: 24px; color: var(--bbt-ink); }
.bbt-card__date span { display: block; margin-top: 3px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bbt-copper); }
.bbt-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px 26px 28px; }
.bbt-card__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 10px; font-size: 13px; color: var(--bbt-muted); }
.bbt-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.bbt-card__meta svg { color: var(--bbt-copper); }
.bbt-card__title { margin-bottom: 10px; font-size: 20px; line-height: 1.35; }
.bbt-card__title a { background: linear-gradient(currentColor, currentColor) 0 100% / 0 1.5px no-repeat; transition: background-size 0.5s var(--bbt-ease), color 0.3s; }
.bbt-card__title a:hover { color: var(--bbt-copper); background-size: 100% 1.5px; }
.bbt-card__excerpt { flex: 1; margin-bottom: 18px; font-size: 15px; color: var(--bbt-muted); }

/* CTA -------------------------------------------------------------------- */
.bbt-cta { padding-bottom: clamp(70px, 9vw, 110px); }
.bbt-cta__box {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: 1.5fr auto;
	align-items: center;
	gap: 32px 48px;
	padding: clamp(40px, 6vw, 78px);
	overflow: hidden;
	border-radius: 32px;
	color: #fff;
}
.bbt-cta__bg { position: absolute; inset: 0; z-index: -2; }
.bbt-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.bbt-cta__box::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(138, 82, 35, 0.97) 0%, rgba(165, 101, 46, 0.9) 48%, rgba(30, 25, 21, 0.55) 100%); }
.bbt-cta__box h2 { max-width: 640px; margin-bottom: 12px; color: #fff; font-size: clamp(28px, 3.6vw, 46px); }
.bbt-cta__box h2 em { color: #ffe1c2; }
.bbt-cta__box p { margin: 0; font-size: 18px; color: rgba(255, 255, 255, 0.85); }
.bbt-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.bbt-cta__call { display: inline-flex; align-items: center; gap: 10px; font-family: var(--bbt-font-head); font-size: 18px; font-weight: 600; }
.bbt-cta__call:hover { color: #ffe1c2; }

/* Footer ----------------------------------------------------------------- */
.bbt-footer { padding-top: 30px; background: var(--bbt-ink); color: rgba(255, 255, 255, 0.6); font-size: 15px; }
.bbt-footer__grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.bbt-footer .bbt-logo { margin-bottom: 22px; color: #fff; }
.bbt-footer__brand p { max-width: 340px; margin-bottom: 24px; }
.bbt-footer .bbt-social a { width: 40px; height: 40px; border-color: rgba(255, 255, 255, 0.14); }
.bbt-footer h3 { position: relative; margin-bottom: 24px; padding-bottom: 14px; color: #fff; font-size: 19px; }
.bbt-footer h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--bbt-copper); }
.bbt-footer__links { display: grid; gap: 11px; list-style: none; }
.bbt-footer__links a { display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s, transform 0.3s var(--bbt-ease); }
.bbt-footer__links a::before { content: ""; width: 6px; height: 6px; border: 1.5px solid var(--bbt-copper-light); border-radius: 50%; transition: background 0.3s; }
.bbt-footer__links a:hover { color: #fff; transform: translateX(4px); }
.bbt-footer__links a:hover::before { background: var(--bbt-copper-light); }
.bbt-footer__contact { display: grid; gap: 18px; list-style: none; }
.bbt-footer__contact li { display: flex; gap: 14px; line-height: 1.5; }
.bbt-footer__icon { display: grid; flex: none; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, 0.06); color: var(--bbt-copper-light); }
.bbt-footer__contact small { display: block; margin-bottom: 2px; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }
.bbt-footer__contact a { color: #fff; }
.bbt-footer__contact a:hover { color: var(--bbt-copper-light); }
.bbt-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 24px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 14px; }
.bbt-footer__bottom p { margin: 0; }

/* Floating buttons ------------------------------------------------------- */
.bbt-float { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bbt-totop {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--bbt-line);
	border-radius: 50%;
	background: #fff;
	color: var(--bbt-ink);
	box-shadow: var(--bbt-shadow-sm);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.35s, transform 0.35s var(--bbt-ease), visibility 0.35s, background 0.3s, color 0.3s;
}
.bbt-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.bbt-totop:hover { background: var(--bbt-copper); border-color: var(--bbt-copper); color: #fff; }
.bbt-whatsapp { position: relative; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.65); }
.bbt-whatsapp::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1; animation: bbtPulse 2.2s ease-out infinite; }
@keyframes bbtPulse { from { transform: scale(1); opacity: 0.6; } to { transform: scale(1.6); opacity: 0; } }

/* Inner pages ------------------------------------------------------------ */
.bbt-page-banner { position: relative; padding: clamp(180px, 20vw, 230px) 0 clamp(70px, 8vw, 100px); overflow: hidden; background: var(--bbt-ink); color: #fff; text-align: center; }
.bbt-page-banner__bg { position: absolute; inset: 0; opacity: 0.35; }
.bbt-page-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.bbt-page-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30, 25, 21, 0.6), rgba(30, 25, 21, 0.85)); }
.bbt-page-banner .bbt-container { position: relative; z-index: 1; }
.bbt-page-banner h1 { max-width: 900px; margin: 0 auto 20px; color: #fff; font-size: clamp(36px, 5vw, 62px); }
.bbt-breadcrumb { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; background: rgba(255, 255, 255, 0.06); font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.bbt-breadcrumb a:hover { color: var(--bbt-copper-light); }
.bbt-breadcrumb svg { color: var(--bbt-copper-light); }
.bbt-breadcrumb span { color: #fff; }

.bbt-entry { max-width: 860px; margin: 0 auto; }
.bbt-entry__meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 28px; font-size: 14.5px; color: var(--bbt-muted); }
.bbt-entry__meta span { display: inline-flex; align-items: center; gap: 8px; }
.bbt-entry__meta svg { color: var(--bbt-copper); }
.bbt-entry__thumb { margin-bottom: 40px; overflow: hidden; border-radius: var(--bbt-radius-lg); }
.bbt-content { font-size: 17px; }
.bbt-content > * + * { margin-top: 1.25em; }
.bbt-content h2 { margin-top: 1.8em; font-size: clamp(26px, 3vw, 34px); }
.bbt-content h3 { margin-top: 1.6em; font-size: 24px; }
.bbt-content a { color: var(--bbt-copper); text-decoration: underline; text-underline-offset: 3px; }
.bbt-content ul, .bbt-content ol { padding-left: 1.4em; }
.bbt-content img { border-radius: var(--bbt-radius); }
.bbt-content blockquote { margin-inline: 0; padding: 24px 30px; border-left: 4px solid var(--bbt-copper); border-radius: 0 var(--bbt-radius) var(--bbt-radius) 0; background: var(--bbt-sand); font-family: var(--bbt-font-head); font-size: 20px; color: var(--bbt-ink); }

.post-navigation { margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--bbt-line); }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 24px; }
.post-navigation a { display: flex; flex-direction: column; font-family: var(--bbt-font-head); font-weight: 600; color: var(--bbt-ink); }
.post-navigation .nav-next { text-align: right; }
.post-navigation small { font-family: var(--bbt-font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bbt-copper); }

.bbt-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 60px; }
.bbt-pagination .page-numbers { display: grid; place-items: center; min-width: 48px; height: 48px; padding: 0 12px; border: 1px solid var(--bbt-line); border-radius: 999px; background: #fff; font-family: var(--bbt-font-head); font-weight: 600; transition: background 0.3s, color 0.3s; }
.bbt-pagination .page-numbers.current, .bbt-pagination a.page-numbers:hover { border-color: var(--bbt-copper); background: var(--bbt-copper); color: #fff; }

.bbt-empty { max-width: 620px; margin: 0 auto; text-align: center; }
.bbt-empty__code { display: block; font-family: var(--bbt-font-head); font-size: clamp(90px, 16vw, 170px); font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--bbt-copper); }
.bbt-empty p { color: var(--bbt-muted); }
.search-form { display: flex; gap: 10px; margin-top: 24px; }
.search-form label { flex: 1; }
.search-field { width: 100%; height: 54px; padding: 0 20px; border: 1px solid var(--bbt-line); border-radius: 999px; background: #fff; font: inherit; }
.search-submit { height: 54px; padding: 0 26px; border: 0; border-radius: 999px; background: var(--bbt-copper); color: #fff; font-family: var(--bbt-font-head); font-weight: 600; }

/* Reveal on scroll ------------------------------------------------------- */
.bbt-js [data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--bbt-ease), transform 0.9s var(--bbt-ease); }
.bbt-js [data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s !important; }
[data-reveal-delay="2"] { transition-delay: 0.2s !important; }
[data-reveal-delay="3"] { transition-delay: 0.3s !important; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1200px) {
	.bbt-header__call, .bbt-topbar__hours { display: none; }
	.bbt-carousel__track { grid-auto-columns: calc((100% - 2 * 24px) / 3); }
	.bbt-menu a { padding-inline: 11px; font-size: 15px; }
	.bbt-header__inner { gap: 18px; }
}

@media (min-width: 993px) and (max-width: 1100px) {
	.bbt-menu a { padding-inline: 7px; font-size: 14.5px; }
	.bbt-logo__mark { width: 50px; height: 50px; }
	.bbt-logo__name { font-size: 20px; }
	.bbt-header__cta { padding-left: 18px; font-size: 14px; }
	.bbt-header__cta .bbt-btn__icon { width: 34px; height: 34px; }
}

@media (max-width: 992px) {
	.bbt-topbar { display: none; }
	.bbt-header__inner { min-height: 80px; }
	.bbt-header.is-stuck { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
	.bbt-header__cta { display: none; }
	.bbt-burger { display: block; }

	.bbt-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 60;
		display: flex;
		flex-direction: column;
		gap: 32px;
		width: min(380px, 88vw);
		margin: 0;
		padding: 100px 28px 36px;
		overflow-y: auto;
		background: var(--bbt-ink);
		color: #fff;
		visibility: hidden;
		transform: translateX(100%);
		transition: transform 0.5s var(--bbt-ease), visibility 0s 0.5s;
	}
	.bbt-nav-open .bbt-nav { visibility: visible; transform: none; transition: transform 0.5s var(--bbt-ease); }
	.admin-bar .bbt-nav { top: 46px; }
	.bbt-menu { flex-direction: column; gap: 0; }
	.bbt-menu a { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 19px; }
	.bbt-menu > li > a::after { display: none; }
	.bbt-header.is-stuck .bbt-menu > li:hover > a,
	.bbt-header.is-stuck .bbt-menu > .current-menu-item > a { color: var(--bbt-copper-light); }
	.bbt-menu .sub-menu { position: static; padding: 0 0 0 16px; background: transparent; color: inherit; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.bbt-menu .sub-menu a:hover { background: transparent; color: var(--bbt-copper-light); }
	.bbt-nav__extra { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
	.bbt-nav__contact { display: inline-flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.8); }
	.bbt-nav__contact svg { color: var(--bbt-copper-light); }
	body.bbt-nav-open { overflow: hidden; }

	.bbt-hero { padding-top: 140px; }
	.bbt-hero__inner { grid-template-columns: 1fr; gap: 48px; }
	.bbt-hero__card { justify-self: start; max-width: 520px; }
	.bbt-hero__services { grid-template-columns: 1fr; margin-top: 56px; }
	.bbt-service + .bbt-service { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
	.bbt-service { padding-inline: 0; }

	.bbt-about__grid, .bbt-resp__grid, .bbt-delivery__grid { grid-template-columns: 1fr; }
	.bbt-about__media, .bbt-resp__media { max-width: 600px; }
	.bbt-section-head--split { flex-direction: column; align-items: flex-start; }
	.bbt-section-head__side { max-width: none; width: 100%; justify-content: space-between; }

	.bbt-carousel__track, .bbt-carousel__track--testi { grid-auto-columns: calc((100% - 24px) / 2); }
	.bbt-features__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(300px, auto); }
	.bbt-steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
	.bbt-steps::before { display: none; }
	.bbt-blog__grid, .bbt-woods__grid { grid-template-columns: repeat(2, 1fr); }
	.bbt-cta__box { grid-template-columns: 1fr; }
	.bbt-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
	.admin-bar .bbt-masthead { top: 46px; }
	.admin-bar .bbt-header.is-stuck { top: 46px; }
}
@media (max-width: 600px) {
	.admin-bar .bbt-header.is-stuck { top: 0; }
}

@media (max-width: 640px) {
	.bbt-logo__mark { width: 48px; height: 48px; }
	.bbt-logo__name { font-size: 20px; }
	.bbt-logo__tag { font-size: 8.5px; letter-spacing: 0.14em; }
	.bbt-hero__card { display: none; }
	.bbt-hero__actions .bbt-btn { flex: 1 1 auto; justify-content: space-between; }
	.bbt-hero__stats { gap: 18px 28px; }
	.bbt-section-head__side { flex-direction: column; align-items: flex-start; gap: 20px; }

	.bbt-about__media { padding-left: 12px; padding-bottom: 60px; }
	.bbt-ring-badge { width: 124px; height: 124px; right: 0; }
	.bbt-ring-badge text { font-size: 10.5px; }
	.bbt-ring-badge__center { width: 66px; height: 66px; }
	.bbt-ring-badge__center strong { font-size: 22px; }

	.bbt-carousel__track, .bbt-carousel__track--testi { grid-auto-columns: 86%; gap: 16px; }
	.bbt-features__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
	.bbt-feature-img { aspect-ratio: 16 / 10; }
	.bbt-counter { padding: 20px; }
	.bbt-steps, .bbt-blog__grid, .bbt-woods__grid, .bbt-footer__grid { grid-template-columns: 1fr; }
	.bbt-chip-float { left: 8px; bottom: 40px; }
	.bbt-chip-float--right { left: auto; right: 12px; bottom: -24px; }
	.bbt-resp__media { padding: 0 18px 18px 0; }
	.bbt-rating { width: 100%; }
	.bbt-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	.bbt-js [data-reveal], .bbt-hero__anim { opacity: 1; transform: none; }
}

/* Carousel controls under the track (home woods) */
.bbt-carousel__bottom { display: flex; align-items: center; gap: 20px; margin-top: 18px; }
.bbt-carousel__bottom .bbt-carousel__progress { flex: 1; min-width: 0; margin-top: 0; }
.bbt-carousel__bottom .bbt-btn { flex: none; }
.is-static .bbt-carousel__bottom { display: none; }
@media (max-width: 640px) {
	.bbt-carousel__bottom { flex-wrap: wrap; }
	.bbt-carousel__bottom .bbt-carousel__progress { order: -1; flex-basis: 100%; }
	.bbt-carousel__bottom .bbt-btn { margin-left: auto; }
}


/* Uploaded / linked logo image — sits on a white tile so the dark artwork stays readable */
.bbt-logo--image { display: inline-flex; padding: 6px 12px; border-radius: 16px; background: #fff; box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.45); transition: padding 0.3s; }
.bbt-logo--image img { width: auto; max-height: 66px; transition: max-height 0.3s; }
.bbt-header.is-stuck .bbt-logo--image { box-shadow: none; }
.bbt-header.is-stuck .bbt-logo--image img { max-height: 56px; }
.bbt-footer .bbt-logo--image img { max-height: 78px; }
.bbt-ab-story__label .bbt-logo--image { padding: 4px 8px; border-radius: 12px; }
.bbt-ab-story__label .bbt-logo--image img { max-height: 46px; }
@media (max-width: 640px) {
	.bbt-logo--image { padding: 5px 9px; border-radius: 13px; }
	.bbt-logo--image img { max-height: 48px; }
	.bbt-footer .bbt-logo--image img { max-height: 64px; }
}
