:root {
	--primary-red: #dc1f3e;
	--accent-green: #cadb36;
	--bg-light: #f2f4f6;
	--bg-dark: #000000;
	--text-dark: #000000;
	--text-white: #ffffff;
	--text-gray: #858585;
	--text-muted: #a4a4a4;
	--text-light-gray: #dadada;
	--text-body-gray: rgba(60, 60, 60, 0.8);
	--border-dark: #585858;

	--font-family: "Inter", sans-serif;

	/* ── Font Weight Tokens (global numeric values) ── */
	--font-weight-light:   300;
	--font-weight-regular: 400;
	--font-weight-bold:    700;

	/* ── Hero Scale Weights (Augmented Fourth · 1.414) ── */
	/* Primary H1/H2: bold anchors the page at dramatic sizes       */
	--text-hero-weight-primary:   var(--font-weight-bold);
	/* Subheads: light at large sizes — sophisticated agency feel    */
	--text-hero-weight-secondary: var(--font-weight-light);
	/* Lead-in paragraphs: neutral, lets the heading do the work    */
	--text-hero-weight-utility:   var(--font-weight-regular);

	/* ── Content Scale Weights (Major Third · 1.250) ── */
	/* Body copy: reliable reading weight                           */
	--text-body-weight-primary:   var(--font-weight-regular);
	/* UI labels, buttons, nav: bold used sparingly for emphasis    */
	--text-body-weight-secondary: var(--font-weight-bold);
	/* Captions/metadata: regular holds legibility at small sizes   */
	--text-body-weight-utility:   var(--font-weight-regular);

	/* ── Hero Type Scale (Augmented Fourth · ×1.414, base 1.125rem) ── */
	/* Step 0 → base: lead-in paragraphs, utility text              */
	--text-hero-0: 1.125rem;
	/* Step +1 → 1.591rem: minor subheads, supporting lines         */
	--text-hero-1: 1.591rem;
	/* Step +2 → 2.250rem: section subheadings, pull quotes         */
	--text-hero-2: 2.250rem;
	/* Step +3 → 3.183rem: page-level H2, thought leadership titles */
	--text-hero-3: 3.183rem;
	/* Step +4 → 4.501rem: H1 hero headline, maximum gallery impact */
	--text-hero-4: 4.501rem;

	/* ── Content Type Scale (Major Third · ×1.250, base 1.125rem) ── */
	/* Step −2 → 0.720rem: fine print, timestamps, legal            */
	--text-body--2: 0.720rem;
	/* Step −1 → 0.900rem: captions, metadata, tags                 */
	--text-body--1: 0.900rem;
	/* Step  0 → 1.125rem: body copy baseline                       */
	--text-body-0:  1.125rem;
	/* Step +1 → 1.406rem: UI labels, nav items, card headings      */
	--text-body-1:  1.406rem;
	/* Step +2 → 1.758rem: section labels, service description heads */
	--text-body-2:  1.758rem;

	--max-width: 1920px;
	--header-padding: 44px 56px;
	--header-h: 124px;
	--section-padding-x: 70px;
	--section-padding: 100px;
	--section-padding-y: 150px;

	--radius: 3px;
}

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html {
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-family);
	background-color: #ffffff;
	color: var(--text-dark);
	overflow-x: hidden;
}

:focus-visible {
	outline: 2px solid var(--primary-red);
	outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}

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

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

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

input,
textarea,
select {
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
}

/* ─── Scroll Reveal Animations ───────────────────── */
.scroll-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.scroll-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.scroll-reveal--left {
	transform: translateX(-40px);
}

.scroll-reveal--left.is-visible {
	transform: none;
}

.scroll-reveal--right {
	transform: translateX(40px);
}

.scroll-reveal--right.is-visible {
	transform: none;
}

.scroll-reveal--scale {
	transform: scale(0.92);
}

