
.tll-brand-grid-section {
	background:
		radial-gradient(ellipse 120% 70% at 50% 0%, rgba(201,169,110,0.08), transparent 70%),
		radial-gradient(ellipse 80% 50% at 50% 100%, rgba(96,9,26,0.04), transparent 60%),
		var(--cream);
	padding: 110px 0 !important;
	position: relative;
	overflow: hidden;
}
.tll-brand-grid-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
}

/* HEADER */
.tll-brand-catalog-header {
	position: relative;
	z-index: 2;
	max-width: 760px !important;
	margin: 0 auto 72px !important;
	text-align: center;
}
.tll-brand-catalog-header .section-label {
	font-size: 12px !important;
	letter-spacing: 4px !important;
	color: var(--cognac) !important;
	font-weight: 700 !important;
	margin-bottom: 20px !important;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	padding: 0 32px;
}
.tll-brand-catalog-header .section-label::before,
.tll-brand-catalog-header .section-label::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 20px;
	height: 1px;
	background: var(--cognac);
	opacity: 0.5;
}
.tll-brand-catalog-header .section-label::before { left: 0; }
.tll-brand-catalog-header .section-label::after  { right: 0; }

.tll-brand-catalog-header .section-title {
	font-family: var(--font-display) !important;
	font-size: clamp(34px, 4vw, 54px) !important;
	color: var(--espresso) !important;
	line-height: 1.05 !important;
	margin: 0 0 24px !important;
	font-weight: 600 !important;
	letter-spacing: -0.015em !important;
}
.tll-brand-catalog-header .section-title em {
	font-style: italic;
	color: var(--red);
	font-weight: 400;
}

.tll-brand-catalog-ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	color: var(--red);
	margin: 0 auto 24px;
}
.tll-brand-catalog-ornament span {
	display: block;
	width: 90px;
	height: 1px;
	background: linear-gradient(to right, transparent, currentColor);
}
.tll-brand-catalog-ornament span:last-child {
	background: linear-gradient(to left, transparent, currentColor);
}
.tll-brand-catalog-ornament svg {
	animation: tll-cat-spin 30s linear infinite;
}
@keyframes tll-cat-spin { to { transform: rotate(360deg); } }

.tll-brand-catalog-header .section-sub {
	font-size: 15px !important;
	line-height: 1.8 !important;
	color: rgba(26,18,11,0.65) !important;
	font-style: italic;
	font-family: var(--font-display);
	max-width: 580px;
	margin: 0 auto;
}

/* GRID */
.tll-brand-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	max-width: 1320px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
@media (max-width: 1100px) { .tll-brand-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (max-width: 768px)  { .tll-brand-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 420px)  { .tll-brand-grid { grid-template-columns: 1fr; } }

/* CARD */
.tll-brand-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 60px 24px 36px;
	background:
		linear-gradient(155deg, var(--white) 0%, #fdf9f4 100%);
	border: 1px solid rgba(96,9,26,0.08);
	border-radius: 4px;
	text-decoration: none !important;
	color: inherit;
	overflow: hidden;
	isolation: isolate;
	transition:
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.5s ease;
	box-shadow:
		0 1px 2px rgba(26,18,11,0.04),
		0 4px 12px rgba(26,18,11,0.05),
		inset 0 1px 0 rgba(255,255,255,0.9);
	min-height: 290px;
}
.tll-brand-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,
		transparent 0%,
		transparent 60%,
		rgba(201,169,110,0.06) 100%);
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
	z-index: 1;
}
.tll-brand-card:hover {
	transform: translateY(-10px);
	border-color: rgba(201,169,110,0.5);
	box-shadow:
		0 8px 16px rgba(26,18,11,0.08),
		0 28px 56px rgba(26,18,11,0.14),
		0 36px 72px rgba(201,169,110,0.20),
		inset 0 1px 0 rgba(255,255,255,0.95);
}
.tll-brand-card:hover::after { opacity: 1; }
.tll-brand-card::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: var(--svg-noise-160-brown);
	opacity: 0.6;
	mix-blend-mode: multiply;
	z-index: 0;
}

