/**
 * Aleric-inspired marketing agency layer.
 * Brand fonts/colors retained from main.css.
 */

:root {
	--container-wide: 1400px;
	--section-spacing: 120px;
	--section-spacing-mobile: 80px;
}

/* ========== CUSTOM CURSOR (butterfly) ========== */
@media (hover: hover) and (pointer: fine) {
	body.has-kc-cursor,
	body.has-kc-cursor * {
		cursor: none !important;
	}

	.kc-cursor {
		position: fixed;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		z-index: 99999;
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.25s ease;
	}

	.kc-cursor.is-active {
		opacity: 1;
	}

	.kc-cursor__butterfly {
		position: absolute;
		top: 0;
		left: 0;
		width: 28px;
		height: 28px;
		margin: -10px 0 0 -6px;
		transform: translate3d(-100px, -100px, 0);
		will-change: transform;
		filter: drop-shadow(0 4px 8px rgba(45, 74, 56, 0.28));
		transition: width 0.15s ease, height 0.15s ease, margin 0.15s ease, filter 0.15s ease;
	}

	.kc-cursor__butterfly svg {
		display: block;
		width: 100%;
		height: 100%;
		overflow: visible;
	}

	.kc-cursor__wing {
		transform-box: fill-box;
		transform-origin: center;
	}

	.kc-cursor__wing--l {
		transform-origin: 50% 55%;
		animation: kcWingL 0.38s ease-in-out infinite;
	}

	.kc-cursor__wing--r {
		transform-origin: 50% 55%;
		animation: kcWingR 0.38s ease-in-out infinite;
	}

	.kc-cursor.is-idle .kc-cursor__wing--l,
	.kc-cursor.is-idle .kc-cursor__wing--r {
		animation-duration: 1.1s;
	}

	.kc-cursor.is-hover .kc-cursor__butterfly {
		width: 36px;
		height: 36px;
		margin: -12px 0 0 -8px;
		filter: drop-shadow(0 6px 14px rgba(232, 179, 181, 0.45));
	}

	.kc-cursor.is-hover .kc-cursor__wing--l,
	.kc-cursor.is-hover .kc-cursor__wing--r {
		animation-duration: 0.22s;
	}

	.kc-cursor.is-click .kc-cursor__butterfly {
		filter: drop-shadow(0 2px 6px rgba(214, 188, 94, 0.5));
	}

	/* Native cursor in video modal — custom cursor can't track over iframes */
	body.has-kc-cursor.kc-lightbox-open,
	body.has-kc-cursor.kc-lightbox-open * {
		cursor: auto !important;
	}

	body.kc-lightbox-open .kc-cursor {
		opacity: 0 !important;
		visibility: hidden;
	}

	body.kc-lightbox-open .kc-lightbox__close {
		cursor: pointer !important;
	}

	@keyframes kcWingL {
		0%, 100% { transform: rotateY(0deg) rotateZ(-4deg); }
		50% { transform: rotateY(48deg) rotateZ(-10deg); }
	}

	@keyframes kcWingR {
		0%, 100% { transform: rotateY(0deg) rotateZ(4deg); }
		50% { transform: rotateY(-48deg) rotateZ(10deg); }
	}
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce) {
	body.has-kc-cursor,
	body.has-kc-cursor * {
		cursor: auto !important;
	}

	.kc-cursor {
		display: none !important;
	}
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) {
	--nav-fg: #fff;
	--nav-fg-muted: rgba(255, 255, 255, 0.86);
	--nav-bg: transparent;
	background: transparent;
	border-bottom-color: transparent;
	box-shadow: none;
}

/* Keep menu readable if paint lags or hero media is slow */
body.home .site-header:not(.is-scrolled):not(.is-menu-open)::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(45, 74, 56, 0.62) 0%, rgba(45, 74, 56, 0) 100%);
	pointer-events: none;
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li > a:hover,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li.current-menu-item > a,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li.current_page_item > a,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li.current-menu-ancestor > a,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li.current-menu-parent > a {
	color: #fff;
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li.current-menu-item > a::before,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li.current_page_item > a::before,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li.current-menu-ancestor > a::before,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li.current-menu-parent > a::before {
	background:
		linear-gradient(145deg, rgba(227, 175, 188, 0.38), rgba(255, 255, 255, 0.12) 50%, rgba(214, 188, 94, 0.22));
	filter:
		drop-shadow(0 0 0.7px rgba(255, 255, 255, 0.75))
		drop-shadow(0 0 0.7px rgba(227, 175, 188, 0.9));
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li:not(.current-menu-item):not(.current_page_item):not(.current-menu-ancestor) > a:hover::before,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .primary-menu > li:not(.current-menu-item):not(.current_page_item):not(.current-menu-ancestor) > a:focus-visible::before {
	background: rgba(255, 255, 255, 0.12);
	filter: drop-shadow(0 0 0.6px rgba(255, 255, 255, 0.55));
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__cta--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__cta--ghost:hover,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__cta--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__cta--solid {
	background: var(--pink);
	border-color: var(--pink);
	color: var(--green);
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) .menu-toggle {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) .menu-toggle:hover,
body.home .site-header:not(.is-scrolled):not(.is-menu-open) .menu-toggle:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

body.home .site-header:not(.is-scrolled):not(.is-menu-open) .site-logo--light .site-logo__img {
	filter: brightness(0) invert(1);
}

body.home .site-header.is-menu-open:not(.is-scrolled) {
	--nav-fg: var(--green);
	--nav-fg-muted: rgba(45, 74, 56, 0.68);
	--nav-bg: rgba(255, 255, 255, 0.96);
}

body.home .site-header.is-menu-open:not(.is-scrolled) .site-logo--light .site-logo__img {
	filter: none;
}

.container--wide {
	max-width: var(--container-wide);
}

/* Buttons with arrow */
.btn-agency {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 28px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 1px solid transparent;
	transition: var(--transition);
}

.btn-agency span:last-child {
	display: inline-flex;
	transition: transform 0.35s ease;
}

.btn-agency:hover span:last-child {
	transform: translateX(4px);
}

.btn-agency--pink {
	background: var(--pink);
	color: var(--green);
	border-color: var(--pink);
}

.btn-agency--pink:hover {
	background: var(--cream);
	border-color: var(--cream);
	color: var(--green);
}

.btn-agency--light {
	background: var(--cream);
	color: var(--green);
	border-color: var(--cream);
}

.btn-agency--light:hover {
	background: var(--pink);
	border-color: var(--pink);
}

.btn-agency--outline-light {
	background: transparent;
	color: var(--cream);
	border-color: rgba(255, 255, 255, 0.45);
}

.btn-agency--outline-light:hover {
	background: var(--pink);
	border-color: var(--pink);
	color: var(--green);
}

/* Section chrome */
.agency-section {
	padding: var(--section-spacing) 0;
	position: relative;
}

.agency-eyebrow {
	display: inline-block;
	margin: 0 0 18px;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--green);
	opacity: 0.75;
}

.agency-kicker {
	display: block;
	margin: 0 0 8px;
	font-family: var(--font-accent);
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.02em;
	line-height: 1.15;
	text-transform: none;
	color: var(--green);
}

.agency-kicker--light {
	color: var(--pink-2);
}

.agency-title {
	margin: 0 0 24px;
	font-family: var(--font-display);
	font-size: clamp(36px, 5.4vw, 64px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--green);
	text-transform: none;
}

.agency-title--light { color: var(--cream); }

.agency-lede {
	margin: 0;
	max-width: 42ch;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.65;
	color: #4b5045;
}

.agency-lede--light { color: rgba(255, 255, 255, 0.78); }

/* ========== DARK HERO ========== */
body.home .site-main--front {
	margin-top: calc(var(--header-height) * -1);
}

.agency-hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	padding: calc(var(--header-height) + 48px) 0 72px;
	overflow: hidden;
	background: var(--green-2);
	color: var(--cream);
}

.agency-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.agency-hero__media-inner {
	position: absolute;
	inset: -8%;
	will-change: transform;
}

.agency-hero__image-flip {
	width: 100%;
	height: 100%;
}

.agency-hero__image,
.agency-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	opacity: 0.48;
	transform: scale(1.08);
	will-change: transform;
	animation: heroKenBurns 22s ease-in-out infinite alternate;
}

.agency-hero__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(105deg, rgba(45, 74, 56, 0.94) 0%, rgba(45, 74, 56, 0.62) 55%, rgba(45, 74, 56, 0.35) 100%),
		linear-gradient(0deg, rgba(7, 44, 45, 0.7) 0%, transparent 45%);
	pointer-events: none;
}

.agency-hero__decor {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.agency-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	opacity: 0.55;
}

.agency-hero__orb--pink {
	width: min(34vw, 340px);
	height: min(34vw, 340px);
	top: 8%;
	right: -6%;
	background: radial-gradient(circle, rgba(232, 179, 181, 0.55) 0%, transparent 68%);
	animation: heroFloatA 9s ease-in-out infinite;
}

.agency-hero__orb--gold {
	width: min(24vw, 240px);
	height: min(24vw, 240px);
	bottom: 16%;
	left: -4%;
	background: radial-gradient(circle, rgba(214, 188, 94, 0.4) 0%, transparent 70%);
	animation: heroFloatB 11s ease-in-out infinite;
}

.agency-hero__ring {
	position: absolute;
	top: 26%;
	right: 14%;
	width: 160px;
	height: 160px;
	border: 1px solid rgba(232, 179, 181, 0.35);
	border-radius: 50%;
	animation: heroSpin 26s linear infinite;
}

.agency-hero__ring::after {
	content: "";
	position: absolute;
	inset: 16px;
	border: 1px dashed rgba(214, 188, 94, 0.45);
	border-radius: 50%;
}

.agency-hero__shape,
.agency-hero__icon {
	position: absolute;
	color: var(--pink);
	opacity: 0.72;
	will-change: transform;
}

.agency-hero__shape--circle {
	top: 16%;
	left: 5%;
	width: 96px;
	height: 96px;
	color: var(--gold);
	animation: heroFloatA 7.5s ease-in-out infinite;
}

.agency-hero__shape--square {
	top: 20%;
	right: 28%;
	width: 70px;
	height: 70px;
	animation: heroFloatB 8.5s ease-in-out infinite;
}

.agency-hero__shape--triangle {
	bottom: 24%;
	right: 7%;
	width: 78px;
	height: 78px;
	color: var(--gold);
	animation: heroUpSlide 3.6s ease-in-out infinite;
}

.agency-hero__icon--megaphone {
	top: 18%;
	right: 8%;
	width: 56px;
	height: 56px;
	color: var(--pink);
	animation: heroFloatA 6.8s ease-in-out infinite reverse;
}

.agency-hero__icon--cursor {
	top: 48%;
	right: 22%;
	width: 36px;
	height: 36px;
	color: #fff;
	opacity: 0.55;
	animation: heroCursor 4.5s ease-in-out infinite;
}

.agency-hero__icon--pen {
	bottom: 18%;
	right: 18%;
	width: 46px;
	height: 46px;
	color: var(--pink);
	animation: heroFloatA 8s ease-in-out infinite;
}

.agency-hero__icon--spark {
	top: 30%;
	left: 28%;
	width: 34px;
	height: 34px;
	color: var(--gold);
	animation: heroTwinkle 2.2s ease-in-out infinite 0.4s;
}

.agency-hero__butterfly {
	position: absolute;
	width: 36px;
	height: 36px;
	opacity: 0.7;
	will-change: transform;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
	overflow: visible;
}

.agency-hero__butterfly .agency-hero__wing {
	transform-box: fill-box;
	transform-origin: center;
}

.agency-hero__butterfly .agency-hero__wing--l {
	animation: heroWingL 0.42s ease-in-out infinite;
}

.agency-hero__butterfly .agency-hero__wing--r {
	animation: heroWingR 0.42s ease-in-out infinite;
}

.agency-hero__butterfly--a {
	top: 12%;
	left: 18%;
	width: 42px;
	height: 42px;
	color: var(--pink);
	animation: heroButterflyA 11s ease-in-out infinite;
}

.agency-hero__butterfly--b {
	top: 22%;
	right: 16%;
	width: 30px;
	height: 30px;
	color: var(--gold);
	opacity: 0.62;
	animation: heroButterflyB 13s ease-in-out infinite;
}

.agency-hero__butterfly--b .agency-hero__wing--l,
.agency-hero__butterfly--b .agency-hero__wing--r {
	animation-duration: 0.34s;
}

.agency-hero__butterfly--c {
	bottom: 30%;
	left: 12%;
	width: 28px;
	height: 28px;
	color: #fff;
	opacity: 0.5;
	animation: heroButterflyC 15s ease-in-out infinite;
}

.agency-hero__butterfly--c .agency-hero__wing--l,
.agency-hero__butterfly--c .agency-hero__wing--r {
	animation-duration: 0.5s;
}

