/*
Theme Name: True-Stories Agency
Theme URI: https://true-storiesagency.com
Author: True-Stories Agency
Author URI: https://true-storiesagency.com
Description: Custom theme for True-Stories Agency.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: true-stories-agency
*/


/* =========================================
   1. CSS CUSTOM PROPERTIES
   ========================================= */

:root {
	--brand:          #0a0a0a;
	--brand-mid:      #111111;
	--brand-light:    #1a1a1a;
	--gold:           #fdfbdf;
	--gold-light:     #fefef0;
	--white:          #ffffff;
	--off-white:      #f7f6f4;
	--gray-light:     #f0efed;
	--gray-mid:       #e0dedd;
	--gray-border:    #d8d7d5;
	--text:           #111111;
	--text-muted:     #666666;
	--text-light:     #999999;

	--font-headline:  'Futura PT', 'Futura', 'Century Gothic', sans-serif;
	--font-body:      'PingFang HK', 'PingFang SC', 'Noto Sans', sans-serif;

	--container:      1200px;
	--section-v:      6rem;
	--section-v-sm:   4rem;
	--radius:         6px;
	--radius-sm:      4px;
	--transition:     0.22s ease;
}


/* =========================================
   2. RESET & BASE
   ========================================= */

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headline);
	line-height: 1.2;
	font-weight: 700;
	color: var(--text);
}

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
	font-size: inherit;
}

input,
textarea,
select {
	font-family: var(--font-body);
	font-size: 1rem;
}


/* =========================================
   3. LAYOUT & CONTAINER
   ========================================= */

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.site-main {
	min-height: 0;
}


/* =========================================
   4. SHARED BUTTONS
   ========================================= */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.75rem;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform 0.1s ease;
	white-space: nowrap;
	text-decoration: none;
}

.btn:active {
	transform: scale(0.97);
}

.btn-primary {
	background: var(--gold);
	color: #0a0a0a;
	border-color: var(--gold);
}

.hero .btn-primary {
	background: #fdfbdf;
	color: #0a0a0a;
	border-color: #fdfbdf;
}

.about .btn-primary,
.expertise .btn-primary,
.ip-spotlight .btn-primary {
	background: #0a0a0a;
	color: #ffffff;
	border-color: #0a0a0a;
}

.btn-primary:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
	color: var(--brand);
}

/* Ghost button — dark bg context */
.btn-ghost {
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.6);
}

/* Ghost button — light bg context */
.btn-ghost-dark {
	background: transparent;
	color: var(--text);
	border-color: var(--gray-border);
}

.btn-ghost-dark:hover {
	border-color: var(--text);
}


/* =========================================
   5. SHARED SECTION TYPOGRAPHY
   ========================================= */

.section-label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.875rem;
}

.section-label.light {
	color: var(--gold);
}

.section-heading {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	margin-bottom: 1.5rem;
}

.section-heading.centered {
	text-align: center;
}

.section-heading.light {
	color: var(--white);
}

.section-sub {
	font-size: 1.0625rem;
	color: var(--text-muted);
	max-width: 560px;
}

.section-sub.light {
	color: rgba(255, 255, 255, 0.65);
}

.section-sub.centered {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}


/* =========================================
   6. SITE HEADER
   ========================================= */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--white);
	border-bottom: 1px solid transparent;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
	border-color: var(--gray-mid);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-template-areas: "logo nav right";
	align-items: center;
	height: 190px;
}

.site-logo {
	grid-area: logo;
	justify-self: start;
}

.site-logo a {
	display: flex;
	align-items: center;
}

.site-logo img {
	height: 100px;
	width: auto;
}

.site-nav {
	grid-area: nav;
}

.header-right {
	grid-area: right;
	justify-self: end;
	display: flex;
	align-items: center;
}

.nav-toggle {
	display: none;
}


/* =========================================
   7. PRIMARY NAVIGATION
   ========================================= */