/* META TOP — Lot N° + Year */
.tll-brand-meta-top {
	position: absolute;
	top: 18px;
	left: 22px;
	right: 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 11px;
	letter-spacing: 1.5px;
	color: var(--red);
	opacity: 0.7;
	z-index: 2;
	pointer-events: none;
}
.tll-brand-lot {
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.tll-brand-year { letter-spacing: 1.5px; font-size: 14px;}

/* CORNERS */
.tll-brand-corner {
	position: absolute;
	width: 18px;
	height: 18px;
	z-index: 2;
	pointer-events: none;
	transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	opacity: 0.4;
}
.tll-brand-corner--tl { top: 10px; left: 10px;  border-top: 1px solid var(--red); border-left: 1px solid var(--red); }
.tll-brand-corner--tr { top: 10px; right: 10px; border-top: 1px solid var(--red); border-right: 1px solid var(--red); }
.tll-brand-corner--bl { bottom: 10px; left: 10px;  border-bottom: 1px solid var(--red); border-left: 1px solid var(--red); }
.tll-brand-corner--br { bottom: 10px; right: 10px; border-bottom: 1px solid var(--red); border-right: 1px solid var(--red); }
.tll-brand-card:hover .tll-brand-corner {
	opacity: 1;
	width: 28px;
	height: 28px;
	border-width: 1.5px;
}

/* LOGO */
.tll-brand-logo {
	position: relative;
	z-index: 2;
	width: 92px;
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px auto 22px;
	padding: 14px;
	border-radius: 50%;
	background: radial-gradient(#ffffff);
	border: 1px solid rgba(96,9,26,0.16);
	box-shadow:
		inset 0 1px 2px rgba(255,255,255,0.95),
		inset 0 -2px 8px rgba(96,9,26,0.07),
		0 10px 26px rgba(26,18,11,0.08);
	box-sizing: border-box;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.tll-brand-card:hover .tll-brand-logo { transform: scale(1.08); }
.tll-brand-logo img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 78px;
	max-height: 40px;
	object-fit: contain;
	filter: grayscale(0.2);
	mix-blend-mode: multiply;
	transition: filter 0.5s ease;
}
.tll-brand-card:hover .tll-brand-logo img { filter: grayscale(0); }

.tll-brand-initial {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: transparent;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 38px;
	font-weight: 700;
	color: var(--espresso);
	letter-spacing: -0.02em;
	transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.tll-brand-card:hover .tll-brand-initial {
	color: var(--red);
	border-color: rgba(201,169,110,0.5);
	box-shadow:
		inset 0 1px 2px rgba(255,255,255,0.95),
		inset 0 -2px 6px rgba(96,9,26,0.1),
		0 10px 28px rgba(201,169,110,0.30);
}

/* NAME / DIVIDER / ORIGIN */
.tll-brand-name {
	position: relative;
	z-index: 2;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	color: var(--espresso);
	letter-spacing: 0.5px;
	line-height: 1.2;
	margin-bottom: 14px;
	text-transform: uppercase;
	transition: color 0.4s ease, letter-spacing 0.4s ease;
}
.tll-brand-card:hover .tll-brand-name {
	color: var(--red);
	letter-spacing: 0.8px;
}

.tll-brand-card:hover .tll-brand-divider { width: 70px; }

.tll-brand-origin {
	position: relative;
	z-index: 2;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 12px;
	color:#101010;
	letter-spacing: 0.5px;
	margin-bottom: 22px;
}

/* CTA */
.tll-brand-cta {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--red);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	margin-top: auto;
}
.tll-brand-card:hover .tll-brand-cta { opacity: 1; transform: translateY(0); }
.tll-brand-cta svg { transition: transform 0.35s ease; }
.tll-brand-card:hover .tll-brand-cta svg { transform: translateX(5px); }

/* GRID MOBILE */
@media (max-width: 768px) {
	.tll-brand-grid-section { padding: 70px 0 !important; }
	.tll-brand-catalog-header { margin-bottom: 44px !important; }
	.tll-brand-card { padding: 48px 18px 26px; min-height: 245px; }
	.tll-brand-logo, .tll-brand-initial { width: 68px; height: 68px; }
	.tll-brand-initial { font-size: 30px; }
	.tll-brand-name { font-size: 15px; letter-spacing: 0.3px; }
	.tll-brand-origin { font-size: 11px; margin-bottom: 14px; }
	.tll-brand-cta { opacity: 1; transform: none; font-size: 9px; }
	.tll-brand-meta-top { font-size: 9px; top: 12px; left: 14px; right: 14px; }
	.tll-brand-corner { width: 14px; height: 14px; }
}
@media (max-width: 420px) {
	.tll-brand-grid { gap: 16px; }
	.tll-brand-card { padding: 44px 18px 24px; min-height: 230px; }
}

/*════════════════════════════════════════════════════════════════════════════
   3. DAMAGE DIAGNOSTIC GUIDE
   ════════════════════════════════════════════════════════════════════════════ */
.wp-block-group.tll-diag-item {
	background: var(--white);
	border: 1px solid #60091A;
	border-left: 3px solid var(--red);
	border-radius: 10px;
	padding: 26px 30px !important;
	margin: 18px 0 !important;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
	transition:
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s ease,
		border-left-color 0.4s ease,
		border-left-width 0.4s ease;
}
.wp-block-group.tll-diag-item:hover {
	transform: translateX(6px);
	box-shadow: 0 10px 32px rgba(0,0,0,0.08);
	border-left-color: var(--cognac);
	border-left-width: 4px;
}
.tll-diag-item .tll-diag-issue {
	font-family: var(--font-body) !important;
	font-size: 19px !important;
	color: var(--espresso) !important;
	margin: 0 0 14px !important;
	line-height: 1.35 !important;
	font-weight: 600 !important;
}
.tll-diag-item p {
	font-size: 14px !important;
	line-height: 1.7 !important;
	color: rgba(26,18,11,0.75) !important;
	margin: 0 0 10px !important;
}
.tll-diag-item p strong {
	color: var(--espresso) !important;
	font-weight: 700 !important;
}
.tll-diag-item .tll-diag-time {
	background: var(--green-light, #E8F5EE);
	color: var(--green) !important;
	padding: 7px 16px !important;
	border-radius: 4px !important;
	display: inline-block !important;
	font-size: 13px !important;
	margin: 8px 0 0 !important;
	font-weight: 600;
	letter-spacing: 0.5px;
}
@media (max-width: 768px) {
	.wp-block-group.tll-diag-item { padding: 22px !important; }
	.tll-diag-item .tll-diag-issue { font-size: 17px !important; }
}


/* ════════════════════════════════════════════════════════════════════════════
   4. PROCESS LIST — numbered steps with circle badges
   ════════════════════════════════════════════════════════════════════════════ */
ol.tll-process-list {
	list-style: none !important;
	counter-reset: tll-step;
	padding-left: 0 !important;
	margin: 36px 0 !important;
}
ol.tll-process-list li {
	counter-increment: tll-step;
	position: relative;
	padding: 22px 22px 22px 76px !important;
	margin: 0 0 14px !important;
	background: var(--white);
	border-radius: 12px;
	border: 1px solid rgba(26,18,11,0.06);
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
	font-size: 14px !important;
	line-height: 1.7 !important;
	color: rgba(26,18,11,0.78) !important;
	list-style: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
ol.tll-process-list li:hover {
	transform: translateX(4px);
	box-shadow: 0 8px 24px rgba(26,18,11,0.08);
	border-color: rgba(201,169,110,0.3);
}
ol.tll-process-list li::before {
	content: counter(tll-step);
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--black) 0%, var(--espresso) 100%);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	box-shadow:
		0 4px 14px rgba(0,0,0,0.18),
		inset 0 1px 0 rgba(255,255,255,0.1);
}


/* ════════════════════════════════════════════════════════════════════════════
   5. TESTIMONIAL — luxury blockquote
   ════════════════════════════════════════════════════════════════════════════ */
.wp-block-quote.tll-testimonial {
	background: var(--cream);
	border-left: 4px solid var(--gold);
	padding: 36px 38px !important;
	border-radius: 10px;
	margin: 44px 0 !important;
	position: relative;
	box-shadow: 0 4px 16px rgba(26,18,11,0.04);
}
.tll-testimonial::before {
	content: '"';
	position: absolute;
	top: -24px;
	left: 26px;
	font-family: var(--font-display);
	font-size: 100px;
	color: var(--gold);
	opacity: 0.4;
	line-height: 1;
}
.tll-testimonial p {
	font-size: 17px !important;
	line-height: 1.78 !important;
	color: var(--espresso) !important;
	font-style: italic;
	margin: 0 0 16px !important;
	font-family: var(--font-display);
}
.tll-testimonial cite {
	font-size: 12px;
	color: var(--cognac);
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-style: normal;
}


/* ════════════════════════════════════════════════════════════════════════════
   6. FAQ Q/A — Gutenberg
   ════════════════════════════════════════════════════════════════════════════ */
.tll-faq-q {
	font-family: var(--font-body) !important;
	font-size: 19px !important;
	color: var(--espresso) !important;
	margin: 30px 0 12px !important;
	padding-left: 38px !important;
	position: relative;
	line-height: 1.4 !important;
	font-weight: 600 !important;
}
.tll-faq-q::before {
	content: 'Q';
	position: absolute;
	left: 0;
	top: -2px;
	color: var(--red);
	font-weight: 700;
	font-style: italic;
	font-size: 28px;
	font-family: var(--font-display);
}
.tll-faq-a {
	font-size: 14px !important;
	line-height: 1.8 !important;
	color: rgba(26,18,11,0.75) !important;
	padding-left: 38px !important;
	margin: 0 0 26px !important;
}


/* ════════════════════════════════════════════════════════════════════════════
   7. FINAL CTA BANNER — espresso dark
   ════════════════════════════════════════════════════════════════════════════ */
.wp-block-group.tll-final-cta {
	background:#101010!important;
	color: var(--champagne) !important;
	padding: 72px 52px !important;
	border-radius: 18px !important;
	margin: 60px 0 !important;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 20px 60px rgba(26,18,11,0.20),
		inset 0 1px 0 rgba(255,255,255,0.05);
}
.wp-block-group.tll-final-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,169,110,0.18), transparent 70%),
		radial-gradient(ellipse 50% 50% at 100% 100%, rgba(96,9,26,0.15), transparent 70%);
	pointer-events: none;
}
.wp-block-group.tll-final-cta::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201,169,110,0.5), transparent);
}
.tll-final-cta h2,
.tll-final-cta h2.wp-block-heading {
	font-family: var(--font-display) !important;
	color: var(--champagne) !important;
	font-size: 34px !important;
	margin: 0 0 16px !important;
	line-height: 1.2 !important;
	position: relative;
	z-index: 1;
	letter-spacing: -0.01em;
	font-weight: 100;
}
.tll-final-cta p {
	color: rgba(245,237,227,0.80) !important;
	font-size: 16px !important;
	margin: 0 0 32px !important;
	position: relative;
	z-index: 1;
	line-height: 1.7;
}
.tll-final-cta .wp-block-buttons { position: relative; z-index: 1; }
@media (max-width: 768px) {
	.wp-block-group.tll-final-cta { padding: 48px 26px !important; }
	.tll-final-cta h2 { font-size: 28px !important; }
}