.agency-hero__butterfly--d {
	bottom: 20%;
	right: 28%;
	width: 34px;
	height: 34px;
	color: var(--pink);
	opacity: 0.58;
	animation: heroButterflyD 12.5s ease-in-out infinite;
}

.agency-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

/* Branded scrollbar */
html {
	scrollbar-width: thin;
	scrollbar-color: var(--pink) var(--cream-2);
}

html::-webkit-scrollbar {
	width: 10px;
}

html::-webkit-scrollbar-track {
	background: var(--cream-2);
}

html::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--pink) 0%, var(--gold) 100%);
	border: 2px solid var(--cream-2);
}

html::-webkit-scrollbar-thumb:hover {
	background: var(--green);
}

.agency-hero__kicker {
	display: block;
	margin-bottom: 18px;
	font-family: var(--font-ui);
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	line-height: 1.2;
}

.agency-hero__title {
	margin: 0 0 28px;
	max-width: 14ch;
	font-family: var(--font-display);
	font-size: clamp(44px, 7.2vw, 86px);
	line-height: 1.02;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--cream);
}

.agency-hero__title em {
	font-family: var(--font-accent);
	font-style: normal;
	font-weight: 400;
	color: var(--gold);
	letter-spacing: 0.01em;
}

.agency-hero__impact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 22px;
	margin: 0 0 28px;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.72);
}

.agency-hero__impact span {
	color: var(--pink);
}

.agency-hero__lede {
	max-width: 48ch;
	margin: 0 0 36px;
	font-size: clamp(16px, 1.5vw, 19px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
}

.agency-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 28px;
	margin-bottom: 48px;
}

.agency-hero__services {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding-top: 22px;
	overflow: hidden;
}

.agency-hero__services-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	padding: 8px 14px;
	font-family: var(--font-ui);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--green);
	background: var(--gold);
	border: 1px solid rgba(214, 188, 94, 0.85);
	box-shadow: 0 8px 24px rgba(214, 188, 94, 0.22);
}

.agency-hero__services-label::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--pink);
	box-shadow: 0 0 0 3px rgba(232, 179, 181, 0.35);
	flex-shrink: 0;
}

.agency-hero__services-track {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.agency-hero__services-row {
	display: flex;
	align-items: center;
	width: max-content;
	animation: agencyMarquee 34s linear infinite;
}

.agency-hero__service {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
	white-space: nowrap;
}

.agency-hero__service-sep {
	margin: 0 16px;
	color: var(--pink);
	opacity: 0.75;
}

.agency-hero__scroll {
	position: absolute;
	right: clamp(16px, 3vw, 40px);
	bottom: clamp(28px, 5vw, 48px);
	z-index: 3;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.78);
	font-family: var(--font-ui);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.agency-hero__scroll-line {
	position: relative;
	width: 1px;
	height: 56px;
	background: rgba(255, 255, 255, 0.22);
	overflow: hidden;
}

.agency-hero__scroll-line::after {
	content: "";
	position: absolute;
	left: 0;
	top: -40%;
	width: 100%;
	height: 40%;
	background: linear-gradient(180deg, transparent, var(--gold), var(--pink));
	animation: kcScrollLine 1.8s ease-in-out infinite;
}

.agency-hero__scroll-text {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.agency-hero__scroll:hover,
.agency-hero__scroll:focus-visible {
	color: var(--gold);
	outline: none;
}

@keyframes kcScrollLine {
	0% { transform: translateY(0); opacity: 0; }
	20% { opacity: 1; }
	100% { transform: translateY(280%); opacity: 0; }
}

@keyframes agencyMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes heroFloatA {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(-14px, 18px, 0); }
}

@keyframes heroFloatB {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(16px, -12px, 0); }
}

@keyframes heroSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes heroUpSlide {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

@keyframes heroTwinkle {
	0%, 100% { opacity: 0.35; transform: scale(0.9) rotate(0deg); }
	50% { opacity: 0.95; transform: scale(1.08) rotate(12deg); }
}

@keyframes heroCursor {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
	40% { transform: translate3d(10px, 14px, 0) rotate(8deg); }
	70% { transform: translate3d(-6px, 8px, 0) rotate(-4deg); }
}

@keyframes heroKenBurns {
	0% { transform: scale(1.08) translate3d(0, 0, 0); }
	100% { transform: scale(1.18) translate3d(-2.5%, 1.5%, 0); }
}

@keyframes heroWingL {
	0%, 100% { transform: rotateY(0deg) rotateZ(-4deg); }
	50% { transform: rotateY(48deg) rotateZ(-10deg); }
}

@keyframes heroWingR {
	0%, 100% { transform: rotateY(0deg) rotateZ(4deg); }
	50% { transform: rotateY(-48deg) rotateZ(10deg); }
}

@keyframes heroButterflyA {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
	25% { transform: translate3d(22px, -28px, 0) rotate(6deg); }
	50% { transform: translate3d(48px, -14px, 0) rotate(-4deg); }
	75% { transform: translate3d(18px, -36px, 0) rotate(10deg); }
}

@keyframes heroButterflyB {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(6deg); }
	30% { transform: translate3d(-26px, 18px, 0) rotate(-8deg); }
	60% { transform: translate3d(-12px, -22px, 0) rotate(4deg); }
}

@keyframes heroButterflyC {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
	40% { transform: translate3d(30px, -24px, 0) rotate(10deg); }
	70% { transform: translate3d(8px, -40px, 0) rotate(-6deg); }
}

@keyframes heroButterflyD {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(4deg); }
	35% { transform: translate3d(-20px, -30px, 0) rotate(-10deg); }
	65% { transform: translate3d(16px, -16px, 0) rotate(8deg); }
}

@media (prefers-reduced-motion: reduce) {
	.agency-hero__services-row,
	.agency-hero__orb,
	.agency-hero__ring,
	.agency-hero__shape,
	.agency-hero__icon,
	.agency-hero__butterfly,
	.agency-hero__butterfly .agency-hero__wing--l,
	.agency-hero__butterfly .agency-hero__wing--r,
	.agency-hero__image,
	.agency-hero__media img,
	.agency-hero__scroll-line::after {
		animation: none !important;
	}
}

@media (max-width: 900px) {
	.agency-hero {
		min-height: auto;
		padding-top: calc(var(--header-height) + 36px);
		padding-bottom: 56px;
	}

	.agency-hero__media-inner {
		inset: -8%;
	}

	.agency-hero__image,
	.agency-hero__media img {
		object-position: center 30%;
	}

	.agency-hero__shape--square,
	.agency-hero__icon--cursor,
	.agency-hero__icon--spark,
	.agency-hero__butterfly--c,
	.agency-hero__butterfly--d,
	.agency-hero__ring {
		display: none;
	}

	.agency-hero__orb--pink,
	.agency-hero__orb--gold {
		opacity: 0.35;
	}

	.agency-hero__scroll {
		right: 16px;
		bottom: 20px;
	}

	.agency-hero__scroll-line {
		height: 40px;
	}
}

@media (max-width: 600px) {
	.agency-hero__icon--pen,
	.agency-hero__shape--triangle {
		display: none;
	}

	.agency-hero__scroll-text {
		display: none;
	}
}

/* ========== ABOUT ========== */
.agency-about__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.agency-about__visual {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: var(--navy);
}

.agency-about__visual--video {
	isolation: isolate;
	background-color: var(--navy);
	background-image:
		linear-gradient(160deg, rgba(27, 51, 80, 0.55) 0%, rgba(45, 74, 56, 0.45) 100%),
		var(--kc-reel-bg, none);
	background-size: cover;
	background-position: center;
	border-radius: 24px;
	box-shadow:
		0 4px 0 rgba(45, 74, 56, 0.04),
		0 18px 40px rgba(45, 74, 56, 0.12),
		0 40px 80px rgba(45, 74, 56, 0.14);
	transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.agency-about__visual-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(145deg, rgba(27, 51, 80, 0.5) 0%, rgba(45, 74, 56, 0.42) 48%, rgba(27, 51, 80, 0.58) 100%),
		radial-gradient(ellipse 90% 70% at 50% 35%, rgba(214, 188, 94, 0.12), transparent 55%),
		var(--kc-reel-bg, none);
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
	filter: saturate(1.08) contrast(1.03);
	transition: transform 0.6s ease, filter 0.6s ease;
}

.agency-about__visual--video:hover .agency-about__visual-bg,
.agency-about__visual--video:focus-within .agency-about__visual-bg {
	transform: scale(1.06);
	filter: saturate(1.12) contrast(1.05);
}

.agency-about__visual--video[data-kc-skip-motion].tp-fade {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
	clip-path: none !important;
}

.agency-about__reel-label {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 4;
	padding: 8px 14px;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--navy);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(227, 175, 188, 0.45);
	border-radius: 999px;
	pointer-events: none;
	box-shadow: 0 6px 20px rgba(27, 51, 80, 0.12);
}

.agency-about__visual--video:hover,
.agency-about__visual--video:focus-within {
	transform: translateY(-4px);
	box-shadow:
		0 6px 0 rgba(45, 74, 56, 0.05),
		0 24px 48px rgba(45, 74, 56, 0.16),
		0 48px 96px rgba(232, 179, 181, 0.18);
}

.agency-about__visual img,
.agency-about__poster {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	object-position: center 30%;
	display: block;
}

.agency-about__visual--video .agency-about__poster {
	opacity: 0.72;
	mix-blend-mode: luminosity;
	filter: saturate(0.95) contrast(1.05);
	transition: opacity 0.45s ease, filter 0.45s ease, mix-blend-mode 0.45s ease;
}

.agency-about__visual--video:hover .agency-about__poster,
.agency-about__visual--video:focus-within .agency-about__poster {
	opacity: 0.82;
	mix-blend-mode: normal;
	filter: saturate(1.06) brightness(1.02);
}

.agency-about__visual--video::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background:
		linear-gradient(180deg, rgba(45, 74, 56, 0.35) 0%, rgba(45, 74, 56, 0.62) 100%),
		radial-gradient(circle at 50% 45%, rgba(45, 74, 56, 0.12) 0%, rgba(45, 74, 56, 0.45) 72%);
	pointer-events: none;
	transition: opacity 0.45s ease;
}

.agency-about__play {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: inherit;
	background: transparent;
	cursor: pointer;
	appearance: none;
}

.agency-about__play-ring,
.agency-about__play-core {
	grid-area: 1 / 1;
}

.agency-about__play-ring {
	width: 108px;
	height: 108px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.55);
	box-shadow: 0 0 0 0 rgba(232, 179, 181, 0.35);
	animation: agencyPlayPulse 2.6s ease-out infinite;
}