.nav-menu {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.nav-menu > li > a {
	display: block;
	padding: 0.5rem 0.875rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #444;
	border-radius: var(--radius-sm);
	transition: color var(--transition), background-color var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a:focus-visible {
	color: var(--text);
	background-color: var(--gray-light);
}

.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-parent > a,
.nav-menu > li.current-menu-ancestor > a {
	color: var(--text);
	font-weight: 600;
}


/* =========================================
   8. DROPDOWN MENUS
   ========================================= */

.nav-menu li {
	position: relative;
}

.nav-menu li ul {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 210px;
	background: var(--white);
	border: 1px solid var(--gray-mid);
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
	padding: 0.375rem 0;
	z-index: 100;
}

.nav-menu li ul::before {
	content: '';
	position: absolute;
	top: -5px;
	left: 18px;
	width: 9px;
	height: 9px;
	background: var(--white);
	border-left: 1px solid var(--gray-mid);
	border-top: 1px solid var(--gray-mid);
	transform: rotate(45deg);
}

.nav-menu li:hover > ul,
.nav-menu li.focus > ul {
	display: block;
}

.nav-menu li ul li a {
	display: block;
	padding: 0.5rem 1.125rem;
	font-size: 0.875rem;
	color: #555;
	white-space: nowrap;
	transition: color var(--transition), background-color var(--transition);
}

.nav-menu li ul li a:hover,
.nav-menu li ul li a:focus-visible {
	color: var(--text);
	background-color: var(--gray-light);
}

.nav-menu .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 5px;
	vertical-align: middle;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid currentColor;
	opacity: 0.5;
}


/* =========================================
   9. HEADER CTA BUTTON
   ========================================= */

.btn-call {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: var(--brand);
	color: var(--white);
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--radius);
	white-space: nowrap;
	transition: background-color var(--transition), transform 0.1s ease;
}

.btn-call:hover {
	background-color: var(--brand-mid);
	color: var(--white);
}

.btn-call:active { transform: scale(0.97); }
.btn-call svg { flex-shrink: 0; }


/* =========================================
   10. HAMBURGER TOGGLE
   ========================================= */

.nav-toggle {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	padding: 4px;
	transition: background-color var(--transition);
}

.nav-toggle:hover { background-color: var(--gray-light); }

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.2s ease;
	transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =========================================
   11. SITE FOOTER
   ========================================= */

.site-footer {
	background: #111;
	color: #999;
	font-size: 0.9375rem;
}

.site-footer a {
	color: #999;
	transition: color var(--transition);
}

.site-footer a:hover { color: var(--white); }