/* ════════════════════════════════════════════════════════════════════════════
   SINGLE BRAND PAGE — content width + readability
   ════════════════════════════════════════════════════════════════════════════ */
.single-brand .entry-content,
.single-brand article > .wp-block-group {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 24px;
}
.single-brand .entry-content h1.wp-block-heading {
	font-family: var(--font-display);
	font-size: clamp(32px, 4vw, 50px);
	color: var(--espresso);
	line-height: 1.1;
	margin: 0 0 26px;
	letter-spacing: -0.015em;
}
.single-brand .entry-content h2.wp-block-heading {
	font-family: var(--font-display);
	font-size: clamp(24px, 2.6vw, 34px);
	color: var(--espresso);
	line-height: 1.2;
	margin: 52px 0 18px;
	letter-spacing: -0.01em;
}
.single-brand .entry-content p {
	font-size: 16px;
	line-height: 1.78;
	color: rgba(26,18,11,0.78);
	margin: 0 0 18px;
}
.single-brand .entry-content p.section-label {
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--cognac);
	font-weight: 700;
	margin: 0 0 18px;
}
.single-brand .entry-content ul {
	margin: 18px 0 26px;
	padding-left: 24px;
}
.single-brand .entry-content ul li {
	font-size: 15px;
	line-height: 1.78;
	color: rgba(26,18,11,0.78);
	margin: 0 0 12px;
}
.single-brand .entry-content ul li strong {
	color: var(--espresso);
}