.agency-about__play-core {
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	color: var(--green);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 241, 0.92) 100%);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow:
		0 10px 28px rgba(45, 74, 56, 0.28),
		0 22px 48px rgba(45, 74, 56, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.agency-about__play-core svg {
	width: 28px;
	height: 28px;
	margin-left: 3px;
	display: block;
}

.agency-about__play:hover .agency-about__play-core,
.agency-about__play:focus-visible .agency-about__play-core {
	transform: scale(1.06);
	color: var(--cream);
	background: linear-gradient(145deg, var(--pink) 0%, #e39aa0 100%);
	box-shadow:
		0 20px 48px rgba(232, 179, 181, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
	outline: none;
}

.agency-about__play:hover .agency-about__play-ring,
.agency-about__play:focus-visible .agency-about__play-ring {
	border-color: rgba(232, 179, 181, 0.85);
	animation-duration: 1.8s;
}

.agency-about__play:focus-visible {
	outline: none;
}

.agency-about__visual--video:hover::after,
.agency-about__visual--video:focus-within::after {
	opacity: 0.85;
}

@keyframes agencyPlayPulse {
	0% {
		transform: scale(0.92);
		opacity: 0.95;
		box-shadow: 0 0 0 0 rgba(232, 179, 181, 0.4);
	}
	70% {
		transform: scale(1.18);
		opacity: 0;
		box-shadow: 0 0 0 18px rgba(232, 179, 181, 0);
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.agency-about__play-ring {
		animation: none;
	}

	.agency-about__play-core,
	.agency-about__play:hover .agency-about__play-core,
	.agency-about__play:focus-visible .agency-about__play-core {
		transition: none;
		transform: none;
	}
}

.agency-about__pillars {
	display: grid;
	gap: 22px;
	margin: 36px 0 36px;
}

.agency-about__pillar {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 16px;
	padding-top: 18px;
	border-top: 1px solid rgba(45, 74, 56, 0.14);
}

.agency-about__pillar-num {
	font-family: var(--font-ui);
	font-size: 13px;
	color: var(--pink-2);
	font-weight: 500;
}

.agency-about__pillar h3 {
	margin: 0 0 6px;
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--green);
	font-weight: 600;
}

.agency-about__pillar h3.text-accent {
	font-family: var(--font-accent);
	font-size: clamp(26px, 3vw, 32px);
	font-weight: 400;
	color: var(--pink);
	letter-spacing: 0.02em;
}

.agency-about__pillar p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #555a50;
}

.agency-about__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

/* ========== PORTFOLIO COVERFLOW (Aleric light) ========== */
.kc-coverflow {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 55% at 50% 0%, rgba(232, 179, 181, 0.22) 0%, transparent 55%),
		linear-gradient(180deg, #fff 0%, var(--cream-2, #f7f4ef) 100%);
	color: var(--green);
}

.kc-coverflow__intro {
	padding: 0 0 clamp(16px, 3vw, 28px);
	position: relative;
	z-index: 2;
}

.kc-coverflow__intro .agency-eyebrow {
	color: var(--pink);
	opacity: 1;
}

.kc-coverflow__intro .agency-kicker {
	color: var(--pink);
}

.kc-coverflow__intro .agency-title {
	color: var(--green);
	margin-bottom: 16px;
}

.kc-coverflow__intro .agency-lede {
	color: rgba(45, 74, 56, 0.72);
	max-width: 46ch;
}

.kc-coverflow__intro-row {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: clamp(16px, 3vw, 28px);
	align-items: end;
}

.kc-coverflow__stage {
	position: relative;
	min-height: clamp(480px, 72vh, 860px);
	padding-inline: clamp(12px, 3vw, 32px);
}

.kc-coverflow .coverflow-slider-wrap {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: clamp(380px, 62vh, 780px);
	padding-inline: clamp(4px, 1.5vw, 16px);
}

.kc-coverflow .coverflow-slider-active {
	width: 100%;
	padding: clamp(32px, 5vw, 72px) 0 clamp(72px, 8vw, 100px);
	overflow: visible;
}

.kc-coverflow .swiper-slide {
	height: auto;
}

.kc-coverflow .coverflow-slider-item {
	display: block;
	height: clamp(240px, 42vh, 520px);
	width: 100%;
	text-decoration: none;
	color: inherit;
}

.kc-coverflow__card {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.kc-coverflow__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 48px 18px 18px;
	background: linear-gradient(to top, rgba(35, 57, 43, 0.88) 0%, rgba(35, 57, 43, 0.35) 55%, transparent 100%);
	color: #fff;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
}

.swiper-slide-active .kc-coverflow__caption {
	opacity: 1;
	transform: translateY(0);
}

.kc-coverflow__caption-num {
	display: block;
	margin-bottom: 6px;
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--pink);
}

.kc-coverflow__caption-title {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(16px, 2vw, 22px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.kc-coverflow__media {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 0;
	background: transparent;
	border: 1px solid var(--pink);
	box-sizing: border-box;
	box-shadow:
		0 4px 12px rgba(45, 74, 56, 0.06),
		0 18px 40px rgba(45, 74, 56, 0.12),
		0 36px 72px rgba(27, 51, 80, 0.1);
	transition: box-shadow 0.45s ease, border-color 0.35s ease;
}

.swiper-slide-active .kc-coverflow__media {
	box-shadow:
		0 8px 20px rgba(45, 74, 56, 0.08),
		0 24px 56px rgba(45, 74, 56, 0.16),
		0 48px 96px rgba(27, 51, 80, 0.14),
		0 0 0 1px rgba(227, 175, 188, 0.25);
}

.coverflow-slider-item:hover .kc-coverflow__media,
.coverflow-slider-item:focus-visible .kc-coverflow__media {
	box-shadow:
		0 10px 24px rgba(45, 74, 56, 0.1),
		0 28px 64px rgba(45, 74, 56, 0.18),
		0 52px 100px rgba(227, 175, 188, 0.18);
}

.kc-coverflow .coverflow-slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	padding: 0;
	display: block;
	border-radius: 0;
	transform: scale(1);
	transition: transform 0.55s ease;
	will-change: transform;
}

.kc-coverflow .coverflow-slider-item:hover img,
.kc-coverflow .coverflow-slider-item:focus-visible img {
	transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
	.kc-coverflow .coverflow-slider-item img,
	.kc-coverflow .coverflow-slider-item:hover img,
	.kc-coverflow .coverflow-slider-item:focus-visible img {
		transition: none;
		transform: none;
	}
}

.kc-coverflow__nav {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 72px;
	padding: 12px clamp(8px, 2vw, 24px) 8px;
	pointer-events: none;
}

.kc-coverflow__btn {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 4px;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--pink);
	transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.kc-coverflow__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(232, 179, 181, 0.55);
	background: rgba(232, 179, 181, 0.14);
	color: var(--pink);
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.kc-coverflow__btn-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.kc-coverflow__btn:hover,
.kc-coverflow__btn:focus-visible {
	color: var(--pink-2);
	outline: none;
}

.kc-coverflow__btn:hover .kc-coverflow__btn-icon,
.kc-coverflow__btn:focus-visible .kc-coverflow__btn-icon {
	background: var(--pink);
	border-color: var(--pink);
	color: var(--green);
	transform: scale(1.05);
}

.kc-coverflow__btn--prev:hover .kc-coverflow__btn-icon,
.kc-coverflow__btn--prev:focus-visible .kc-coverflow__btn-icon {
	transform: scale(1.05) translateX(-2px);
}

.kc-coverflow__btn--next:hover .kc-coverflow__btn-icon,
.kc-coverflow__btn--next:focus-visible .kc-coverflow__btn-icon {
	transform: scale(1.05) translateX(2px);
}

@media (max-width: 991px) {
	.kc-coverflow__intro-row {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.kc-coverflow__stage {
		min-height: clamp(440px, 68vh, 720px);
		padding-inline: clamp(10px, 2.5vw, 20px);
	}

	.kc-coverflow .coverflow-slider-wrap {
		min-height: clamp(360px, 56vh, 640px);
	}

	.kc-coverflow .coverflow-slider-item {
		height: clamp(220px, 38vh, 400px);
	}
}

@media (max-width: 600px) {
	.kc-coverflow__intro {
		padding: 0 0 12px;
	}

	.kc-coverflow__stage {
		min-height: 480px;
		padding-inline: 8px;
	}

	.kc-coverflow .coverflow-slider-wrap {
		min-height: 400px;
		padding-inline: 0;
	}

	.kc-coverflow .coverflow-slider-active {
		padding: 20px 0 80px;
	}

	.kc-coverflow .coverflow-slider-item {
		height: clamp(200px, 46vw, 300px);
	}

	.kc-coverflow__nav {
		min-height: 64px;
		padding: 8px 4px 6px;
	}

	.kc-coverflow__btn-label {
		display: none;
	}

	.kc-coverflow__btn-icon {
		width: 44px;
		height: 44px;
	}

	.kc-coverflow .kc-ambient-butterfly,
	.kc-coverflow .kc-scroll-fx__sheen {
		opacity: 0.35;
	}
}

@media (max-width: 380px) {
	.kc-coverflow__stage {
		padding-inline: 4px;
	}

	.kc-coverflow .coverflow-slider-item {
		height: 190px;
	}
}

/* ========== SERVICES ========== */
.agency-services__intro {
	max-width: 720px;
	margin-bottom: 56px;
}

.agency-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.agency-service-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 340px;
	padding: 36px 30px;
	background-color: #f7f2ea;
	border: 1px solid rgba(45, 74, 56, 0.1);
	box-shadow:
		0 2px 0 rgba(45, 74, 56, 0.03),
		0 14px 36px rgba(45, 74, 56, 0.08);
	transition: transform 0.4s ease, background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.agency-service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url("../images/textures/paper.png");
	background-size: 380px 380px;
	background-repeat: repeat;
	opacity: 0.16;
	mix-blend-mode: multiply;
	pointer-events: none;
}

.agency-service-card > * {
	position: relative;
	z-index: 1;
}

.agency-service-card:hover {
	transform: translateY(-4px);
	background-color: var(--green);
	border-color: var(--green);
	color: var(--cream);
	box-shadow:
		0 4px 0 rgba(45, 74, 56, 0.08),
		0 22px 48px rgba(45, 74, 56, 0.18);
}

.agency-service-card:hover::before {
	opacity: 0.22;
	mix-blend-mode: soft-light;
	filter: invert(1) contrast(1.05);
}

.agency-service-card__num {
	font-family: var(--font-ui);
	font-size: 12px;
	letter-spacing: 0.12em;
	color: var(--pink-2);
	margin-bottom: 40px;
}

.agency-service-card:hover .agency-service-card__num {
	color: var(--pink);
}

.agency-service-card__title {
	margin: 0 0 16px;
	font-family: var(--font-display);
	font-size: clamp(26px, 2.4vw, 34px);
	line-height: 1.15;
	font-weight: 600;
	color: var(--green);
}

.agency-service-card:hover .agency-service-card__title {
	color: var(--cream);
}

.agency-service-card__desc {
	margin: 0 0 auto;
	font-size: 14px;
	line-height: 1.7;
	color: #555a50;
}

.agency-service-card:hover .agency-service-card__desc {
	color: rgba(255, 255, 255, 0.78);
}

.agency-service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--green);
}

.agency-service-card:hover .agency-service-card__link {
	color: var(--pink);
}

/* Invitation-style service cards */
.agency-service-card--invite {
	text-align: center;
	align-items: center;
	padding: 42px 28px 36px;
	background-color: #fbf7f0;
	border: 1px solid rgba(214, 188, 94, 0.35);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.8) inset,
		0 14px 40px rgba(45, 74, 56, 0.1);
	transform: rotate(-1.25deg);
}

.agency-service-card--invite:nth-child(4n) {
	transform: rotate(1.4deg);
}

.agency-service-card--invite::after {
	content: "";
	position: absolute;
	inset: 10px;
	z-index: 0;
	border: 1px solid rgba(227, 175, 188, 0.55);
	pointer-events: none;
	box-shadow: 0 0 0 1px rgba(45, 74, 56, 0.06);
}

.agency-service-card--invite .agency-service-card__ornament {
	position: absolute;
	inset: 18px;
	z-index: 0;
	border: 1px dashed rgba(45, 74, 56, 0.18);
	pointer-events: none;
}

.agency-service-card--invite .agency-service-card__seal {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--pink);
	color: var(--green);
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	box-shadow: 0 8px 18px rgba(227, 175, 188, 0.45);
}

.agency-service-card--invite .agency-service-card__num {
	margin-bottom: 12px;
	color: rgba(45, 74, 56, 0.45);
}

.agency-service-card--invite .agency-service-card__invite-label {
	display: block;
	margin-bottom: 10px;
	font-family: var(--font-accent);
	font-size: clamp(22px, 2.2vw, 28px);
	line-height: 1;
	color: var(--pink-2);
	letter-spacing: 0.02em;
}

.agency-service-card--invite .agency-service-card__title {
	max-width: 12ch;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(24px, 2.2vw, 30px);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.agency-service-card--invite .agency-service-card__desc {
	max-width: 28ch;
	margin-left: auto;
	margin-right: auto;
	font-size: 13px;
}

.agency-service-card--invite .agency-service-card__link {
	margin-top: 24px;
	padding: 10px 18px;
	border: 1px solid rgba(45, 74, 56, 0.2);
	letter-spacing: 0.16em;
}

.agency-service-card--invite:hover {
	transform: rotate(0deg) translateY(-6px);
	background-color: #fffaf4;
	border-color: var(--pink);
	color: inherit;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 24px 50px rgba(45, 74, 56, 0.16);
}

.agency-service-card--invite:hover::before {
	opacity: 0.2;
	mix-blend-mode: multiply;
	filter: none;
}

.agency-service-card--invite:hover .agency-service-card__num,
.agency-service-card--invite:hover .agency-service-card__title,
.agency-service-card--invite:hover .agency-service-card__desc {
	color: var(--green);
}

.agency-service-card--invite:hover .agency-service-card__invite-label {
	color: var(--pink);
}

.agency-service-card--invite:hover .agency-service-card__link {
	background: var(--green);
	border-color: var(--green);
	color: var(--cream);
}

.agency-service-card--invite:hover .agency-service-card__seal {
	background: var(--gold);
	color: var(--green);
}

@media (max-width: 600px) {
	.agency-service-card--invite,
	.agency-service-card--invite:nth-child(4n) {
		transform: none;
	}

	.agency-service-card--invite:hover {
		transform: translateY(-4px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.agency-service-card--invite,
	.agency-service-card--invite:nth-child(4n),
	.agency-service-card--invite:hover {
		transform: none;
	}
}

/* ========== BANNER CTA ========== */
.agency-banner {
	position: relative;
	padding: 0;
	overflow: hidden;
	background: var(--navy);
	color: var(--cream);
	isolation: isolate;
}

.agency-banner__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse 70% 55% at 12% 40%, rgba(227, 175, 188, 0.18), transparent 58%),
		radial-gradient(ellipse 55% 50% at 88% 70%, rgba(45, 74, 56, 0.42), transparent 60%),
		linear-gradient(180deg, #162a42 0%, var(--navy) 48%, #132338 100%);
}

.agency-banner__glow {
	position: absolute;
	right: -4%;
	bottom: 0;
	z-index: 0;
	width: min(58vw, 640px);
	height: min(86%, 680px);
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 50% 78%, rgba(227, 175, 188, 0.2), transparent 70%),
		radial-gradient(ellipse 48% 55% at 52% 42%, rgba(255, 255, 255, 0.07), transparent 68%);
	filter: blur(8px);
}

.agency-banner__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	padding: 110px 0;
}