.footer-top {
	padding: 3.5rem 0 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-brand img {
	height: 110px;
	width: auto;
	filter: brightness(0) invert(1);
}

.footer-brand .tagline {
	color: #666;
	font-size: 0.9375rem;
	max-width: 380px;
	line-height: 1.55;
}

.footer-middle {
	padding: 3rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
}

.footer-col h4 {
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 1.25rem;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.footer-col ul a {
	color: #666;
	font-size: 0.9375rem;
	transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.footer-col address {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-col address a,
.footer-col address span {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.9375rem;
	color: #666;
	line-height: 1.5;
	transition: color var(--transition);
}

.footer-col address a:hover { color: var(--white); }
.footer-col address svg { flex-shrink: 0; margin-top: 3px; }

.social-icons {
	display: flex;
	gap: 0.625rem;
	margin-top: 1.5rem;
}

.social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	color: #666;
	transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.social-icons a:hover {
	border-color: rgba(255, 255, 255, 0.4);
	color: var(--white);
	background-color: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
	background: #0a0a0a;
	padding: 1.25rem 0;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-bottom .copyright {
	font-size: 0.8125rem;
	color: #444;
}

.footer-legal-links {
	display: flex;
	gap: 1.5rem;
}

.footer-legal-links a {
	font-size: 0.8125rem;
	color: #444;
	transition: color var(--transition);
}

.footer-legal-links a:hover { color: #999; }


/* =========================================
   12. RESPONSIVE — TABLET (≤ 1024px)
   ========================================= */

@media (max-width: 1024px) {
	.footer-columns { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}


/* =========================================
   13. RESPONSIVE — MOBILE (≤ 768px)
   ========================================= */

@media (max-width: 768px) {
	.header-inner {
		grid-template-columns: 1fr auto;
		grid-template-areas: "logo toggle" "nav nav";
		height: auto;
		min-height: 64px;
	}

	.site-logo { padding: 0.875rem 0; }
	.site-logo img { height: 85px; }
	.header-right { display: none; }

	.nav-toggle {
		display: flex;
		grid-area: toggle;
		align-self: center;
	}

	.site-nav {
		grid-area: nav;
		display: none;
		border-top: 1px solid var(--gray-light);
		padding: 0.75rem 0 1rem;
	}

	.site-nav.is-open { display: block; }

	.nav-menu { flex-direction: column; align-items: stretch; gap: 0; }

	.nav-menu > li > a {
		padding: 0.75rem 0.5rem;
		border-radius: 0;
		border-bottom: 1px solid var(--gray-light);
	}

	.nav-menu > li:last-child > a { border-bottom: none; }

	.nav-menu li ul {
		position: static;
		display: block;
		box-shadow: none;
		border: none;
		border-radius: 0;
		padding: 0 0 0 1rem;
	}

	.nav-menu li ul::before { display: none; }

	.nav-menu li ul li a {
		padding: 0.5rem 0.5rem;
		font-size: 0.875rem;
		color: #777;
		border-bottom: 1px solid var(--gray-light);
	}

	.nav-menu li ul li:last-child a { border-bottom: none; }

	.footer-columns { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.625rem; }
}


/* =========================================
   14. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ========================================= */

@media (max-width: 480px) {
	.footer-columns { grid-template-columns: 1fr; }
	.footer-legal-links { flex-direction: column; gap: 0.5rem; }
}




/* ╔═══════════════════════════════════════════════════╗
   ║  HOMEPAGE SECTIONS                                ║
   ╚═══════════════════════════════════════════════════╝ */


/* =========================================
   15. HERO
   ========================================= */

.hero {
	position: relative;
	background: var(--brand);
	overflow: hidden;
	padding: 8rem 0 7rem;
}

/* Subtle radial glow in top-left corner */
.hero::before {
	content: '';
	position: absolute;
	top: -20%;
	left: -10%;
	width: 60%;
	height: 80%;
	background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-bg-shape {
	position: absolute;
	bottom: -2px;
	right: -5%;
	width: 55%;
	height: 100%;
	background: radial-gradient(ellipse at 70% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.hero-eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.5rem;
}

.hero-headline {
	font-size: clamp(2.75rem, 6vw, 5.25rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

.hero-sub {
	font-size: clamp(1rem, 1.5vw, 1.1875rem);
	color: rgba(255, 255, 255, 0.65);
	max-width: 600px;
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.btn-ghost-link {
	font-size: 0.9375rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	transition: color var(--transition);
	text-decoration: none;
	letter-spacing: 0.01em;
}

.btn-ghost-link:hover {
	color: var(--white);
}


/* =========================================
   16. OVER ONS
   ========================================= */

.about {
	background: var(--white);
	padding: var(--section-v) 0;
}

.about-inner {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.about-inner .section-heading {
	margin-bottom: 2.5rem;
}

.about-body {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	text-align: left;
}

.about-body p {
	font-size: 1.0625rem;
	color: var(--text-muted);
	line-height: 1.75;
}


/* =========================================
   17. ROSTER CARROUSEL
   ========================================= */

.roster {
	background: var(--brand);
	padding: var(--section-v) 0 4rem;
	overflow: hidden;
}

.roster .container {
	text-align: center;
	margin-bottom: 3rem;
}

.roster-carousel-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0 1.5rem;
	max-width: var(--container);
	margin: 0 auto;
}

.roster-viewport {
	flex: 1;
	overflow: hidden;
}

.roster-track {
	display: flex;
	gap: 1.5rem;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.roster-card {
	flex: 0 0 calc((100% - 1.5rem) / 2);
	min-width: 0;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--brand-mid);
	transition: transform var(--transition);
}

.roster-card:hover {
	transform: scale(1.02);
}

.roster-card-img-wrap {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.roster-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.roster-card:hover .roster-card-img-wrap img {
	transform: scale(1.06);
}

.roster-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2rem 1.25rem 1rem;
	background: linear-gradient(to top, rgba(26, 13, 13, 0.9) 0%, transparent 100%);
}

.roster-genre {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
}

.roster-card-info {
	padding: 1rem 1.25rem 1.25rem;
}

.roster-card-info h3 {
	font-size: 1.0625rem;
	color: var(--white);
	font-weight: 600;
}

.roster #roster-dots {
	margin-top: 2rem;
}


/* =========================================
   18. SHARED CAROUSEL CONTROLS
   ========================================= */

.carousel-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.15);
	flex-shrink: 0;
	transition: background-color var(--transition), border-color var(--transition);
}

.carousel-btn:hover {
	background-color: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.35);
}

.carousel-btn:disabled {
	opacity: 0.3;
	pointer-events: none;
}

/* Dark-on-light variant (e.g., on white sections) */
.carousel-btn--dark {
	background: var(--gray-light);
	color: var(--text);
	border-color: var(--gray-mid);
}

.carousel-btn--dark:hover {
	background: var(--gray-mid);
}

.carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.carousel-dots {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 0;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	cursor: pointer;
	transition: background-color var(--transition), transform var(--transition);
	padding: 0;
}

.carousel-dot.is-active {
	background: var(--gold);
	transform: scale(1.25);
}


/* =========================================
   19. WAT WIJ DOEN — EXPERTISE
   ========================================= */

.expertise {
	background: var(--white);
	padding: var(--section-v) 0;
}

.expertise .container {
	text-align: center;
}

.expertise .section-heading {
	margin-bottom: 0.75rem;
}

.expertise .section-sub {
	margin: 0 auto 4rem;
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 400px));
	justify-content: center;
	gap: 2rem;
	text-align: left;
}

.expertise-card {
	padding: 2.5rem 2rem;
	border: 1px solid var(--gray-mid);
	border-radius: var(--radius);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.expertise-card:hover {
	border-color: var(--gold);
	box-shadow: 0 4px 24px rgba(201, 168, 76, 0.08);
}

.expertise-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: var(--radius);
	background: var(--off-white);
	color: var(--brand);
	margin-bottom: 1.5rem;
	transition: background-color var(--transition), color var(--transition);
}

.expertise-card:hover .expertise-icon {
	background: var(--brand);
	color: var(--gold);
}

.expertise-card h3 {
	font-size: 1.1875rem;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.expertise-card p {
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.7;
}


/* =========================================
   20. IP SPOTLIGHT
   ========================================= */

.ip-spotlight {
	background: var(--gray-light);
	padding: var(--section-v) 0;
}

.ip-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.ip-image {
	border-radius: var(--radius);
	overflow: hidden;
}

.ip-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
}

.ip-content .section-label {
	margin-bottom: 0.75rem;
}

.ip-content h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 1.5rem;
}

.ip-content p {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.75;
	margin-bottom: 1.25rem;
}

.ip-content .btn {
	margin-top: 0.5rem;
}


/* =========================================
   21. TESTIMONIALS
   ========================================= */

.testimonials {
	background: var(--brand);
	padding: var(--section-v) 0;
}

.testimonials .container {
	text-align: center;
	margin-bottom: 3.5rem;
}

.testimonials .section-heading {
	margin-bottom: 0.75rem;
}

/* Text testimonial carousel */
.testimonial-carousel {
	max-width: 820px;
	margin: 0 auto 5rem;
}

.testimonial-track {
	display: flex;
	overflow: hidden;
}

.testimonial-card {
	flex: 0 0 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 2.5rem 3rem;
}

.testimonial-card blockquote p {
	font-family: var(--font-headline);
	font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
	font-style: italic;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.65;
	margin-bottom: 2rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-author img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(201, 168, 76, 0.4);
}

.testimonial-author strong {
	display: block;
	color: var(--white);
	font-size: 0.9375rem;
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.testimonial-author span {
	font-size: 0.8125rem;
	color: var(--gold);
	font-family: var(--font-body);
}

/* Video testimonials */
.video-testimonial-label {
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	text-align: center;
	margin-bottom: 1.5rem;
}

.video-carousel {
	max-width: 100%;
	overflow: hidden;
}

.video-track {
	display: flex;
	gap: 1.25rem;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card {
	flex: 0 0 calc((100% - 2.5rem) / 3);
}

.video-thumb {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
	transform: scale(1.04);
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.92);
	color: var(--brand);
	border: none;
	cursor: pointer;
	transition: background-color var(--transition), transform 0.2s ease;
	backdrop-filter: blur(4px);
}

.play-btn:hover {
	background: var(--gold);
	transform: translate(-50%, -50%) scale(1.1);
}

.video-card-name {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 0.75rem;
	text-align: center;
}


/* =========================================
   22. FAQ
   ========================================= */

.faq {
	background: var(--white);
	padding: var(--section-v) 0;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}

.faq-content .section-label { margin-bottom: 0.75rem; }

.faq-content h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 0.75rem;
}

.faq-sub {
	font-size: 0.9375rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
}

.faq-sub a {
	color: var(--brand);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item {
	border-bottom: 1px solid var(--gray-mid);
}

.faq-item:first-child {
	border-top: 1px solid var(--gray-mid);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1.25rem 0;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	color: var(--text);
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	transition: color var(--transition);
}

.faq-question:hover { color: var(--brand); }

.faq-item.is-open .faq-question { color: var(--brand); }

.faq-chevron {
	flex-shrink: 0;
	color: var(--text-light);
	transition: transform var(--transition);
}

.faq-item.is-open .faq-chevron {
	transform: rotate(180deg);
	color: var(--brand);
}

.faq-answer {
	padding-bottom: 1.25rem;
}

.faq-answer p {
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.75;
}

/* FAQ image tiles */
.faq-img-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.faq-img-grid img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--radius);
}


/* =========================================
   23. CONTACT & DEMO FORM
   ========================================= */

.contact {
	background: var(--brand);
	padding: var(--section-v) 0;
}

.contact-header {
	text-align: center;
	margin-bottom: 4rem;
}

.contact-header .section-heading {
	margin-bottom: 1rem;
}

.contact-social {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 3.5rem;
}

.contact-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.5);
	transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.contact-social a:hover {
	border-color: rgba(201, 168, 76, 0.6);
	color: var(--gold);
	background-color: rgba(201, 168, 76, 0.06);
}


/* =========================================
   24. MULTI-STEP FORM
   ========================================= */

.msform-wrap {
	max-width: 640px;
	margin: 0 auto;
}

.msform {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 2.5rem 3rem;
}

/* Step indicator */
.msform-steps {
	margin-bottom: 2rem;
}

.msform-step-indicator {
	display: block;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 0.75rem;
}

.msform-step-indicator strong {
	color: var(--gold);
}

.msform-progress {
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	overflow: hidden;
}

.msform-progress-bar {
	height: 100%;
	background: var(--gold);
	border-radius: 2px;
	transition: width 0.4s ease;
}

/* Fieldset */
.msform-fieldset {
	border: none;
	padding: 0;
}

.msform-legend {
	font-family: var(--font-headline);
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.5rem;
	width: 100%;
}

.msform-desc {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 1.75rem;
}

/* Goal cards — Step 1 */
.msform-goal-options {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.msform-goal-options.field-error .goal-card {
	border-color: rgba(220, 60, 60, 0.5);
}

.goal-option {
	cursor: pointer;
}

.goal-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.goal-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.125rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.03);
	transition: border-color var(--transition), background-color var(--transition);
	cursor: pointer;
}

.goal-card:hover,
.goal-option input:focus-visible + .goal-card {
	border-color: rgba(201, 168, 76, 0.4);
	background: rgba(201, 168, 76, 0.04);
}

.goal-card.is-selected {
	border-color: var(--gold);
	background: rgba(201, 168, 76, 0.08);
}

.goal-icon {
	flex-shrink: 0;
	color: var(--gold);
	margin-top: 2px;
}

.goal-card strong {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0.25rem;
}

.goal-card span {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.5;
}

/* Form fields */
.msform-field {
	margin-bottom: 1.25rem;
}

.msform-field--half {
	max-width: 50%;
}

.msform-fields-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.msform-field label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.5rem;
}

.field-required {
	color: var(--gold);
	margin-left: 2px;
}

.msform-field input,
.msform-field textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	color: var(--white);
	font-size: 0.9375rem;
	transition: border-color var(--transition), background-color var(--transition);
	outline: none;
}

