/* ==========================================================================
   BB Timber — About page template
   ========================================================================== */

/* Hero ------------------------------------------------------------------- */
.bbt-ab-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(660px, 100svh, 820px);
	padding: clamp(170px, 16vw, 200px) 0 clamp(80px, 8vw, 110px);
	overflow: hidden;
	background: var(--bbt-ink);
	color: #fff;
}
.bbt-ab-hero::before {
	content: "";
	position: absolute;
	left: -300px;
	bottom: -340px;
	width: 780px;
	height: 780px;
	border-radius: 50%;
	background: repeating-radial-gradient(circle, transparent 0 24px, rgba(214, 157, 99, 0.08) 24px 26px);
	pointer-events: none;
}
.bbt-ab-hero__inner { position: relative; z-index: 2; }
.bbt-ab-hero__content { max-width: 50%; padding-right: 48px; }
.bbt-ab-hero .bbt-breadcrumb { display: flex; width: max-content; margin-bottom: 30px; }
.bbt-ab-hero .bbt-eyebrow { color: var(--bbt-copper-light); }
.bbt-ab-hero__title {
	margin-bottom: 24px;
	color: #fff;
	font-size: clamp(42px, 5.4vw, 76px);
	line-height: 1.03;
	letter-spacing: -0.03em;
}
.bbt-ab-hero__title em { color: var(--bbt-copper-light); }
.bbt-ab-hero__text { max-width: 560px; margin-bottom: 40px; font-size: clamp(16px, 1.3vw, 18px); color: rgba(255, 255, 255, 0.72); }
.bbt-ab-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; }
.bbt-ab-hero__content > .bbt-hero__anim:nth-child(2) { animation-delay: 0.08s; }
.bbt-ab-hero__content > .bbt-hero__anim:nth-child(3) { animation-delay: 0.16s; }
.bbt-ab-hero__content > .bbt-hero__anim:nth-child(4) { animation-delay: 0.24s; }
.bbt-ab-hero__content > .bbt-hero__anim:nth-child(5) { animation-delay: 0.32s; }

.bbt-callbox--light small { color: rgba(255, 255, 255, 0.6); }
.bbt-callbox--light strong { color: #fff; }
.bbt-callbox--light .bbt-callbox__icon { border-color: var(--bbt-copper-light); color: var(--bbt-copper-light); }

.bbt-ab-hero__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 47%;
	overflow: hidden;
	border-bottom-left-radius: 160px;
}
.bbt-ab-hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); animation: bbtHeroZoom 16s ease-out forwards; }
.bbt-ab-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(22, 17, 13, 0.85) 0%, rgba(22, 17, 13, 0) 34%),
		linear-gradient(90deg, rgba(22, 17, 13, 0.4) 0%, rgba(22, 17, 13, 0) 45%);
}
.bbt-ab-hero__badge {
	position: absolute;
	z-index: 2;
	left: 56px;
	bottom: 48px;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 26px 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 20px;
	background: rgba(30, 25, 21, 0.55);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	animation: bbtFloat 5s ease-in-out infinite;
}
.bbt-ab-hero__badge strong { font-family: var(--bbt-font-head); font-size: 44px; font-weight: 700; line-height: 1; color: var(--bbt-copper-light); }
.bbt-ab-hero__badge span { max-width: 150px; font-size: 14px; line-height: 1.4; color: rgba(255, 255, 255, 0.8); }

/* Story ------------------------------------------------------------------ */
.bbt-ab-story { padding-bottom: clamp(60px, 7vw, 90px); }
.bbt-ab-story__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(48px, 7vw, 96px); }
.bbt-ab-story__subtitle { display: flex; align-items: center; gap: 14px; margin: 30px 0 14px; font-size: 22px; }
.bbt-ab-story__subtitle-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--bbt-copper-soft); color: var(--bbt-copper); }
.bbt-ab-story__text p { color: var(--bbt-muted); }
.bbt-ab-story .bbt-checklist { margin: 28px 0 0; }

.bbt-ab-story__media { position: relative; isolation: isolate; padding: 28px 28px 0 0; }
.bbt-ab-story__media::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 62%;
	height: 72%;
	border-radius: var(--bbt-radius-lg);
	background: repeating-linear-gradient(45deg, rgba(165, 101, 46, 0.22) 0 2px, transparent 2px 13px);
}
.bbt-ab-story__img { position: relative; aspect-ratio: 4 / 4.6; overflow: hidden; border-radius: var(--bbt-radius-lg); box-shadow: var(--bbt-shadow); }
.bbt-ab-story__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--bbt-ease); }
.bbt-ab-story__img:hover img { transform: scale(1.05); }
.bbt-ab-story__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22, 17, 13, 0.85) 0%, rgba(22, 17, 13, 0) 45%); pointer-events: none; }
.bbt-ab-story__label {
	position: absolute;
	left: 26px;
	right: 26px;
	bottom: 24px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: #fff;
}
.bbt-ab-story__label .bbt-logo__mark { width: 50px; height: 50px; }
.bbt-ab-story__label .bbt-logo__name { font-size: 20px; }
.bbt-ab-story__watch { padding: 8px 16px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 999px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); font-family: var(--bbt-font-head); font-size: 14px; font-weight: 500; }

.bbt-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 96px;
	height: 96px;
	padding: 0 0 0 5px;
	border: 0;
	border-radius: 50%;
	background: var(--bbt-copper);
	color: #fff;
	box-shadow: 0 20px 40px -12px rgba(165, 101, 46, 0.8);
	transform: translate(-50%, -50%);
	transition: transform 0.4s var(--bbt-ease), background 0.3s;
}
.bbt-play::before,
.bbt-play::after { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 50%; background: var(--bbt-copper); animation: bbtPulse 2.4s ease-out infinite; }
.bbt-play::after { animation-delay: 1.2s; }
.bbt-play:hover { background: var(--bbt-copper-dark); transform: translate(-50%, -50%) scale(1.08); }