.agency-banner__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
	align-items: stretch;
	gap: clamp(12px, 3vw, 40px);
	min-height: clamp(560px, 72vh, 760px);
	padding-top: clamp(64px, 8vw, 100px);
}

.agency-banner__copy {
	position: relative;
	z-index: 2;
	max-width: 620px;
	padding-bottom: clamp(64px, 8vw, 100px);
	align-self: center;
}

.agency-banner__title {
	margin: 0 0 22px;
	font-family: var(--font-display);
	font-size: clamp(36px, 5.5vw, 62px);
	line-height: 1.08;
	font-weight: 700;
	color: var(--cream);
	perspective: 800px;
}

.agency-banner__title.split-reveal--elegant .split-line {
	overflow: hidden;
	padding-bottom: 0.08em;
	margin-bottom: -0.08em;
}

.agency-banner__title.split-reveal--elegant .split-word {
	display: inline-block;
	white-space: nowrap;
}

.agency-banner__title.split-reveal--elegant .split-char {
	display: inline-block;
	will-change: transform, opacity, filter;
	backface-visibility: hidden;
}

.agency-banner__lede {
	margin: 0 0 36px;
	max-width: 40ch;
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
}

.agency-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.agency-banner__model {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	margin: 0;
	margin-right: clamp(-40px, -5vw, -16px);
	width: 100%;
	max-width: 560px;
	justify-self: end;
	align-self: end;
	min-height: 100%;
	perspective: 1200px;
	pointer-events: auto;
}

.agency-banner__model-frame {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	min-height: clamp(520px, 70vh, 760px);
	overflow: hidden;
}

.agency-banner__model-3d {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: end center;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transform: rotateX(0deg) rotateY(0deg) translateZ(0);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.agency-banner__model.is-tilting .agency-banner__model-3d {
	transition: transform 0.12s ease-out;
}

.agency-banner__model-depth,
.agency-banner__model-img {
	grid-area: 1 / 1;
	display: block;
	width: min(112%, 560px);
	max-width: none;
	height: auto;
	max-height: min(760px, 88vh);
	object-fit: contain;
	object-position: center bottom;
}

.agency-banner__model-depth {
	transform: translateZ(-28px) scale(1.04) translateY(2%);
	filter: blur(1.5px);
	opacity: 0.85;
	pointer-events: none;
}

.agency-banner__model-img {
	position: relative;
	z-index: 2;
	transform: translateZ(36px) translateY(4%);
	filter:
		drop-shadow(0 22px 40px rgba(0, 0, 0, 0.32))
		saturate(1.05)
		contrast(1.04);
	transition: filter 0.35s ease;
}

.agency-banner__model.is-tilting .agency-banner__model-img {
	filter:
		drop-shadow(18px 28px 42px rgba(0, 0, 0, 0.38))
		saturate(1.08)
		contrast(1.05);
}

.agency-banner__model-shine {
	grid-area: 1 / 1;
	position: relative;
	z-index: 3;
	justify-self: stretch;
	align-self: stretch;
	pointer-events: none;
	border-radius: 40% 40% 20% 20% / 30% 30% 10% 10%;
	background: radial-gradient(
		circle at var(--shine-x, 50%) var(--shine-y, 28%),
		rgba(255, 255, 255, 0.34) 0%,
		rgba(255, 255, 255, 0.08) 28%,
		transparent 58%
	);
	mix-blend-mode: soft-light;
	opacity: 0;
	transform: translateZ(48px);
	transition: opacity 0.35s ease;
}

.agency-banner__model.is-tilting .agency-banner__model-shine {
	opacity: 1;
}

.agency-banner__model-caption {
	position: absolute;
	left: 6%;
	bottom: 10%;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	padding: 0 0 0 12px;
	border-left: 2px solid rgba(227, 175, 188, 0.55);
	background: none;
	box-shadow: none;
	color: #fff;
	pointer-events: auto;
}

.agency-banner__model-role {
	font-family: var(--font-accent);
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1;
	color: var(--pink);
}

.agency-banner__model-name {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
	.agency-banner__layout {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 0;
		padding-top: 56px;
		text-align: center;
	}

	.agency-banner__copy {
		max-width: 36rem;
		margin: 0 auto;
		padding-bottom: 8px;
		align-self: start;
	}

	.agency-banner__lede {
		margin-left: auto;
		margin-right: auto;
	}

	.agency-banner__actions {
		justify-content: center;
	}

	.agency-banner__glow {
		right: 50%;
		transform: translateX(50%);
		width: min(90vw, 420px);
		height: 48%;
		opacity: 0.85;
	}

	.agency-banner__model {
		margin-right: 0;
		max-width: min(88vw, 420px);
		justify-self: center;
		min-height: 0;
		perspective: none;
	}

	.agency-banner__model-frame {
		min-height: clamp(420px, 62vh, 560px);
	}

	.agency-banner__model-depth,
	.agency-banner__model-img {
		max-height: min(560px, 70vh);
		width: min(108%, 400px);
	}

	.agency-banner__model-img {
		transform: translateY(6%);
	}

	.agency-banner__model-caption {
		left: 50%;
		bottom: 6%;
		transform: translateX(-50%);
		align-items: center;
		border-left: none;
		padding: 0;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.agency-banner__model-3d,
	.agency-banner__model-img,
	.agency-banner__model-shine {
		transition: none !important;
		transform: none !important;
	}

	.agency-banner__model-depth {
		display: none;
	}
}

/* ========== TESTIMONIALS ========== */
.agency-testimonials {
	background: var(--pink);
	text-align: center;
}

.agency-testimonials__intro {
	max-width: 640px;
	margin: 0 auto 48px;
}

.agency-testimonials__intro .agency-kicker {
	color: var(--green);
}

.agency-testimonials__intro .agency-title {
	color: var(--green);
}

.agency-testimonials__intro .agency-lede {
	margin-left: auto;
	margin-right: auto;
	color: rgba(63, 42, 48, 0.82);
}

.agency-quote {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 16px;
}

.agency-quote__text {
	margin: 0 0 28px;
	font-family: var(--font-display);
	font-size: clamp(22px, 2.8vw, 32px);
	line-height: 1.45;
	font-weight: 500;
	color: var(--green);
}

.agency-quote__name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green);
	font-style: normal;
}

.agency-quote__role {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: #6a6f64;
}

.agency-testimonials__controls {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 40px auto 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.agency-testimonials__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--green);
	cursor: pointer;
	transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.agency-testimonials__btn-icon {
	display: inline-flex;
	width: 20px;
	height: 20px;
}

.agency-testimonials__btn-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.agency-testimonials__btn:hover,
.agency-testimonials__btn:focus-visible {
	color: var(--pink);
	outline: none;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.agency-testimonials__btn:active {
	transform: scale(0.96);
}

.agency-testimonials__meter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-width: 0;
}

.agency-testimonials__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.agency-testimonials__dot {
	width: 6px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(45, 74, 56, 0.2);
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.agency-testimonials__dot:hover,
.agency-testimonials__dot:focus-visible {
	background: var(--pink);
	outline: none;
	transform: none;
}

.agency-testimonials__dot.is-active {
	width: 6px;
	background: var(--green);
}

.agency-testimonials__count {
	margin: 0;
}

@media (max-width: 600px) {
	.agency-testimonials__controls {
		display: inline-flex;
		grid-template-columns: none;
		gap: 14px;
		max-width: none;
		margin-top: 32px;
		width: auto;
	}

	.agency-testimonials__meter {
		grid-column: auto;
		order: 0;
		padding-bottom: 0;
	}

	.agency-testimonials__btn {
		width: 40px;
		min-height: 40px;
	}
}

/* ========== STATS ========== */
.agency-stats {
	background: var(--cream-2);
	border-top: 1px solid rgba(45, 74, 56, 0.08);
	border-bottom: 1px solid rgba(45, 74, 56, 0.08);
	padding: 72px 0;
}

.agency-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.agency-stat {
	text-align: center;
}

.agency-stat__value {
	display: block;
	margin-bottom: 10px;
	font-family: var(--font-display);
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1;
	font-weight: 600;
	color: var(--green);
}

.agency-stat__label {
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--navy);
	opacity: 0.7;
}

/* ========== FOOTER ========== */
.site-footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.78);
	overflow-x: clip;
}

.site-footer__collaborate {
	padding: clamp(48px, 7vw, 72px) 0 clamp(40px, 5vw, 56px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__collaborate-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(20px, 4vw, 28px);
}

.site-footer__collaborate-kicker {
	display: block;
	margin-bottom: 10px;
	font-family: var(--font-accent);
	font-size: clamp(24px, 2.4vw, 30px);
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--pink);
}

.site-footer__collaborate-title {
	margin: 0;
	max-width: 18ch;
	font-family: var(--font-display);
	font-size: clamp(32px, 6vw, 56px);
	line-height: 1.08;
	font-weight: 700;
	color: #fff;
	text-transform: none;
}

.site-footer__band {
	display: none;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr);
	gap: clamp(28px, 4vw, 40px);
	padding-top: clamp(40px, 5vw, 56px);
	padding-bottom: clamp(32px, 4vw, 40px);
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__brand,
.site-footer__links,
.site-footer__contact,
.site-footer__newsletter {
	min-width: 0;
}

.site-footer__brand p {
	max-width: 36ch;
	margin-top: 12px;
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
}

/* Social media icons */
.kc-social {
	margin-top: 22px;
}

.kc-social__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kc-social__link {
	position: relative;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	color: #fff;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
	overflow: hidden;
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.3s ease,
		box-shadow 0.35s ease,
		color 0.3s ease,
		background 0.35s ease;
}

.kc-social__link::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.35s ease;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 55%);
}

.kc-social__glyph {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
}

.kc-social__glyph svg {
	display: block;
	width: 100%;
	height: 100%;
}

.kc-social__link:hover,
.kc-social__link:focus-visible {
	transform: translateY(-3px);
	color: #fff;
	border-color: transparent;
	box-shadow:
		0 12px 24px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
	outline: none;
}

.kc-social__link:hover::before,
.kc-social__link:focus-visible::before {
	opacity: 1;
}

.kc-social__link--instagram:hover,
.kc-social__link--instagram:focus-visible {
	background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 78%, #515bd4);
}

