: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;
	--fw-extra-light: 200;
	--fw-light: 300;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semi-bold: 600;
	--fw-bold: 700;

	--max-width: 1920px;
	--header-padding: 32px 56px;
	--section-padding: 100px;
	--section-padding-y: 150px;

	--radius: 3px;
}

* {
	box-sizing: border-box;
}

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

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;
}

input {
	font-family: inherit;
}

/* ─── 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);
}

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

.site-header {
	padding: var(--header-padding);
	width: 100%;
}

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

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

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

.nav-links {
	display: flex;
	gap: 37px;
	align-items: center;
	font-size: 18px;
	font-weight: var(--fw-regular);
	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-weight: var(--fw-extra-light);
	font-size: 20px;
}

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

/* ─── Hamburger ──────────────────────────────────── */
.nav-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 36px;
	height: 36px;
	padding: 4px;
	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(--fw-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(--fw-extra-light);
	font-size: 32px;
}

@media (max-width: 1024px) {
	.site-header {
		padding: 20px;
	}
	.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;
	align-items: center;
	justify-content: center;
	padding: 10px;
	font-size: 20px;
	font-weight: var(--fw-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--lg {
	font-size: 40px;
	border-bottom-width: 3px;
}

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

.section-title--light {
	font-weight: var(--fw-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;
	width: 17px;
	height: 17px;
	padding: 0;
	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: 60px 0 0;
	overflow: hidden;
}

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

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	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(--fw-bold);
	line-height: 1.048;
	text-transform: uppercase;
}

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

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

.footer-links {
	display: flex;
	gap: 68px;
	align-items: flex-end;
}

.footer-heading {
	font-size: 20px;
	font-weight: var(--fw-semi-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;
	gap: 60px;
}

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

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

.footer-info {
	width: 660px;
	display: flex;
	flex-direction: column;
	gap: 76px;
}

.footer-info-grid {
	display: flex;
	gap: 28px;
}

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

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

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

.footer-text {
	font-size: 16px;
	font-weight: var(--fw-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: 19px;
}

.newsletter-form {
	display: flex;
	align-items: center;
	width: 100%;
}

.newsletter-input {
	flex: 1;
	max-width: 475px;
	height: 54px;
	padding: 15px 18px;
	border: 1px solid var(--border-dark);
	border-radius: var(--radius) 0 0 var(--radius);
	background: transparent;
	color: var(--text-white);
	font-size: 20px;
	font-weight: var(--fw-light);
}

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

.newsletter-btn {
	height: 54px;
	padding: 15px 40px;
	background: var(--accent-green);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 20px;
	font-weight: var(--fw-medium);
	color: var(--text-dark);
	white-space: nowrap;
}

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

.footer-social {
	display: flex;
	gap: 55px;
	align-items: center;
}

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

.social-icons a {
	display: block;
	width: 37px;
	height: 37px;
	transition: opacity 0.2s;
}

.social-icons a:hover {
	opacity: 0.7;
}

.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(--fw-medium);
	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);
	}
}

.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: 30px;
	width: 409px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 100px;
	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: 40px;
	font-weight: var(--fw-light);
	color: var(--text-white);
	line-height: 1.16;
}

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

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

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

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

/* ─── Resource Card (shared partial) ────────────── */
.resource-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	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: 839 / 471;
}

.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;
	gap: 10px;
}

.resource-card__title {
	font-size: 40px;
	font-weight: var(--fw-regular);
	line-height: 1.065;
}

.resource-card__desc {
	font-size: 20px;
	font-weight: var(--fw-regular);
	color: var(--text-body-gray);
	line-height: 1.065;
}

.resource-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	font-weight: var(--fw-regular);
	color: #a4a4a4;
	line-height: 1.065;
}

.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: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

.project-card__image {
	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);
}

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

.project-card__client {
	font-size: 20px;
	font-weight: var(--fw-regular);
}

/* ─── 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(--fw-light);
	color: var(--text-white);
	line-height: 1.1;
}

.cta-section__subtitle {
	font-size: 24px;
	font-weight: var(--fw-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(--fw-medium);
	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: 50;
	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(--fw-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(--fw-semi-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 {
		flex-direction: column;
		gap: 60px;
		align-items: flex-start;
	}
	.footer-cta {
		max-width: 100%;
	}
	.footer-cta-heading {
		font-size: 48px;
	}
	.footer-cta-desc {
		font-size: 20px;
	}
	.footer-links {
		flex-direction: column;
		gap: 40px;
		align-items: flex-start;
		width: 100%;
	}
	.footer-info {
		width: 100%;
	}
	.footer-info-grid {
		flex-wrap: wrap;
	}
	/* Shared partials */
	.project-card--large,
	.project-card--medium {
		width: calc(50% - 11px);
	}
	.resource-card__title {
		font-size: 28px;
	}
}

@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: 300px;
	}
	.footer-links {
		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;
	}
}

@media (max-width: 768px) {
	:root {
		--header-padding: 20px;
		--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: 320px;
		gap: 40px;
		padding: 24px;
	}
	.testimonial-card__quote {
		font-size: 22px;
	}
	.testimonial-card__author {
		font-size: 18px;
	}
	.testimonial-card__avatar {
		width: 48px;
		height: 48px;
	}
	.resource-card__title {
		font-size: 22px;
	}
	.resource-card__desc {
		font-size: 16px;
	}
	.resource-card__meta {
		font-size: 16px;
	}
	.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;
	}
}