/* ════════════════════════════════════════════════════════════
   BRAND PAGE
═════════════════════════════════════════════════════════════ */
.tll-brand-page { background: var(--white); }

/* ════════════════════════════════════════════════════════════
   BRAND HERO — Background Image + Dark Overlay
═════════════════════════════════════════════════════════════ */
.tll-brand-hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #101010;
	overflow: hidden;
	display: flex;
	align-items: center;
}

/* Dark gradient overlay — z-index 1 */
.tll-brand-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(10, 5, 2, 0.55) 0%,
		rgba(10, 5, 2, 0.72) 60%,
		rgba(10, 5, 2, 0.85) 100%
	);
	z-index: 1;
	pointer-events: none;
}

/* Subtle noise texture — between bg and overlay */
.tll-brand-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: var(--svg-noise-200-brown);
	opacity: 0.35;
	mix-blend-mode: overlay;
	z-index: 0;
}

/* Top gold accent line — above overlay */
.tll-brand-hero::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201,169,110,0.5), transparent);
	z-index: 2;
}

/* Container fix — ensure above overlay */
.tll-brand-hero .container {
	position: relative;
	z-index: 3;
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
}

.tll-brand-hero-inner {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 920px;
	margin: 0 auto;
}

/* ─── BADGE — Glass effect on image ─── */
.tll-brand-hero-badge {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #ffffff; /* gold */
	font-weight: 400;
	margin: 24px 0 28px;
	padding: 9px 24px;
	border: 1px solid #ffffff;
	border-radius: 50px;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 
		0 4px 16px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ─── TITLE — White with red italic accent ─── */
.tll-brand-hero-title {
	font-family: var(--font-display);
	font-size: clamp(40px, 5.5vw, 68px);
	color: #ffffff;
	font-weight: 100;
	line-height: 1.05;
	margin: 0 0 24px;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.tll-brand-hero-title em {
	font-style: italic;
	color: #ffffff; 
	font-weight: 100;
	display: inline-block;
	position: relative;
}

.tll-brand-hero-title em::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #60091A, transparent);
}

/* ─── DESCRIPTION — Light cream, readable ─── */
.tll-brand-hero-desc {
	font-size: 17px;
	line-height: 1.78;
	color: rgba(244, 238, 226, 0.92); /* cream */
	margin: 0 auto 36px;
	max-width: 700px;
	font-family: var(--font-body);
	font-style: italic;
	font-weight: 300;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

/* ─── CTAs ─── */
.tll-brand-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin: 0 auto 52px;
}

.tll-brand-hero-ctas .btn-primary,
.tll-brand-hero-ctas .btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 17px 34px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	overflow: hidden;
}

