/* ==========================================================================
   Tabadul Blocks — widget styles
   Every section is a full-width wrapper (.tb-w) with a tone and an inner
   container. Colours come from the theme's CSS variables with fallbacks.
   ========================================================================== */

.tb-w {
	--tb-p: var(--tb-red, color-mix(in srgb, var(--tb-primary, #C40D0E) 90%, transparent));
	--tb-s: var(--tb-secondary, #F49819);
	--tb-g: var(--tb-gray, #575756);
	--tb-d: var(--tb-dark, #1D1D1C);
	--tb-bg0: var(--tb-ground, #F7F7F6);
	--tb-gut: var(--tb-gutter, 30px);
	--tb-c: var(--tb-container, 1140px);
	--tb-wd: var(--tb-wide, 1600px);
	--tb-in: var(--tb-inset, 8.333vw);
	--tb-e: var(--tb-ease, cubic-bezier(.2, .7, .2, 1));
	--tb-cut-size: var(--tb-cut, 40px);

	position: relative;
	background: var(--tone-bg);
	color: var(--tone-fg);
	font-family: var(--tb-font, "Montserrat", system-ui, sans-serif);
}

/* ---------- Tones ---------- */
.tb-tone--light { --tone-bg: var(--tb-bg0); --tone-fg: var(--tb-ink, #1D1D1C); --tone-head: var(--tb-ink, #1D1D1C); --tone-soft: #3F3F3E; --tone-line: rgba(29, 29, 28, .14); }
.tb-tone--white { --tone-bg: #FFFFFF; --tone-fg: var(--tb-ink, #1D1D1C); --tone-head: var(--tb-ink, #1D1D1C); --tone-soft: #3F3F3E; --tone-line: rgba(29, 29, 28, .12); }
.tb-tone--dark { --tone-bg: var(--tb-d); --tone-fg: #EDEDEC; --tone-head: #FFFFFF; --tone-soft: #D2D2D0; --tone-line: rgba(255, 255, 255, .14); }
.tb-tone--primary { --tone-bg: var(--tb-p); --tone-fg: #FFFFFF; --tone-head: #FFFFFF; --tone-soft: rgba(255, 255, 255, .82); --tone-line: rgba(255, 255, 255, .25); }
.tb-tone--secondary { --tone-bg: var(--tb-s); --tone-fg: var(--tb-d); --tone-head: var(--tb-d); --tone-soft: #2B2B2A; --tone-line: rgba(29, 29, 28, .22); }
.tb-w:not([class*="tb-tone--"]) { --tone-bg: transparent; --tone-fg: inherit; --tone-head: inherit; --tone-soft: #3F3F3E; --tone-line: rgba(29, 29, 28, .14); }

/* Elementor: no gaps between our sections */
.elementor-widget[class*="elementor-widget-tb-"] { margin-bottom: 0 !important; --kit-widget-spacing: 0px; }
.elementor-widget[class*="elementor-widget-tb-"] > .elementor-widget-container { padding: 0; margin: 0; }

/* ---------- Shared type ---------- */
.tb-w h1, .tb-w h2, .tb-w h3 { color: var(--tone-head); margin: 0; font-weight: 700; text-wrap: balance; }
.tb-w p { margin: 0 0 1em; }
.tb-w p:last-child { margin-bottom: 0; }
.tb-w img { max-width: 100%; height: auto; display: block; }

.tb-title { font-size: clamp(30px, 3.4vw, 48px); line-height: 1.125; letter-spacing: -.005em; }
.tb-subtitle {
	margin-top: 18px; max-width: 62ch;
	font-size: 16px; line-height: 1.75; letter-spacing: 1.2px; text-transform: uppercase; color: var(--tone-soft);
}
.tb-head { margin-bottom: 60px; }
.tb-head--center { text-align: center; }
.tb-head--center .tb-subtitle { margin-inline: auto; }
.tb-head .tb-more { margin-top: 26px; }

.tb-w .tb-eyebrow {
	font-size: 14.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
	color: var(--tb-s); margin: 0 0 14px;
}
.tb-tone--secondary .tb-eyebrow,
.tb-tone--primary .tb-eyebrow { color: currentColor; opacity: .85; }
.tb-eyebrow--dot { display: inline-flex; align-items: center; gap: 12px; }
.tb-eyebrow--dot::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: currentColor; }

.tb-accent { color: var(--tb-s); }

/* Highlighter bar behind words; draws in when the section appears */
.tb-hl { position: relative; z-index: 0; white-space: nowrap; }
.tb-hl::before {
	content: ""; position: absolute; z-index: -1;
	left: -.18em; right: -.18em; bottom: .04em; height: .42em;
	background: var(--tb-s);
	transform-origin: left center; transition: transform .7s var(--tb-e) .35s;
}
.tb-tone--secondary .tb-hl::before { background: #fff; }
.tb-js [data-tb-motion]:not(.is-in) .tb-hl::before { transform: scaleX(0); }

/* Cut corner */
.tb-cut { clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--tb-cut-size)), calc(100% - var(--tb-cut-size)) 100%, 0 100%); }

/* Links & buttons fallback when the theme is not active */
.tb-w .tb-more {
	display: inline-flex; align-items: center; gap: 14px;
	font-size: 13.5px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; color: inherit; text-decoration: none;
}
.tb-w .tb-more::before { content: ""; width: 30px; height: 1px; background: currentColor; transition: width .35s var(--tb-e); }
.tb-w .tb-more:hover { color: var(--tb-s); }
.tb-w .tb-more:hover::before { width: 50px; }
.tb-w .tb-btn {
	display: inline-flex; align-items: center; gap: 14px; min-height: 48px; padding: 0 24px;
	font-size: 14.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; text-decoration: none;
	border: 1px solid transparent; transition: background-color .35s, color .35s, border-color .35s;
}
.tb-w .tb-btn--primary { background: var(--tb-p); color: #fff; }
.tb-w .tb-btn--primary:hover { background: #fff; color: var(--tb-p); }
.tb-w .tb-btn--outline { border-color: var(--tb-s); color: #fff; }
.tb-w .tb-btn--outline:hover { background: var(--tb-s); color: var(--tb-d); }
.tb-arrow { width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); transition: transform .35s var(--tb-e); }
.tb-btn:hover .tb-arrow { transform: translateX(4px) rotate(45deg); }

/* Inner containers */
.tb-logos, .tb-cards, .tb-services, .tb-videos, .tb-features, .tb-arr, .tb-text,
.tb-columns__inner, .tb-cta__inner, .tb-timeline, .tb-contact, .tb-samples {
	width: 100%; max-width: calc(var(--tb-c) + var(--tb-gut) * 2);
	margin-inline: auto; padding-inline: var(--tb-gut);
}
.tb-width--wide .tb-cards, .tb-width--wide .tb-arr, .tb-width--wide .tb-videos { max-width: calc(var(--tb-wd) + var(--tb-gut) * 2); }
.tb-width--full .tb-cards, .tb-width--full .tb-arr { max-width: none; padding-inline: 0; }
.tb-width--full .tb-head { padding-inline: var(--tb-gut); }

/* ==========================================================================
   Motion
   ========================================================================== */
.tb-js [data-tb-motion] .tb-anim {
	opacity: 0;
	transform: var(--tb-from, translate3d(0, 40px, 0));
	transition:
		opacity var(--tb-dur, .5s) ease,
		transform var(--tb-dur, .5s) var(--tb-e);
	transition-delay: calc(var(--tb-delay, 0s) + var(--tb-i, 0) * var(--tb-stagger, 0s));
}
.tb-js [data-tb-motion].is-in .tb-anim { opacity: 1; transform: none; }
.tb-js [data-tb-motion].is-done .tb-anim { will-change: auto; }

@media (prefers-reduced-motion: reduce) {
	.tb-js [data-tb-motion] .tb-anim { opacity: 1 !important; transform: none !important; transition: none !important; }
	.tb-hl::before { transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Hero slider
   ========================================================================== */
.tb-hero {
	position: relative; overflow: hidden;
	height: 72vh; min-height: 520px; max-height: 1000px;
	background: var(--tb-d); color: #fff;
}
.tb-hero__track { position: absolute; inset: 0; }
.tb-hero__slide {
	position: absolute; inset: 0;
	opacity: 0; visibility: hidden;
	transition: opacity 1s ease, visibility 1s;
}
.tb-hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.tb-hero__slide::after { content: ""; position: absolute; inset: 0; background: #000; opacity: .25; pointer-events: none; }
.tb-hero__pic { display: contents; }
.tb-hero__img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; transform: scale(1.06); transition: transform 7s ease-out; }
.tb-hero__slide.is-active .tb-hero__img { transform: scale(1); }

.tb-hero__content { position: absolute; left: 0; right: 0; bottom: 14%; z-index: 2; }
.tb-hero__card {
	max-width: 560px; padding: 48px 60px 54px 96px;
}
.tb-hero--card .tb-hero__card {
	background: rgba(29, 29, 28, .96);
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), calc(100% - 44px) 100%, 0 100%);
}
.tb-hero--plain .tb-hero__content { bottom: 50%; transform: translateY(50%); }
.tb-hero--plain .tb-hero__card { max-width: 900px; padding-left: calc(var(--tb-in) + 40px); }
.tb-hero__label { font-size: 12.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--tb-s); margin-bottom: 18px !important; }
.tb-hero__title { font-size: clamp(26px, 2.2vw, 34px); line-height: 1.25; color: #fff !important; }
.tb-hero__title--brand { font-size: clamp(40px, 5.2vw, 84px); line-height: .98; font-weight: 800; letter-spacing: -.01em; }
.tb-hero__title--brand span { display: block; }
.tb-hero__title--brand .is-first { color: var(--tb-p); }
.tb-hero__title--brand .is-next { color: var(--tb-s); }
.tb-hero--card .tb-hero__title--brand { font-size: clamp(36px, 3.6vw, 58px); }
.tb-hero__text { margin-top: 22px !important; font-size: 17px; line-height: 1.7; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; }
.tb-hero__actions { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; margin-top: 30px; }
.tb-hero__actions .tb-more { color: #fff; }

/* Inactive slides keep their text hidden so it re-enters on each change */
.tb-js .tb-w.is-in .tb-hero__slide:not(.is-active) .tb-anim { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity 0s 1s, transform 0s 1s; }

.tb-hero__dots {
	position: absolute; left: 0; top: 50%; z-index: 3;
	display: flex; flex-direction: column; gap: 6px;
	padding: 20px 10px; background: var(--tb-p);
}
.tb-slider__dot {
	width: 30px; height: 30px; border: 0; padding: 0; background: transparent; cursor: pointer; position: relative;
}
.tb-slider__dot::before {
	content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border-radius: 50%;
	background: rgba(255, 255, 255, .55); transform: translate(-50%, -50%); transition: transform .35s, background-color .35s;
}
.tb-slider__dot:hover::before { background: #fff; }
.tb-slider__dot.is-active::before { background: var(--tb-s); transform: translate(-50%, -50%) scale(1.4); }

@media (max-width: 840px) {
	.tb-hero { min-height: 560px; }
	.tb-hero__content { bottom: 0; }
	.tb-hero__card { max-width: none; padding: 34px 24px 60px; }
	.tb-hero--card .tb-hero__card { clip-path: none; background: linear-gradient(to top, rgba(29, 29, 28, .97) 70%, rgba(29, 29, 28, 0)); padding-top: 80px; }
	.tb-hero__dots { top: auto; bottom: 18px; left: 24px; flex-direction: row; padding: 0; background: transparent; }
	/* The plain layout keeps a desktop-sized left indent otherwise. */
	.tb-hero--plain .tb-hero__card { padding-left: 24px; }
}

/* Slides that carry a portrait phone photo: the picture is brighter edge to edge
   than the wide crop was, so the text needs its own scrim on phones. */
@media (max-width: 767px) {
	.tb-hero__slide:has(.tb-hero__pic)::before {
		content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .46) 24%, rgba(0, 0, 0, .6) 56%, rgba(0, 0, 0, .34) 86%, rgba(0, 0, 0, 0) 100%);
	}
}

/* ==========================================================================
   Logo grid
   ========================================================================== */
.tb-logos { padding-block: 110px; }
.tb-logos--strip .tb-logos { padding-block: 15px; max-width: none; padding-inline: 30px; }
.tb-logos__grid {
	--cols: 6;
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: 30px;
	align-items: center;
}
.tb-logos__item { display: grid; place-items: center; min-height: 110px; }
.tb-logos--strip .tb-logos__item { min-height: 95px; }
.tb-logos__item a { display: grid; place-items: center; width: 100%; height: 100%; }
.tb-logos__item img { width: auto; max-width: 78%; max-height: 56px; object-fit: contain; transition: filter .4s, opacity .4s, transform .4s var(--tb-e); }
.tb-logos--gray .tb-logos__item img { filter: grayscale(1); opacity: .55; }
.tb-logos--gray .tb-logos__item:hover img { filter: none; opacity: 1; transform: scale(1.05); }
.tb-logos--boxed .tb-logos__item { background: rgba(29, 29, 28, .045); aspect-ratio: 330 / 190; min-height: 0; }
.tb-logos--boxed .tb-logos__grid { gap: 24px; }
/* A short logo row (3 or fewer) groups in the middle instead of spanning the full width. */
.tb-logos__grid:not(:has(> :nth-child(4))) { max-width: 760px; margin-inline: auto; }
@media (max-width: 600px) { .tb-logos__grid:not(:has(> :nth-child(4))) .tb-logos__item img { max-width: 94%; } }
/* A logo strip that carries a heading is a section of its own, not a thin band. */
.tb-logos--strip:has(.tb-head) .tb-logos { padding-block: 90px; }
.tb-logos--strip .tb-head { max-width: calc(var(--tb-c) + var(--tb-gut) * 2); margin-inline: auto; padding-inline: var(--tb-gut); }
.tb-logos .tb-head { margin-bottom: 46px; }
.tb-logos .tb-title { font-size: clamp(26px, 2.4vw, 36px); }
.tb-logos .tb-head--center .tb-eyebrow { justify-content: center; }
@media (max-width: 767px) {
	.tb-logos--strip:has(.tb-head) .tb-logos { padding-block: 62px; }
	.tb-logos .tb-head { margin-bottom: 34px; }
}

/* ==========================================================================
   Two panels (Who / What)
   ========================================================================== */
.tb-panels {
	display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); align-items: stretch;
	gap: 0 5.5vw; padding-block: 0 100px; padding-right: var(--tb-in);
}
.tb-panels--offset .tb-panel:last-child { margin-top: 80px; }
.tb-panel { position: relative; background: var(--panel-bg); color: var(--panel-fg); }
.tb-panel--dark { --panel-bg: var(--tb-d); --panel-fg: #E1E1E0; --panel-head: #fff; }
.tb-panel--primary { --panel-bg: var(--tb-p); --panel-fg: #fff; --panel-head: #fff; }
.tb-panel--white { --panel-bg: #fff; --panel-fg: var(--tb-d); --panel-head: var(--tb-d); }
.tb-panel[style*="--bg"]::before {
	content: ""; position: absolute; inset: 0; background: var(--bg) center / cover no-repeat; opacity: .16; pointer-events: none;
}
.tb-panel:first-child .tb-panel__inner { padding: 90px 70px 100px 19.5vw; }
.tb-panel:last-child .tb-panel__inner { padding: 70px 44px 0; display: flex; flex-direction: column; height: 100%; }
.tb-panel__inner { position: relative; }
.tb-panel__title { font-size: clamp(34px, 3.2vw, 48px); line-height: 1.1; color: var(--panel-head) !important; margin-bottom: 34px !important; }
.tb-panel__title::after {
	content: ""; display: inline-block; vertical-align: middle; width: 70px; height: 1px; margin-left: 18px;
	background: currentColor; transform-origin: left; transition: transform .7s var(--tb-e) .45s;
}
.tb-js [data-tb-motion]:not(.is-in) .tb-panel__title::after { transform: scaleX(0); }
.tb-panel__text { font-size: 19px; line-height: 1.75; max-width: 60ch; }
.tb-panel__text p { margin-bottom: 1em; }
.tb-panel .tb-more { margin-top: 36px; color: var(--panel-head); }
.tb-panel--primary .tb-hl::before { background: var(--tb-s); }
.tb-panel:last-child .tb-panel__title { margin-bottom: 26px !important; }
.tb-panel__links {
	list-style: none; margin: 0 0 36px; padding: 0;
	display: grid; grid-template-columns: 1fr;
	border-top: 1px solid rgba(255, 255, 255, .22);
}
.tb-panel__links li { border-bottom: 1px solid rgba(255, 255, 255, .22); }
.tb-panel__links a, .tb-panel__links li > span {
	display: flex; align-items: center; gap: 14px; min-height: 44px; padding: 8px 0;
	color: inherit; text-decoration: none;
	font-size: 14.5px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; line-height: 1.35;
}
.tb-panel__num { flex: none; width: 22px; font-size: 13.5px; font-weight: 600; letter-spacing: .5px; color: var(--tb-s); transition: color .35s; }
.tb-panel__name { flex: 1; transition: transform .35s var(--tb-e); }
.tb-panel__arrow {
	flex: none; width: 16px; height: 1px; background: currentColor; position: relative;
	opacity: 0; transform: translateX(-10px); transition: opacity .35s, transform .35s var(--tb-e);
}
.tb-panel__arrow::after {
	content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px;
	border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg);
}
.tb-panel__links a:hover .tb-panel__name, .tb-panel__links a:focus-visible .tb-panel__name { transform: translateX(6px); }
.tb-panel__links a:hover .tb-panel__arrow, .tb-panel__links a:focus-visible .tb-panel__arrow { opacity: 1; transform: none; }
.tb-panel__links a:hover .tb-panel__num { color: #fff; }
.tb-panel__foot {
	margin: auto -44px 0; padding: 36px 44px 56px;
	background: var(--tb-s); color: var(--tb-d);
}
/* Right panel reduced to its note: the whole panel becomes the orange block. */
.tb-panel--bare { --panel-bg: var(--tb-s); --panel-fg: var(--tb-d); --panel-head: var(--tb-d); }
.tb-panel--bare .tb-panel__inner { padding-top: 0 !important; padding-bottom: 0 !important; justify-content: center; }
.tb-panel--bare .tb-panel__foot { margin: 0; padding: 0; background: none; }
.tb-panel--bare .tb-panel__note { font-size: 18px; line-height: 1.8; max-width: 40ch; }
@media (max-width: 1024px) { .tb-panel--bare .tb-panel__inner { padding-block: 60px !important; } }
.tb-panel__note { margin: 0 !important; color: var(--tb-d) !important; font-size: 18px; font-weight: 500; line-height: 1.7; max-width: 52ch; }
.tb-panel__foot .tb-more { margin-top: 26px; color: var(--tb-d); }
@media (max-width: 1024px) {
	.tb-panels { grid-template-columns: 1fr; padding-right: 0; gap: 0; padding-bottom: 0; }
	.tb-panel:first-child .tb-panel__inner { padding: 70px var(--tb-gut) 80px; }
	.tb-panel:last-child .tb-panel__inner { padding: 60px var(--tb-gut) 0; }
	.tb-panel__foot { margin-inline: calc(var(--tb-gut) * -1); padding-inline: var(--tb-gut); }
	.tb-panels--offset .tb-panel:last-child { margin-top: 0; }
	.tb-panel.tb-cut { clip-path: none; }
}

/* ==========================================================================
   Card grid
   ========================================================================== */
.tb-cards { padding-block: 110px 100px; }
.tb-cards__grid {
	--cols: 3;
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: 8px;
}
.tb-card__inner { display: block; color: inherit; text-decoration: none; position: relative; }
.tb-card__media { display: block; position: relative; overflow: hidden; aspect-ratio: var(--ratio, 4/3); background: var(--tb-d); }
.tb-card__media img { width: 100%; height: 100% !important; object-fit: cover; transition: transform .9s var(--tb-e); }
.tb-card__inner:hover .tb-card__media img { transform: scale(1.05); }
.tb-card__circle {
	position: absolute; left: var(--mx, 50%); top: var(--my, 50%); width: 80px; height: 80px; margin: -40px 0 0 -40px;
	border-radius: 50%; background: var(--tb-p); opacity: .55; transform: scale(0); transition: transform .45s var(--tb-e); pointer-events: none;
}
a.tb-card__inner:hover .tb-card__circle { transform: scale(1); }
.tb-card__bar {
	display: flex; flex-direction: column; gap: 2px; justify-content: center;
	min-height: 54px; padding: 12px 18px; background: var(--tb-d); color: #fff;
}
.tb-card__title { font-size: 20px; font-weight: 700; line-height: 1.2; }
.tb-card__meta { font-size: 14.5px; letter-spacing: 1px; text-transform: uppercase; color: #CFCFCD; }
.tb-cards--over .tb-card__bar {
	position: absolute; left: 0; right: 0; bottom: 0; min-height: 0; padding: 60px 20px 18px;
	background: linear-gradient(to top, rgba(29, 29, 28, .9), rgba(29, 29, 28, 0));
}
.tb-cards--over .tb-card__title { font-size: 15px; letter-spacing: 1.4px; text-transform: uppercase; }
@media (max-width: 1024px) { .tb-cards__grid { gap: 8px; } }

/* ==========================================================================
   Services list
   ========================================================================== */
.tb-services { position: relative; padding-block: 100px 140px; }
.tb-services--side::after {
	content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: var(--tb-in); background: var(--tb-d); pointer-events: none;
}
.tb-services__list {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px 9vw;
	max-width: 900px; margin-inline: auto;
}
.tb-services--zigzag .tb-service:nth-child(odd) { margin-top: 130px; }
.tb-service__badge {
	display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
	background: rgba(29, 29, 28, .12); color: var(--tone-head); font-size: 14.5px; font-weight: 700; margin-bottom: 18px;
}
.tb-tone--dark .tb-service__badge { background: rgba(255, 255, 255, .12); }
.tb-service__badge svg { width: 16px; height: 16px; fill: currentColor; }
.tb-service__badge i { font-size: 15px; }
.tb-service__title { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; margin-bottom: 14px !important; }
.tb-service__title a { color: inherit; text-decoration: none; }
.tb-service__title a:hover { color: var(--tb-p); }
.tb-service__text { font-size: 17px; line-height: 1.75; color: var(--tone-soft); max-width: 42ch; }
.tb-service .tb-more { margin-top: 22px; }
@media (max-width: 1024px) {
	.tb-services--side::after { display: none; }
	.tb-services__list { gap: 56px 48px; }
}
@media (max-width: 640px) {
	.tb-services__list { grid-template-columns: 1fr; }
	.tb-services--zigzag .tb-service:nth-child(odd) { margin-top: 0; }
}

/* ==========================================================================
   Page intro
   ========================================================================== */
.tb-intro { position: relative; }
.tb-intro__media { position: relative; height: 600px; overflow: hidden; background: var(--tb-d); }
.tb-intro__media img { position: absolute; left: 0; top: -12%; width: 100%; height: 124% !important; object-fit: cover; will-change: transform; }
.tb-intro__media::after { content: ""; position: absolute; inset: 0; background: #000; opacity: .45; }
.tb-intro__content { position: relative; z-index: 2; }
.tb-intro__title { font-size: clamp(34px, 3.4vw, 48px); line-height: 1.12; }
.tb-intro__title.is-upper { text-transform: uppercase; letter-spacing: .01em; }
.tb-intro__text { margin-top: 22px !important; font-size: 19px; line-height: 1.8; max-width: 52ch; }

.tb-intro--photo .tb-intro__content,
.tb-intro--split .tb-intro__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 40px var(--tb-gut); color: #fff; }
.tb-intro--photo .tb-intro__content { align-items: center; text-align: center; }
.tb-intro--photo .tb-intro__text { margin-inline: auto; }
.tb-intro--split .tb-intro__content { padding-left: max(var(--tb-in), var(--tb-gut)); padding-right: 40%; }
.tb-intro--photo .tb-intro__title, .tb-intro--split .tb-intro__title { color: #fff !important; }
.tb-intro--photo .tb-intro__text, .tb-intro--split .tb-intro__text { color: rgba(255, 255, 255, .9); font-weight: 500; letter-spacing: .5px; }

.tb-intro--band .tb-intro__media { height: 330px; }
.tb-intro--band .tb-intro__content {
	margin-top: -64px; width: min(760px, 88%); background: var(--tone-bg, var(--tb-bg0));
	padding: 54px var(--tb-gut) 20px max(var(--tb-in), var(--tb-gut));
	clip-path: polygon(0 0, calc(100% - 64px) 0, 100% 64px, 100% 100%, 0 100%);
}
.tb-intro--plain { display: block; min-height: 0; }
.tb-intro--plain .tb-intro__content { width: 100%; max-width: calc(var(--tb-c) + var(--tb-gut) * 2); margin-inline: auto; padding: clamp(50px, 6vw, 80px) var(--tb-gut) 0; }
/* A plain title followed by the contact panel: keep them together */
.elementor-section:has(.tb-intro--plain) + .elementor-section .tb-contact,
.e-con:has(.tb-intro--plain) + .e-con .tb-contact { padding-top: clamp(36px, 4vw, 56px); }
@media (max-width: 840px) {
	.tb-intro--split .tb-intro__content { padding-right: var(--tb-gut); }
	.tb-intro__media { max-height: 70vh; }
}

/* ==========================================================================
   Service intro (split)
   ========================================================================== */
.tb-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.tb-split--reverse .tb-split__panel { order: 2; }
.tb-split__panel { display: flex; align-items: center; }
.tb-split__panel--primary { background: var(--tb-p); color: #fff; }
.tb-split__panel--dark { background: var(--tb-d); color: #E1E1E0; }
.tb-split__panel--secondary { background: var(--tb-s); color: var(--tb-d); }
.tb-split__content { padding: 80px 60px 90px max(19.5vw, var(--tb-gut)); max-width: 100%; }
.tb-split--reverse .tb-split__content { padding: 80px max(9vw, var(--tb-gut)) 90px 60px; }
.tb-split__back {
	display: inline-block; margin-bottom: 22px; font-size: 12.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
	color: inherit; text-decoration: none; opacity: .9;
}
.tb-split__back:hover { opacity: 1; color: inherit; text-decoration: underline; }
.tb-split__title { font-size: clamp(32px, 3vw, 44px); line-height: 1.12; color: inherit !important; }
.tb-split__panel--secondary .tb-split__title { color: var(--tb-d) !important; }
.tb-split__text { margin-top: 22px !important; font-size: 20px; line-height: 1.7; font-weight: 500; max-width: 40ch; }
/* Dark panel: the red stays as an accent (back link, rule under the title, the
   seam against the photo) instead of a full-height flat field. */
.tb-split { position: relative; }
.tb-split:has(.tb-split__panel--dark)::after {
	content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
	background: var(--tb-p); z-index: 2; transform: translateX(-2px);
}
.tb-split__panel--dark .tb-split__back { color: var(--tb-s); opacity: 1; }
.tb-split__panel--dark .tb-split__back:hover { color: #fff; }
.tb-split__panel--dark .tb-split__title { color: #FFFFFF !important; }
.tb-split__panel--dark .tb-split__title::after {
	content: ""; display: block; width: 72px; height: 3px; margin-top: 26px;
	background: var(--tb-p); transform-origin: left;
	transition: transform .7s var(--tb-e) .25s;
}
.tb-js [data-tb-motion]:not(.is-in) .tb-split__panel--dark .tb-split__title::after { transform: scaleX(0); }
.tb-split__panel--dark .tb-split__text { color: #C9C9C7; }
@media (max-width: 840px) {
	.tb-split:has(.tb-split__panel--dark)::after { display: none; }
	.tb-split__panel--dark .tb-split__title::after { margin-top: 20px; }
}
.tb-split__media { position: relative; overflow: hidden; background: var(--tb-d); min-height: 300px; }
.tb-split__media img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; }
@media (max-width: 840px) {
	.tb-split { grid-template-columns: 1fr; }
	.tb-split--reverse .tb-split__panel { order: 0; }
	.tb-split__content, .tb-split--reverse .tb-split__content { padding: 60px var(--tb-gut) 64px; }
}

/* Hero slider (Voice-Over-style pages): same fixed frame throughout — only
   the photo underneath changes. Each photo fills the frame edge to edge
   (object-fit: cover), exactly like the single-photo hero it replaces.
   Reuses the site's generic slider engine ([data-tb-slider] /
   .tb-slider__slide / .tb-slider__track / .tb-slider__dot) for consistent
   behaviour. */
.tb-split__media--slider .tb-slider__track { position: absolute; inset: 0; }
.tb-split__media--slider .tb-slider__slide {
	position: absolute; inset: 0; opacity: 0; visibility: hidden; z-index: 0;
	transition: opacity 1s var(--tb-e);
}
.tb-split__media--slider .tb-slider__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.tb-split__media--slider .tb-slider__slide img {
	position: absolute; inset: 0; z-index: 1;
	width: 100%; height: 100% !important; object-fit: cover;
}
.tb-split__dots {
	position: absolute; z-index: 3; left: 50%; bottom: 22px; transform: translateX(-50%);
	display: flex; align-items: center; gap: 2px;
	background: rgba(29, 29, 28, .35); border-radius: 30px; backdrop-filter: blur(6px);
}
@media (max-width: 840px) {
	.tb-split__dots { bottom: 14px; }
}

/* ==========================================================================
   Text section
   ========================================================================== */
.tb-text { padding-block: 100px; }
.tb-text--side { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr); gap: 40px 80px; align-items: start; }
.tb-text--narrow { max-width: calc(var(--tb-narrow, 750px) + var(--tb-gut) * 2); }
.tb-text--narrow .tb-text__head { text-align: center; margin-bottom: 36px; }
.tb-text--stacked .tb-text__head { margin-bottom: 36px; }
.tb-text--twocol .tb-text__head { margin-bottom: 40px; }
.tb-text--twocol .tb-text__copy { column-count: 2; column-gap: 60px; }
.tb-text--twocol .tb-text__copy p { break-inside: avoid; }
.tb-text__copy { font-size: 19px; line-height: 1.8; color: var(--tone-fg); max-width: 72ch; }
.tb-text--twocol .tb-text__copy { max-width: none; }
.tb-text--lead .tb-text__copy { font-size: clamp(19px, 1.6vw, 22px); line-height: 1.6; }
.tb-text .tb-title { font-size: clamp(28px, 2.8vw, 40px); }
.tb-pull {
	margin-top: 30px !important; padding-left: 14px; border-left: 2px solid var(--tb-p);
	font-size: 19px; line-height: 1.6; font-weight: 500; color: var(--tone-head);
}
.tb-tone--primary .tb-pull { border-left-color: #fff; }
.tb-text .tb-more { margin-top: 30px; }
.tb-width--inset { background: transparent; }
.tb-width--inset .tb-text {
	max-width: none; margin-inline: 0 var(--tb-in); padding-inline: max(var(--tb-in), var(--tb-gut)) 60px;
	background: var(--tone-bg);
}
.tb-width--inset.tb-w { background: var(--tb-bg0); }
@media (max-width: 1024px) { .tb-width--inset .tb-text { margin-right: 0; padding-right: var(--tb-gut); } }
@media (max-width: 840px) {
	.tb-text--side { grid-template-columns: 1fr; }
	.tb-text--twocol .tb-text__copy { column-count: 1; }
}

/* ==========================================================================
   Text columns (Mission / Vision)
   ========================================================================== */
.tb-columns { position: relative; padding-block: 130px; overflow: hidden; }
.tb-columns.has-photo::before {
	content: ""; position: absolute; inset: 0; background: var(--bg) center / cover no-repeat; opacity: .22;
}
.tb-columns__inner { position: relative; }
.tb-columns .tb-title { margin-bottom: 60px; }
.tb-columns__grid { display: grid; grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr)); }
.tb-columns__col { padding: 10px 50px 10px 0; }
.tb-columns__col + .tb-columns__col { padding-left: 50px; border-left: 1px solid var(--tone-line); }
.tb-columns__title { font-size: 22px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px !important; }
.tb-columns__title::after { content: ""; display: block; width: 40px; height: 3px; background: var(--tb-s); margin-top: 18px; }
.tb-columns__col p { font-size: 19px; line-height: 1.8; }
@media (max-width: 768px) {
	.tb-columns__grid { grid-template-columns: 1fr; gap: 40px; }
	.tb-columns__col, .tb-columns__col + .tb-columns__col { padding: 0; border: 0; }
}

/* ==========================================================================
   Image arrangement
   ========================================================================== */
.tb-arr { --cols: 3; --gap: 20px; padding-block: 100px; }
.tb-arr__stage { position: relative; }
.tb-arr__item { margin: 0; position: relative; overflow: hidden; background: rgba(29, 29, 28, .06); }
.tb-arr__item img { width: 100%; height: 100% !important; object-fit: cover; transition: transform .9s var(--tb-e); }
.tb-arr__link { display: block; height: 100%; }
.tb-arr--hover .tb-arr__item:hover img { transform: scale(1.045); }
.tb-arr__item figcaption {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px;
	font-size: 14.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #fff;
	background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
}

/* Grid */
.tb-arr--grid .tb-arr__items { display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: var(--gap); grid-auto-flow: dense; }
.tb-arr--grid .tb-arr__item { aspect-ratio: var(--ratio); }
.tb-arr--grid .tb-arr__item.is-wide { grid-column: span 2; aspect-ratio: auto; }
.tb-arr--grid .tb-arr__item.is-tall { grid-row: span 2; aspect-ratio: auto; }
.tb-arr--grid .tb-arr__item.is-big { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* Masonry: grid until JS builds balanced columns (multi-column CSS drops painted items in Chrome) */
.tb-arr--masonry .tb-arr__items { display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: var(--gap); align-items: start; }
.tb-arr--masonry .tb-arr__items.is-masonry { display: flex; align-items: flex-start; }
.tb-arr__col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: var(--gap); }
.tb-arr--masonry .tb-arr__item { background: none; }
.tb-arr--masonry .tb-arr__item img { height: auto !important; }

/* Offset columns */
.tb-arr--offset .tb-arr__items { display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: var(--gap); align-items: start; padding-bottom: 90px; }
.tb-arr--offset .tb-arr__item { aspect-ratio: var(--ratio); }
.tb-arr--offset .tb-arr__item:nth-child(even) { margin-top: 90px; margin-bottom: -90px; }

/* Overlapping stack */
.tb-arr--stack .tb-arr__items { position: relative; height: 620px; }
.tb-arr--stack .tb-arr__item {
	position: absolute; left: var(--l); top: var(--t); z-index: var(--z); width: 58%; aspect-ratio: var(--ratio);
	box-shadow: 0 24px 50px rgba(0, 0, 0, .22); transition: z-index 0s .2s;
}
.tb-arr--stack .tb-arr__item:hover { z-index: 30; transition-delay: 0s; }

/* Free collage */
.tb-arr--collage .tb-arr__items { position: relative; height: 620px; }
.tb-arr--collage .tb-arr__item {
	position: absolute; left: var(--x); top: var(--y); z-index: var(--z); width: var(--w);
	rotate: var(--r); box-shadow: 0 24px 50px rgba(0, 0, 0, .22); transition: z-index 0s .2s, rotate .5s var(--tb-e);
}
.tb-arr--collage .tb-arr__item img { height: auto !important; }
.tb-arr--collage .tb-arr__item:hover { z-index: 30; rotate: 0deg; transition-delay: 0s; }

/* Single framed & slider share the frame */
.tb-arr--single .tb-arr__item, .tb-arr--slider .tb-arr__item { aspect-ratio: var(--ratio); }
.tb-arr--frame .tb-arr__stage { padding: 0 90px 90px 0; }
.tb-arr--frame .tb-arr__stage::before {
	content: ""; position: absolute; left: 90px; top: 90px; right: 0; bottom: 0; background: var(--tb-s);
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%);
}
.tb-arr--frame .tb-arr__items { position: relative; z-index: 1; }

/* Slider */
.tb-arr--slider .tb-arr__items { display: grid; }
.tb-arr--slider .tb-arr__item {
	grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translate3d(30px, 0, 0);
	transition: opacity .7s ease, transform .9s var(--tb-e), visibility .7s;
}
.tb-js [data-tb-motion].is-in .tb-arr--slider .tb-arr__item:not(.is-active) { opacity: 0; transform: translate3d(30px, 0, 0); }
.tb-arr--slider .tb-arr__item.is-active { opacity: 1; visibility: visible; transform: none; z-index: 1; }
.tb-arr--slider .tb-arr__items { touch-action: pan-y; cursor: grab; }
.tb-arr__nav {
	position: absolute; right: 22px; top: 50%; z-index: 2; transform: translateY(-50%);
	display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--tb-d);
}
.tb-arr:not(.tb-arr--frame) .tb-arr__nav { position: static; transform: none; flex-direction: row; justify-content: center; margin-top: 24px; color: var(--tone-head); }
.tb-slider__prev, .tb-slider__next, .tb-rail__prev, .tb-rail__next {
	width: 40px; height: 40px; border: 0; border-radius: 50%; background: transparent; color: inherit;
	font-size: 26px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background-color .3s, color .3s;
}
.tb-slider__prev:hover, .tb-slider__next:hover, .tb-rail__prev:hover, .tb-rail__next:hover { background: var(--tb-d); color: #fff; }
.tb-slider__prev:disabled, .tb-slider__next:disabled, .tb-rail__prev:disabled, .tb-rail__next:disabled { opacity: .3; cursor: default; background: transparent; color: inherit; }
.tb-slider__counter { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; }
.tb-slider__counter i { width: 1px; height: 26px; background: currentColor; opacity: .5; }
.tb-arr:not(.tb-arr--frame) .tb-slider__counter { flex-direction: row; }
.tb-arr:not(.tb-arr--frame) .tb-slider__counter i { width: 26px; height: 1px; }

@media (max-width: 840px) {
	.tb-arr--frame .tb-arr__stage { padding: 0 24px 24px 0; }
	.tb-arr--frame .tb-arr__stage::before { left: 24px; top: 24px; clip-path: none; }
	.tb-arr--frame .tb-arr__nav { position: static; transform: none; flex-direction: row; justify-content: center; margin-top: 18px; color: var(--tone-head); padding-left: 24px; }
	.tb-arr--frame .tb-slider__counter { flex-direction: row; }
	.tb-arr--frame .tb-slider__counter i { width: 26px; height: 1px; }
	.tb-arr--stack .tb-arr__items, .tb-arr--collage .tb-arr__items { height: auto !important; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
	.tb-arr--stack .tb-arr__item, .tb-arr--collage .tb-arr__item { position: relative; left: auto; top: auto; width: auto; rotate: none; box-shadow: none; }
}
@media (max-width: 640px) {
	.tb-arr--grid .tb-arr__item.is-wide, .tb-arr--grid .tb-arr__item.is-big { grid-column: auto; }
	.tb-arr--offset .tb-arr__item:nth-child(even) { margin: 0; }
	.tb-arr--offset .tb-arr__items { padding-bottom: 0; }
}

/* ==========================================================================
   Video grid
   ========================================================================== */
.tb-videos { padding-block: 100px; }
.tb-videos__grid {
	--cols: 3;
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: 20px;
}
.tb-video__play, .tb-video__player {
	position: relative; display: block; width: 100%; aspect-ratio: var(--ratio, 9/16);
	border: 0; padding: 0; background: var(--tb-d); overflow: hidden; cursor: pointer;
}
.tb-video__play img, .tb-video__play video, .tb-video__player video, .tb-video__player iframe {
	position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; border: 0;
}
.tb-video__player video { object-fit: contain; background: #000; }
.tb-video__play::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .45), rgba(0, 0, 0, 0) 50%); transition: opacity .4s; }
.tb-video__icon {
	position: absolute; left: 50%; top: 50%; z-index: 1; width: 68px; height: 68px; margin: -34px 0 0 -34px;
	border: 2px solid #fff; border-radius: 50%; transition: transform .4s var(--tb-e), background-color .4s, border-color .4s;
}
.tb-video__icon::before {
	content: ""; position: absolute; left: 54%; top: 50%; transform: translate(-50%, -50%);
	border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff;
}
.tb-video__play:hover .tb-video__icon, .tb-video__play:focus-visible .tb-video__icon { transform: scale(1.1); background: var(--tb-p); border-color: var(--tb-p); }
.tb-video__caption { margin-top: 12px !important; font-size: 14.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ==========================================================================
   Timeline
   ========================================================================== */
.tb-timeline { padding-block: 110px 90px; }
.tb-timeline__intro { display: grid; grid-template-columns: minmax(0, 1fr); gap: 50px; max-width: 900px; margin-bottom: 70px; }
.tb-timeline__intro.has-photo { grid-template-columns: 240px minmax(0, 1fr); align-items: start; }
.tb-timeline__photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.tb-timeline__role { margin-top: 16px !important; font-size: 18px; font-weight: 600; line-height: 1.6; }
.tb-timeline__text { margin-top: 16px !important; font-size: 19px; line-height: 1.8; font-weight: 400; color: var(--tone-soft); max-width: 70ch; }
.tb-timeline__rail { position: relative; }
.tb-timeline__track {
	list-style: none; margin: 0; padding: 0 0 6px;
	display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
	position: relative; cursor: grab;
}
.tb-timeline__track::-webkit-scrollbar { display: none; }
.tb-timeline__track.is-drag { cursor: grabbing; scroll-snap-type: none; }
.tb-timeline__item {
	flex: 0 0 clamp(220px, 22vw, 290px); scroll-snap-align: start;
	display: grid; grid-template-rows: 150px 70px 150px; justify-items: center; text-align: center;
	position: relative; padding-inline: 14px;
}
.tb-timeline__item::before { content: ""; position: absolute; left: 0; right: 0; top: 185px; height: 2px; background: var(--tone-head); opacity: .7; }
.tb-timeline__node {
	grid-row: 2; position: relative; z-index: 1;
	display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
	background: var(--tb-d); color: var(--tb-s); font-size: 15px; font-weight: 800; box-shadow: 0 0 0 6px var(--tone-bg), 0 0 0 8px var(--tb-d);
}
.tb-timeline__item-text { font-size: 17px; line-height: 1.55; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin: 0 !important; }
.tb-timeline__item.is-up .tb-timeline__item-text { grid-row: 1; align-self: end; padding-bottom: 18px; }
.tb-timeline__item.is-down .tb-timeline__item-text { grid-row: 3; align-self: start; padding-top: 18px; }
.tb-timeline__arrows { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
@media (max-width: 640px) {
	.tb-timeline__intro.has-photo { grid-template-columns: 1fr; }
	.tb-timeline__photo { max-width: 240px; }
}

/* ==========================================================================
   Feature cards
   ========================================================================== */
.tb-features { padding-block: 110px; }
.tb-features__grid {
	--cols: 2;
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: 30px;
}
.tb-feature {
	background: #fff; padding: 56px 40px 60px; text-align: center; color: var(--tb-d);
	border: 1px solid rgba(29, 29, 28, .1); transition: background-color .4s, color .4s;
}
.tb-tone--dark .tb-feature { background: rgba(255, 255, 255, .04); color: #E1E1E0; border-color: rgba(255, 255, 255, .1); }
.tb-feature:hover { background: var(--tb-d); color: #fff; }
.tb-feature__icon { display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 26px; color: var(--tb-s); font-size: 44px; }
.tb-feature__icon svg { width: 48px; height: 48px; fill: currentColor; }
.tb-feature__title { font-size: 15px !important; letter-spacing: 2.5px; text-transform: uppercase; color: inherit !important; margin-bottom: 10px !important; }
.tb-feature__text { font-size: 17px; line-height: 1.7; opacity: .8; }

/* ==========================================================================
   Call to action band
   ========================================================================== */
.tb-cta { position: relative; padding-block: 110px; overflow: hidden; }
.tb-cta.has-photo::before { content: ""; position: absolute; inset: 0; background: var(--bg) center / cover no-repeat; opacity: .25; }
.tb-cta::after {
	content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 38%;
	background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--tb-p) 45%, transparent)); pointer-events: none;
}
.tb-cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.tb-cta__copy { max-width: 640px; }
.tb-cta__title { font-size: clamp(30px, 3.2vw, 46px); line-height: 1.1; text-transform: uppercase; letter-spacing: .01em; }
.tb-cta__text { margin-top: 18px !important; font-size: 19px; line-height: 1.75; color: var(--tone-soft); }

/* ==========================================================================
   Contact
   ========================================================================== */
.tb-contact { display: grid; grid-template-columns: minmax(280px, 420px) minmax(0, 1fr); gap: clamp(40px, 6vw, 80px); padding-block: 100px; align-items: start; }
@media (min-width: 901px) { .tb-contact__info { position: sticky; top: 110px; } }
.tb-contact__info { background: color-mix(in srgb, var(--tb-s) 16%, #fff); color: var(--tb-d); padding: 50px 40px 70px; }
.tb-contact__title { font-size: clamp(28px, 2.6vw, 40px); line-height: 1.12; margin-bottom: 18px !important; color: var(--tb-d) !important; }
.tb-contact__text { font-size: 18px; line-height: 1.75; color: #3F3F3E; }
.tb-contact__list { margin: 34px 0 0; display: grid; gap: 22px; }
.tb-contact__row dt { font-size: 13.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--tb-p); margin-bottom: 6px; }
.tb-contact__row dd { margin: 0; font-size: 17px; line-height: 1.6; font-weight: 500; }
.tb-contact__row a { color: inherit; text-decoration: none; }
.tb-contact__row a:hover { color: var(--tb-p); }
.tb-contact__info, .tb-contact__row dd { min-width: 0; }
/* Contact values (phone, email) share one size, and the email always stays on
   one line: 17px while the card is wide enough, then all values scale down
   together with the card width so the address still fits inside it. */
.tb-contact__info { container-type: inline-size; }
.tb-contact__row dd { font-size: min(17px, 5.05cqi); }
.tb-contact__mail { white-space: nowrap; }
.tb-contact__form .tb-contact__title { color: var(--tone-head) !important; }
.tb-contact__form .tb-contact__text { color: var(--tone-soft); margin-bottom: 30px !important; }
@media (max-width: 900px) { .tb-contact { grid-template-columns: minmax(0, 1fr); gap: 50px; } }
@media (max-width: 640px) { .tb-contact { padding-block: 60px; } .tb-contact__info { padding: 36px 20px 44px; } }

/* Form fields (Contact Form 7 markup) */
.tb-form .wpcf7-form { display: block; }
.tb-form .screen-reader-response { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.tb-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 24px; align-items: start; }
/* Safety net if Contact Form 7 adds <p> / <br> around fields */
.tb-form-grid > p { display: contents; }
.tb-form-grid br { display: none; }
.tb-field {
	display: flex; flex-direction: column; gap: 10px; margin: 0;
	font-size: 13.5px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; line-height: 1.3;
	color: var(--tone-head, var(--tb-d));
}
.tb-field--full { grid-column: 1 / -1; }
.tb-field .wpcf7-form-control-wrap { display: block; letter-spacing: normal; text-transform: none; }
.tb-form input[type="text"], .tb-form input[type="email"], .tb-form input[type="tel"], .tb-form select, .tb-form textarea {
	display: block; width: 100%; height: 54px; margin: 0; padding: 0 18px;
	border: 1px solid #DCDCDA; border-radius: 0; background: #fff; color: var(--tb-d);
	font-family: inherit; font-size: 15px; font-weight: 400; line-height: 1.4; letter-spacing: normal; text-transform: none;
	transition: border-color .3s, box-shadow .3s; -webkit-appearance: none; appearance: none; box-shadow: none;
}
.tb-form input::placeholder, .tb-form textarea::placeholder { color: #9A9A98; }
.tb-form select {
	padding-right: 48px; cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23575756' stroke-width='1.6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 18px center; background-size: 12px 8px;
}
.tb-form textarea { height: auto; min-height: 170px; padding: 16px 18px; resize: vertical; }
.tb-form input:hover, .tb-form select:hover, .tb-form textarea:hover { border-color: #B4B4B2; }
.tb-form input:focus, .tb-form select:focus, .tb-form textarea:focus {
	outline: none; border-color: var(--tb-s); box-shadow: 0 0 0 3px color-mix(in srgb, var(--tb-s) 25%, transparent);
}
/* Preferred contact method: three equal choice chips, same height as the inputs */
.tb-form .wpcf7-radio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.tb-form .wpcf7-list-item { display: block; margin: 0; }
.tb-form .wpcf7-list-item label {
	display: flex; align-items: center; justify-content: center; gap: 8px; height: 54px; padding: 0 10px;
	border: 1px solid #DCDCDA; background: #fff; cursor: pointer;
	font-size: 15px; font-weight: 600; letter-spacing: .3px; text-transform: none; color: var(--tb-d);
	transition: border-color .3s, background-color .3s, color .3s;
}
.tb-form .wpcf7-list-item label:hover { border-color: #B4B4B2; }
.tb-form .wpcf7-list-item input { width: 16px; height: 16px; margin: 0; accent-color: var(--tb-p); cursor: pointer; }
.tb-form .wpcf7-list-item label:has(input:checked) { border-color: var(--tb-p); color: var(--tb-p); background: color-mix(in srgb, var(--tb-p) 5%, #fff); }
.tb-form .wpcf7-list-item label:has(input:focus-visible) { box-shadow: 0 0 0 3px color-mix(in srgb, var(--tb-s) 25%, transparent); }
/* Submit */
.tb-form-actions { grid-column: 1 / -1; display: flex; align-items: center; flex-wrap: wrap; gap: 16px 20px; padding-top: 6px; }
.tb-form .wpcf7-submit {
	display: inline-flex; align-items: center; justify-content: center; height: 56px; padding: 0 42px; margin: 0;
	border: 0; border-radius: 0; background: var(--tb-p); color: #fff; cursor: pointer;
	font-family: inherit; font-size: 14.5px; font-weight: 700; line-height: 1; letter-spacing: 1.4px; text-transform: uppercase;
	transition: background-color .35s; -webkit-appearance: none; appearance: none;
}
.tb-form .wpcf7-submit:hover, .tb-form .wpcf7-submit:focus-visible { background: var(--tb-d); outline: none; }
.tb-form .wpcf7-submit:disabled { opacity: .6; cursor: wait; }
.tb-form-note { font-size: 14.5px; color: #3F3F3E; letter-spacing: .3px; }
.tb-form .wpcf7-spinner { margin: 0; }
.tb-form .wpcf7-not-valid-tip { display: block; margin-top: 6px; font-size: 14.5px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--tb-p); }
.tb-form .wpcf7-not-valid { border-color: var(--tb-p) !important; }
.tb-form .wpcf7-response-output { margin: 24px 0 0 !important; padding: 14px 18px !important; border-width: 1px !important; font-size: 15px; line-height: 1.5; background: #fff; }
.tb-note { padding: 16px; border: 1px dashed currentColor; opacity: .7; font-size: 15px; }
@media (max-width: 640px) {
	.tb-form-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
	.tb-form input[type="text"], .tb-form input[type="email"], .tb-form input[type="tel"], .tb-form select, .tb-form textarea { font-size: 16px; }
	.tb-form-actions { flex-direction: column; align-items: stretch; }
	.tb-form .wpcf7-submit { width: 100%; }
	.tb-form-note { text-align: center; }
}
@media (max-width: 360px) { .tb-form .wpcf7-radio { grid-template-columns: minmax(0, 1fr); } }

/* Column fallbacks: Elementor's own responsive settings (more specific) win when set */
@media (max-width: 1024px) {
	.tb-cards__grid, .tb-videos__grid { --cols: 2; }
	.tb-logos__grid { --cols: 4; }
	.tb-arr { --cols: 2; }
}
@media (max-width: 767px) {
	.tb-cards__grid { --cols: 2; }
	.tb-videos__grid, .tb-features__grid { --cols: 1; }
	.tb-logos__grid { --cols: 3; }
	.tb-arr { --cols: 2; }
}
@media (max-width: 480px) {
	.tb-logos__grid { --cols: 2; }
	.tb-arr--grid, .tb-arr--offset { --cols: 1; }
}

/* ==========================================================================
   Responsive spacing
   ========================================================================== */
@media (max-width: 768px) {
	.tb-w { --tb-gut: 20px; }
	.tb-logos, .tb-cards, .tb-arr, .tb-videos, .tb-features, .tb-cta, .tb-contact, .tb-timeline { padding-block: 70px; }
	.tb-text { padding-block: 70px; }
	.tb-columns { padding-block: 80px; }
	.tb-services { padding-block: 70px 90px; }
	.tb-head { margin-bottom: 40px; }
	.tb-logos__grid { gap: 18px; }
}

/* Logo without an image yet: show the client name */
.tb-logos__name {
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--tb-gray, #575756);
}
.tb-panel__foot .tb-more:hover { color: var(--tb-p); }

/* Two panels: tighter layout (v1.0.4) */
@media (min-width: 1025px) {
	.tb-panels { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 0; padding-right: 0; padding-bottom: 80px; }
	.tb-panel:first-child { display: flex; align-items: center; }
	.tb-panel:first-child .tb-panel__inner { width: 100%; padding: 70px 70px 70px max(var(--tb-gut), calc((100vw - var(--tb-c)) / 2)); }
	.tb-panel:last-child { --pr: max(60px, calc((100vw - var(--tb-wide, 1600px)) / 2)); }
	.tb-panel:last-child .tb-panel__inner { padding: 56px var(--pr) 0 60px; }
	.tb-panel__foot { margin-left: -60px; margin-right: calc(-1 * var(--pr)); padding: 28px var(--pr) 40px 60px; }
}
.tb-panel__title { margin-bottom: 26px !important; }
.tb-panel:last-child .tb-panel__title { margin-bottom: 20px !important; }
.tb-panel__links { margin-bottom: 28px; }
.tb-panel__links a, .tb-panel__links li > span { min-height: 40px; padding: 6px 0; }
.tb-panel__foot .tb-more { margin-top: 18px; }
.tb-panel .tb-more { margin-top: 28px; }

/* Contact Form 7 states in logo colours (replace plugin blue/green/yellow) */
.tb-contact .wpcf7-spinner { background-color: var(--tb-gray, #575756); }
.tb-contact .wpcf7-not-valid-tip { color: var(--tb-p); }
.tb-contact .wpcf7-not-valid { border-color: var(--tb-p) !important; }
.tb-contact .wpcf7 form .wpcf7-response-output { border-color: var(--tb-s); }
.tb-contact .wpcf7 form.sent .wpcf7-response-output { border-color: var(--tb-s); }
.tb-contact .wpcf7 form.invalid .wpcf7-response-output,
.tb-contact .wpcf7 form.unaccepted .wpcf7-response-output,
.tb-contact .wpcf7 form.payment-required .wpcf7-response-output,
.tb-contact .wpcf7 form.failed .wpcf7-response-output,
.tb-contact .wpcf7 form.aborted .wpcf7-response-output,
.tb-contact .wpcf7 form.spam .wpcf7-response-output { border-color: var(--tb-p); }
.tb-contact .hidden-fields-container { border: 0; }
/* Form fine-tuning */
.tb-form .wpcf7-list-item label { gap: 7px; padding: 0 6px; }
.tb-form-actions { position: relative; }
.tb-form-actions .wpcf7-spinner { position: absolute; right: 0; top: 22px; }
@media (max-width: 640px) {
	.tb-form-actions { gap: 12px; }
	.tb-form-actions .wpcf7-spinner { top: auto; bottom: -34px; right: 50%; transform: translateX(50%); }
}

/* Card grid: narrow width + team profile cards */
.tb-width--narrow .tb-cards { max-width: calc(780px + var(--tb-gut) * 2); }
.tb-cards--profile { gap: 32px; justify-content: center; align-items: stretch; }
.tb-cards--profile .tb-card { display: flex; }
.tb-cards--profile .tb-card__inner { display: flex; flex-direction: column; width: 100%; background: #fff; box-shadow: 0 1px 0 rgba(29, 29, 28, .06); }
.tb-cards--profile .tb-card__media { aspect-ratio: var(--ratio, 4/5); background: #E1E1E0; }
.tb-cards--profile .tb-card__media img { object-position: center 20%; }
.tb-cards--profile .tb-card__circle { display: none; }
.tb-cards--profile .tb-card__bar {
	position: relative; display: flex; flex-direction: column; justify-content: flex-start; gap: 8px; flex: 1; min-height: 0;
	padding: 26px 26px 28px; background: #fff; color: var(--tb-d); text-align: left;
}
.tb-cards--profile .tb-card__bar::before {
	content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
	background: var(--tb-s); transform: scaleX(.18); transform-origin: left; transition: transform .6s var(--tb-e);
}
.tb-cards--profile .tb-card__inner:hover .tb-card__bar::before { transform: scaleX(1); }
.tb-cards--profile .tb-card__title { font-size: 20px; font-weight: 700; line-height: 1.25; color: var(--tb-d); }
.tb-cards--profile .tb-card__meta { font-size: 13.5px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; color: var(--tb-p); }
@media (max-width: 640px) {
	.tb-cards--profile { gap: 20px; }
	.tb-cards--profile .tb-card__bar { padding: 18px 18px 20px; }
	.tb-cards--profile .tb-card__title { font-size: 17px; }
}
@media (max-width: 480px) {
	.tb-cards__grid.tb-cards--profile { --cols: 2 !important; gap: 12px; }
	.tb-cards--profile .tb-card__bar { padding: 14px 12px 16px; gap: 6px; }
	.tb-cards--profile .tb-card__title { font-size: 15px; }
	.tb-cards--profile .tb-card__meta { font-size: 12.5px; letter-spacing: 1px; }
}
.tb-cards--profile .tb-card__meta { line-height: 1.45; }

/* Services list: cards with image (What We Do page) */
.tb-services--cards .tb-services { padding-block: 70px 110px; }
.tb-services--cards .tb-services__list {
	--cols: 3;
	display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); gap: 28px; max-width: none;
}
.tb-services--cards .tb-service__text { max-width: none; }
.tb-services--cards .tb-service {
	display: flex; flex-direction: column; margin: 0 !important; background: #fff;
	box-shadow: 0 1px 0 rgba(29, 29, 28, .06); transition: box-shadow .45s var(--tb-e), transform .45s var(--tb-e);
}
.tb-services--cards .tb-service:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(29, 29, 28, .10); }
.tb-services--cards .tb-service__media { display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--tb-d); }
.tb-services--cards .tb-service__media img { width: 100%; height: 100% !important; object-fit: cover; transition: transform .9s var(--tb-e); }
.tb-services--cards .tb-service:hover .tb-service__media img { transform: scale(1.05); }
.tb-services--cards .tb-service__body {
	position: relative; display: flex; flex-direction: column; flex: 1; padding: 30px 30px 32px;
}
.tb-services--cards .tb-service__body::before {
	content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
	background: var(--tb-s); transform: scaleX(.14); transform-origin: left; transition: transform .6s var(--tb-e);
}
.tb-services--cards .tb-service:hover .tb-service__body::before { transform: scaleX(1); }
.tb-services--cards .tb-service__badge {
	display: block; width: auto; height: auto; margin: 0 0 12px; border-radius: 0; background: none;
	font-size: 14.5px; font-weight: 700; letter-spacing: 1.1px; color: var(--tb-p);
}
.tb-services--cards .tb-service__title { margin: 0 0 12px !important; font-size: 22px; line-height: 1.25; }
.tb-services--cards .tb-service__title a { color: var(--tb-d); text-decoration: none; }
.tb-services--cards .tb-service__title a:hover { color: var(--tb-p); }
.tb-services--cards .tb-service__text { margin: 0 !important; font-size: 18px; line-height: 1.7; color: #3F3F3E; }
.tb-services--cards .tb-service .tb-more { margin-top: auto; padding-top: 24px; }
@media (max-width: 1024px) { .tb-services--cards .tb-services__list { gap: 20px; } }
@media (max-width: 640px) {
	.tb-services--cards .tb-services { padding-block: 40px 70px; }
	.tb-services--cards .tb-service__body { padding: 22px 20px 24px; }
	.tb-services--cards .tb-service__title { font-size: 19px; }
}

/* ==========================================================================
   Hero slider — extra layouts (used by the alternative home pages)
   ========================================================================== */
/* Split: dark text panel on the left, photo on the right */
@media (min-width: 901px) {
	.tb-hero--split .tb-hero__img { left: 44%; width: 56%; }
	.tb-hero--split .tb-hero__slide::after { left: 44%; }
	.tb-hero--split .tb-hero__content {
		position: absolute; left: 0; top: 0; bottom: 0; width: 44%; z-index: 2;
		display: flex; align-items: center; background: var(--tb-d);
	}
	.tb-hero--split .tb-hero__card {
		max-width: none; width: 100%; background: none; clip-path: none;
		padding: 0 6% 0 max(var(--tb-gut), calc((100vw - var(--tb-c)) / 2));
	}
	.tb-hero--split .tb-hero__title { font-size: clamp(30px, 2.8vw, 44px); }
	.tb-hero--split .tb-hero__title--brand { font-size: clamp(38px, 4vw, 62px); }
	.tb-hero--split .tb-hero__dots { left: auto; right: 0; background: var(--tb-p); }
}
/* Minimal: full-bleed photo, big centered title, dots along the bottom */
.tb-hero--minimal .tb-hero__content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; }
.tb-hero--minimal .tb-hero__card { background: none; clip-path: none; max-width: 980px; padding: 0 var(--tb-gut); }
.tb-hero--minimal .tb-hero__title { font-size: clamp(34px, 5vw, 72px); }
.tb-hero--minimal .tb-hero__title--brand { font-size: clamp(40px, 6.4vw, 96px); }
.tb-hero--minimal .tb-hero__title--brand span { display: inline-block; }
.tb-hero--minimal .tb-hero__title--brand .is-next { margin-left: .3em; }
.tb-hero--minimal .tb-hero__text { margin-inline: auto; max-width: 60ch; }
.tb-hero--minimal .tb-hero__actions { justify-content: center; }
.tb-hero--minimal .tb-hero__slide::after { opacity: .45; }
.tb-hero--minimal .tb-hero__dots, .tb-hero--boxed .tb-hero__dots {
	left: 50%; top: auto; bottom: 26px; transform: translateX(-50%);
	flex-direction: row; gap: 10px; padding: 10px 14px; background: rgba(29, 29, 28, .55);
}
/* Boxed: the photo sits inside the page with margins, card overlaps its corner */
.tb-hero--boxed { padding: 26px; background: var(--tb-ground); }
.tb-hero--boxed .tb-hero__track { inset: 26px; }
.tb-hero--boxed .tb-hero__slide { overflow: hidden; }
.tb-hero--boxed .tb-hero__card { background: rgba(29, 29, 28, .92); padding: 36px 44px 40px 48px; }
@media (max-width: 900px) {
	.tb-hero--split .tb-hero__content { position: absolute; inset: 0; display: flex; align-items: flex-end; }
	.tb-hero--split .tb-hero__card { background: rgba(29, 29, 28, .92); }
	.tb-hero--boxed { padding: 14px; }
	.tb-hero--boxed .tb-hero__track { inset: 14px; }
}

/* ==========================================================================
   Showreel — a few real samples: films on the left, tracks on the right.
   Players (YouTube / SoundCloud) are only created when the visitor asks.
   ========================================================================== */
.tb-reel {
	width: 100%; max-width: calc(var(--tb-c) + var(--tb-gut) * 2);
	margin-inline: auto; padding-inline: var(--tb-gut); padding-block: 100px;
}
.tb-width--wide .tb-reel { max-width: calc(var(--tb-wd) + var(--tb-gut) * 2); }
/* Adjacent sections on the same background: don't double the gap between them. */
.tb-space-top--tight .tb-reel { padding-top: 46px; }
.tb-space-top--none .tb-reel { padding-top: 0; }

.tb-reel__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 34px; align-items: stretch; }

/* ---------- Shared column label ---------- */
.tb-reel__label {
	display: flex; align-items: center; gap: 12px; margin: 0 0 14px !important; min-height: 20px;
	font-size: 13.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--tb-s);
}
.tb-reel__label::after { content: ""; flex: 1; height: 1px; background: var(--tone-line); }
.tb-reel__label-i--play {
	width: 0; height: 0; border-left: 9px solid var(--tb-p);
	border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.tb-reel__label-i--wave { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.tb-reel__label-i--wave i { width: 2px; background: var(--tb-p); animation: tb-reel-bar 1.1s ease-in-out infinite; }
.tb-reel__label-i--wave i:nth-child(1) { height: 40%; animation-delay: 0s; }
.tb-reel__label-i--wave i:nth-child(2) { height: 100%; animation-delay: .14s; }
.tb-reel__label-i--wave i:nth-child(3) { height: 62%; animation-delay: .28s; }
.tb-reel__label-i--wave i:nth-child(4) { height: 84%; animation-delay: .42s; }
@keyframes tb-reel-bar { 0%, 100% { transform: scaleY(.45); } 50% { transform: scaleY(1); } }

/* ---------- Watch ---------- */
.tb-reel__stage { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.tb-reel__screen {
	position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0;
	background: #000; cursor: pointer; display: block; overflow: hidden;
}
.tb-reel__screen img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--tb-e), opacity .4s; }
.tb-reel__screen::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(to top, rgba(0, 0, 0, .78), rgba(0, 0, 0, .05) 52%);
}
.tb-reel__screen:hover img, .tb-reel__screen:focus-visible img { transform: scale(1.045); }
.tb-reel__icon {
	position: absolute; left: 50%; top: 50%; z-index: 2; transform: translate(-50%, -50%);
	width: 76px; height: 76px; border-radius: 50%; background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .5); backdrop-filter: blur(3px);
	transition: background-color .35s, border-color .35s, transform .35s var(--tb-e);
}
.tb-reel__icon::before {
	content: ""; position: absolute; left: 54%; top: 50%; transform: translate(-50%, -50%);
	width: 0; height: 0; border-left: 17px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}
.tb-reel__screen:hover .tb-reel__icon, .tb-reel__screen:focus-visible .tb-reel__icon {
	background: var(--tb-p); border-color: var(--tb-p); transform: translate(-50%, -50%) scale(1.08);
}
.tb-reel__now {
	position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 22px 26px;
	display: flex; flex-direction: column; gap: 7px; text-align: left; color: #fff;
}
.tb-reel__now-kind {
	align-self: flex-start; padding: 5px 11px; background: var(--tb-p);
	font-size: 12.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; line-height: 1;
}
.tb-reel__now-name { font-size: clamp(16px, 1.5vw, 21px); font-weight: 700; line-height: 1.25; }
/* Once the player is in, the poster button must really go away: it is
   display:block, which would otherwise beat the [hidden] attribute. */
.tb-reel__screen[hidden] { display: none; }
.tb-reel__player { position: absolute; inset: 0; z-index: 3; }
.tb-reel__player iframe { width: 100%; height: 100%; border: 0; display: block; }

.tb-reel__thumbs { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.tb-reel__thumb {
	width: 100%; padding: 0; border: 0; background: none; cursor: pointer; text-align: left;
	display: flex; flex-direction: column; gap: 10px;
}
.tb-reel__thumb-img { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.tb-reel__thumb-img img { width: 100%; height: 100%; object-fit: cover; opacity: .62; transition: opacity .35s, transform .7s var(--tb-e); }
.tb-reel__thumb-img::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
	background: var(--tb-p); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--tb-e);
}
.tb-reel__thumb:hover .tb-reel__thumb-img img, .tb-reel__thumb:focus-visible .tb-reel__thumb-img img { opacity: .9; transform: scale(1.06); }
.tb-reel__thumb.is-active .tb-reel__thumb-img img { opacity: 1; }
.tb-reel__thumb.is-active .tb-reel__thumb-img::after { transform: scaleX(1); }
.tb-reel__thumb-txt { display: block; }
.tb-reel__thumb-kind { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; color: var(--tb-s); margin-bottom: 4px; }
.tb-reel__thumb-name {
	display: block; font-size: 14.5px; font-weight: 600; line-height: 1.4; color: var(--tone-fg);
	overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.tb-reel__thumb.is-active .tb-reel__thumb-name { color: var(--tone-head); }

/* ---------- Listen ---------- */
/* Both columns are the same card: red rule on top, hairline frame, equal padding,
   labels outside and on the same line — so Watch and Listen read as a pair. */
.tb-reel__col { display: flex; flex-direction: column; min-width: 0; }
.tb-reel__body {
	flex: 1 1 auto; display: flex; flex-direction: column; min-width: 0;
	padding: 18px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid var(--tone-line); border-top: 3px solid var(--tb-p);
}
.tb-tone--light .tb-reel__body, .tb-tone--white .tb-reel__body { background: rgba(29, 29, 28, .025); }
.tb-tone--primary .tb-reel__body { background: rgba(0, 0, 0, .1); border-top-color: #fff; }
.tb-tone--secondary .tb-reel__body { background: rgba(255, 255, 255, .35); }
.tb-reel__listen .tb-reel__body { padding: 18px 22px; }
.tb-reel__tracks { list-style: none; margin: 0; padding: 0; flex: 1 1 auto; display: flex; flex-direction: column; border-top: 1px solid var(--tone-line); }
.tb-reel__track { flex: 1 1 auto; min-height: 96px; max-height: 172px; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--tone-line); }
.tb-reel__track.is-open { flex: 0 0 auto; }
.tb-reel__trigger {
	width: 100%; padding: 17px 2px; border: 0; background: none; cursor: pointer; text-align: left; color: inherit;
	display: grid; grid-template-columns: max-content max-content minmax(0, 1fr) minmax(0, 92px) max-content;
	align-items: center; gap: 14px; transition: padding-inline .35s var(--tb-e);
}
.tb-reel__trigger:hover, .tb-reel__trigger:focus-visible { padding-inline: 10px 2px; }
.tb-reel__num { font-size: 13.5px; font-weight: 700; letter-spacing: 1px; color: var(--tone-soft); transition: color .3s; }
.tb-reel__cue {
	position: relative; width: 34px; height: 34px; border-radius: 50%;
	border: 1px solid var(--tone-line); flex: none; transition: background-color .35s, border-color .35s;
}
.tb-reel__cue::before {
	content: ""; position: absolute; left: 54%; top: 50%; transform: translate(-50%, -50%);
	width: 0; height: 0; border-left: 9px solid currentColor; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
	transition: opacity .2s;
}
.tb-reel__cue::after {
	content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	width: 10px; height: 11px; opacity: 0;
	border-left: 3px solid currentColor; border-right: 3px solid currentColor;
	transition: opacity .2s;
}
.tb-reel__trigger:hover .tb-reel__cue, .tb-reel__trigger:focus-visible .tb-reel__cue { background: var(--tb-p); border-color: var(--tb-p); color: #fff; }
.tb-reel__meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.tb-reel__t-name { font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--tone-head); }
.tb-reel__t-kind { font-size: 12.5px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; color: var(--tb-s); }
.tb-reel__wave { display: flex; align-items: center; gap: 2px; height: 26px; min-width: 0; overflow: hidden; }
.tb-reel__wave i {
	flex: 1 1 auto; min-width: 1px; height: var(--h); border-radius: 1px;
	background: currentColor; opacity: .34; transform-origin: center;
	transition: opacity .3s, background-color .3s;
}
.tb-reel__trigger:hover .tb-reel__wave i { opacity: .55; }
.tb-reel__time { font-size: 13.5px; font-weight: 600; letter-spacing: .6px; color: var(--tone-soft); font-variant-numeric: tabular-nums; }

.tb-reel__track.is-open .tb-reel__trigger { padding-inline: 10px 2px; }
.tb-reel__track.is-open .tb-reel__num { color: var(--tb-p); }
.tb-reel__track.is-open .tb-reel__cue { background: var(--tb-p); border-color: var(--tb-p); color: #fff; }
.tb-reel__track.is-open .tb-reel__cue::before { opacity: 0; }
.tb-reel__track.is-open .tb-reel__cue::after { opacity: 1; }
.tb-reel__track.is-open .tb-reel__wave i { background: var(--tb-p); opacity: .85; animation: tb-reel-play 1.25s ease-in-out infinite; animation-delay: calc(var(--i) * 45ms); }
@keyframes tb-reel-play { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }
.tb-reel__frame { padding: 0 2px 18px; }
.tb-reel__frame iframe { width: 100%; height: 120px; border: 0; display: block; }
/* When SoundCloud's widget API answers, the row itself becomes the player. */
.tb-reel__track.is-api .tb-reel__frame { padding: 0; height: 0; overflow: hidden; }
.tb-reel__bar { display: block; height: 2px; background: var(--tone-line); overflow: hidden; opacity: 0; transition: opacity .3s; }
.tb-reel__bar::before {
	content: ""; display: block; height: 100%; background: var(--tb-p);
	transform: scaleX(var(--p, 0)); transform-origin: left; transition: transform .25s linear;
}
.tb-reel__track.is-api .tb-reel__bar { opacity: 1; }
.tb-reel__track.is-api .tb-reel__time { color: var(--tb-p); }
.tb-reel__note { margin: 20px 0 0 !important; font-size: 14.5px; line-height: 1.75; color: var(--tone-soft); max-width: 46ch; }
.tb-reel__more { margin-top: auto; padding-top: 22px; align-self: flex-start; }
.tb-reel__links { margin-top: auto; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px 30px; }
.tb-reel__links .tb-reel__more { margin-top: 0; padding-top: 0; }

/* Stacked: the films on top, the tracks underneath, both full width. Suits a page
   with only one or two tracks, where a Listen column would sit half empty. */
.tb-arrange--stack .tb-reel__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
/* Flex items lose their stretch once they get auto side margins, so they need an
   explicit width or the aspect-ratio box collapses to zero. */
.tb-arrange--stack .tb-reel__stage,
.tb-arrange--stack .tb-reel__thumbs { width: 100%; max-width: 900px; margin-inline: auto; }
.tb-arrange--stack .tb-reel__watch .tb-reel__more { align-self: center; }
.tb-arrange--stack .tb-reel__track { max-height: none; min-height: 84px; }
/* Wider rows only where the five columns actually fit; below that the phone rules
   own the track row, so this must not out-specify them. */
@media (min-width: 1025px) {
	.tb-arrange--stack .tb-reel__wave { height: 30px; }
	.tb-arrange--stack .tb-reel__trigger { grid-template-columns: max-content max-content minmax(0, 1fr) minmax(0, 210px) max-content; }
}
/* A section with only one of the two columns centres it instead of leaving a gap. */
.tb-reel__grid:not(:has(.tb-reel__listen)),
.tb-reel__grid:not(:has(.tb-reel__watch)) { grid-template-columns: minmax(0, 1fr); }

@media (max-width: 1024px) {
	.tb-reel__grid { grid-template-columns: minmax(0, 1fr); gap: 46px; }
	.tb-reel__track { min-height: 78px; max-height: none; }
	.tb-reel__wave { display: none; }
	.tb-reel__trigger { grid-template-columns: max-content max-content minmax(0, 1fr) max-content; }
}
@media (max-width: 680px) {
	.tb-reel { padding-block: 70px; }
	.tb-reel__body, .tb-reel__listen .tb-reel__body { padding: 12px; }
	.tb-reel__thumbs { grid-template-columns: minmax(0, 1fr); gap: 10px; }
	.tb-reel__thumb { flex-direction: row; align-items: center; gap: 14px; }
	.tb-reel__thumb-img { width: 116px; flex: none; }
	.tb-reel__thumb-name { -webkit-line-clamp: 2; }
	.tb-reel__icon { width: 60px; height: 60px; }
	.tb-reel__icon::before { border-left-width: 14px; border-top-width: 9px; border-bottom-width: 9px; }
	.tb-reel__now { padding: 16px 18px; }
	.tb-reel__num { display: none; }
	.tb-reel__trigger { grid-template-columns: max-content minmax(0, 1fr) max-content; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
	.tb-reel__wave i, .tb-reel__label-i--wave i { animation: none !important; }
}

/* ==========================================================================
   Work Samples — the client's real images and videos on a service page.
   One grid, one card shape. Columns and the grid's own width follow how much
   media a page actually has, so two samples never stretch across a full row.
   A markedly vertical sample is shown whole on a blurred plate of itself
   rather than cropped, which keeps every row the same height.
   ========================================================================== */
.tb-samples { padding-block: 84px; }
.tb-samples .tb-head { margin-bottom: 36px; }

.tb-samples__grid {
	--cols: var(--cols-d, 3);
	--max: var(--max-d, 1084px);
	--card: 4 / 3;
	list-style: none; margin: 0 auto; padding: 0; max-width: var(--max);
	display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
	gap: 20px; align-items: start;
}
.tb-sample { min-width: 0; }

.tb-sample__frame {
	position: relative; display: block; margin: 0; overflow: hidden;
	width: 100%; aspect-ratio: var(--card); background: #131312;
}
.tb-sample__frame img {
	position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%;
	object-fit: cover; transition: transform .6s var(--tb-e);
}
.tb-sample.is-tall .tb-sample__frame img { object-fit: contain; }
/* the blurred plate behind a vertical sample */
.tb-sample__bg {
	position: absolute; inset: -10%; z-index: 0;
	background-size: cover; background-position: center;
	filter: blur(22px) saturate(.9) brightness(.45); transform: scale(1.12);
}
.tb-sample--image:hover .tb-sample__frame img { transform: scale(1.03); }

.tb-sample__caption {
	margin-top: 11px !important; font-size: 13.5px; font-weight: 600;
	letter-spacing: 1.1px; text-transform: uppercase; color: var(--tone-head, inherit);
}

/* The play button fills the card; the frame carries the shape. */
.tb-sample--video .tb-video__play,
.tb-sample__frame .tb-video__player {
	position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%;
	aspect-ratio: auto; background: transparent;
}
.tb-sample__frame .tb-video__player { background: #000; }
/* once playing, the card takes the sample's real proportions */
.tb-sample__frame:has(.tb-video__player) { aspect-ratio: var(--ratio, 16/9); }
.tb-sample--video .tb-video__icon { width: 56px; height: 56px; margin: -28px 0 0 -28px; }
.tb-sample--video .tb-video__icon::before { border-width: 8px 0 8px 13px; }

/* A sample the client will add later: the same card, quietly marked. */
.tb-sample__slot {
	display: flex; align-items: center; justify-content: center; gap: 10px;
	background: rgba(29, 29, 28, .04); border: 1px dashed rgba(29, 29, 28, .2);
}
.tb-sample__slot::before {
	content: ""; width: 26px; height: 26px; flex: none; opacity: .45;
	background: linear-gradient(currentColor, currentColor) center/100% 1px no-repeat,
	            linear-gradient(currentColor, currentColor) center/1px 100% no-repeat;
	color: var(--tone-soft, #3F3F3E);
}
.tb-sample__slot-name {
	font-size: 12.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
	color: var(--tone-soft, #3F3F3E); opacity: .75; word-break: break-word;
}
.tb-tone--dark .tb-sample__slot { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .2); }

@media (max-width: 1100px) {
	.tb-samples { padding-block: 76px; }
	.tb-samples .tb-head { margin-bottom: 32px; }
	.tb-samples__grid { gap: 18px; }
}
/* the column count only drops once three cards would be too small to read */
@media (max-width: 900px) {
	.tb-samples { padding-block: 70px; }
	.tb-samples__grid { --cols: var(--cols-t, 2); --max: 720px; }
}
@media (max-width: 640px) {
	.tb-samples { padding-block: 60px; }
	.tb-samples__grid { --cols: 1; --max: 420px; gap: 16px; }
	.tb-sample__caption { margin-top: 9px !important; font-size: 13px; }
	.tb-sample--video .tb-video__icon { width: 50px; height: 50px; margin: -25px 0 0 -25px; }
}

/* Work Samples — audio rows (IVR prompts and other voice samples).
   Same palette as the cards: dark control, brand red when playing, orange progress. */
.tb-samples__audio {
	list-style: none; margin: 0 auto; padding: 0; max-width: 760px;
	display: grid; gap: 10px;
}
.tb-samples__audio + .tb-samples__grid { margin-top: 28px; }
/* audio above cards: both share one width so the section reads as a single column */
@media (min-width: 901px) {
	.tb-samples.has-audio .tb-samples__audio { max-width: 900px; }
	.tb-samples.has-audio .tb-samples__grid { --max: 900px; }
}
.tb-audio {
	display: grid; align-items: center; gap: 16px;
	grid-template-columns: 48px 26px minmax(0, 1fr) auto 46px;
	grid-template-areas: "btn num body tag time";
	padding: 14px 22px 14px 14px; background: #F7F7F6;
	border-left: 3px solid transparent; transition: border-color .3s, background-color .3s;
}
.tb-audio:hover { background: #F1F1F0; }
.tb-audio.is-playing { border-left-color: var(--tb-p); }
.tb-audio__btn {
	grid-area: btn; position: relative; width: 48px; height: 48px; padding: 0;
	border: 0; border-radius: 50%; background: var(--tb-d); cursor: pointer;
	transition: background-color .3s, transform .3s var(--tb-e);
}
.tb-audio__btn:hover, .tb-audio.is-playing .tb-audio__btn { background: var(--tb-p); }
.tb-audio__btn:active { transform: scale(.94); }
.tb-audio__icon {
	position: absolute; left: 54%; top: 50%; transform: translate(-50%, -50%);
	border-style: solid; border-width: 7px 0 7px 11px; border-color: transparent transparent transparent #fff;
}
.tb-audio.is-playing .tb-audio__icon {
	left: 50%; width: 11px; height: 14px; border: 0;
	border-left: 3.5px solid #fff; border-right: 3.5px solid #fff;
}
.tb-audio__num {
	grid-area: num; font-size: 12.5px; font-weight: 600; letter-spacing: 1px;
	color: #8C8C8A; font-variant-numeric: tabular-nums;
}
.tb-audio__body { grid-area: body; min-width: 0; display: block; }
.tb-audio__title {
	display: block; font-size: 16px; font-weight: 600; line-height: 1.3; color: var(--tb-ink, #1D1D1C);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tb-audio__bar {
	position: relative; display: block; height: 3px; margin-top: 9px;
	background: rgba(29, 29, 28, .12); cursor: pointer; overflow: hidden;
}
.tb-audio__bar::before { content: ""; position: absolute; left: 0; right: 0; top: -8px; bottom: -8px; }
.tb-audio__bar i {
	position: absolute; inset: 0; background: var(--tb-s);
	transform: scaleX(0); transform-origin: left; transition: transform .25s linear;
}
.tb-audio__tag {
	grid-area: tag; font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
	color: #3F3F3E; padding: 5px 10px; border: 1px solid rgba(29, 29, 28, .18); white-space: nowrap;
}
.tb-audio__time {
	grid-area: time; font-size: 14px; color: #3F3F3E; text-align: right;
	font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
	.tb-audio {
		grid-template-columns: 44px minmax(0, 1fr) auto;
		grid-template-areas: "btn body time" "btn tag tag";
		row-gap: 8px; column-gap: 14px; padding: 12px 16px 12px 12px;
	}
	.tb-audio__btn { width: 44px; height: 44px; }
	.tb-audio__num { display: none; }
	.tb-audio__tag { justify-self: start; font-size: 11.5px; padding: 3px 8px; }
	.tb-samples__audio + .tb-samples__grid { margin-top: 22px; }
}

/* Work Samples — grouped audio (e.g. Radio Ads beside eBooks) and group labels.
   Groups sit side by side at the same width as the card grid below them; a
   group holding a single recording becomes a dark feature card that fills the
   height of its neighbour, so the row stays even. */
.tb-samples__label {
	margin: 0 0 12px !important; font-size: 13px; font-weight: 700; line-height: 1.2;
	letter-spacing: 1.4px; text-transform: uppercase; color: var(--tb-s);
}
.tb-samples__label--grid { max-width: var(--max-d, 1084px); margin: 0 auto 12px !important; }
.tb-samples__groups {
	display: grid; grid-template-columns: var(--groups, minmax(0, 1fr)); gap: 22px;
	max-width: var(--span, 1084px); margin: 0 auto; align-items: stretch;
}
.tb-samples__group { display: flex; flex-direction: column; min-width: 0; }
.tb-samples__group .tb-samples__audio { max-width: none; margin: 0; }
.tb-samples__groups + .tb-samples__label,
.tb-samples__groups + .tb-samples__grid { margin-top: 34px; }
@media (min-width: 901px) {
	.tb-samples.has-groups .tb-samples__grid { --max: var(--max-d, 1084px); }
}

.tb-audio.tb-audio--feature {
	flex: 1; min-height: 200px; padding: 22px 24px; gap: 12px 16px;
	grid-template-columns: 64px minmax(0, 1fr) auto;
	grid-template-rows: auto 1fr auto;
	grid-template-areas: "btn tag time" ". . ." "body body body";
	background: var(--tb-d); border-left-color: transparent;
}
.tb-audio.tb-audio--feature:hover { background: #262625; }
.tb-audio.tb-audio--feature.is-playing { border-left-color: var(--tb-p); }
.tb-audio--feature .tb-audio__btn { width: 64px; height: 64px; background: #fff; }
.tb-audio--feature .tb-audio__icon { border-width: 9px 0 9px 14px; border-color: transparent transparent transparent var(--tb-d); }
.tb-audio--feature .tb-audio__btn:hover,
.tb-audio--feature.is-playing .tb-audio__btn { background: var(--tb-p); }
.tb-audio--feature .tb-audio__btn:hover .tb-audio__icon { border-left-color: #fff; }
.tb-audio--feature.is-playing .tb-audio__icon { width: 14px; height: 18px; border-left: 4px solid #fff; border-right: 4px solid #fff; }
.tb-audio--feature .tb-audio__tag { justify-self: end; align-self: center; color: #EDEDEC; border-color: rgba(255, 255, 255, .3); }
.tb-audio--feature .tb-audio__time { align-self: center; color: #D2D2D0; font-size: 15px; }
.tb-audio--feature .tb-audio__body { align-self: end; }
.tb-audio--feature .tb-audio__title { font-size: 22px; line-height: 1.25; color: #fff; white-space: normal; }
.tb-audio--feature .tb-audio__bar { margin-top: 14px; background: rgba(255, 255, 255, .18); }

@media (max-width: 900px) {
	.tb-samples__groups { grid-template-columns: minmax(0, 1fr); max-width: 720px; gap: 26px; }
	.tb-audio.tb-audio--feature { min-height: 168px; }
}
@media (max-width: 640px) {
	.tb-audio.tb-audio--feature {
		grid-template-columns: 56px minmax(0, 1fr) auto;
		grid-template-areas: "btn tag time" ". . ." "body body body";
		padding: 18px; row-gap: 10px;
	}
	.tb-audio--feature .tb-audio__btn { width: 56px; height: 56px; }
	.tb-audio--feature .tb-audio__title { font-size: 20px; }
	.tb-samples__groups + .tb-samples__label,
	.tb-samples__groups + .tb-samples__grid { margin-top: 28px; }
}
@media (max-width: 900px) { .tb-samples__label--grid { max-width: 720px; } }
@media (max-width: 640px) { .tb-samples__label--grid { max-width: 420px; } }
/* label spacing: the grid label belongs to the cards below it, not the groups above */
.tb-samples__groups + .tb-samples__label--grid { margin-top: 34px !important; }
.tb-samples__label--grid + .tb-samples__grid { margin-top: 0; }
@media (max-width: 640px) { .tb-samples__groups + .tb-samples__label--grid { margin-top: 28px !important; } }
/* groups above cards keep the cards' width on phones too */
@media (max-width: 640px) { .tb-samples.has-audio.has-groups .tb-samples__groups { max-width: 420px; } }

/* Two video grids in one section (e.g. vertical clips, then horizontal ones):
   the second continues the first at the grid's own gap instead of starting a
   new 100px section, so the section reads as one gallery. */
.elementor-widget-tb-video-grid:has(+ .elementor-widget-tb-video-grid) { margin-bottom: 0 !important; }
.elementor-widget-tb-video-grid:has(+ .elementor-widget-tb-video-grid) .tb-videos { padding-bottom: 0; }
.elementor-widget-tb-video-grid + .elementor-widget-tb-video-grid .tb-videos { padding-top: 20px; }
@media (max-width: 767px) { .elementor-widget-tb-video-grid + .elementor-widget-tb-video-grid .tb-videos { padding-top: 16px; } }