/* Video modal */
.bbt-modal { width: min(1040px, 92vw); max-width: none; padding: 0; overflow: visible; border: 0; background: transparent; }
.bbt-modal::backdrop { background: rgba(10, 8, 6, 0.86); backdrop-filter: blur(4px); }
.bbt-modal[open] { animation: bbtFadeUp 0.45s var(--bbt-ease); }
.bbt-modal__frame { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 18px; background: #000; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8); }
.bbt-modal__frame iframe, .bbt-modal__frame video { display: block; width: 100%; height: 100%; border: 0; }
.bbt-modal__close {
	position: absolute;
	top: -58px;
	right: 0;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	transition: background 0.3s, transform 0.4s var(--bbt-ease);
}
.bbt-modal__close:hover { background: var(--bbt-copper); border-color: var(--bbt-copper); transform: rotate(90deg); }

/* Quote ------------------------------------------------------------------ */
.bbt-ab-quote { padding-bottom: clamp(76px, 10vw, 130px); }
.bbt-quote-card {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 28px 48px;
	padding: clamp(36px, 5vw, 64px) clamp(28px, 5.5vw, 76px) calc(clamp(36px, 5vw, 64px) + 18px);
	overflow: hidden;
	border-radius: var(--bbt-radius-lg);
	background: var(--bbt-ink);
	color: #fff;
	box-shadow: var(--bbt-shadow);
}
.bbt-quote-card::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 6px; background: var(--bbt-copper); }
.bbt-quote-card::after {
	content: "";
	position: absolute;
	top: -180px;
	right: -140px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(214, 157, 99, 0.22), transparent 65%);
	pointer-events: none;
}
.bbt-quote-card > * { position: relative; z-index: 1; }
.bbt-quote-card__icon { display: grid; place-items: center; width: 88px; height: 88px; border-radius: 24px; background: var(--bbt-copper); color: #fff; }
.bbt-quote-card blockquote {
	margin: 0 0 30px;
	font-family: var(--bbt-font-head);
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.01em;
	color: #fff;
}
.bbt-quote-card__author { display: flex; align-items: center; gap: 14px; }
.bbt-quote-card__author strong { display: block; font-family: var(--bbt-font-head); font-size: 18px; font-weight: 600; }
.bbt-quote-card__author small { font-size: 14px; color: rgba(255, 255, 255, 0.58); }
.bbt-quote-card__ruler {
	position: absolute !important;
	left: 6px;
	right: 0;
	bottom: 0;
	height: 18px;
	background:
		repeating-linear-gradient(90deg, rgba(214, 157, 99, 0.7) 0 1px, transparent 1px 100px) left bottom / 100% 18px no-repeat,
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 50px) left bottom / 100% 12px no-repeat,
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 10px) left bottom / 100% 7px no-repeat;
}

/* Values ----------------------------------------------------------------- */
.bbt-ab-values { background: #fff; }
.bbt-ab-values__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: clamp(48px, 7vw, 100px); }
.bbt-ab-values__media { position: relative; padding-right: 28px; }
.bbt-ab-values__img { aspect-ratio: 4 / 4.9; overflow: hidden; border-radius: var(--bbt-radius-lg); }
.bbt-ab-values__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--bbt-ease); }
.bbt-ab-values__media:hover img { transform: scale(1.05); }
.bbt-ab-values__count {
	position: absolute;
	right: 0;
	bottom: 56px;
	max-width: 190px;
	padding: 24px 26px;
	border-radius: 20px;
	background: var(--bbt-copper);
	color: #fff;
	box-shadow: 0 24px 50px -20px rgba(165, 101, 46, 0.9);
	animation: bbtFloat 5s ease-in-out infinite;
}
.bbt-ab-values__count strong { display: block; font-family: var(--bbt-font-head); font-size: 52px; font-weight: 700; line-height: 1; }
.bbt-ab-values__count span { display: block; margin-top: 6px; font-size: 14px; line-height: 1.4; color: rgba(255, 255, 255, 0.88); }

.bbt-acc { display: grid; gap: 14px; margin-top: 34px; }
.bbt-acc__item { border: 1px solid var(--bbt-line); border-radius: 18px; background: var(--bbt-cream); transition: background 0.35s, border-color 0.35s, box-shadow 0.35s; }
.bbt-acc__item:hover { border-color: rgba(165, 101, 46, 0.4); }
.bbt-acc__item[open] { border-color: transparent; background: #fff; box-shadow: var(--bbt-shadow-sm); }
.bbt-acc__item summary {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 16px 20px;
	border-radius: 18px;
	font-family: var(--bbt-font-head);
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 600;
	color: var(--bbt-ink);
	list-style: none;
	cursor: pointer;
}
.bbt-acc__item summary::-webkit-details-marker { display: none; }
.bbt-acc__icon { display: grid; flex: none; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--bbt-copper-soft); color: var(--bbt-copper); transition: background 0.35s, color 0.35s; }
.bbt-acc__item[open] .bbt-acc__icon { background: var(--bbt-copper); color: #fff; }
.bbt-acc__title { flex: 1; }
.bbt-acc__plus { position: relative; flex: none; width: 36px; height: 36px; border: 1.5px solid var(--bbt-line); border-radius: 50%; color: var(--bbt-ink); transition: transform 0.45s var(--bbt-ease), background 0.3s, border-color 0.3s, color 0.3s; }
.bbt-acc__plus::before, .bbt-acc__plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); }
.bbt-acc__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.bbt-acc__item[open] .bbt-acc__plus { border-color: var(--bbt-ink); background: var(--bbt-ink); color: #fff; transform: rotate(45deg); }
.bbt-acc__body { padding: 0 24px 22px 88px; color: var(--bbt-muted); }
.bbt-acc__body p { margin: 0; }
.bbt-acc__item[open] .bbt-acc__body { animation: bbtAccIn 0.45s var(--bbt-ease); }
@keyframes bbtAccIn { from { opacity: 0; transform: translateY(-8px); } }

/* Highlights ------------------------------------------------------------- */
.bbt-ab-high { overflow: hidden; }
.bbt-ab-high::before {
	content: "";
	position: absolute;
	top: -320px;
	right: -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-hl-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.bbt-hl {
	position: relative;
	padding: 38px 34px 40px;
	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-hl::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--bbt-copper-light); transition: width 0.6s var(--bbt-ease); }
.bbt-hl:hover { transform: translateY(-6px); border-color: rgba(214, 157, 99, 0.45); }
.bbt-hl:hover::before { width: 100%; }
.bbt-hl__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 36px; }
.bbt-hl__icon { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 20px; background: rgba(214, 157, 99, 0.14); color: var(--bbt-copper-light); transition: background 0.4s, color 0.4s, transform 0.5s var(--bbt-ease); }
.bbt-hl:hover .bbt-hl__icon { background: var(--bbt-copper); color: #fff; transform: rotate(-10deg); }
.bbt-hl__num { font-family: var(--bbt-font-head); font-size: 58px; font-weight: 700; line-height: 0.9; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22); }
.bbt-hl h3 { margin-bottom: 10px; font-size: 24px; }
.bbt-hl p { margin: 0; font-size: 15px; color: rgba(255, 255, 255, 0.62); }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
	.bbt-ab-hero { display: block; min-height: 0; padding-bottom: 64px; }
	.bbt-ab-hero__content { max-width: 680px; padding-right: 0; }
	.bbt-ab-hero__media {
		position: relative;
		width: auto;
		height: clamp(300px, 55vw, 440px);
		margin: 56px clamp(18px, 4vw, 32px) 0;
		border-radius: var(--bbt-radius-lg);
	}
	.bbt-ab-hero__media::after { background: linear-gradient(0deg, rgba(22, 17, 13, 0.55) 0%, rgba(22, 17, 13, 0) 50%); }
	.bbt-ab-hero__badge { left: 20px; bottom: 20px; }

	.bbt-ab-story__grid, .bbt-ab-values__grid { grid-template-columns: 1fr; }
	.bbt-ab-story__media, .bbt-ab-values__media { max-width: 620px; }
	.bbt-ab-values__media { order: 2; }

}