.msform-field input::placeholder,
.msform-field textarea::placeholder {
	color: rgba(255, 255, 255, 0.25);
}

.msform-field input:focus,
.msform-field textarea:focus {
	border-color: rgba(201, 168, 76, 0.5);
	background: rgba(255, 255, 255, 0.08);
}

.msform-field input.field-error,
.msform-field textarea.field-error {
	border-color: rgba(220, 60, 60, 0.6);
}

.msform-field textarea {
	resize: vertical;
	min-height: 120px;
}

/* Form navigation row */
.msform-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Success message */
.msform-success {
	text-align: center;
	padding: 2rem 0;
}

.msform-success:focus { outline: none; }

.success-icon {
	color: var(--gold);
	margin-bottom: 1.25rem;
}

.msform-success h3 {
	font-size: 1.5rem;
	color: var(--white);
	margin-bottom: 0.75rem;
}

.msform-success p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1rem;
}


/* ╔═══════════════════════════════════════════════════╗
   ║  HOMEPAGE RESPONSIVE                              ║
   ╚═══════════════════════════════════════════════════╝ */


/* =========================================
   25. HOMEPAGE — TABLET (≤ 1024px)
   ========================================= */

@media (max-width: 1024px) {
	.hero { padding: 6rem 0 5rem; }

	.expertise-grid { grid-template-columns: 1fr; gap: 1.25rem; }
	.expertise-card { display: grid; grid-template-columns: auto 1fr; gap: 0 1.5rem; align-items: start; }
	.expertise-icon { margin-bottom: 0; }
	.expertise-card h3 { grid-column: 2; margin-top: 0.25rem; }
	.expertise-card p { grid-column: 2; }

	.ip-grid { grid-template-columns: 1fr; gap: 3rem; }
	.ip-image { max-width: 560px; }

	.faq-grid { grid-template-columns: 1fr; gap: 3rem; }
	.faq-images { display: none; }

	.roster-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
	.video-card  { flex: 0 0 calc((100% - 1.25rem) / 2); }

	.msform-fields-row { grid-template-columns: 1fr; }
	.msform-field--half { max-width: 100%; }
}