/* Primary — gold to red gradient */
.tll-brand-hero-ctas .btn-primary {
	background: linear-gradient(135deg, #ffffff 0%, #60091A 100%);
	color: #ffffff;
	border: 1.5px solid #ffffff;
	box-shadow:
		0 6px 22px rgba(201, 169, 110, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.tll-brand-hero-ctas .btn-primary:hover {
	background: linear-gradient(135deg, #60091A 0%, #101010 100%);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow:
		0 14px 36px rgba(96, 9, 26, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Outline — white border on dark bg */
.tll-brand-hero-ctas .btn-outline {
	background: rgba(255, 255, 255, 0.05);
	color: #F4EEE2; /* cream */
	border: 1.5px solid rgba(244, 238, 226, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.tll-brand-hero-ctas .btn-outline:hover {
	background: rgba(244, 238, 226, 0.12);
	color: #ffffff;
	border-color: rgba(244, 238, 226, 0.7);
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ─── BREADCRUMB — White links ─── */
.tll-brand-hero .breadcrumb,
.tll-brand-hero .tll-breadcrumb {
	text-align: left;
	margin-top: 16px;
	margin-bottom: 28px;
}

.tll-brand-hero .breadcrumb a,
.tll-brand-hero .tll-breadcrumb a,
.tll-brand-hero .breadcrumb span,
.tll-brand-hero .tll-breadcrumb span {
	color: rgba(255, 255, 255, 0.85) !important;
	text-decoration: none;
}

.tll-brand-hero .breadcrumb a:hover,
.tll-brand-hero .tll-breadcrumb a:hover {
	color: #ffffff !important;
}

/* ─── TRUST GRID — White text on dark bg ─── */
.tll-brand-hero-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	max-width: 660px;
	margin: 0 auto;
	padding-top: 36px;
	border-top: 1px solid rgba(244, 238, 226, 0.2);
}

.tll-brand-hero-trust-item {
	text-align: center;
	padding: 0 20px;
	position: relative;
	transition: transform 0.3s ease;
}

.tll-brand-hero-trust-item:hover { 
	transform: translateY(-3px); 
}

.tll-brand-hero-trust-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 15%;
	bottom: 15%;
	width: 1px;
	background: rgba(244, 238, 226, 0.2);
}

.tll-brand-hero-trust-item .num {
	font-family: var(--font-display);
	font-size: 34px;
	font-weight: 700;
	color: #C9A96E; /* gold — high contrast on dark */
	line-height: 1;
	margin-bottom: 10px;
	letter-spacing: -0.01em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tll-brand-hero-trust-item .lbl {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(244, 238, 226, 0.8); /* cream */
	font-weight: 600;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
	.tll-brand-hero {
		min-height: 75vh;
	}
	.tll-brand-hero .container {
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.tll-brand-hero-ctas {
		flex-direction: column;
		align-items: stretch;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
	.tll-brand-hero-ctas .btn-primary,
	.tll-brand-hero-ctas .btn-outline {
		justify-content: center;
	}
	.tll-brand-hero-trust {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: 280px;
	}
	.tll-brand-hero-trust-item:not(:last-child)::after {
		display: none;
	}
	.tll-brand-hero-trust-item:not(:last-child) {
		padding-bottom: 24px;
		border-bottom: 1px solid rgba(244, 238, 226, 0.15);
	}
	.tll-brand-hero-trust-item .num {
		font-size: 30px;
	}
}

@media (max-width: 480px) {
	.tll-brand-hero {
		min-height: 65vh;
	}
	.tll-brand-hero .container {
		padding-top: 36px;
		padding-bottom: 36px;
	}
	.tll-brand-hero-badge {
		font-size: 11px;
		padding: 7px 18px;
		letter-spacing: 2.5px;
		margin: 16px 0 20px;
	}
	.tll-brand-hero-title {
		font-size: clamp(32px, 9vw, 42px);
		margin-bottom: 18px;
	}
	.tll-brand-hero-desc {
		font-size: 15px;
		margin-bottom: 28px;
	}
}

/* ════════════════════════════════════════════════════════════════════════════
   9. SINGLE BRAND — SHOWCASE SECTION (B/A gallery + content cards)
   ════════════════════════════════════════════════════════════════════════════ */
.tll-brand-showcase {
	background: var(--cream);
	padding: 88px 0;
	position: relative;
}
.tll-brand-showcase::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.tll-brand-showcase-stack {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	max-width: 1000px;
	margin: 0 auto;
}

.tll-brand-showcase-card {
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.tll-brand-showcase-card.tll-brand-showcase-content {
	background: var(--white);
	border: 2px solid rgba(96,9,26,0.08);
	border-radius: 18px;
	box-shadow:
		0 4px 12px rgba(26,18,11,0.05),
		0 24px 52px rgba(26,18,11,0.10);
	padding: 52px 44px;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.tll-brand-showcase-card.tll-brand-showcase-content::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	opacity: 0.5;
}

.tll-ba-eyebrow {
	font-size: 14px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color:#60091A;
	font-weight: 700;
	margin-bottom: 16px;
}
.tll-ba-title {
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 38px);
	color: var(--espresso);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 20px;
	letter-spacing:1.5px;
}
.tll-ba-body {
	font-size: 16px;
	line-height: 1.78;
	color: rgba(26,18,11,0.7);
	margin: 0 auto 30px;
	max-width: 640px;
}

.tll-ba-features {
	list-style: none;
	padding: 0;
	margin: 0 auto 34px;
	max-width: 520px;
	text-align: left;
}
.tll-ba-features li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 12px 0;
	font-size: 15px;
	color: rgba(26,18,11,0.78);
	border-bottom: 1px solid rgba(96,9,26,0.06);
	transition: padding-left 0.3s ease;
}
.tll-ba-features li:hover { padding-left: 4px; }
.tll-ba-features li:last-child { border-bottom: none; }
.tll-ba-features li span {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--green-light, #E8F5EE);
	color: var(--green);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 13px;
	margin-top: 1px;
}

.tll-brand-showcase-content .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 17px 34px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--gold) 0%, #60091A 100%);
	color: var(--espresso);
	border: 1.5px solid var(--gold);
	transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow:
		0 6px 22px rgba(201,169,110,0.32),
		inset 0 1px 0 rgba(255,255,255,0.3);
}
.tll-brand-showcase-content .btn-primary:hover {
	background: linear-gradient(135deg, var(--espresso) 0%, var(--black) 100%);
	color: var(--gold);
	transform: translateY(-3px);
	box-shadow:
		0 12px 32px rgba(26,18,11,0.28),
		inset 0 1px 0 rgba(255,255,255,0.05);
}


/* ── BEFORE/AFTER GALLERY (scoped) ─────────────────── */

.tll-brand-showcase .ssp-gallery-wrap {
	position: relative;
	max-width: 660px;
	margin: 0 auto;
}
.tll-brand-showcase .ssp-gallery-track { position: relative; }
.tll-brand-showcase .ssp-gallery-slide {
	display: none;
	opacity: 0;
	transition: opacity .4s cubic-bezier(.22,.61,.36,1);
}
.tll-brand-showcase .ssp-gallery-slide.is-active {
	display: block;
	opacity: 1;
}

.tll-brand-showcase .ssp-compare {
	background: linear-gradient(180deg, var(--white) 0%, #fffaf2 100%);
	border: 1px solid rgba(95,36,26,.10);
	border-radius: 22px;
	padding: 16px;
	box-shadow:
		0 24px 56px rgba(57,31,10,.12),
		0 0 0 1px rgba(201,169,110,.20),
		inset 0 1px 0 rgba(255,255,255,0.5);
	position: relative;
	max-width: 580px;
	margin: 0 auto;
}
.tll-brand-showcase .ssp-compare::before {
	content: "";
	position: absolute;
	top: 0;
	left: 26px;
	right: 26px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(201,169,110,.65), transparent);
	border-radius: 2px;
}

.tll-brand-showcase .ssp-compare-inner {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	aspect-ratio: 1/1;
	background: #eadfce;
	cursor: ew-resize;
	user-select: none;
	touch-action: none;
}
.tll-brand-showcase .ssp-compare-inner.is-dragging { cursor: grabbing; }
.tll-brand-showcase .ssp-compare-inner img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background: #eadfce;
	display: block;
	pointer-events: none;
	-webkit-user-drag: none;
}

.tll-brand-showcase .ssp-before,
.tll-brand-showcase .ssp-after {
	position: absolute;
	inset: 0;
	will-change: clip-path;
}
.tll-brand-showcase .ssp-after {
	clip-path: inset(0 0 0 50%);
	-webkit-clip-path: inset(0 0 0 50%);
}

.tll-brand-showcase .ssp-divider {
	position: absolute;
	top: 0; bottom: 0;
	left: 0;
	width: 2px;
	margin-left: -1px;
	transform: translate3d(0,0,0);
	will-change: transform;
	background: linear-gradient(180deg,
		rgba(255,255,255,.95) 0%,
		rgba(201,169,110,.95) 50%,
		rgba(255,255,255,.95) 100%);
	box-shadow:
		0 0 0 1px rgba(0,0,0,.08),
		0 0 22px rgba(201,169,110,.55);
	pointer-events: none;
}

.tll-brand-showcase .ssp-handle {
	position: absolute;
	left: 0; top: 50%;
	transform: translate3d(0,-50%,0);
	margin-left: -26px;
	width: 52px; height: 52px;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, var(--white) 0%, #faf3e8 100%);
	display: grid; place-items: center;
	box-shadow:
		0 12px 30px rgba(0,0,0,.20),
		0 0 0 1px rgba(201,169,110,.55),
		0 0 0 5px rgba(255,255,255,.85);
	color: var(--dark-brown);
	cursor: grab;
	will-change: transform;
	z-index: 7;
	transition: transform .25s ease;
}
.tll-brand-showcase .ssp-handle:hover { transform: translate3d(0,-50%,0) scale(1.08); }
.tll-brand-showcase .ssp-handle svg { width: 20px; height: 20px; }

.tll-brand-showcase .ssp-label {
	position: absolute;
	top: 16px;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgba(33,19,11,.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--white);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	pointer-events: none;
	z-index: 5;
}
.tll-brand-showcase .ssp-label.before { left: 16px; }
.tll-brand-showcase .ssp-label.after {
	right: 16px;
	background: linear-gradient(135deg, var(--gold), #a07a3f);
	color: var(--espresso);
}

.tll-brand-showcase .ssp-gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px; height: 50px;
	border-radius: 999px;
	border: 0;
	cursor: pointer;
	background: radial-gradient(circle at 30% 30%, var(--white) 0%, #faf3e8 100%);
	color: var(--dark-brown);
	display: grid; place-items: center;
	box-shadow:
		0 14px 30px rgba(33,19,11,.20),
		0 0 0 1px rgba(201,169,110,.35),
		0 0 0 6px rgba(255,255,255,.55);
	transition:
		transform .3s cubic-bezier(.22,.61,.36,1),
		box-shadow .3s ease,
		background .3s ease,
		color .3s ease;
	z-index: 5;
}
.tll-brand-showcase .ssp-gallery-arrow:hover {
	transform: translateY(-50%) scale(1.12);
	color: var(--white);
	background: linear-gradient(135deg, var(--dark-brown), #38160f);
}
.tll-brand-showcase .ssp-gallery-prev { left: -12px; }
.tll-brand-showcase .ssp-gallery-next { right: -12px; }
.tll-brand-showcase .ssp-gallery-arrow.is-disabled {
	opacity: .35;
	cursor: not-allowed;
	pointer-events: none;
}

.tll-brand-showcase .ssp-gallery-dots {
	display: flex; gap: 12px;
	justify-content: center; align-items: center;
	margin-top: 24px;
}
.tll-brand-showcase .ssp-gallery-dot {
	width: 9px; height: 9px;
	border-radius: 999px;
	border: 0; padding: 0;
	cursor: pointer;
	background: rgba(95,36,26,.25);
	transition: background .3s, width .3s;
}
.tll-brand-showcase .ssp-gallery-dot.is-active {
	background: linear-gradient(90deg, #b98a52, var(--dark-brown));
	width: 36px;
}

.tll-brand-showcase .ssp-compare-empty .ssp-before {
	background: linear-gradient(135deg, #f4ead8 0%, #ebdcc1 50%, var(--lt-cream) 100%);
}
.tll-brand-showcase .ssp-compare-empty .ssp-after {
	background: linear-gradient(135deg, #ebdcc1 0%, var(--lt-cream) 50%, #d8c5a4 100%);
}
.tll-brand-showcase .ssp-placeholder {
	position: absolute; inset: 0;
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	gap: 14px;
	color: rgba(95,36,26,.45);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 13px;
	text-align: center;
	padding: 0 20px;
}
.tll-brand-showcase .ssp-placeholder svg { opacity: .5; }
.tll-brand-showcase .ssp-placeholder span { max-width: 180px; line-height: 1.5; }


/* ════════════════════════════════════════════════════════════════════════════
   10. SINGLE BRAND — GUTENBERG EDITOR CONTENT WRAPPER
   ════════════════════════════════════════════════════════════════════════════ */
.tll-brand-content {
	background: var(--white);
	padding: 88px 0;
}
.tll-brand-content .tll-brand-content-inner {
	max-width: 880px;
	margin: 0 auto;
}
.tll-brand-content .tll-brand-content-inner > * {
	margin-left: auto;
	margin-right: auto;
}
.tll-brand-content h1.wp-block-heading,
.tll-brand-content h2.wp-block-heading,
.tll-brand-content h3.wp-block-heading {
	font-family: var(--font-display);
	color: var(--espresso);
	letter-spacing: -0.015em;
	line-height: 1.2;
}
.tll-brand-content h1.wp-block-heading { display: none; }
.tll-brand-content h2.wp-block-heading {
	font-size: clamp(24px, 2.6vw, 34px);
	margin: 52px 0 18px;
}
.tll-brand-content h3.wp-block-heading {
	font-size: 20px;
	margin: 30px 0 14px;
}
.tll-brand-content p {
	font-size: 16px;
	line-height: 1.78;
	color: rgba(26,18,11,0.78);
	margin: 0 0 18px;
}
.tll-brand-content p.section-label {
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--cognac);
	font-weight: 700;
	margin: 0 0 18px;
}
.tll-brand-content ul {
	margin: 18px 0 30px;
	padding-left: 24px;
}
.tll-brand-content ul li {
	font-size: 15px;
	line-height: 1.78;
	color: rgba(26,18,11,0.78);
	margin: 0 0 12px;
}
.tll-brand-content ul li strong { color: var(--espresso); }


/* ════════════════════════════════════════════════════════════════════════════
   11. SINGLE BRAND — TRUST STRIP (4 cards on dark)
   ════════════════════════════════════════════════════════════════════════════ */
.section-dark.tll-brand-trust {
	background: linear-gradient(135deg, var(--espresso) 0%, var(--black) 100%);
	padding: 88px 0;
	position: relative;
	overflow: hidden;
}
.section-dark.tll-brand-trust::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,169,110,0.12), transparent 70%),
		radial-gradient(ellipse 40% 40% at 100% 100%, rgba(96,9,26,0.15), transparent 70%);
	pointer-events: none;
}
.tll-brand-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.tll-brand-trust-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(201,169,110,0.20);
	border-radius: 16px;
	padding: 36px 26px;
	text-align: center;
	transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.tll-brand-trust-card:hover {
	background: rgba(201,169,110,0.10);
	border-color: rgba(201,169,110,0.5);
	transform: translateY(-6px);
	box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}
.tll-brand-trust-card .icon {
	font-size: 34px;
	margin-bottom: 18px;
	line-height: 1;
}
.tll-brand-trust-card h4 {
	font-family: var(--font-display);
	font-size: 18px;
	color: var(--gold);
	margin: 0 0 12px;
	font-weight: 400;
	letter-spacing: 0.3px;
}
.tll-brand-trust-card p {
	font-size: 13px;
	line-height: 1.7;
	color: rgba(245,237,227,0.72);
	margin: 0;
}


/* ════════════════════════════════════════════════════════════════════════════
   12. SINGLE BRAND — FAQ ACCORDION
   ════════════════════════════════════════════════════════════════════════════ */
.tll-brand-faqs {
	padding: 88px 0;
}
.tll-faq-header {
	text-align: center;
	margin-bottom: 44px;
}
.tll-faq-list {
	max-width: 820px;
	margin: 0 auto;
}
.tll-faq-item {
	background: var(--white);
	border: 1px solid rgba(96,9,26,0.08);
	border-radius: 14px;
	margin-bottom: 14px;
	overflow: hidden;
	transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}
.tll-faq-item:hover {
	transform: translateY(-2px);
	border-color: rgba(201,169,110,0.3);
}
.tll-faq-item[open] {
	border-color: rgba(201,169,110,0.45);
	box-shadow: 0 10px 32px rgba(26,18,11,0.08);
}
.tll-faq-item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: 22px 26px;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--espresso);
}
.tll-faq-item summary::-webkit-details-marker { display: none; }
.tll-faq-item .tll-faq-q {
	flex: 1;
	margin: 0 !important;
	padding: 0 !important;
	font-size: inherit !important;
	color: inherit !important;
	line-height: 1.4 !important;
}
.tll-faq-item .tll-faq-q::before { display: none !important; }
.tll-faq-item .tll-faq-icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--cream);
	color: var(--cognac);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 400;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, color 0.4s ease;
}
.tll-faq-item[open] .tll-faq-icon {
	transform: rotate(45deg);
	background: var(--gold);
	color: var(--espresso);
}
.tll-faq-item .tll-faq-a {
	padding: 0 26px 24px;
	font-size: 14px;
	line-height: 1.78;
	color: rgba(26,18,11,0.72);
}


/* ════════════════════════════════════════════════════════════════════════════
   13. RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.tll-brand-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.tll-brand-hero { padding: 60px 0 68px; }
	.tll-brand-hero-badge { font-size: 10px; letter-spacing: 3px; padding: 6px 16px; }
	.tll-brand-hero-title { font-size: clamp(28px, 7vw, 42px); }
	.tll-brand-hero-desc { font-size: 15px; }
	.tll-brand-hero-ctas { flex-direction: column; align-items: center; gap: 14px; }
	.tll-brand-hero-ctas .btn-primary,
	.tll-brand-hero-ctas .btn-outline {
		width: 100%; max-width: 320px; justify-content: center;
	}
	.tll-brand-hero-trust { max-width: 100%; }
	.tll-brand-hero-trust-item { padding: 0 12px; }
	.tll-brand-hero-trust-item .num { font-size: 26px; }
	.tll-brand-hero-trust-item .lbl { font-size: 10px; }

	.tll-brand-showcase { padding: 60px 0; }
	.tll-brand-showcase-card.tll-brand-showcase-content { padding: 38px 26px; }
	.tll-ba-title { font-size: clamp(22px, 5vw, 30px); }
	.tll-ba-features { padding: 0; }

	.tll-brand-showcase .ssp-compare { max-width: 100%; padding: 10px; }
	.tll-brand-showcase .ssp-handle { width: 44px; height: 44px; margin-left: -22px; }
	.tll-brand-showcase .ssp-handle svg { width: 16px; height: 16px; }
	.tll-brand-showcase .ssp-label { font-size: 9.5px; padding: 5px 11px; top: 12px; }
	.tll-brand-showcase .ssp-label.before { left: 12px; }
	.tll-brand-showcase .ssp-label.after { right: 12px; }
	.tll-brand-showcase .ssp-gallery-prev { left: 10px; }
	.tll-brand-showcase .ssp-gallery-next { right: 10px; }
	.tll-brand-showcase .ssp-gallery-arrow { width: 40px; height: 40px; }

	.tll-brand-content { padding: 60px 0; }
	.section-dark.tll-brand-trust { padding: 60px 0; }
	.tll-brand-trust-grid { grid-template-columns: 1fr; gap: 18px; }
	.tll-brand-faqs { padding: 60px 0; }
	.tll-faq-item summary { padding: 18px 20px; font-size: 14px; }
	.tll-faq-item .tll-faq-a { padding: 0 20px 20px; font-size: 13px; }
}