@media (max-width: 640px) {
	.bbt-ab-hero__actions .bbt-btn { flex: 1 1 auto; justify-content: space-between; }
	.bbt-ab-hero__badge { padding: 14px 18px 14px 16px; }
	.bbt-ab-hero__badge strong { font-size: 34px; }

	.bbt-ab-story__media { padding: 18px 18px 0 0; }
	.bbt-play { width: 76px; height: 76px; }

	.bbt-quote-card { grid-template-columns: 1fr; }
	.bbt-quote-card__icon { width: 64px; height: 64px; border-radius: 18px; }
	.bbt-quote-card__icon svg { width: 30px; height: 30px; }

	.bbt-ab-values__media { padding-right: 14px; }
	.bbt-ab-values__count { bottom: 24px; padding: 18px 20px; }
	.bbt-ab-values__count strong { font-size: 40px; }
	.bbt-acc__item summary { gap: 14px; padding: 14px 16px; }
	.bbt-acc__icon { width: 42px; height: 42px; }
	.bbt-acc__body { padding: 0 18px 20px; }


}

/* ==========================================================================
   BB Timber — Contact page template (loads after about.css for the hero/accordion)
   ========================================================================== */

/* Hero ------------------------------------------------------------------- */
.bbt-ct-hero { min-height: clamp(620px, 92svh, 760px); }
.bbt-ct-hero .bbt-ab-hero__badge strong { font-size: 38px; }