/* =========================================
   26. HOMEPAGE — MOBILE (≤ 768px)
   ========================================= */

@media (max-width: 768px) {
	:root { --section-v: 4rem; }

	.hero { padding: 5rem 0 4rem; }
	.hero-actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

	.about-inner { text-align: left; }
	.about-inner .section-heading { text-align: left; }

	.expertise-card { display: block; }
	.expertise-icon { margin-bottom: 1.25rem; }

	.roster-carousel-wrap { padding: 0 1rem; }
	.roster-card { flex: 0 0 100%; }

	.testimonial-card { padding: 2rem 1.5rem; }

	.video-card { flex: 0 0 100%; }

	.msform { padding: 2rem 1.5rem; }
	.msform-goal-options { gap: 0.625rem; }

	.contact-social { gap: 0.75rem; }
}


/* =========================================
   27. HOMEPAGE — SMALL MOBILE (≤ 480px)
   ========================================= */

@media (max-width: 480px) {
	.hero-headline { letter-spacing: -0.01em; }

	.msform-nav { flex-direction: column-reverse; align-items: stretch; }
	.msform-nav .btn { justify-content: center; }
}


/* ── Footer Email ─────────────────────────────────── */

.footer-email {
	color: #999;
	font-size: 0.9375rem;
	transition: color 0.22s ease;
}

.footer-email:hover {
	color: #ffffff;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.75rem;
}


/* ── Simple Contact Form ──────────────────────────── */

.field-optional {
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.8125rem;
	font-weight: 400;
	margin-left: 4px;
}

.field-hint {
	display: block;
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.8125rem;
	margin-top: 0.4rem;
}

input[type='file'] {
	width: 100%;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 4px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	cursor: pointer;
}

input[type='file']:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(253, 251, 223, 0.4);
}


/* ── Logo image ───────────────────────────────────── */

.site-logo-img {
	height: 160px;
	width: auto;
	display: block;
}


/* ── Text colours for light sections ─────────────── */

.about h2,
.about p,
.about .section-heading {
	color: #111111;
}

.about .section-label {
	color: #888888;
}

.expertise h2,
.expertise h3,
.expertise p,
.expertise .section-heading {
	color: #111111;
}

.expertise .section-label {
	color: #888888;
}

.expertise-card h3,
.expertise-card p {
	color: #111111;
}

.ip-spotlight h2,
.ip-spotlight p,
.ip-spotlight .section-heading {
	color: #111111;
}

.ip-spotlight .section-label {
	color: #888888;
}

.faq h2,
.faq p,
.faq-question,
.faq-answer p {
	color: #111111;
}