.kc-social__link--linkedin:hover,
.kc-social__link--linkedin:focus-visible {
	background: linear-gradient(145deg, #4ea4e0, #0a66c2);
}

.kc-social__link--facebook:hover,
.kc-social__link--facebook:focus-visible {
	background: linear-gradient(145deg, #5b8def, #1877f2);
}

.kc-social__link--tiktok:hover,
.kc-social__link--tiktok:focus-visible {
	background: linear-gradient(135deg, #25f4ee 0%, #111 42%, #fe2c55 100%);
}

.kc-social--contact {
	margin-top: 0;
}

.kc-social--contact .kc-social__link {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
}

.contact-info-card__social {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-card__social-label {
	font-family: var(--font-accent);
	font-size: 22px;
	line-height: 1;
	color: var(--pink);
}

.site-footer__brand p,
.site-footer__links h4,
.site-footer__contact h4,
.site-footer__newsletter h4 {
	color: #fff;
}

.site-footer h4 {
	font-family: var(--font-display);
	font-size: 14px;
	margin: 0 0 16px;
	color: #fff;
}

.site-footer .footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer .footer-menu li {
	margin-bottom: 10px;
}

.site-footer .footer-menu a {
	display: inline-block;
	max-width: 100%;
	font-size: 13px;
	line-height: 1.45;
	word-break: break-word;
}

.site-footer__contact p {
	font-size: 13px;
	margin: 0 0 10px;
	line-height: 1.5;
	word-break: break-word;
}

.site-footer__newsletter p {
	font-size: 12px;
	line-height: 1.65;
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.65);
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__legal a {
	color: rgba(255, 255, 255, 0.7);
}

.site-footer__links a:hover,
.site-footer__contact a:hover,
.site-footer__legal a:hover {
	color: var(--pink);
}

.site-footer .newsletter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
}

.site-footer .newsletter-form input {
	flex: 1 1 160px;
	min-width: 0;
	width: auto;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.site-footer .newsletter-form .btn {
	flex: 0 0 auto;
	white-space: nowrap;
}

.site-footer .btn.green {
	background: var(--pink);
	border-color: var(--pink);
	color: var(--green);
}

.site-footer .btn.green:hover {
	background: #fff;
	border-color: #fff;
	color: var(--green);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	padding: 20px 0;
}

.site-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 20px;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
}

.site-footer__legal a {
	font-size: 12px;
}

.site-footer .site-logo--light .site-logo__img,
.site-footer .site-logo--dark .site-logo__img,
.site-footer .site-logo__img {
	filter: brightness(0) invert(1);
	max-width: min(180px, 55vw);
	height: auto;
}

@media (max-width: 1100px) {
	.site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.site-footer__collaborate-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer__collaborate-title {
		max-width: 12ch;
	}

	.site-footer__collaborate .btn-agency {
		width: auto;
	}
}

@media (max-width: 700px) {
	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.site-footer__brand {
		grid-column: auto;
	}

	.site-footer__brand p {
		max-width: none;
	}

	.site-footer .newsletter-form {
		flex-direction: column;
		align-items: stretch;
	}

	.site-footer .newsletter-form input,
	.site-footer .newsletter-form .btn {
		width: 100%;
		flex: 1 1 auto;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
}

@media (max-width: 480px) {
	.site-footer__collaborate {
		padding: 40px 0 32px;
	}

	.site-footer__collaborate .btn-agency {
		width: 100%;
		justify-content: center;
	}

	.site-footer__legal {
		gap: 10px 16px;
	}

	.help-widget {
		right: max(16px, env(safe-area-inset-right));
		bottom: max(16px, env(safe-area-inset-bottom));
	}
}

/* Portfolio cards with media */
.portfolio-grid--agency {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.portfolio-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(160deg, #1b3350 0%, #2d4a38 100%);
}

.portfolio-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 24px;
}

.portfolio-card__body {
	padding: 22px 22px 26px;
}

.portfolio-grid--agency .portfolio-card {
	padding: 0;
	overflow: hidden;
}

@media (max-width: 900px) {
	.portfolio-grid--agency {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.portfolio-grid--agency {
		grid-template-columns: 1fr;
	}
}

/* Page banners — Averto-inspired hero */
.agency-page-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(88px, 12vw, 140px) 0 clamp(48px, 7vw, 72px);
	background:
		radial-gradient(ellipse 55% 60% at 88% 18%, rgba(227, 175, 188, 0.28), transparent 55%),
		radial-gradient(ellipse 45% 50% at 8% 80%, rgba(45, 74, 56, 0.08), transparent 50%),
		linear-gradient(180deg, #fff 0%, var(--cream-2) 100%);
	color: var(--green);
}

.agency-page-hero__shapes {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.agency-page-hero__shape {
	position: absolute;
	display: block;
}

.agency-page-hero__shape--ring {
	top: 18%;
	right: 8%;
	width: clamp(72px, 10vw, 120px);
	height: clamp(72px, 10vw, 120px);
	border: 1.5px solid rgba(45, 74, 56, 0.18);
	border-radius: 50%;
	animation: kcPageHeroFloat 8s ease-in-out infinite;
}

.agency-page-hero__shape--dot {
	bottom: 22%;
	left: 10%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--pink);
	animation: kcPageHeroFloat 6.5s ease-in-out infinite reverse;
}

.agency-page-hero__shape--squiggle {
	top: 28%;
	left: 6%;
	width: 56px;
	height: 56px;
	border: 1.5px solid rgba(227, 175, 188, 0.7);
	border-radius: 12px;
	transform: rotate(18deg);
	animation: kcPageHeroSpin 14s linear infinite;
}

.agency-page-hero__butterfly {
	position: absolute;
	top: 20%;
	right: 18%;
	width: clamp(36px, 5vw, 52px);
	height: auto;
	color: var(--pink);
	opacity: 0.85;
	animation: kcPageHeroFloat 7s ease-in-out infinite;
}

.agency-page-hero__inner {
	position: relative;
	z-index: 1;
}

.agency-page-hero__titles {
	position: relative;
	display: grid;
	justify-items: start;
	align-items: end;
	gap: 0;
	margin-bottom: clamp(28px, 4vw, 40px);
	max-width: 16ch;
}

.agency-page-hero__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(52px, 10vw, 120px);
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: var(--green);
}

.agency-page-hero__script {
	display: block;
	margin-top: -0.35em;
	margin-left: clamp(12px, 4vw, 48px);
	font-family: var(--font-accent);
	font-size: clamp(36px, 5.5vw, 64px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: none;
	color: var(--pink);
	z-index: 2;
}

.agency-page-hero__crumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(45, 74, 56, 0.55);
}

.agency-page-hero__crumb li:not(:last-child)::after {
	content: "/";
	margin-left: 10px;
	color: rgba(45, 74, 56, 0.3);
}

.agency-page-hero__crumb a {
	color: inherit;
	transition: color 0.25s ease;
}

.agency-page-hero__crumb a:hover,
.agency-page-hero__crumb a:focus-visible {
	color: var(--green);
	outline: none;
}

.agency-page-hero__crumb [aria-current="page"] {
	color: var(--green);
}

@keyframes kcPageHeroFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes kcPageHeroSpin {
	from { transform: rotate(18deg); }
	to { transform: rotate(378deg); }
}

@media (max-width: 600px) {
	.agency-page-hero {
		padding: 72px 0 40px;
	}

	.agency-page-hero__titles {
		max-width: none;
	}

	.agency-page-hero__script {
		margin-left: 4px;
	}

	.agency-page-hero__shape--squiggle {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.agency-page-hero__shape--ring,
	.agency-page-hero__shape--dot,
	.agency-page-hero__shape--squiggle,
	.agency-page-hero__butterfly {
		animation: none;
	}
}

/* Legacy page-banner hooks (kept for non-hero usages) */
.page-banner {
	background: var(--green);
	color: var(--cream);
	border: none;
}

.page-banner .script {
	color: var(--pink);
}

.page-banner h1 {
	color: #fff;
}

.stripes,
.stripes--thin {
	background: var(--green);
	padding: 0;
}

.stripes .page-banner,
.stripes--thin .page-banner {
	padding: clamp(72px, 10vw, 120px) 0 64px;
}

/* GSAP helpers */
.tp-fade {
	will-change: transform, opacity;
}

.kc-text-motion {
	will-change: transform, opacity, filter;
}

.kc-text-motion--clip .split-line,
.kc-text-motion--rise .split-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.06em;
	margin-bottom: -0.06em;
}

.kc-text-motion .split-word,
.kc-text-motion .split-char {
	display: inline-block;
	vertical-align: top;
	backface-visibility: hidden;
}

.kc-lede-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.12em;
}

.kc-magnetic {
	transform: translateZ(0);
	will-change: transform;
}

.split-line {
	display: block;
	overflow: hidden;
}

.split-word {
	display: inline-block;
	vertical-align: top;
}

.split-char {
	display: inline-block;
	will-change: transform, opacity, filter;
	backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.agency-service-card {
		transition: none;
	}

	.kc-text-motion,
	.tp-fade,
	.kc-magnetic {
		will-change: auto;
		transform: none !important;
		filter: none !important;
		opacity: 1 !important;
		clip-path: none !important;
	}
}

@media (max-width: 1100px) {
	.agency-services__grid {
		grid-template-columns: 1fr 1fr;
	}

	.agency-stats__grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px 20px;
	}
}

@media (max-width: 900px) {
	.agency-about__grid {
		grid-template-columns: 1fr;
	}

	.agency-about__visual,
	.agency-about__visual img {
		min-height: 380px;
	}

	.agency-about__visual--video {
		border-radius: 18px;
	}

	.agency-services__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.agency-stats__grid {
		grid-template-columns: 1fr 1fr;
	}

	.agency-section {
		padding: var(--section-spacing-mobile) 0;
	}
}

/* ========== AMBIENT SECTION BACKGROUNDS ========== */
.kc-ambient {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.kc-ambient > *:not(.kc-ambient-layer) {
	position: relative;
	z-index: 1;
}

.kc-ambient-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.kc-ambient-layer__wash {
	position: absolute;
	inset: -35%;
	background:
		radial-gradient(ellipse 48% 42% at var(--kc-g1-x, 12%) var(--kc-g1-y, 20%), rgba(232, 179, 181, 0.3) 0%, transparent 62%),
		radial-gradient(ellipse 42% 46% at var(--kc-g2-x, 88%) var(--kc-g2-y, 75%), rgba(45, 74, 56, 0.11) 0%, transparent 60%),
		radial-gradient(ellipse 38% 36% at var(--kc-g3-x, 70%) var(--kc-g3-y, 15%), rgba(214, 188, 94, 0.18) 0%, transparent 58%),
		radial-gradient(ellipse 52% 42% at var(--kc-g4-x, 30%) var(--kc-g4-y, 90%), rgba(227, 175, 188, 0.16) 0%, transparent 62%);
	transform: rotate(var(--kc-g-rotate, 0deg));
	animation: kcAmbientDrift var(--kc-g-drift, 22s) ease-in-out infinite alternate;
	will-change: transform;
}

.kc-ambient-layer__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(42px);
	opacity: 0.55;
	pointer-events: none;
	animation: kcAmbientFloat 20s ease-in-out infinite;
}

.kc-ambient-layer__blob--a {
	width: clamp(180px, 28vw, 340px);
	height: clamp(180px, 28vw, 340px);
	top: var(--kc-g1-y, 10%);
	left: var(--kc-g1-x, 8%);
	background: radial-gradient(circle, rgba(227, 175, 188, 0.45) 0%, transparent 70%);
}

.kc-ambient-layer__blob--b {
	width: clamp(160px, 24vw, 300px);
	height: clamp(160px, 24vw, 300px);
	bottom: 8%;
	right: 6%;
	background: radial-gradient(circle, rgba(214, 188, 94, 0.28) 0%, transparent 70%);
	animation-delay: -6s;
	animation-duration: 24s;
}

.kc-ambient[data-ambient="mint"] .kc-ambient-layer__wash {
	background:
		radial-gradient(ellipse 48% 42% at var(--kc-g1-x, 18%) var(--kc-g1-y, 25%), rgba(45, 74, 56, 0.14) 0%, transparent 60%),
		radial-gradient(ellipse 40% 40% at var(--kc-g2-x, 82%) var(--kc-g2-y, 70%), rgba(232, 179, 181, 0.22) 0%, transparent 58%),
		radial-gradient(ellipse 36% 34% at var(--kc-g3-x, 60%) var(--kc-g3-y, 10%), rgba(214, 188, 94, 0.16) 0%, transparent 55%),
		radial-gradient(ellipse 45% 38% at var(--kc-g4-x, 40%) var(--kc-g4-y, 88%), rgba(45, 74, 56, 0.09) 0%, transparent 62%);
}

.kc-ambient[data-ambient="soft"] .kc-ambient-layer__wash {
	background:
		radial-gradient(ellipse 52% 48% at var(--kc-g1-x, 50%) var(--kc-g1-y, 0%), rgba(232, 179, 181, 0.24) 0%, transparent 55%),
		radial-gradient(ellipse 38% 40% at var(--kc-g2-x, 8%) var(--kc-g2-y, 70%), rgba(45, 74, 56, 0.09) 0%, transparent 58%),
		radial-gradient(ellipse 36% 36% at var(--kc-g3-x, 92%) var(--kc-g3-y, 55%), rgba(214, 188, 94, 0.15) 0%, transparent 56%),
		radial-gradient(ellipse 40% 36% at var(--kc-g4-x, 35%) var(--kc-g4-y, 95%), rgba(227, 175, 188, 0.12) 0%, transparent 60%);
}

.kc-ambient[data-ambient="aurora"] .kc-ambient-layer__wash {
	background:
		radial-gradient(ellipse 55% 40% at var(--kc-g1-x, 15%) var(--kc-g1-y, 10%), rgba(214, 188, 94, 0.22) 0%, transparent 58%),
		radial-gradient(ellipse 45% 50% at var(--kc-g2-x, 85%) var(--kc-g2-y, 40%), rgba(227, 175, 188, 0.26) 0%, transparent 60%),
		radial-gradient(ellipse 40% 45% at var(--kc-g3-x, 45%) var(--kc-g3-y, 85%), rgba(45, 74, 56, 0.12) 0%, transparent 62%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, transparent 45%, rgba(227, 175, 188, 0.08) 100%);
}

.kc-ambient[data-ambient="dusk"] .kc-ambient-layer__wash {
	background:
		radial-gradient(ellipse 50% 45% at var(--kc-g1-x, 20%) var(--kc-g1-y, 80%), rgba(27, 51, 80, 0.1) 0%, transparent 60%),
		radial-gradient(ellipse 42% 40% at var(--kc-g2-x, 90%) var(--kc-g2-y, 20%), rgba(227, 175, 188, 0.28) 0%, transparent 58%),
		radial-gradient(ellipse 38% 38% at var(--kc-g3-x, 55%) var(--kc-g3-y, 35%), rgba(214, 188, 94, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse 46% 40% at var(--kc-g4-x, 10%) var(--kc-g4-y, 15%), rgba(45, 74, 56, 0.1) 0%, transparent 60%);
}

.kc-ambient[data-ambient="glow"] .kc-ambient-layer__wash {
	background:
		radial-gradient(circle at var(--kc-g1-x, 30%) var(--kc-g1-y, 20%), rgba(227, 175, 188, 0.32) 0%, transparent 42%),
		radial-gradient(circle at var(--kc-g2-x, 75%) var(--kc-g2-y, 70%), rgba(214, 188, 94, 0.2) 0%, transparent 40%),
		radial-gradient(circle at var(--kc-g3-x, 55%) var(--kc-g3-y, 45%), rgba(45, 74, 56, 0.08) 0%, transparent 38%),
		radial-gradient(ellipse 60% 50% at var(--kc-g4-x, 50%) var(--kc-g4-y, 100%), rgba(255, 255, 255, 0.5) 0%, transparent 55%);
}

.kc-ambient[data-ambient="blush"] .kc-ambient-layer__wash {
	background:
		radial-gradient(ellipse 45% 40% at var(--kc-g1-x, 12%) var(--kc-g1-y, 20%), rgba(232, 179, 181, 0.3) 0%, transparent 60%),
		radial-gradient(ellipse 40% 45% at var(--kc-g2-x, 88%) var(--kc-g2-y, 75%), rgba(45, 74, 56, 0.1) 0%, transparent 58%),
		radial-gradient(ellipse 35% 35% at var(--kc-g3-x, 70%) var(--kc-g3-y, 15%), rgba(214, 188, 94, 0.16) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at var(--kc-g4-x, 30%) var(--kc-g4-y, 90%), rgba(232, 179, 181, 0.14) 0%, transparent 60%);
}

.kc-ambient-layer__mesh {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image:
		linear-gradient(rgba(45, 74, 56, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(45, 74, 56, 0.035) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 20%, transparent 75%);
}

.kc-ambient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	opacity: 0.55;
	animation: kcAmbientFloat 16s ease-in-out infinite;
}

.kc-ambient-orb--pink {
	width: clamp(120px, 18vw, 220px);
	height: clamp(120px, 18vw, 220px);
	top: 8%;
	right: 6%;
	background: radial-gradient(circle, rgba(232, 179, 181, 0.55) 0%, transparent 70%);
	animation-duration: 18s;
}

.kc-ambient-orb--green {
	width: clamp(140px, 20vw, 260px);
	height: clamp(140px, 20vw, 260px);
	bottom: 6%;
	left: 4%;
	background: radial-gradient(circle, rgba(45, 74, 56, 0.18) 0%, transparent 70%);
	animation-duration: 20s;
	animation-delay: -4s;
}

.kc-ambient-orb--gold {
	width: clamp(90px, 12vw, 160px);
	height: clamp(90px, 12vw, 160px);
	top: 42%;
	left: 48%;
	background: radial-gradient(circle, rgba(214, 188, 94, 0.32) 0%, transparent 70%);
	animation-duration: 14s;
	animation-delay: -7s;
}

.kc-ambient-butterfly {
	position: absolute;
	width: 28px;
	height: 28px;
	color: var(--pink);
	opacity: 0.45;
	animation: kcAmbientFlutter 12s ease-in-out infinite;
	filter: drop-shadow(0 4px 10px rgba(45, 74, 56, 0.12));
}

.kc-ambient-butterfly svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.kc-ambient-butterfly--a {
	top: 14%;
	left: 8%;
	color: var(--pink);
	animation-duration: 13s;
}

.kc-ambient-butterfly--b {
	top: 62%;
	right: 10%;
	width: 22px;
	height: 22px;
	color: var(--green);
	opacity: 0.28;
	animation-duration: 16s;
	animation-delay: -3s;
}

.kc-ambient-butterfly--c {
	bottom: 18%;
	left: 22%;
	width: 20px;
	height: 20px;
	color: var(--gold);
	opacity: 0.4;
	animation-duration: 15s;
	animation-delay: -6s;
}

.kc-ambient-spark {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pink);
	opacity: 0.35;
	animation: kcAmbientSpark 7s ease-in-out infinite;
}

.kc-ambient-spark--a { top: 22%; right: 22%; }
.kc-ambient-spark--b {
	top: 70%;
	left: 16%;
	background: var(--gold);
	animation-delay: -2s;
}
.kc-ambient-spark--c {
	top: 38%;
	right: 40%;
	background: var(--green);
	opacity: 0.22;
	animation-delay: -4s;
}

@keyframes kcAmbientDrift {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	50% { transform: translate3d(2%, -1.5%, 0) scale(1.04); }
	100% { transform: translate3d(-2%, 2%, 0) scale(1.02); }
}

@keyframes kcAmbientFloat {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(18px, -24px, 0); }
}

@keyframes kcAmbientFlutter {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
	25% { transform: translate3d(14px, -18px, 0) rotate(6deg); }
	50% { transform: translate3d(28px, -8px, 0) rotate(-4deg); }
	75% { transform: translate3d(10px, -22px, 0) rotate(8deg); }
}

@keyframes kcAmbientSpark {
	0%, 100% { opacity: 0.15; transform: scale(0.8); }
	50% { opacity: 0.55; transform: scale(1.25); }
}

@media (max-width: 600px) {
	.kc-ambient-butterfly--c,
	.kc-ambient-spark--c,
	.kc-ambient-orb--gold {
		display: none;
	}

	.kc-ambient-butterfly {
		opacity: 0.3;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kc-ambient-layer__wash,
	.kc-ambient-orb,
	.kc-ambient-butterfly,
	.kc-ambient-spark {
		animation: none !important;
	}
}

/* ========== VIDEO LIGHTBOX ========== */
.kc-lightbox[hidden] {
	display: none !important;
}

.kc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: clamp(12px, 3vw, 32px);
}

.kc-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background-color: var(--navy);
	background-image:
		linear-gradient(135deg, rgba(27, 51, 80, 0.92) 0%, rgba(45, 74, 56, 0.78) 45%, rgba(27, 51, 80, 0.94) 100%),
		var(--kc-reel-bg, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	backdrop-filter: blur(14px) saturate(1.1);
	animation: kcLightboxFade 0.35s ease;
}

.kc-lightbox__dialog {
	position: relative;
	z-index: 1;
	width: min(520px, 94vw, calc((100dvh - 40px) * 9 / 16));
	max-height: calc(100dvh - 40px);
	padding: 0;
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
	background: #000;
	animation: kcLightboxRise 0.4s ease;
}

.kc-lightbox__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 6;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(27, 51, 80, 0.55);
	backdrop-filter: blur(8px);
	color: var(--cream);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: var(--transition);
}