/* Quick cards ------------------------------------------------------------ */
.bbt-ct-cards { position: relative; padding-top: clamp(60px, 7vw, 90px); }
.bbt-ct-cards__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bbt-ct-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 28px 26px 26px;
	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, background 0.45s, border-color 0.45s;
}
.bbt-ct-card::before {
	content: "";
	position: absolute;
	right: -60px;
	bottom: -60px;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: repeating-radial-gradient(circle, transparent 0 10px, rgba(165, 101, 46, 0.1) 10px 11px);
	transition: transform 0.8s var(--bbt-ease);
	pointer-events: none;
}
.bbt-ct-card:hover { transform: translateY(-8px); border-color: transparent; background: var(--bbt-ink); box-shadow: var(--bbt-shadow); }
.bbt-ct-card:hover::before { transform: scale(1.4) rotate(40deg); }
.bbt-ct-card__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 22px;
	border-radius: 18px;
	background: var(--bbt-copper-soft);
	color: var(--bbt-copper);
	transition: background 0.4s, color 0.4s, transform 0.5s var(--bbt-ease);
}
.bbt-ct-card--whatsapp .bbt-ct-card__icon { background: #e3f7ea; color: #1faa55; }
.bbt-ct-card:hover .bbt-ct-card__icon { background: var(--bbt-copper); color: #fff; transform: rotate(-8deg); }
.bbt-ct-card--whatsapp:hover .bbt-ct-card__icon { background: #25d366; }
.bbt-ct-card__label { margin-bottom: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bbt-copper); transition: color 0.4s; }
.bbt-ct-card__value {
	margin-bottom: 8px;
	font-family: var(--bbt-font-head);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--bbt-ink);
	overflow-wrap: anywhere;
	transition: color 0.4s;
}
.bbt-ct-card__text { flex: 1; font-size: 14px; color: var(--bbt-muted); transition: color 0.4s; }
.bbt-ct-card__arrow {
	position: absolute;
	top: 26px;
	right: 24px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1.5px solid var(--bbt-line);
	border-radius: 50%;
	color: var(--bbt-ink);
	transition: transform 0.45s var(--bbt-ease), border-color 0.4s, background 0.4s, color 0.4s;
}
.bbt-ct-card:hover .bbt-ct-card__label { color: var(--bbt-copper-light); }
.bbt-ct-card:hover .bbt-ct-card__value { color: #fff; }
.bbt-ct-card:hover .bbt-ct-card__text { color: rgba(255, 255, 255, 0.6); }
.bbt-ct-card:hover .bbt-ct-card__arrow { border-color: var(--bbt-copper); background: var(--bbt-copper); color: #fff; transform: rotate(45deg); }

/* Form + side panel ------------------------------------------------------ */
.bbt-ct-main__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; gap: 28px; }

.bbt-ct-form-card {
	padding: clamp(28px, 4.4vw, 56px);
	border: 1px solid var(--bbt-line);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 30px 70px -40px rgba(30, 25, 21, 0.35);
}
.bbt-ct-form-card .bbt-title { font-size: clamp(30px, 3.4vw, 44px); }
.bbt-ct-form-card .bbt-lead { margin-bottom: 30px; }

.bbt-notice { display: flex; gap: 16px; margin-bottom: 28px; padding: 18px 20px; border-radius: 16px; animation: bbtFadeUp 0.6s var(--bbt-ease); outline: 0; }
.bbt-notice strong { display: block; font-family: var(--bbt-font-head); font-size: 17px; color: var(--bbt-ink); }
.bbt-notice p { margin: 2px 0 0; font-size: 15px; }
.bbt-notice__icon { display: grid; flex: none; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; }
.bbt-notice--success { border: 1px solid #bfe5cc; background: #eef9f2; color: #2c5e3d; }
.bbt-notice--success .bbt-notice__icon { background: #2f9e5a; }
.bbt-notice--error { border: 1px solid #f1c7bd; background: #fdf1ee; color: #8a3a2a; }
.bbt-notice--error .bbt-notice__icon { background: #c2533b; }

.bbt-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bbt-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.bbt-field { min-width: 0; margin: 0; padding: 0; border: 0; }
.bbt-field--full { grid-column: 1 / -1; }
.bbt-field__label { display: block; margin-bottom: 8px; padding: 0; font-family: var(--bbt-font-head); font-size: 15px; font-weight: 600; color: var(--bbt-ink); }
.bbt-field__label em { font-style: normal; color: var(--bbt-copper); }

.bbt-field__control { position: relative; display: block; }
.bbt-field__control > svg { position: absolute; top: 50%; left: 18px; color: #a79b90; transform: translateY(-50%); pointer-events: none; transition: color 0.3s; }
.bbt-field__control--area > svg { display: none; }
.bbt-field input,
.bbt-field textarea {
	width: 100%;
	height: 56px;
	padding: 0 18px 0 48px;
	border: 1.5px solid var(--bbt-line);
	border-radius: 14px;
	background: var(--bbt-cream);
	font: inherit;
	font-size: 15.5px;
	color: var(--bbt-ink);
	transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.bbt-field textarea { height: auto; min-height: 150px; padding: 16px 18px; resize: vertical; line-height: 1.6; }
.bbt-field input::placeholder, .bbt-field textarea::placeholder { color: #b0a59b; }
.bbt-field input:hover, .bbt-field textarea:hover { border-color: #d8c9b8; }
.bbt-field input:focus, .bbt-field textarea:focus { border-color: var(--bbt-copper); background: #fff; outline: 0; box-shadow: 0 0 0 4px rgba(165, 101, 46, 0.14); }
.bbt-field__control:focus-within > svg { color: var(--bbt-copper); }
.bbt-field [aria-invalid="true"] { border-color: #c2533b; background: #fffaf8; }
.bbt-field__error { display: block; margin-top: 6px; font-size: 13.5px; color: #b2432c; }

.bbt-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.bbt-pill { position: relative; cursor: pointer; }
.bbt-pill input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.bbt-pill span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1.5px solid var(--bbt-line);
	border-radius: 999px;
	background: var(--bbt-cream);
	font-size: 14.5px;
	font-weight: 500;
	color: var(--bbt-text);
	transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s var(--bbt-ease);
}
.bbt-pill span::before { content: ""; width: 8px; height: 8px; border: 1.5px solid currentColor; border-radius: 50%; opacity: 0.5; transition: background 0.3s, opacity 0.3s; }
.bbt-pill:hover span { border-color: var(--bbt-copper); transform: translateY(-2px); }
.bbt-pill input:checked + span { border-color: var(--bbt-copper); background: var(--bbt-copper); color: #fff; }
.bbt-pill input:checked + span::before { background: #fff; border-color: #fff; opacity: 1; }
.bbt-pill input:focus-visible + span { outline: 2px solid var(--bbt-copper); outline-offset: 3px; }

.bbt-form__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; margin-top: 4px; }
.bbt-form__note { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 13.5px; color: var(--bbt-muted); }
.bbt-form__note svg { flex: none; color: var(--bbt-copper); }
.bbt-form__submit { border: 0; cursor: pointer; }
.bbt-form__submit.is-loading { pointer-events: none; opacity: 0.8; }
.bbt-form__submit.is-loading .bbt-btn__icon svg { animation: bbtSpin 0.9s linear infinite; }

/* Side panel */
.bbt-ct-side {
	position: sticky;
	top: 100px;
	padding: clamp(28px, 3.4vw, 42px);
	overflow: hidden;
	border-radius: 28px;
	background: var(--bbt-ink);
	color: rgba(255, 255, 255, 0.7);
	isolation: isolate;
}
.bbt-ct-side::before {
	content: "";
	position: absolute;
	top: -140px;
	right: -140px;
	z-index: -1;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: repeating-radial-gradient(circle, transparent 0 18px, rgba(214, 157, 99, 0.09) 18px 20px);
}
.bbt-ct-side__title { margin-bottom: 18px; color: #fff; font-size: clamp(24px, 2.2vw, 30px); }
.bbt-ct-side__address { display: flex; gap: 12px; margin-bottom: 28px; font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.82); }
.bbt-ct-side__address svg { flex: none; margin-top: 2px; color: var(--bbt-copper-light); }

.bbt-ct-hours { margin-bottom: 22px; padding: 20px 22px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px; background: rgba(255, 255, 255, 0.04); }
.bbt-ct-hours h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #fff; font-size: 16px; }
.bbt-ct-hours h4 svg { color: var(--bbt-copper-light); }
.bbt-ct-hours ul { list-style: none; }
.bbt-ct-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px dashed rgba(255, 255, 255, 0.12); font-size: 14.5px; }
.bbt-ct-hours li strong { font-weight: 600; color: #fff; text-align: right; white-space: nowrap; }
.bbt-ct-hours li.is-closed strong { color: #e79a83; }

.bbt-ct-side__reply { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; font-size: 14.5px; color: rgba(255, 255, 255, 0.8); }
.bbt-ct-side__dot { position: relative; flex: none; width: 10px; height: 10px; border-radius: 50%; background: #3ccf73; }
.bbt-ct-side__dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #3ccf73; animation: bbtPulse 2s ease-out infinite; }

.bbt-ct-side__actions { display: grid; gap: 12px; margin-bottom: 26px; }
.bbt-ct-side__wa,
.bbt-ct-side__call {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 56px;
	border-radius: 999px;
	font-family: var(--bbt-font-head);
	font-size: 16px;
	font-weight: 600;
	transition: background 0.3s, transform 0.35s var(--bbt-ease), border-color 0.3s;
}
.bbt-ct-side__wa { background: #25d366; color: #fff; box-shadow: 0 16px 30px -16px rgba(37, 211, 102, 0.8); }
.bbt-ct-side__wa:hover { background: #1fb858; transform: translateY(-2px); }
.bbt-ct-side__call { border: 1.5px solid rgba(255, 255, 255, 0.2); color: #fff; }
.bbt-ct-side__call:hover { border-color: var(--bbt-copper); background: var(--bbt-copper); transform: translateY(-2px); }

.bbt-ct-side__social { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 14px; }
.bbt-ct-side .bbt-social a { width: 40px; height: 40px; border-color: rgba(255, 255, 255, 0.16); }

/* Map -------------------------------------------------------------------- */
.bbt-ct-map { padding-bottom: clamp(76px, 10vw, 130px); }
.bbt-ct-map__box { position: relative; height: clamp(380px, 42vw, 520px); overflow: hidden; border-radius: 32px; background: var(--bbt-sand); box-shadow: var(--bbt-shadow); }
.bbt-ct-map__box iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(0.25) sepia(0.12); }
.bbt-ct-map__card {
	position: absolute;
	left: 28px;
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: min(560px, calc(100% - 56px));
	padding: 18px 18px 18px 20px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: var(--bbt-shadow);
}
.bbt-ct-map__mark { flex: none; width: 56px; height: 56px; }
.bbt-ct-map__card strong { display: block; font-family: var(--bbt-font-head); font-size: 17px; letter-spacing: 0.04em; color: var(--bbt-ink); }
.bbt-ct-map__card p { margin: 2px 0 0; font-size: 14px; line-height: 1.5; color: var(--bbt-muted); }
.bbt-ct-map__btn { flex: none; margin-left: auto; padding-left: 20px; font-size: 14.5px; }
.bbt-ct-map__btn .bbt-btn__icon { width: 38px; height: 38px; }

/* FAQ -------------------------------------------------------------------- */
.bbt-ct-faq__grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: start; gap: clamp(40px, 6vw, 90px); }
.bbt-ct-faq__head { position: sticky; top: 110px; }
.bbt-ct-faq__head .bbt-lead { margin-bottom: 30px; }
.bbt-ct-faq__list { margin-top: 0; }
.bbt-ct-faq .bbt-acc__item { background: rgba(255, 255, 255, 0.55); }
.bbt-ct-faq .bbt-acc__item[open] { background: #fff; }
.bbt-acc__icon--num { font-family: var(--bbt-font-head); font-size: 16px; font-weight: 700; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1200px) {
	.bbt-ct-cards__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
	.bbt-ct-main__grid, .bbt-ct-faq__grid { grid-template-columns: 1fr; }
	.bbt-ct-side, .bbt-ct-faq__head { position: static; }
}

@media (max-width: 640px) {
	.bbt-ct-cards__grid { grid-template-columns: 1fr; gap: 14px; }
	.bbt-ct-card { padding: 22px 20px; }
	.bbt-ct-card__icon { width: 50px; height: 50px; margin-bottom: 16px; }

	.bbt-form { grid-template-columns: 1fr; gap: 18px; }
	.bbt-form__submit { width: 100%; justify-content: space-between; }
	.bbt-pill span { padding: 9px 14px; font-size: 14px; }

	.bbt-ct-map__box { height: auto; border-radius: 24px; }
	.bbt-ct-map__box iframe { height: 320px; }
	.bbt-ct-map__card { position: static; flex-wrap: wrap; max-width: none; border-radius: 0; box-shadow: none; }
	.bbt-ct-map__btn { width: 100%; margin-left: 0; justify-content: space-between; }
}

/* ==========================================================================
   Services page template
   ========================================================================== */

/* Hero quick links */
.bbt-sv-hero .bbt-ab-hero__content { max-width: 52%; }
.bbt-sv-hero .bbt-ab-hero__content > .bbt-hero__anim:nth-child(6) { animation-delay: 0.4s; }
.bbt-sv-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.1); list-style: none; }
.bbt-sv-jump a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 15px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	font-size: 13.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s var(--bbt-ease);
}
.bbt-sv-jump svg { color: var(--bbt-copper-light); transition: color 0.3s; }
.bbt-sv-jump a:hover { border-color: var(--bbt-copper); background: var(--bbt-copper); color: #fff; transform: translateY(-2px); }
.bbt-sv-jump a:hover svg { color: #fff; }

/* Cards */
.bbt-sv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bbt-sv-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--bbt-line);
	border-radius: 28px;
	background: #fff;
	scroll-margin-top: 110px;
	transition: transform 0.5s var(--bbt-ease), box-shadow 0.5s, border-color 0.5s;
}
.bbt-sv-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--bbt-shadow); }
.bbt-sv-card:target { border-color: var(--bbt-copper); box-shadow: 0 0 0 4px rgba(165, 101, 46, 0.18), var(--bbt-shadow); }
.bbt-sv-card__media { position: relative; aspect-ratio: 4 / 3; margin: 10px 10px 0; overflow: hidden; border-radius: 20px; background: var(--bbt-sand); }
.bbt-sv-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--bbt-ease); }
.bbt-sv-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22, 17, 13, 0.45) 0%, rgba(22, 17, 13, 0) 40%); }
.bbt-sv-card:hover .bbt-sv-card__media img { transform: scale(1.08); }
.bbt-sv-card__num {
	position: absolute;
	top: 12px;
	right: 18px;
	z-index: 1;
	font-family: var(--bbt-font-head);
	font-size: 46px;
	font-weight: 700;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.9);
}
.bbt-sv-card__icon {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 70px;
	height: 70px;
	margin: -36px 0 0 28px;
	border: 5px solid #fff;
	border-radius: 22px;
	background: var(--bbt-copper);
	color: #fff;
	transition: background 0.4s, transform 0.5s var(--bbt-ease);
}
.bbt-sv-card:hover .bbt-sv-card__icon { background: var(--bbt-ink); transform: rotate(-8deg); }
.bbt-sv-card__body { display: flex; flex: 1; flex-direction: column; padding: 18px 28px 26px; }
.bbt-sv-card__title { margin-bottom: 10px; font-size: 23px; }
.bbt-sv-card__title a:hover { color: var(--bbt-copper); }
.bbt-sv-card__body > p { margin-bottom: 18px; font-size: 15px; color: var(--bbt-muted); }
.bbt-sv-card__points { display: grid; gap: 9px; margin-bottom: 24px; list-style: none; }
.bbt-sv-card__points li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--bbt-ink); }
.bbt-sv-card__points svg { flex: none; width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--bbt-copper-soft); color: var(--bbt-copper); }
.bbt-sv-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px dashed var(--bbt-line); }
.bbt-sv-card__more { display: grid; place-items: center; width: 42px; height: 42px; border: 1.5px solid var(--bbt-line); border-radius: 50%; color: var(--bbt-ink); transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s var(--bbt-ease); }
.bbt-sv-card__more:hover { border-color: var(--bbt-copper); background: var(--bbt-copper); color: #fff; transform: rotate(45deg); }

/* "Something else" card */
.bbt-sv-custom {
	position: relative;
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px 32px;
	padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
	overflow: hidden;
	border-radius: 28px;
	background: var(--bbt-copper);
	color: rgba(255, 255, 255, 0.86);
	isolation: isolate;
}
.bbt-sv-custom::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	z-index: -1;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: repeating-radial-gradient(circle, transparent 0 18px, rgba(255, 255, 255, 0.12) 18px 20px);
	transition: transform 1s var(--bbt-ease);
}
.bbt-sv-custom:hover::before { transform: rotate(60deg) scale(1.1); }
.bbt-sv-custom__icon { display: grid; grid-row: span 2; place-items: center; width: 76px; height: 76px; border-radius: 22px; background: rgba(255, 255, 255, 0.16); color: #fff; }
.bbt-sv-custom h3 { align-self: end; margin: 0; color: #fff; font-size: clamp(22px, 2.4vw, 30px); }
.bbt-sv-custom p { grid-column: 2; align-self: start; margin: 0; font-size: 15.5px; }
.bbt-sv-custom .bbt-btn { grid-column: 3; grid-row: 1 / span 2; }

/* Why us: four across */
.bbt-sv-why__grid { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) {
	.bbt-sv-grid { grid-template-columns: repeat(2, 1fr); }
	.bbt-sv-why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
	.bbt-sv-hero .bbt-ab-hero__content { max-width: 680px; }
}

@media (max-width: 640px) {
	.bbt-sv-grid, .bbt-sv-why__grid { grid-template-columns: 1fr; gap: 20px; }
	.bbt-sv-custom { grid-template-columns: 1fr; }
	.bbt-sv-custom__icon { grid-row: auto; width: 62px; height: 62px; }
	.bbt-sv-custom p, .bbt-sv-custom .bbt-btn { grid-column: auto; grid-row: auto; }
	.bbt-sv-custom .bbt-btn { justify-self: stretch; justify-content: space-between; }
	.bbt-sv-card__body { padding: 16px 22px 22px; }
	.bbt-sv-card__icon { margin-left: 22px; }
	.bbt-sv-jump { margin-top: 30px; padding-top: 22px; }
	.bbt-sv-jump a { font-size: 13px; padding: 7px 13px; }
}

/* ==========================================================================
   Blog listing (Blog page template, categories, tags, search)
   ========================================================================== */

/* Hero search */
.bbt-bl-hero .bbt-ab-hero__content { max-width: 52%; }
.bbt-bl-hero .bbt-ab-hero__text { margin-bottom: 30px; }
.bbt-bl-hero .bbt-ab-hero__content > .bbt-hero__anim:nth-child(6) { animation-delay: 0.4s; }
.bbt-bl-search {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 560px;
	padding: 6px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(10px);
	transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.bbt-bl-search:focus-within { border-color: var(--bbt-copper-light); background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 0 4px rgba(214, 157, 99, 0.18); }
.bbt-bl-search > svg { flex: none; margin: 0 4px 0 16px; color: var(--bbt-copper-light); }
.bbt-bl-search input { flex: 1; min-width: 0; height: 50px; padding: 0 12px; border: 0; background: transparent; font: inherit; font-size: 16px; color: #fff; outline: 0; }
.bbt-bl-search input::placeholder { color: rgba(255, 255, 255, 0.5); }
.bbt-bl-search input::-webkit-search-cancel-button { filter: invert(1); }
.bbt-bl-search button { flex: none; height: 50px; padding: 0 26px; border: 0; border-radius: 999px; background: var(--bbt-copper); color: #fff; font-family: var(--bbt-font-head); font-size: 15px; font-weight: 600; transition: background 0.3s; }
.bbt-bl-search button:hover { background: var(--bbt-copper-dark); }
.bbt-bl-topics { margin-top: 26px; padding-top: 0; border-top: 0; }
.bbt-bl-topics a[aria-current="page"] { border-color: var(--bbt-copper); background: var(--bbt-copper); color: #fff; }
.bbt-bl-hero__badge svg { flex: none; color: var(--bbt-copper-light); }

/* Layout */
.bbt-bl__grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: 40px; }
.bbt-bl__demo-note { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding: 12px 18px; border: 1px dashed rgba(165, 101, 46, 0.45); border-radius: 14px; background: var(--bbt-copper-soft); font-size: 14px; color: var(--bbt-copper-dark); }

/* Featured article */
.bbt-bl-feat {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	margin-bottom: 28px;
	overflow: hidden;
	border: 1px solid var(--bbt-line);
	border-radius: 28px;
	background: #fff;
	transition: box-shadow 0.5s, transform 0.5s var(--bbt-ease);
}
.bbt-bl-feat:hover { transform: translateY(-6px); box-shadow: var(--bbt-shadow); }
.bbt-bl-feat__media { position: relative; display: block; min-height: 340px; margin: 10px; overflow: hidden; border-radius: 20px; background: var(--bbt-sand); }
.bbt-bl-feat__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--bbt-ease); }
.bbt-bl-feat:hover .bbt-bl-feat__media img { transform: scale(1.06); }
.bbt-bl-feat__badge { position: absolute; top: 16px; left: 16px; padding: 7px 14px; border-radius: 999px; background: var(--bbt-copper); color: #fff; font-family: var(--bbt-font-head); font-size: 13px; font-weight: 600; box-shadow: 0 10px 24px -10px rgba(165, 101, 46, 0.9); }
.bbt-bl-feat__body { display: flex; flex-direction: column; padding: 30px 32px 30px 20px; }
.bbt-bl-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-bottom: 14px; font-size: 13.5px; color: var(--bbt-muted); }
.bbt-bl-meta > span { display: inline-flex; align-items: center; gap: 6px; }
.bbt-bl-meta svg { color: var(--bbt-copper); }
.bbt-bl-meta .bbt-tag { margin: 0; }
a.bbt-tag:hover { background: var(--bbt-copper); color: #fff; }
.bbt-bl-feat__title { margin-bottom: 12px; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.25; }
.bbt-bl-feat__title a { background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat; transition: background-size 0.5s var(--bbt-ease), color 0.3s; }
.bbt-bl-feat__title a:hover { color: var(--bbt-copper); background-size: 100% 2px; }
.bbt-bl-feat__body > p { margin-bottom: 24px; font-size: 15.5px; color: var(--bbt-muted); }
.bbt-bl-feat__footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 22px; border-top: 1px dashed var(--bbt-line); }
.bbt-bl-author { display: flex; align-items: center; gap: 12px; }
.bbt-bl-author .bbt-avatar { width: 46px; height: 46px; font-size: 15px; }
.bbt-bl-author small { display: block; font-size: 12px; color: var(--bbt-muted); }
.bbt-bl-author strong { font-family: var(--bbt-font-head); font-size: 15.5px; color: var(--bbt-ink); }
.bbt-bl-feat__footer .bbt-btn { padding-left: 22px; font-size: 14.5px; }
.bbt-bl-feat__footer .bbt-btn__icon { width: 38px; height: 38px; }

/* Card grid: two columns beside the sidebar */
.bbt-bl__cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* Empty state */
.bbt-bl-empty { padding: clamp(40px, 6vw, 70px) 30px; border: 1px dashed var(--bbt-line); border-radius: 28px; background: #fff; text-align: center; }
.bbt-bl-empty__icon { display: grid; place-items: center; width: 84px; height: 84px; margin: 0 auto 20px; border-radius: 50%; background: var(--bbt-copper-soft); color: var(--bbt-copper); }
.bbt-bl-empty h2 { font-size: 28px; }
.bbt-bl-empty p { margin-bottom: 26px; color: var(--bbt-muted); }

/* Sidebar */
.bbt-bl-side { position: sticky; top: 100px; display: grid; gap: 24px; }
.bbt-widget { padding: 28px; border: 1px solid var(--bbt-line); border-radius: 24px; background: #fff; }
.bbt-widget__title { position: relative; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--bbt-line); font-size: 19px; }
.bbt-widget__title::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 40px; height: 2px; background: var(--bbt-copper); }

.bbt-widget__cats { display: grid; gap: 6px; list-style: none; }
.bbt-widget__cats a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 12px; font-size: 15px; font-weight: 500; color: var(--bbt-ink); transition: background 0.3s, color 0.3s; }
.bbt-widget__cats a > span { display: inline-flex; align-items: center; gap: 10px; }
.bbt-widget__cats svg { color: var(--bbt-copper); transition: transform 0.3s var(--bbt-ease); }
.bbt-widget__cats em { display: grid; place-items: center; min-width: 30px; height: 26px; padding: 0 8px; border-radius: 999px; background: var(--bbt-sand); font-size: 12.5px; font-style: normal; font-weight: 600; color: var(--bbt-copper-dark); transition: background 0.3s, color 0.3s; }
.bbt-widget__cats a:hover, .bbt-widget__cats a[aria-current="page"] { background: var(--bbt-copper-soft); color: var(--bbt-copper-dark); }
.bbt-widget__cats a:hover svg { transform: translateX(4px); }
.bbt-widget__cats a:hover em, .bbt-widget__cats a[aria-current="page"] em { background: var(--bbt-copper); color: #fff; }

.bbt-widget__recent { display: grid; gap: 16px; list-style: none; }
.bbt-widget__recent a { display: flex; align-items: center; gap: 14px; }
.bbt-widget__thumb { flex: none; width: 78px; height: 78px; overflow: hidden; border-radius: 14px; background: var(--bbt-sand); }
.bbt-widget__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--bbt-ease); }
.bbt-widget__recent small { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 4px; font-size: 12.5px; color: var(--bbt-muted); }
.bbt-widget__recent small svg { color: var(--bbt-copper); }
.bbt-widget__recent strong { display: -webkit-box; overflow: hidden; font-family: var(--bbt-font-head); font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--bbt-ink); -webkit-line-clamp: 2; -webkit-box-orient: vertical; transition: color 0.3s; }
.bbt-widget__recent a:hover strong { color: var(--bbt-copper); }
.bbt-widget__recent a:hover img { transform: scale(1.1); }

.bbt-widget--cta { position: relative; overflow: hidden; border: 0; background: var(--bbt-ink); color: rgba(255, 255, 255, 0.7); text-align: center; isolation: isolate; }
.bbt-widget--cta::before { content: ""; position: absolute; top: -130px; right: -130px; z-index: -1; width: 320px; height: 320px; border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 16px, rgba(214, 157, 99, 0.1) 16px 18px); }
.bbt-widget__mark { width: 72px; height: 72px; margin: 0 auto 16px; }
.bbt-widget--cta h3 { margin-bottom: 8px; color: #fff; font-size: 22px; }
.bbt-widget--cta p { margin-bottom: 22px; font-size: 14.5px; }
.bbt-widget--cta .bbt-ct-side__actions { margin: 0; }

.bbt-widget__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bbt-widget__tags a { padding: 7px 14px; border: 1px solid var(--bbt-line); border-radius: 999px; background: var(--bbt-cream); font-size: 13.5px; color: var(--bbt-text); transition: background 0.3s, border-color 0.3s, color 0.3s; }
.bbt-widget__tags a:hover { border-color: var(--bbt-copper); background: var(--bbt-copper); color: #fff; }

@media (max-width: 1200px) {
	.bbt-bl__grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 30px; }
	.bbt-bl-feat { grid-template-columns: 1fr; }
	.bbt-bl-feat__media { min-height: 0; aspect-ratio: 16 / 9; }
	.bbt-bl-feat__body { padding: 16px 28px 28px; }
}

@media (max-width: 992px) {
	.bbt-bl-hero .bbt-ab-hero__content { max-width: 680px; }
	.bbt-bl__grid { grid-template-columns: 1fr; }
	.bbt-bl-side { position: static; grid-template-columns: repeat(2, 1fr); align-items: start; }
}

@media (max-width: 640px) {
	.bbt-bl-search > svg { display: none; }
	.bbt-bl-search input { padding-left: 16px; }
	.bbt-bl-search button { padding: 0 18px; }
	.bbt-bl__cards { grid-template-columns: 1fr; }
	.bbt-bl-feat__body { padding: 14px 20px 22px; }
	.bbt-bl-feat__footer .bbt-btn { width: 100%; justify-content: space-between; }
	.bbt-bl-side { grid-template-columns: 1fr; }
	.bbt-widget { padding: 22px; }
}

/* ==========================================================================
   About: team
   ========================================================================== */
.bbt-ab-team + .bbt-ab-quote { padding-top: clamp(76px, 10vw, 130px); }
.bbt-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bbt-team-grid--4 { grid-template-columns: repeat(4, 1fr); }
.bbt-team-grid--2 { grid-template-columns: repeat(2, minmax(0, 380px)); }
.bbt-team-grid--1 { grid-template-columns: minmax(0, 380px); }
.bbt-team-card { position: relative; margin: 0; padding: 10px; border-radius: 28px; background: #fff; box-shadow: var(--bbt-shadow-sm); transition: transform 0.5s var(--bbt-ease), box-shadow 0.5s; }
.bbt-team-card:hover { transform: translateY(-8px); box-shadow: var(--bbt-shadow); }
.bbt-team-card__photo { position: relative; aspect-ratio: 4 / 4.6; overflow: hidden; border-radius: 20px; background: var(--bbt-sand); }
.bbt-team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(0.2); transition: transform 1.2s var(--bbt-ease), filter 0.6s; }
.bbt-team-card:hover .bbt-team-card__photo img { transform: scale(1.06); filter: none; }
.bbt-team-card__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22, 17, 13, 0.55) 0%, rgba(22, 17, 13, 0) 40%); opacity: 0; transition: opacity 0.5s; }
.bbt-team-card:hover .bbt-team-card__photo::after { opacity: 1; }
.bbt-team-card__initials { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--bbt-font-head); font-size: 64px; font-weight: 700; color: var(--bbt-copper); }
.bbt-team-card__num { position: absolute; top: 14px; right: 18px; z-index: 1; font-family: var(--bbt-font-head); font-size: 42px; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.9); }
.bbt-team-card__info { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 12px 10px 14px; }
.bbt-team-card__info strong { display: block; font-family: var(--bbt-font-head); font-size: 21px; font-weight: 700; line-height: 1.25; color: var(--bbt-ink); }
.bbt-team-card__info small { display: block; margin-top: 2px; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bbt-copper); }
.bbt-team-card__icon { display: grid; flex: none; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--bbt-copper-soft); color: var(--bbt-copper); transition: background 0.4s, color 0.4s, transform 0.5s var(--bbt-ease); }
.bbt-team-card:hover .bbt-team-card__icon { background: var(--bbt-copper); color: #fff; transform: rotate(-10deg); }

@media (max-width: 992px) {
	.bbt-team-grid, .bbt-team-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.bbt-team-grid, .bbt-team-grid--4, .bbt-team-grid--2 { grid-template-columns: 1fr; }
}
/* ==========================================================================
   Our Woods page
   ========================================================================== */
.bbt-wd-hero .bbt-ab-hero__badge strong { font-size: 44px; }

.bbt-wd-filter { position: sticky; top: 84px; z-index: 5; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; padding: 10px; border: 1px solid var(--bbt-line); border-radius: 22px; background: rgba(251, 248, 244, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.admin-bar .bbt-wd-filter { top: 116px; }
.bbt-wd-filter__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 46px;
	padding: 0 8px 0 20px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	background: transparent;
	font-family: var(--bbt-font-head);
	font-size: 15px;
	font-weight: 600;
	color: var(--bbt-ink);
	transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.bbt-wd-filter__btn em { display: grid; place-items: center; min-width: 30px; height: 30px; padding: 0 8px; border-radius: 999px; background: #fff; font-size: 13px; font-style: normal; color: var(--bbt-copper-dark); transition: background 0.3s, color 0.3s; }
.bbt-wd-filter__btn:hover { border-color: var(--bbt-copper); }
.bbt-wd-filter__btn[aria-pressed="true"] { background: var(--bbt-copper); color: #fff; }
.bbt-wd-filter__btn[aria-pressed="true"] em { background: rgba(255, 255, 255, 0.22); color: #fff; }

.bbt-wd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bbt-wd-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--bbt-line); border-radius: 24px; background: #fff; transition: transform 0.5s var(--bbt-ease), box-shadow 0.5s, border-color 0.5s; }
.bbt-wd-card[hidden] { display: none; }
.bbt-wd-card.is-in { animation: bbtFadeUp 0.5s var(--bbt-ease); }
.bbt-wd-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--bbt-shadow); }
.bbt-wd-card__media { position: relative; aspect-ratio: 4 / 3; margin: 8px 8px 0; overflow: hidden; border-radius: 18px; background: var(--bbt-sand); }
.bbt-wd-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--bbt-ease); }
.bbt-wd-card:hover .bbt-wd-card__media img { transform: scale(1.07); }
/* No photo yet: a wood-toned tile with growth rings (not a photo of a different wood). */
.bbt-wd-card__media--light, .bbt-wd-card__media--medium, .bbt-wd-card__media--dark { display: grid; place-items: center; }
.bbt-wd-card__media--light { background: radial-gradient(circle at 70% 120%, transparent 0 18%, rgba(255, 255, 255, 0.18) 18.5% 19.5%, transparent 20% 34%, rgba(255, 255, 255, 0.14) 34.5% 35.5%, transparent 36% 52%, rgba(255, 255, 255, 0.12) 52.5% 53.5%, transparent 54%), linear-gradient(135deg, #e3c79d, #c99e66); }
.bbt-wd-card__media--medium { background: radial-gradient(circle at 70% 120%, transparent 0 18%, rgba(255, 255, 255, 0.14) 18.5% 19.5%, transparent 20% 34%, rgba(255, 255, 255, 0.11) 34.5% 35.5%, transparent 36% 52%, rgba(255, 255, 255, 0.09) 52.5% 53.5%, transparent 54%), linear-gradient(135deg, #b87a45, #8a5223); }
.bbt-wd-card__media--dark { background: radial-gradient(circle at 70% 120%, transparent 0 18%, rgba(255, 255, 255, 0.1) 18.5% 19.5%, transparent 20% 34%, rgba(255, 255, 255, 0.08) 34.5% 35.5%, transparent 36% 52%, rgba(255, 255, 255, 0.07) 52.5% 53.5%, transparent 54%), linear-gradient(135deg, #5c3b25, #2e1f15); }
.bbt-wd-card__initial { font-family: var(--bbt-font-head); font-size: 64px; font-weight: 800; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.9); text-shadow: 0 6px 24px rgba(0, 0, 0, 0.18); transition: transform 0.6s var(--bbt-ease); }
.bbt-wd-card:hover .bbt-wd-card__initial { transform: scale(1.08); }
.bbt-wd-card__region { position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.92); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--bbt-copper-dark); }
.bbt-wd-card__body { display: flex; flex: 1; flex-direction: column; padding: 18px 20px 20px; }
.bbt-wd-card__title { margin-bottom: 6px; font-size: 20px; }
.bbt-wd-card__title a:hover { color: var(--bbt-copper); }
.bbt-wd-card__body > p { margin-bottom: 16px; font-size: 14.5px; line-height: 1.6; color: var(--bbt-muted); }
.bbt-wd-card__actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--bbt-line); }
.bbt-wd-card__wa { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #e3f7ea; color: #1faa55; transition: background 0.3s, color 0.3s, transform 0.3s var(--bbt-ease); }
.bbt-wd-card__wa:hover { background: #25d366; color: #fff; transform: scale(1.08); }

@media (max-width: 1200px) { .bbt-wd-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 992px) { .bbt-wd-filter { top: 80px; } .bbt-wd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
	.bbt-wd-filter { position: static; flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(-1 * clamp(18px, 4vw, 32px)); border-radius: 0; border-inline: 0; scrollbar-width: none; }
	.bbt-wd-filter::-webkit-scrollbar { display: none; }
	.bbt-wd-filter__btn { flex: none; }
	.bbt-wd-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
	.bbt-wd-card { border-radius: 18px; }
	.bbt-wd-card__body { padding: 14px 14px 16px; }
	.bbt-wd-card__title { font-size: 17px; }
	.bbt-wd-card__body > p { display: none; }
	.bbt-wd-card__initial { font-size: 42px; }
	.bbt-wd-card__region { left: 8px; bottom: 8px; padding: 4px 9px; font-size: 11px; }
	.bbt-wd-card__actions .bbt-link { gap: 4px; font-size: 13.5px; white-space: nowrap; }
	.bbt-wd-card__actions .bbt-link svg { display: none; }
	.bbt-wd-card__wa { flex: none; width: 34px; height: 34px; }
}
/* ==========================================================================
   404 page
   ========================================================================== */
.bbt-404 { position: relative; display: flex; align-items: center; min-height: clamp(660px, 100svh, 900px); padding: clamp(170px, 16vw, 200px) 0 clamp(140px, 16vw, 200px); overflow: hidden; background: var(--bbt-ink); color: rgba(255, 255, 255, 0.72); text-align: center; }
.bbt-404::before { content: ""; position: absolute; top: 50%; left: 50%; width: 900px; height: 900px; border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 26px, rgba(214, 157, 99, 0.07) 26px 28px); transform: translate(-50%, -50%); pointer-events: none; }
.bbt-404__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; max-width: 720px; }
.bbt-404__code { position: absolute; top: 50%; left: 50%; z-index: -1; font-family: var(--bbt-font-head); font-size: clamp(200px, 34vw, 420px); font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.07); transform: translate(-50%, -54%); pointer-events: none; }
.bbt-404 .bbt-eyebrow { color: var(--bbt-copper-light); }
.bbt-404 .bbt-eyebrow::after { content: ""; width: 30px; height: 2px; border-radius: 2px; background: currentColor; }
.bbt-404__title { margin-bottom: 16px; color: #fff; font-size: clamp(34px, 5vw, 62px); line-height: 1.05; letter-spacing: -0.03em; }
.bbt-404__title em { color: var(--bbt-copper-light); }
.bbt-404__text { max-width: 560px; margin-bottom: 34px; font-size: clamp(16px, 1.3vw, 18px); }
.bbt-404__search { width: min(520px, 100%); margin-bottom: 30px; }
.bbt-404__links { justify-content: center; margin-top: 0; padding-top: 0; border-top: 0; }
.bbt-404__call { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 12px; margin: 30px 0 0; font-size: 15px; }
.bbt-404__call a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--bbt-font-head); font-weight: 600; color: #fff; }
.bbt-404__call a:hover { color: var(--bbt-copper-light); }
.bbt-404__call svg { color: var(--bbt-copper-light); }
.bbt-404__trees { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; color: rgba(0, 0, 0, 0.3); pointer-events: none; }
.bbt-404__trees .bbt-treeline { height: clamp(90px, 12vw, 170px); }

/* ==========================================================================
   Single service page
   ========================================================================== */
.bbt-sv-single-hero { min-height: clamp(520px, 74svh, 660px); }
.bbt-sv-single-hero .bbt-eyebrow { display: inline-flex; gap: 10px; }
.bbt-sv-single-hero .bbt-eyebrow::before { display: none; }
.bbt-sv-single__grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: 48px; }
.bbt-sv-single__content > *:first-child { margin-top: 0; }
.bbt-sv-single__side { top: 100px; }
.bbt-checklist--dark li { color: rgba(255, 255, 255, 0.85); }
.bbt-sv-single__note { margin: 22px 0 24px; font-size: 14.5px; color: rgba(255, 255, 255, 0.6); }
.bbt-sv-single__side .bbt-ct-side__wa { background: var(--bbt-copper); box-shadow: 0 16px 30px -16px rgba(165, 101, 46, 0.9); }
.bbt-sv-single__side .bbt-ct-side__wa:hover { background: var(--bbt-copper-dark); }