.scroll-reveal--scale.is-visible {
	transform: none;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
	.scroll-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ─── Header ─────────────────────────────────────── */
.header-wrapper {
	--header-text: var(--text-white);
	--header-bg: transparent;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	color: var(--header-text);
	background-color: var(--header-bg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-wrapper.header--light {
	--header-text: var(--text-dark);
}

.site-header {
	padding: var(--header-padding);
	padding-top: max(44px, env(safe-area-inset-top));
	padding-bottom: max(20px, env(safe-area-inset-bottom));
	padding-left: max(56px, env(safe-area-inset-left));
	padding-right: max(56px, env(safe-area-inset-right));
	width: 100%;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

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

/* Dark logo shown on light header, default hidden */
.logo-img--dark {
	display: none;
}

.header--light .logo-img--default {
	display: none;
}

.header--light .logo-img--dark {
	display: block;
}

/* Fallback: dark logo not in CMS — same image inverted to appear dark */
.header--light .logo-img--dark-fallback {
	filter: invert(1);
}

.nav-links {
	display: flex;
	gap: 37px;
	align-items: center;
	font-size: 16px;
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
}

.nav-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: opacity 0.2s;
	white-space: nowrap;
}

.nav-item:hover {
	opacity: 0.7;
}

.nav-cta {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	padding: 8px 20px;
}

.nav-links .nav-cta {
	font-size: 16px;
	padding: 8px 20px;
}

.nav-dropdown-icon {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	transition: transform 0.2s;
}

/* ─── Nav Dropdown Panel ─────────────────────────── */
.nav-dropdown-wrapper {
	position: relative;
}

.nav-dropdown-panel {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(-4px);
	background: rgba(255,255,255,0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 12px;
	padding: 6px 0;
	min-width: 180px;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
	z-index: 200;
}

.nav-dropdown-wrapper:hover .nav-dropdown-panel,
.nav-dropdown-wrapper:focus-within .nav-dropdown-panel {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.nav-dropdown-wrapper:hover .nav-dropdown-icon,
.nav-dropdown-wrapper:focus-within .nav-dropdown-icon {
	transform: rotate(180deg);
}

.nav-dropdown-item {
	padding: 12px 20px;
	font-size: 15px;
	font-weight: var(--font-weight-regular);
	color: #1a1a1a;
	white-space: nowrap;
	transition: background 0.15s;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-dropdown-item:last-child {
	border-bottom: none;
}

.nav-dropdown-item:hover {
	background: rgba(255,255,255,0.5);
}

/* ─── Mobile Nav Subitems ────────────────────────── */
.mobile-nav-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.mobile-nav-item--group {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: opacity 0.2s;
}

.mobile-nav-item--group:hover {
	opacity: 0.7;
}

.mobile-nav-group-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-group.is-open .mobile-nav-group-icon {
	transform: rotate(180deg);
}

.mobile-nav-subitems {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
	            padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-group.is-open .mobile-nav-subitems {
	max-height: 400px;
	padding: 16px 0 8px;
	gap: 16px;
}

.mobile-nav-subitem {
	font-size: 22px;
	font-weight: var(--font-weight-regular);
	text-transform: uppercase;
	color: var(--text-white);
	transition: opacity 0.2s;
}

.mobile-nav-subitem:hover {
	opacity: 0.7;
}

/* ─── Hamburger ──────────────────────────────────── */
.nav-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	min-width: 44px;
	min-height: 44px;
	width: 44px;
	height: 44px;
	padding: 10px;
	flex-shrink: 0;
	z-index: 110;
}

.hamburger-line {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--header-text);
	border-radius: 1px;
	transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger open state */
.nav-hamburger.is-open .hamburger-line:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.is-open .hamburger-line:nth-child(2) {
	opacity: 0;
}

.nav-hamburger.is-open .hamburger-line:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ─── Mobile Nav Overlay ─────────────────────────── */
.mobile-nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 99;
	background-color: var(--bg-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.mobile-nav-item {
	font-size: 28px;
	font-weight: var(--font-weight-regular);
	text-transform: uppercase;
	color: var(--text-white);
	transition: opacity 0.2s;
}

.mobile-nav-item:hover {
	opacity: 0.7;
}

.mobile-nav-cta {
	font-weight: var(--font-weight-light);
	font-size: 32px;
}

@media (max-width: 1024px) {
	.site-header {
		padding: 20px;
		padding-top: max(20px, env(safe-area-inset-top));
		padding-bottom: max(20px, env(safe-area-inset-bottom));
		padding-left: max(20px, env(safe-area-inset-left));
		padding-right: max(20px, env(safe-area-inset-right));
	}
	.nav-links {
		display: none;
	}
	.nav-hamburger {
		display: flex;
	}
	/* When mobile nav is open, force hamburger to white */
	.nav-hamburger.is-open .hamburger-line {
		background-color: var(--text-white);
	}
	.section-title {
		font-size: 28px;
	}
	.section-title--large {
		font-size: 42px;
	}
	.btn-underline {
		font-size: 18px;
	}
	.btn-underline--lg {
		font-size: 32px;
	}
	.scroll-track {
		width: 120px;
	}
	.scroll-indicator__track {
		width: 120px;
	}
}

/* ─── Buttons ────────────────────────────────────── */
.btn-underline {
	display: inline-flex;
	justify-content: center;
	padding: 10px;
	font-size: 25px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	border-bottom: 2px solid var(--text-dark);
	cursor: pointer;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-underline:hover {
	opacity: 0.7;
	transform: translateY(-1px);
}

.btn-underline:active {
	transform: translateY(0);
}

.btn-underline--white {
	color: var(--text-white);
	border-bottom-color: var(--text-white);
}

.btn-underline--dark {
	color: var(--text-dark);
	border-bottom-color: var(--text-dark);
}

.btn-underline--lg {
	font-size: 40px;
	border-bottom-width: 3px;
}

.btn-filled-yellow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-red);
	color: var(--text-white);
	border-radius: 0;
	cursor: pointer;
	transition: background 0.2s ease;
}

.btn-filled-yellow:hover {
	background: color-mix(in srgb, var(--primary-red) 80%, #000);
}

/* ─── Section Titles ─────────────────────────────── */
.section-title {
	font-size: 50px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
}

.section-title--light {
	font-weight: var(--font-weight-light);
}

.section-title--large {
	font-size: 64px;
	line-height: 0.877;
}

/* ─── Scroll Indicator ───────────────────────────── */
.scroll-indicator {
	display: flex;
	align-items: center;
	gap: 1px;
}

.scroll-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 13px;
	color: var(--text-dark);
}

.scroll-track {
	width: 178px;
	height: 4px;
	background: #d9d9d9;
	position: relative;
}

.scroll-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	background: var(--primary-red);
}

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
	background-color: var(--bg-dark);
	color: var(--text-white);
	padding: 48px 0 0;
	padding-bottom: env(safe-area-inset-bottom);
	overflow: hidden;
}

.footer-inner {
	display: flex;
	flex-direction: column;
	gap: 5px;
	overflow: hidden;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	padding: 0 var(--section-padding);
	position: relative;
	z-index: 4;
}

.footer-cta {
	max-width: 586px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer-cta-heading {
	font-size: 90px;
	font-weight: var(--font-weight-bold);
	line-height: 1.048;
	text-transform: uppercase;
}

.footer-cta-heading span {
	color: var(--primary-red);
}

.footer-cta-btn {
	display: inline-flex;
	vertical-align: bottom;
	font-size: 0.44em;
	border-bottom-width: 2px;
	margin-left: 0.3em;
	margin-bottom: 0.1em;
	text-transform: none;
	align-self: auto;
}

.footer-cta-desc {
	font-size: 24px;
	font-weight: var(--font-weight-regular);
	color: #bcbcbc;
}

.footer-links {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 68px;
	align-items: start;
	padding-top: 47px;
}

.footer-heading {
	font-size: 20px;
	font-weight: var(--font-weight-bold);
	color: var(--text-light-gray);
	margin-bottom: 0;
}

.footer-menu {
	width: 128px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.footer-menu-list {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 16px;
}

.footer-menu-list a {
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	color: var(--text-gray);
	transition: color 0.2s;
}

.footer-menu-list a:hover {
	color: var(--text-white);
}

.footer-info {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer-info-grid {
	display: grid;
	grid-template-columns: 2fr 1fr auto;
	gap: 28px;
}

.footer-address {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.footer-email {
	display: flex;
	flex-direction: column;
	gap: 29px;
}

.footer-phone {
	display: flex;
	flex-direction: column;
	gap: 29px;
}

.footer-phone .footer-heading {
	white-space: nowrap;
}

.footer-text {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	color: var(--text-gray);
	line-height: 1.5;
}

.footer-email-link {
	font-size: 16px;
	color: var(--accent-green);
	text-transform: lowercase;
}

.footer-newsletter {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-newsletter__row {
	display: flex;
	align-items: center;
	gap: 24px;
}

.newsletter-form {
	display: flex;
	align-items: center;
	min-width: 0;
	flex: 1;
}

.newsletter-input {
	flex: 1;
	min-width: 0;
	height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--border-dark);
	border-radius: var(--radius) 0 0 var(--radius);
	background: transparent;
	color: var(--text-white);
	font-size: 16px;
	font-weight: var(--font-weight-light);
}

.newsletter-input::placeholder {
	color: var(--text-gray);
}

.newsletter-btn {
	height: 48px;
	padding: 12px 36px;
	background: var(--accent-green);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 16px;
	font-weight: var(--font-weight-bold);
	color: var(--text-dark);
	white-space: nowrap;
}

.newsletter-btn:hover {
	opacity: 0.9;
}

.footer-social {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.social-icons {
	display: flex;
	gap: 12px;
	align-items: center;
}

.social-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s;
	flex-shrink: 0;
}

.social-icon-box:hover {
	opacity: 0.7;
}

.social-icon-box img {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.footer-brand {
	height: 380px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: relative;
}

.footer-brand-text {
	font-size: clamp(200px, 28vw, 540px);
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
	line-height: 1.048;
	background: linear-gradient(180deg, #1a1a1a 27.23%, rgba(136, 136, 136, 0) 76.59%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	white-space: nowrap;
	position: relative;
	z-index: 1;
	/* Scroll-reveal: hidden by default — blur + fade + rise */
	opacity: 0;
	transform: translateY(60px) scale(0.95);
	filter: blur(12px);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
	            filter 1s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform, filter;
}

.footer-brand-text.is-revealed {
	opacity: 0.9;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

/* Blur overlay covering bottom portion of the brand text */
.footer-brand-blur {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 55%;
	z-index: 2;
	background: rgba(255, 73, 73, 0.03);
	backdrop-filter: blur(11.95px);
	-webkit-backdrop-filter: blur(11.95px);
	filter: blur(2px);
	pointer-events: none;
	mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
}

/* SVG glow overlay — organic fire/ember effect */
.footer-brand-glow {
	position: absolute;
	bottom: -178%;
	left: 50%;
	transform: translateX(-50%);
	width: 135%;
	height: 456%;
	z-index: 3;
	mix-blend-mode: plus-lighter;
	pointer-events: none;
	opacity: 0;
	transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.footer-brand-glow svg {
	display: block;
	width: 100%;
	height: 100%;
}

.footer-brand-text.is-revealed ~ .footer-brand-glow {
	opacity: 0.9;
}

/* Animated glow — slow breathing + drifting fire feel */
@keyframes footer-glow-breathe {
	0% {
		transform: translateX(-50%) scale(1);
	}
	25% {
		transform: translateX(-48%) scale(1.05);
	}
	50% {
		transform: translateX(-52%) scale(0.96);
	}
	75% {
		transform: translateX(-49%) scale(1.07);
	}
	100% {
		transform: translateX(-50%) scale(1);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.footer-brand-text.is-revealed ~ .footer-brand-glow {
		animation: footer-glow-breathe 6s ease-in-out infinite;
	}
}

/* Scroll-driven parallax: text rises slightly as user scrolls */
@supports (animation-timeline: scroll()) {
	@keyframes footer-brand-parallax {
		from {
			transform: translateY(40px);
		}
		to {
			transform: translateY(-10px);
		}
	}

	.footer-brand-text.is-revealed {
		animation: footer-brand-parallax linear both;
		animation-timeline: view();
		animation-range: entry 0% cover 60%;
	}
}

/* ─── Scroll Indicator (shared partial) ──────────── */
.scroll-indicator__track {
	width: 178px;
	height: 4px;
	background: #d9d9d9;
	position: relative;
}

.scroll-indicator__progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: var(--primary-red);
	transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Testimonial Card (shared partial) ─────────── */
.testimonial-card {
	background: var(--bg-dark);
	border-radius: var(--radius);
	padding: 40px;
	width: 480px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
	scroll-snap-align: start;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.4s ease;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card__quote {
	font-size: 18px;
	font-weight: var(--font-weight-light);
	color: var(--text-white);
	line-height: 1.6;
}

.testimonial-card__footer {
	display: flex;
	gap: 15px;
	align-items: center;
}

.testimonial-card__avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-card__author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.testimonial-card__author {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	color: var(--text-white);
	line-height: 1.2;
}

.testimonial-card__designation {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	color: var(--text-white);
	opacity: 0.6;
	line-height: 1.2;
}

/* ─── Resource Card (shared partial) ────────────── */
.resource-card__link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.resource-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.resource-card:hover {
	transform: translateY(-4px);
}

.resource-card__image img {
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.resource-card:hover .resource-card__image img {
	transform: scale(1.03);
}

.resource-card__image {
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	max-height: 240px;
	background: var(--bg-light);
}

.resource-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.resource-card__image-placeholder {
	width: 100%;
	height: 100%;
	background: var(--bg-light);
}

.resource-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 10px;
}

.resource-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.resource-card__title {
	font-size: 22px;
	font-weight: var(--font-weight-bold);
	line-height: 1.25;
}

.resource-card__desc {
	flex: 1;
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	color: var(--text-body-gray);
	line-height: 1.55;
}

.resource-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	color: #a4a4a4;
	line-height: 1.4;
	margin-top: 4px;
}

.resource-card__activity {
	display: flex;
	gap: 39px;
	align-items: center;
}

.resource-card__stat {
	display: flex;
	gap: 5px;
	align-items: center;
}

.resource-card__stat svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

/* ─── Project Card (shared partial) ─────────────── */
a.project-card {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.project-card {
	display: block;
	position: relative;
}

.project-card--large {
	width: calc(50% - 11px);
}

.project-card--medium {
	width: calc(37% - 11px);
}

.project-card__image {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
}

.project-card--large .project-card__image {
	height: 477px;
}

.project-card--medium .project-card__image {
	height: 350px;
}

.project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
	will-change: transform, filter;
	display: block;
}

.project-card__image-placeholder {
	width: 100%;
	height: 100%;
	background: var(--bg-light);
	border-radius: var(--radius);
}

/* Stuur.men-style text overlay on image */
.project-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px 28px 32px;
	background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
	border-radius: var(--radius);
	pointer-events: none;
}

.project-card__overlay-client {
	display: block;
	color: rgba(255,255,255,0.7);
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.project-card__overlay-title {
	color: #fff;
	font-size: 30px;
	font-weight: var(--font-weight-regular);
	line-height: 1.15;
	margin: 0;
}

/* ─── CTA Section (shared partial) ──────────────── */
.cta-section {
	background: var(--primary-red);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 300px var(--section-padding);
	gap: 40px;
}

.cta-section__heading {
	font-size: 70px;
	font-weight: var(--font-weight-light);
	color: var(--text-white);
	line-height: 1.1;
}

.cta-section__subtitle {
	font-size: 24px;
	font-weight: var(--font-weight-regular);
	color: var(--text-white);
	opacity: 0.8;
	max-width: 700px;
	line-height: 1.4;
}

/* ─── Contact Form Focus Animations ─────────────── */
.contact-form__field {
	position: relative;
}

.contact-form__field .contact-form__label {
	transition: color 0.3s ease;
}

.contact-form__field.is-focused .contact-form__label {
	color: var(--primary-red);
}

.contact-form__input,
.contact-form__textarea {
	transition: outline-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact-form__field.is-focused .contact-form__input,
.contact-form__field.is-focused .contact-form__textarea {
	background-color: #f0f0f0;
	box-shadow: 0 2px 12px rgba(220, 31, 62, 0.08);
}

/* ─── Filter Dropdown (shared partial) ──────────── */
.filter-dropdown {
	position: relative;
	display: inline-block;
}

.filter-dropdown__trigger {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border: 1px solid var(--text-dark);
	border-radius: 5px;
	background: transparent;
	font-family: "Manrope", var(--font-family);
	font-size: 16px;
	font-weight: var(--font-weight-bold);
	color: var(--text-dark);
	cursor: pointer;
	transition: opacity 0.2s;
}

.filter-dropdown__trigger:hover {
	opacity: 0.7;
}

.filter-dropdown__icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.filter-dropdown.is-open .filter-dropdown__icon {
	transform: rotate(180deg);
}

.filter-dropdown__menu {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 100%;
	background: var(--text-white);
	border: 1px solid var(--text-dark);
	border-radius: 5px;
	padding: 8px 0;
	z-index: 500;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.filter-dropdown.is-open .filter-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.filter-dropdown__option {
	display: block;
	width: 100%;
	padding: 10px 18px;
	text-align: left;
	font-family: "Manrope", var(--font-family);
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	cursor: pointer;
	transition: background-color 0.15s;
}

.filter-dropdown__option:hover {
	background-color: var(--bg-light);
}

.filter-dropdown__option.is-active {
	font-weight: var(--font-weight-bold);
	color: var(--primary-red);
}

/* ─── Responsive: 1200px ─────────────────────────── */
@media (max-width: 1200px) {
	/* Shared components */
	.section-title {
		font-size: 30px;
	}
	.section-title--large {
		font-size: 48px;
	}
	.scroll-track {
		width: 140px;
	}
	.scroll-indicator__track {
		width: 140px;
	}
	/* Footer */
	.footer-top {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.footer-cta-heading {
		font-size: 48px;
	}
	.footer-cta-desc {
		font-size: 20px;
	}
	.footer-links {
		grid-template-columns: 1fr;
		gap: 40px;
		width: 100%;
	}
	.footer-info-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-address {
		grid-column: 1 / -1;
	}
	/* Shared partials */
	.project-card--large,
	.project-card--medium {
		width: calc(50% - 11px);
	}
	/* CTA section */
	.cta-section {
		padding: 180px var(--section-padding);
	}
	.cta-section__heading {
		font-size: 56px;
	}
}

@media (max-width: 1024px) {
	.footer-top {
		padding: 0 40px;
	}
	/* Shared partials */
	.project-card--large,
	.project-card--medium {
		width: 100%;
	}
	.project-card--large .project-card__image,
	.project-card--medium .project-card__image {
		height: auto;
	}
	.footer-links {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer-menu {
		width: 100%;
	}
	.footer-menu-list {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px 40px;
	}
	.footer-info {
		gap: 40px;
	}
	.footer-social {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	/* CTA section */
	.cta-section {
		padding: 140px var(--section-padding);
	}
	.cta-section__heading {
		font-size: 48px;
	}
}

@media (max-width: 768px) {
	:root {
		--header-padding: 20px;
		--header-h: 100px;
		--section-padding: 20px;
		--section-padding-y: 60px;
	}
	.site-footer {
		padding: 40px 0 0;
	}
	.footer-top {
		padding: 0 20px;
		gap: 40px;
	}
	.footer-cta {
		gap: 24px;
	}
	.footer-cta-heading {
		font-size: 36px;
	}
	.footer-cta-desc {
		font-size: 18px;
	}
	.footer-info-grid {
		flex-direction: column;
		gap: 32px;
	}
	.footer-address,
	.footer-email,
	.footer-phone {
		width: 100%;
	}
	.newsletter-input {
		max-width: none;
		font-size: 16px;
	}
	.newsletter-btn {
		font-size: 16px;
		padding: 15px 24px;
	}
	.footer-brand {
		height: 200px;
	}
	.section-title--large {
		font-size: 36px;
	}
	.btn-underline--lg {
		font-size: 24px;
	}
	.section-title {
		font-size: 24px;
	}
	.btn-underline {
		font-size: 16px;
	}
	.scroll-track {
		width: 100px;
	}
	.scroll-indicator__track {
		width: 100px;
	}
	/* Shared partials */
	.testimonial-card {
		width: 300px;
		gap: 30px;
		padding: 24px;
	}
	.testimonial-card__quote {
		font-size: 15px;
	}
	.testimonial-card__author {
		font-size: 14px;
	}
	.testimonial-card__designation {
		font-size: 12px;
	}
	.testimonial-card__avatar {
		width: 40px;
		height: 40px;
	}
	.resource-card__meta {
		font-size: 12px;
	}
	.cta-section {
		padding: 120px var(--section-padding);
	}
	.cta-section__heading {
		font-size: 36px;
	}
	.cta-section__subtitle {
		font-size: 18px;
	}
	/* Project cards */
	.project-card--large .project-card__image,
	.project-card--medium .project-card__image {
		height: 220px;
	}
	.project-card__client {
		font-size: 16px;
	}
	/* Filter dropdown */
	.filter-dropdown {
		width: 100%;
	}
	.filter-dropdown__trigger {
		width: 100%;
		justify-content: space-between;
	}
	.filter-dropdown__menu {
		width: 100%;
	}
	/* Logo responsive */
	.logo-img {
		height: 48px;
	}
}

/* ─── Form feedback messages ─────────────────────────────── */
.form-msg {
	margin-top: 10px;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	font-family: var(--font-family);
}
.form-msg--success {
	color: var(--accent-green);
}
.form-msg--error {
	color: var(--primary-red);
}

/* ─── Responsive: 1440px+ (large laptop / FHD) ───── */
@media (min-width: 1440px) {
	:root {
		--header-padding: 48px 72px;
		--section-padding: 120px;
	}
}

/* ─── Responsive: 1680px+ (QHD-class) ───────────── */
@media (min-width: 1680px) {
	:root {
		--header-padding: 52px 88px;
		--section-padding: 140px;
		--section-padding-y: 170px;
	}
	.cta-section__heading {
		font-size: 84px;
	}
	.footer-cta-heading {
		font-size: 104px;
	}
	.footer-cta {
		max-width: 780px;
	}
}

/* ─── Responsive: 1920px+ (FHD/QHD desktops) ────── */
@media (min-width: 1920px) {
	:root {
		--header-padding: 56px 120px;
		--section-padding: 160px;
		--section-padding-y: 190px;
	}
	.cta-section__heading {
		font-size: 96px;
	}
	.cta-section__subtitle {
		font-size: 28px;
		max-width: 820px;
	}
	.footer-cta-heading {
		font-size: 120px;
	}
	.footer-cta-desc {
		font-size: 28px;
	}
	.footer-cta {
		max-width: 900px;
	}
}

/* ─── Responsive: 2400px+ (QHD/2.5K and ultrawide) ─
   Cap content-bearing wrappers and centre them so the
   layout does not sprawl across the full viewport. Full-bleed
   backgrounds (hero, CTA section bg) remain unaffected because
   they're applied to the outer section, not the inner content. */
@media (min-width: 2400px) {
	:root {
		--max-width: 2160px;
		--header-padding: 64px max(120px, calc((100vw - 2160px) / 2));
		--section-padding: max(160px, calc((100vw - 2160px) / 2));
		--section-padding-y: 220px;
	}
	.header-content,
	.footer-inner,
	.footer-top {
		max-width: var(--max-width);
		margin-inline: auto;
	}
	.cta-section__heading {
		font-size: 112px;
	}
	.cta-section__subtitle {
		font-size: 32px;
		max-width: 960px;
	}
	.footer-cta-heading {
		font-size: 140px;
	}
	.footer-cta {
		max-width: 1040px;
	}
}