.kc-lightbox__close:hover,
.kc-lightbox__close:focus-visible {
	background: rgba(232, 179, 181, 0.85);
	border-color: rgba(232, 179, 181, 0.95);
	color: var(--navy);
	outline: none;
}

.kc-lightbox__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	max-height: calc(100dvh - 40px);
	overflow: hidden;
	background: #000;
	border-radius: inherit;
}

/* ========== CUSTOM VIDEO PLAYER ========== */
.kc-player {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: #000;
	color: var(--cream);
}

.kc-player__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	background: #000;
}

.kc-player__shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(27, 51, 80, 0.15) 0%, transparent 35%, rgba(27, 51, 80, 0.65) 100%);
	opacity: 0.9;
	transition: opacity 0.35s ease;
}

.kc-player.is-playing .kc-player__shade {
	opacity: 0.45;
}

.kc-player__center-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 80px;
	height: 80px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--green);
	cursor: pointer;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.kc-player__center-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 32px rgba(27, 51, 80, 0.25);
}

.kc-player__center-icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.kc-player__center-icon svg {
	width: 28px;
	height: 28px;
	margin-left: 4px;
}

.kc-player__center-play:hover {
	transform: translate(-50%, -50%) scale(1.06);
}

.kc-player__center-play:hover .kc-player__center-ring {
	background: var(--pink);
	border-color: var(--pink);
	color: var(--green);
}

.kc-player.is-playing .kc-player__center-play {
	opacity: 0;
	pointer-events: none;
}

.kc-player__bar {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 12px 14px;
	background: linear-gradient(180deg, transparent 0%, rgba(27, 51, 80, 0.88) 100%);
	backdrop-filter: blur(8px);
}

.kc-player__btn {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--cream);
	cursor: pointer;
	transition: var(--transition);
}

.kc-player__btn:hover,
.kc-player__btn:focus-visible {
	background: var(--pink);
	border-color: var(--pink);
	color: var(--green);
	outline: none;
}

.kc-player__icon {
	width: 18px;
	height: 18px;
}

.kc-player__icon--pause {
	display: none;
}

.kc-player.is-playing .kc-player__icon--play {
	display: none;
}

.kc-player.is-playing .kc-player__icon--pause {
	display: block;
}

.kc-player__icon--muted,
.kc-player.is-muted .kc-player__icon--vol {
	display: none;
}

.kc-player.is-muted .kc-player__icon--muted {
	display: block;
}

.kc-player__track-wrap {
	flex: 1;
	min-width: 0;
	padding: 0 2px;
}

.kc-player__track {
	width: 100%;
	height: 4px;
	appearance: none;
	background: rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	cursor: pointer;
}

.kc-player__track::-webkit-slider-thumb {
	appearance: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--pink);
	border: 2px solid var(--cream);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.kc-player__track::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--pink);
	border: 2px solid var(--cream);
}

.kc-player__time {
	flex: 0 0 auto;
	font-size: 10px;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.85);
	white-space: nowrap;
}

@media (max-width: 480px) {
	.kc-lightbox__dialog {
		width: min(100%, calc((100dvh - 32px) * 9 / 16));
		border-radius: 16px;
	}

	.kc-lightbox__frame {
		max-height: calc(100dvh - 32px);
	}

	.kc-player__bar {
		flex-wrap: wrap;
		gap: 6px;
		padding: 10px;
	}

	.kc-player__track-wrap {
		order: 3;
		flex: 1 1 100%;
	}

	.kc-player__time {
		margin-left: auto;
		font-size: 9px;
	}
}

.kc-player:fullscreen .kc-player__video {
	object-fit: contain;
}

body.kc-lightbox-open {
	overflow: hidden;
}

@keyframes kcLightboxFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes kcLightboxRise {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.kc-lightbox__backdrop,
	.kc-lightbox__dialog {
		animation: none;
	}
}

/* ========== SCROLL GRADIENT FX ========== */
.kc-scroll-fx {
	position: relative;
	isolation: isolate;
}

.kc-scroll-fx-layer {
	position: absolute;
	inset: -14% -10%;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: 0.25;
	will-change: opacity, transform;
}

.kc-scroll-fx[data-scroll-fx="dark"] .kc-scroll-fx-layer {
	z-index: 1;
	mix-blend-mode: soft-light;
}

.kc-scroll-fx[data-scroll-fx="light"] .kc-scroll-fx-layer {
	mix-blend-mode: multiply;
}

.kc-scroll-fx__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(8px);
	will-change: transform;
}

.kc-scroll-fx__glow--a {
	width: min(58vw, 520px);
	height: min(58vw, 520px);
	top: -8%;
	left: -6%;
	background: radial-gradient(circle, rgba(232, 179, 181, 0.55) 0%, transparent 68%);
}

.kc-scroll-fx__glow--b {
	width: min(48vw, 420px);
	height: min(48vw, 420px);
	right: -8%;
	bottom: -10%;
	background: radial-gradient(circle, rgba(45, 74, 56, 0.28) 0%, transparent 70%);
}

.kc-scroll-fx[data-scroll-fx="dark"] .kc-scroll-fx__glow--a {
	background: radial-gradient(circle, rgba(232, 179, 181, 0.45) 0%, transparent 70%);
}

.kc-scroll-fx[data-scroll-fx="dark"] .kc-scroll-fx__glow--b {
	background: radial-gradient(circle, rgba(214, 188, 94, 0.32) 0%, transparent 70%);
}

.kc-scroll-fx__sheen {
	position: absolute;
	inset: -20% -30%;
	background: linear-gradient(
		115deg,
		transparent 20%,
		rgba(232, 179, 181, 0.18) 42%,
		rgba(214, 188, 94, 0.14) 52%,
		rgba(45, 74, 56, 0.1) 62%,
		transparent 78%
	);
	will-change: transform, opacity;
}