.bbt-sv-more__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bbt-sv-more__card { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border: 1px solid var(--bbt-line); border-radius: 20px; background: #fff; transition: transform 0.4s var(--bbt-ease), box-shadow 0.4s, border-color 0.4s; }
.bbt-sv-more__card:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--bbt-shadow-sm); }
.bbt-sv-more__icon { display: grid; flex: none; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--bbt-copper-soft); color: var(--bbt-copper); transition: background 0.35s, color 0.35s; }
.bbt-sv-more__card:hover .bbt-sv-more__icon { background: var(--bbt-copper); color: #fff; }
.bbt-sv-more__card strong { display: block; font-family: var(--bbt-font-head); font-size: 17px; color: var(--bbt-ink); }
.bbt-sv-more__card small { display: block; margin-top: 2px; font-size: 13.5px; line-height: 1.5; color: var(--bbt-muted); }
.bbt-sv-more__arrow { flex: none; margin-left: auto; color: var(--bbt-muted); transition: transform 0.4s var(--bbt-ease), color 0.3s; }
.bbt-sv-more__card:hover .bbt-sv-more__arrow { color: var(--bbt-copper); transform: rotate(45deg); }

@media (max-width: 992px) {
	.bbt-sv-single__grid { grid-template-columns: 1fr; gap: 32px; }
	.bbt-sv-single__side { position: static; }
	.bbt-sv-more__grid { grid-template-columns: 1fr; }
}