.kc-scroll-fx[data-scroll-fx="dark"] .kc-scroll-fx__sheen {
	background: linear-gradient(
		115deg,
		transparent 18%,
		rgba(232, 179, 181, 0.22) 40%,
		rgba(214, 188, 94, 0.18) 50%,
		rgba(255, 255, 255, 0.08) 62%,
		transparent 80%
	);
}

@media (max-width: 600px) {
	.kc-scroll-fx__glow--a,
	.kc-scroll-fx__glow--b {
		filter: blur(6px);
		opacity: 0.85;
	}
}

/* ========== TEAM STACK CAROUSEL (demo-style) ========== */
.kc-team {
	background:
		radial-gradient(ellipse 70% 50% at 20% 30%, rgba(227, 175, 188, 0.14), transparent 55%),
		linear-gradient(165deg, var(--green-2) 0%, var(--navy) 55%, #122018 100%);
	color: var(--cream);
	overflow: hidden;
}

.kc-team__intro {
	text-align: center;
	margin-bottom: clamp(36px, 5vw, 56px);
}

.kc-team__intro .agency-title--light {
	color: #fff;
}

.kc-team__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.kc-team__stage {
	display: flex;
	justify-content: center;
	perspective: 1200px;
}

.kc-team__stack {
	position: relative;
	width: min(380px, 78vw);
	height: min(538px, 110vw);
	transform-style: preserve-3d;
}

.kc-team__card {
	position: absolute;
	inset: 0;
	transform-origin: bottom center;
	transition:
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.55s ease,
		z-index 0s linear 0.15s;
	will-change: transform, opacity;
	pointer-events: none;
}

.kc-team__card.is-active {
	pointer-events: auto;
	z-index: 30;
	opacity: 1;
	transform: none;
}

.kc-team__card-inner {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	border-radius: 24px;
	border: 2px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
	background: #1a1a1a;
}

.kc-team__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	user-select: none;
	-webkit-user-drag: none;
}

.kc-team__card-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 45%);
	pointer-events: none;
}

.kc-team__copy {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: min(420px, 70vw);
	padding: 8px 0 8px clamp(0px, 2vw, 24px);
}

.kc-team__bio {
	transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.kc-team__bio.is-leaving {
	opacity: 0;
	filter: blur(6px);
	transform: translateY(10px);
}

.kc-team__bio.is-entering {
	opacity: 0;
	filter: blur(6px);
	transform: translateY(-8px);
}

.kc-team__name {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	letter-spacing: -0.02em;
}

.kc-team__role {
	margin: 0 0 22px;
	font-family: var(--font-ui);
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 500;
	color: var(--pink);
}

.kc-team__text {
	margin: 0;
	max-width: 40ch;
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.62);
}

.kc-team__nav {
	display: flex;
	gap: 14px;
	padding-top: 28px;
	margin-top: 16px;
}

.kc-team__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	color: #fff;
	cursor: pointer;
	transition:
		background-color 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.kc-team__btn svg {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
}

.kc-team__btn:hover,
.kc-team__btn:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(45, 74, 56, 0.55);
	box-shadow: 0 12px 28px rgba(45, 74, 56, 0.22);
	outline: none;
}

.kc-team__btn[data-team-prev]:hover svg,
.kc-team__btn[data-team-prev]:focus-visible svg {
	transform: translateX(-3px);
}

.kc-team__btn[data-team-next]:hover svg,
.kc-team__btn[data-team-next]:focus-visible svg {
	transform: translateX(3px);
}

@media (max-width: 991px) {
	.kc-team__layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.kc-team__stage {
		justify-content: center;
	}

	.kc-team__stack {
		width: min(320px, 72vw);
		height: min(450px, 100vw);
	}

	.kc-team__copy {
		min-height: 0;
		padding-left: 0;
		text-align: center;
		align-items: center;
	}

	.kc-team__text {
		margin-left: auto;
		margin-right: auto;
	}

	.kc-team__nav {
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.kc-team__stack {
		width: min(220px, 68vw);
		height: min(314px, 95vw);
	}

	.kc-team__card-inner {
		border-radius: 18px;
	}

	.kc-team__btn {
		width: 48px;
		height: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kc-team__card,
	.kc-team__bio,
	.kc-team__btn,
	.kc-team__btn svg {
		transition: none;
	}
}

/* ========== VALUES (About) ========== */
.kc-values.disciplines {
	position: relative;
	isolation: isolate;
	text-align: left;
	padding: var(--section-spacing) 0;
	background:
		radial-gradient(ellipse 70% 55% at 85% 0%, rgba(227, 175, 188, 0.18), transparent 50%),
		radial-gradient(ellipse 55% 45% at 10% 100%, rgba(255, 255, 255, 0.06), transparent 45%),
		linear-gradient(165deg, var(--green) 0%, var(--green-2) 100%);
	overflow: hidden;
}

.kc-values__intro {
	max-width: 40rem;
	margin: 0 auto clamp(40px, 6vw, 64px);
	text-align: center;
}

.kc-values__intro .agency-title {
	margin-bottom: 16px;
	color: #fff;
}

.kc-values__lede {
	margin: 0 auto;
	max-width: 42ch;
	font-size: clamp(15px, 1.5vw, 17px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
}

.kc-values__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 20px);
}

.kc-values__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: clamp(24px, 3vw, 32px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition:
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s ease,
		background-color 0.35s ease,
		box-shadow 0.4s ease;
}

.kc-values__card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--pink);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.kc-values__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 22px;
	border: 1px solid rgba(227, 175, 188, 0.55);
	border-radius: 999px;
	font-family: var(--font-mono, var(--font-ui));
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--pink);
	transition:
		background-color 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease;
}

.kc-values__title {
	margin: 0 0 12px;
	font-family: var(--font-display);
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-transform: none;
	color: #fff;
}

.kc-values__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(203, 216, 206, 0.92);
}

.kc-values__card:hover,
.kc-values__card:focus-within {
	transform: translateY(-6px);
	border-color: rgba(227, 175, 188, 0.45);
	background:
		linear-gradient(165deg, rgba(227, 175, 188, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kc-values__card:hover::before,
.kc-values__card:focus-within::before {
	transform: scaleY(1);
}

.kc-values__card:hover .kc-values__num,
.kc-values__card:focus-within .kc-values__num {
	background: var(--pink);
	border-color: var(--pink);
	color: var(--green);
}

@media (max-width: 991px) {
	.kc-values__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}
}

@media (max-width: 600px) {
	.kc-values__grid {
		grid-template-columns: 1fr;
	}

	.kc-values__card {
		padding: 22px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kc-values__card,
	.kc-values__card::before,
	.kc-values__num {
		transition: none;
	}

	.kc-values__card:hover,
	.kc-values__card:focus-within {
		transform: none;
	}
}

/* ========== REVISION DOC — luxury editorial (brand system) ========== */

.kc-lux-rule {
	display: block;
	width: 48px;
	height: 1px;
	margin: 20px auto 0;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	opacity: 0.85;
}

/* — Social proof — */
.kc-social-proof {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 50% at 50% 0%, rgba(227, 175, 188, 0.12), transparent 55%),
		linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.kc-social-proof::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231B3350' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.6;
}

.kc-social-proof .container {
	position: relative;
	z-index: 1;
}

.kc-social-proof__head .agency-kicker {
	margin-bottom: 4px;
}

.kc-social-proof__pill,
.kc-how-work__pill {
	display: inline-block;
	margin-bottom: 16px;
	padding: 7px 14px;
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--navy);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(27, 51, 80, 0.1);
	border-radius: 999px;
	backdrop-filter: blur(6px);
}

.kc-social-proof__head,
.kc-how-work__head {
	max-width: 760px;
	margin: 0 auto clamp(40px, 5vw, 56px);
	text-align: center;
}

.kc-social-proof__title,
.kc-how-work__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 600;
	line-height: 1.06;
	letter-spacing: -0.02em;
	color: var(--navy);
}

.kc-social-proof__accent,
.kc-how-work__accent {
	display: block;
	margin-top: 0.12em;
	color: var(--green);
}

.kc-social-proof__lede,
.kc-how-work__lede {
	margin: clamp(14px, 2vw, 20px) auto 0;
	max-width: 54ch;
	font-size: clamp(15px, 1.5vw, 17px);
	line-height: 1.75;
	color: rgba(35, 40, 31, 0.7);
}

.kc-social-proof__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 2vw, 18px);
	max-width: 960px;
	margin: 0 auto;
	padding: clamp(10px, 1.5vw, 14px);
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(27, 51, 80, 0.08);
	border-radius: 20px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.85),
		0 16px 40px rgba(27, 51, 80, 0.06);
}

.kc-social-proof__stats[data-kc-skip-motion].tp-fade {
	opacity: 1;
	transform: none;
	filter: none;
	clip-path: none;
}

.kc-social-proof__stat {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 168px;
	padding: clamp(22px, 3vw, 28px) clamp(16px, 2vw, 22px);
	text-align: center;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 244, 240, 0.92) 100%);
	border: 1px solid rgba(45, 74, 56, 0.1);
	border-radius: 14px;
	box-shadow: 0 10px 28px rgba(27, 51, 80, 0.05);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
	overflow: hidden;
}

.kc-social-proof__stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--green), var(--gold), var(--pink));
	opacity: 0.85;
}

.kc-social-proof__stat::after {
	content: '';
	position: absolute;
	inset: auto -30% -40% -30%;
	height: 55%;
	background: radial-gradient(ellipse at 50% 100%, rgba(227, 175, 188, 0.14), transparent 68%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.kc-social-proof__stat:nth-child(1) {
	--kc-stat-accent: var(--green);
}

.kc-social-proof__stat:nth-child(2) {
	--kc-stat-accent: var(--navy);
}

.kc-social-proof__stat:nth-child(3) {
	--kc-stat-accent: var(--pink-2);
}

.kc-social-proof__stat:hover {
	transform: translateY(-4px);
	box-shadow:
		0 18px 40px rgba(27, 51, 80, 0.1),
		0 0 0 1px rgba(45, 74, 56, 0.08);
	border-color: rgba(45, 74, 56, 0.22);
}

.kc-social-proof__stat:hover::after {
	opacity: 1;
}

.kc-social-proof__stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 14px;
	border-radius: 50%;
	color: var(--kc-stat-accent, var(--green));
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(227, 175, 188, 0.22) 100%);
	border: 1px solid rgba(227, 175, 188, 0.45);
	box-shadow: 0 6px 16px rgba(45, 74, 56, 0.08);
}

.kc-social-proof__stat-icon svg {
	width: 24px;
	height: 24px;
}

.kc-social-proof__stat-value {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(28px, 3.6vw, 38px);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: var(--navy);
}

.kc-social-proof__stat-label {
	display: block;
	margin-top: 10px;
	max-width: 14ch;
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(27, 51, 80, 0.58);
}

.kc-social-proof__logos-label {
	max-width: 920px;
	margin: 0 auto 14px;
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-align: center;
	color: rgba(27, 51, 80, 0.45);
}

.kc-social-proof__logos {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: clamp(10px, 1.5vw, 16px);
	align-items: stretch;
	max-width: 920px;
	margin: 0 auto;
	padding: clamp(24px, 3vw, 36px);
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(27, 51, 80, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.kc-social-proof__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(14px, 2vw, 18px);
	min-height: 76px;
	background: var(--cream);
	border: 1px solid rgba(27, 51, 80, 0.06);
	transition: var(--transition);
}

.kc-social-proof__logo:hover {
	border-color: rgba(214, 188, 94, 0.45);
	box-shadow: 0 8px 24px rgba(27, 51, 80, 0.06);
}

.kc-social-proof__logo img {
	max-height: 46px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	filter: grayscale(35%);
	opacity: 0.82;
	transition: filter 0.4s ease, opacity 0.4s ease, transform 0.45s ease;
}

.kc-social-proof__logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.03);
}

/* — How we work — */
.kc-how-work {
	background: var(--cream-2);
	border-top: 1px solid rgba(27, 51, 80, 0.06);
	border-bottom: 1px solid rgba(27, 51, 80, 0.06);
}

.kc-how-work__head .agency-kicker {
	margin-bottom: 2px;
}

.kc-how-work__compare {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: clamp(12px, 2.5vw, 28px);
	align-items: start;
	max-width: 980px;
	margin: 0 auto;
}

.kc-how-work__versus {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: clamp(48px, 8vw, 88px);
}

.kc-how-work__versus-badge {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--navy);
	background: var(--cream);
	border: 1px solid rgba(214, 188, 94, 0.5);
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(27, 51, 80, 0.08);
}

.kc-how-work__col-title {
	margin: 0 0 6px;
	font-family: var(--font-display);
	font-size: clamp(20px, 2.2vw, 24px);
	font-weight: 600;
	color: var(--navy);
}

.kc-how-work__col-meta {
	margin: 0 0 22px;
	padding-bottom: 14px;
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(35, 40, 31, 0.5);
	border-bottom: 1px solid rgba(27, 51, 80, 0.08);
}

.kc-how-work__stack {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kc-how-work__box {
	padding: 18px 22px;
	margin-bottom: 0;
	background: var(--cream);
	border: 1px solid rgba(27, 51, 80, 0.1);
	transition: var(--transition);
}

.kc-how-work__box strong {
	display: block;
	margin-bottom: 6px;
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 600;
	color: var(--navy);
}

.kc-how-work__box span {
	font-size: 14px;
	line-height: 1.55;
	color: rgba(35, 40, 31, 0.65);
}

.kc-how-work__box--muted {
	background: rgba(239, 234, 232, 0.65);
	border-style: dashed;
	border-color: rgba(27, 51, 80, 0.14);
	opacity: 0.92;
}

.kc-how-work__gap {
	position: relative;
	margin: 10px 0 10px 12px;
	padding-left: 14px;
	font-size: 12px;
	font-style: italic;
	line-height: 1.45;
	color: rgba(35, 40, 31, 0.42);
}

.kc-how-work__gap::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pink);
	opacity: 0.65;
}

.kc-how-work__col--usual {
	padding: clamp(20px, 3vw, 28px);
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(27, 51, 80, 0.08);
}

.kc-how-work__col--kate {
	position: relative;
	padding: clamp(22px, 3vw, 32px);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 244, 240, 0.95) 100%);
	border: 1px solid rgba(45, 74, 56, 0.22);
	box-shadow: var(--shadow-lift);
}

.kc-how-work__col--kate::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	border: 1px solid rgba(214, 188, 94, 0.35);
	transform: translate(6px, 6px);
	z-index: -1;
}

.kc-how-work__col--kate .kc-how-work__col-meta {
	color: var(--green);
	border-bottom-color: rgba(45, 74, 56, 0.15);
}

.kc-how-work__stack--connected .kc-how-work__box {
	position: relative;
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 14px 16px;
	border-color: rgba(45, 74, 56, 0.2);
}

.kc-how-work__box-media {
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 1;
	background: var(--cream-2);
	border: 1px solid rgba(27, 51, 80, 0.08);
	box-shadow: 0 6px 16px rgba(27, 51, 80, 0.06);
}

.kc-how-work__box-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	padding: 6px;
	transition: transform 0.45s ease;
}

.kc-how-work__stack--connected .kc-how-work__box:hover .kc-how-work__box-media img {
	transform: scale(1.04);
}

.kc-how-work__box-copy strong {
	margin-bottom: 4px;
}

.kc-how-work__stack--connected .kc-how-work__box:not(:last-child) {
	margin-bottom: 12px;
}

.kc-how-work__stack--connected .kc-how-work__box:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 59px;
	bottom: -14px;
	width: 2px;
	height: 12px;
	background: linear-gradient(180deg, var(--green), var(--gold));
	opacity: 0.5;
}

.kc-how-work__stack--connected .kc-how-work__box:hover {
	border-color: rgba(45, 74, 56, 0.35);
	box-shadow: 0 6px 18px rgba(45, 74, 56, 0.06);
}

/* — Why Kate — */
.kc-why-kate {
	position: relative;
	padding: clamp(64px, 9vw, 100px) 0;
	background:
		radial-gradient(ellipse 70% 80% at 100% 0%, rgba(227, 175, 188, 0.14), transparent 50%),
		linear-gradient(165deg, var(--navy) 0%, #152a42 48%, var(--green-2) 100%);
	color: var(--cream);
}

.kc-why-kate::after {
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(214, 188, 94, 0.45), transparent);
}

.kc-why-kate__head {
	max-width: 640px;
	margin: 0 auto clamp(40px, 5vw, 56px);
	text-align: center;
}

.kc-why-kate__section-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
	line-height: 1.15;
	color: var(--cream);
}

.kc-why-kate__section-title span {
	display: block;
	margin-top: 0.15em;
	color: var(--pink-2);
}

.kc-why-kate__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(4px);
}

.kc-why-kate__col {
	position: relative;
	padding: clamp(26px, 3vw, 40px);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.45s ease;
}

.kc-why-kate__col::before {
	content: '';
	position: absolute;
	top: 0;
	left: clamp(20px, 2vw, 28px);
	right: clamp(20px, 2vw, 28px);
	height: 2px;
	background: linear-gradient(90deg, var(--pink), var(--gold));
	opacity: 0;
	transition: opacity 0.45s ease;
}

.kc-why-kate__col:hover {
	background: rgba(255, 255, 255, 0.04);
}

.kc-why-kate__col:hover::before {
	opacity: 0.85;
}

.kc-why-kate__col:last-child {
	border-right: 0;
}

.kc-why-kate__index {
	display: block;
	margin-bottom: 18px;
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--pink-2);
}

.kc-why-kate__icon {
	display: block;
	width: 32px;
	height: 32px;
	margin-bottom: 22px;
	border: 1.5px solid rgba(227, 175, 188, 0.85);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(227, 175, 188, 0.12);
	opacity: 0.95;
}

.kc-why-kate__icon--method {
	border-radius: 6px;
	transform: rotate(45deg);
	box-shadow: 0 0 0 4px rgba(214, 188, 94, 0.12);
	border-color: rgba(214, 188, 94, 0.75);
}

.kc-why-kate__icon--proof {
	border-radius: 3px;
	height: 22px;
	width: 28px;
	border-color: rgba(255, 255, 255, 0.45);
	box-shadow: none;
}

.kc-why-kate__icon--durability {
	border-radius: 4px 4px 10px 10px;
}

.kc-why-kate__title {
	margin: 0 0 14px;
	font-family: var(--font-display);
	font-size: clamp(17px, 1.6vw, 21px);
	font-weight: 600;
	line-height: 1.28;
	color: var(--cream);
}

.kc-why-kate__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.74);
}

/* — FAQ — */
.kc-faq {
	background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.kc-faq__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(36px, 6vw, 72px);
	align-items: start;
}

.kc-faq__intro {
	position: sticky;
	top: calc(var(--header-height) + 24px);
}

.kc-faq__groups {
	padding: clamp(20px, 3vw, 28px);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(27, 51, 80, 0.08);
	box-shadow: 0 16px 48px rgba(27, 51, 80, 0.05);
}

.kc-faq__group-title {
	margin: 0 0 12px;
	padding-bottom: 10px;
	font-family: var(--font-display);
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 600;
	color: var(--navy);
	border-bottom: 1px solid rgba(214, 188, 94, 0.35);
}

.kc-faq__group + .kc-faq__group {
	margin-top: 28px;
	padding-top: 8px;
}

.kc-faq__item {
	border-bottom: 1px solid rgba(27, 51, 80, 0.1);
	transition: border-color 0.35s ease;
}

.kc-faq__item[open] {
	border-bottom-color: rgba(227, 175, 188, 0.45);
}

.kc-faq__question {
	position: relative;
	padding: 18px 40px 18px 0;
	font-family: var(--font-display);
	font-size: clamp(15px, 1.6vw, 17px);
	font-weight: 600;
	line-height: 1.4;
	color: var(--navy);
	cursor: pointer;
	list-style: none;
	transition: color 0.35s ease;
}

.kc-faq__question::-webkit-details-marker {
	display: none;
}

.kc-faq__question::after {
	content: '+';
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-mono, 'IBM Plex Mono', monospace);
	font-size: 18px;
	font-weight: 400;
	color: var(--green);
	transition: transform 0.35s ease, color 0.35s ease;
}

.kc-faq__item[open] .kc-faq__question {
	color: var(--green);
}

.kc-faq__item[open] .kc-faq__question::after {
	content: '−';
	color: var(--pink);
	transform: translateY(-50%) rotate(0deg);
}

.kc-faq__answer {
	padding: 0 0 20px;
	font-size: 14px;
	line-height: 1.75;
	color: rgba(35, 40, 31, 0.68);
}

.kc-faq__answer p {
	margin: 0;
}

/* — Case studies — */
.kc-case-intro {
	max-width: 640px;
	margin: 0 auto clamp(40px, 5vw, 56px);
	text-align: center;
}

.kc-case-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 32px);
}

.kc-case-card {
	display: flex;
	flex-direction: column;
	padding: clamp(24px, 3vw, 32px);
	background: var(--cream);
	border: 1px solid rgba(27, 51, 80, 0.08);
	box-shadow: 0 10px 32px rgba(27, 51, 80, 0.04);
	transition: var(--transition);
}

.kc-case-card:hover {
	transform: translateY(-4px);
	border-color: rgba(214, 188, 94, 0.4);
	box-shadow: var(--shadow-lift);
}

.kc-case-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	margin-bottom: 22px;
	padding: 18px;
	background: var(--cream-2);
	border: 1px solid rgba(27, 51, 80, 0.06);
}

.kc-case-card__logo img {
	max-height: 44px;
	width: auto;
	object-fit: contain;
}

.kc-case-card__tag {
	display: block;
	margin-bottom: 12px;
	font-size: 9px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--green);
}

.kc-case-card__title {
	margin: 0 0 12px;
	font-family: var(--font-display);
	font-size: clamp(20px, 2.2vw, 24px);
	font-weight: 600;
	line-height: 1.25;
	color: var(--navy);
}

.kc-case-card__desc {
	margin: 0 0 auto;
	padding-bottom: 20px;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(35, 40, 31, 0.68);
}

.kc-case-card .link-more {
	margin-top: auto;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green);
}

.kc-case-card .link-more:hover {
	color: var(--navy);
}

/* — Fractional CMO — */
.kc-fcmo-list {
	margin: 0;
	padding: clamp(24px, 3vw, 32px);
	list-style: none;
	background: var(--cream);
	border: 1px solid rgba(27, 51, 80, 0.08);
	box-shadow: var(--shadow-soft);
}

.kc-fcmo-list li {
	position: relative;
	padding: 16px 0 16px 24px;
	border-bottom: 1px solid rgba(27, 51, 80, 0.08);
	font-size: 15px;
	line-height: 1.5;
	color: var(--ink);
}

.kc-fcmo-list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.kc-fcmo-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: linear-gradient(135deg, var(--pink), var(--gold));
	border-radius: 1px;
	transform: rotate(45deg);
}

.kc-fcmo-highlight__head {
	max-width: 720px;
	margin: 0 auto clamp(32px, 4vw, 48px);
	text-align: center;
}

.kc-fcmo-highlight__lede {
	margin: 16px auto 0;
	max-width: 52ch;
}

.kc-fcmo-highlight .agency-stats__grid {
	max-width: 880px;
	margin: 0 auto;
}

@media (max-width: 1024px) {
	.kc-social-proof__logos {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.kc-why-kate__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kc-why-kate__col:nth-child(2) {
		border-right: 0;
	}

	.kc-why-kate__col:nth-child(1),
	.kc-why-kate__col:nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.kc-case-grid {
		grid-template-columns: 1fr;
	}

	.kc-faq__intro {
		position: static;
	}
}

@media (max-width: 900px) {
	.kc-social-proof__stats,
	.kc-faq__layout {
		grid-template-columns: 1fr;
	}

	.kc-social-proof__stat {
		display: grid;
		grid-template-columns: 52px 1fr;
		grid-template-rows: auto auto;
		align-items: center;
		column-gap: 16px;
		row-gap: 2px;
		min-height: 0;
		padding: 18px 18px 18px 16px;
		text-align: left;
	}

	.kc-social-proof__stat-icon {
		grid-row: 1 / span 2;
		grid-column: 1;
		margin: 0;
		width: 48px;
		height: 48px;
	}

	.kc-social-proof__stat-value {
		grid-column: 2;
		grid-row: 1;
		align-self: end;
		font-size: clamp(26px, 7vw, 32px);
	}

	.kc-social-proof__stat-label {
		grid-column: 2;
		grid-row: 2;
		margin-top: 0;
		max-width: none;
		font-size: 10px;
	}

	.kc-how-work__compare {
		grid-template-columns: 1fr;
	}

	.kc-how-work__versus {
		padding: 8px 0;
		order: 2;
	}

	.kc-how-work__col--kate {
		order: 3;
	}

	.kc-how-work__col--usual {
		order: 1;
	}

	.kc-how-work__stack--connected .kc-how-work__box {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 12px;
		padding: 12px 14px;
	}

	.kc-how-work__stack--connected .kc-how-work__box:not(:last-child)::after {
		left: 49px;
	}

	.kc-social-proof__logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kc-why-kate__grid {
		grid-template-columns: 1fr;
	}

	.kc-why-kate__col {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.kc-why-kate__col:last-child {
		border-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kc-social-proof__stat:hover,
	.kc-case-card:hover,
	.kc-social-proof__logo:hover img {
		transform: none;
	}
}
