/* ==========================================================================
   Markital homepage.
   Dark, but never flat: every section carries its own light. The lime is the
   brand signal, not the only colour — the client tiles bring their own.
   ========================================================================== */

.mk-site {
	--ink: #060A07;
	--ink-2: #0A100C;
	--raise: rgba(242, 246, 241, .045);
	--raise-2: rgba(242, 246, 241, .075);
	--edge: rgba(242, 246, 241, .10);
	--edge-lit: rgba(124, 224, 42, .38);
	--cream: #F2F5EE;
	--cream-2: #E4E9DC;
	--on-cream: #0B1410;
	--lime: #7CE02A;
	--lime-deep: #1E9E2F;
	--amber: #F0B429;
	--dim: #97A69B;
	--ease: cubic-bezier(.22, .78, .26, 1);

	background: var(--ink);
	overflow-x: clip;
}

.site-home {
	position: relative;
	color: #F2F6F1;
}

.wrap {
	width: min(1240px, 100% - clamp(28px, 6vw, 96px));
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Shared type and controls
   -------------------------------------------------------------------------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: clamp(11px, 1.1vw, 12.5px);
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--lime);
}
.eyebrow--dark { color: #3C7A1E; }
.eyebrow__dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 0 4px rgba(124, 224, 42, .16);
}

.h2 {
	margin: 14px 0 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.9rem, 4.4vw, 3.4rem);
	line-height: 1.04;
	letter-spacing: -.035em;
	max-width: 20ch;
}

.head { margin-bottom: clamp(28px, 3.4vw, 46px); }

.site-home .btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 26px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s, border-color .3s, color .3s;
}
.site-home .btn--go {
	background: linear-gradient(135deg, #9BEE4C, var(--lime) 55%, #4FBF2B);
	color: #071206;
	box-shadow: 0 14px 40px rgba(124, 224, 42, .3);
}
.site-home .btn--go:hover { transform: translateY(-3px); box-shadow: 0 20px 52px rgba(124, 224, 42, .42); color: #071206; }
.site-home .btn--quiet {
	border: 1px solid var(--edge);
	color: #F2F6F1;
	background: var(--raise);
}
.site-home .btn--quiet:hover { border-color: var(--edge-lit); color: var(--lime); transform: translateY(-3px); }

.link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 700;
	color: var(--lime);
	border-bottom: 1px solid rgba(124, 224, 42, .34);
	padding-bottom: 2px;
}
.link:hover { border-bottom-color: var(--lime); }

/* Sections arrive rather than appear. The hiding is opt-in, added by JS, so
   a script failure can never leave the page blank. */
.rise-on [data-rise] {
	opacity: 0;
	transform: translate3d(0, 26px, 0);
	transition: opacity .8s var(--ease) var(--rise-delay, 0s), transform .8s var(--ease) var(--rise-delay, 0s);
}
.rise-on [data-rise].is-in { opacity: 1; transform: none; }

.sec { position: relative; padding-block: clamp(62px, 7.4vw, 104px); }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.site-home .hero {
	position: relative;
	padding-block: clamp(92px, 13vh, 150px) clamp(52px, 6.5vw, 84px);
	overflow: hidden;
}
.hero__glow {
	position: absolute;
	inset: -30% -10% auto -30%;
	height: 150%;
	pointer-events: none;
	background:
		radial-gradient(48% 42% at 22% 26%, rgba(124, 224, 42, .17), transparent 70%),
		radial-gradient(42% 40% at 82% 12%, rgba(23, 140, 120, .16), transparent 72%),
		radial-gradient(60% 40% at 50% 96%, rgba(240, 180, 41, .05), transparent 74%);
}
.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
}

.hero__h {
	margin: 18px 0 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.6rem, 6.1vw, 5rem);
	line-height: .98;
	letter-spacing: -.045em;
}
.hero__h em {
	font-style: normal;
	background: linear-gradient(104deg, #B6F56E, var(--lime) 44%, #2FBF4A);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero__lead {
	margin: 22px 0 0;
	max-width: 46ch;
	font-size: clamp(1rem, 1.35vw, 1.18rem);
	line-height: 1.6;
	color: #C3CEC5;
}
.hero__row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: clamp(26px, 3.4vw, 38px);
}
.hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 3vw, 44px);
	margin: clamp(34px, 4.4vw, 54px) 0 0;
	padding: clamp(18px, 2.4vw, 26px) 0 0;
	border-top: 1px solid var(--edge);
}
.hero__proof li { display: grid; gap: 3px; }
.hero__proof strong {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.3rem, 2.2vw, 1.75rem);
	letter-spacing: -.03em;
	color: var(--lime);
}
.hero__proof span { font-size: 12.5px; color: var(--dim); }

/* The visual: generated artwork, with the real product surfaces on top. */
.hero__art {
	position: relative;
	aspect-ratio: 1 / .92;
	display: grid;
	place-items: center;
}
.hero__aurora {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 32px;
	transform: scale(1.12);
	-webkit-mask-image: radial-gradient(76% 76% at 50% 44%, #000 62%, transparent 100%);
	mask-image: radial-gradient(76% 76% at 50% 44%, #000 62%, transparent 100%);
}

.shot {
	position: absolute;
	margin: 0;
	border-radius: 20px;
	border: 1px solid rgba(242, 246, 241, .14);
	background: rgba(9, 15, 11, .82);
	backdrop-filter: blur(22px) saturate(1.3);
	-webkit-backdrop-filter: blur(22px) saturate(1.3);
	box-shadow: 0 36px 90px rgba(0, 0, 0, .62);
	overflow: hidden;
	transition: transform .6s var(--ease);
}
.shot--ad {
	width: min(300px, 58%);
	left: 2%;
	top: 8%;
	transform: rotate(-4deg);
}
.hero__art:hover .shot--ad { transform: rotate(-4deg) translateY(-8px); }
.shot__top { display: flex; align-items: center; gap: 9px; padding: 12px 14px 9px; }
.shot__av {
	width: 30px; height: 30px;
	border-radius: 50%;
	display: grid; place-items: center;
	background: rgba(242, 246, 241, .08);
	overflow: hidden;
}
.shot__av img { width: 18px; height: auto; }
.shot__who { display: grid; line-height: 1.28; }
.shot__who b { font-size: 12.5px; font-weight: 700; }
.shot__who i { font-size: 10px; font-style: normal; color: var(--dim); }
.shot__say { margin: 0; padding: 0 14px 11px; font-size: 12.5px; line-height: 1.45; }
.shot__media {
	position: relative;
	aspect-ratio: 5 / 4;
	display: grid;
	place-items: center;
	border-block: 1px solid rgba(242, 246, 241, .1);
	background:
		radial-gradient(64% 62% at 50% 36%, rgba(124, 224, 42, .3), transparent 72%),
		linear-gradient(156deg, #1C2E22, #0A120E);
}
.shot__orb {
	width: 48%;
	aspect-ratio: 1;
	border-radius: 32%;
	background: linear-gradient(146deg, rgba(160, 240, 96, .95), rgba(30, 158, 47, .4));
	box-shadow: 0 16px 44px rgba(124, 224, 42, .3);
}
.shot__brand {
	position: absolute;
	width: 22%;
	height: auto;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .45));
}
.shot__bar { display: flex; align-items: center; gap: 10px; padding: 11px 14px; }
.shot__url { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.shot__btn {
	margin-left: auto;
	padding: 7px 13px;
	border-radius: 999px;
	background: var(--lime);
	color: #08150A;
	font-size: 11.5px;
	font-weight: 800;
}

.shot--chat {
	width: min(236px, 46%);
	right: 1%;
	bottom: 6%;
	padding: 13px 13px 15px;
	transform: rotate(3.5deg);
	display: grid;
	gap: 7px;
	align-content: start;
}
.hero__art:hover .shot--chat { transform: rotate(3.5deg) translateY(-8px); }
.chat__top {
	display: flex; align-items: center; gap: 8px;
	padding-bottom: 9px;
	border-bottom: 1px solid rgba(242, 246, 241, .1);
	font-size: 11.5px;
}
.chat__av {
	width: 22px; height: 22px;
	border-radius: 50%;
	background: linear-gradient(140deg, rgba(124, 224, 42, .7), rgba(30, 158, 47, .4));
}
.bub {
	margin: 0;
	max-width: 90%;
	padding: 7px 10px;
	font-size: 11px;
	line-height: 1.4;
	border-radius: 13px;
}
.bub--in { justify-self: start; background: rgba(242, 246, 241, .09); border-bottom-left-radius: 4px; }
.bub--out {
	justify-self: end;
	background: rgba(124, 224, 42, .2);
	border: 1px solid rgba(124, 224, 42, .3);
	border-bottom-right-radius: 4px;
}

.pill {
	position: absolute;
	padding: 8px 15px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .05em;
	border: 1px solid var(--edge-lit);
	background: rgba(9, 15, 11, .8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--lime);
	box-shadow: 0 12px 34px rgba(0, 0, 0, .5);
}
.pill--a { top: 2%; right: 8%; }
.pill--b { bottom: 1%; left: 4%; }

/* --------------------------------------------------------------------------
   LOGO STRIP
   -------------------------------------------------------------------------- */
.strip {
	padding-block: clamp(34px, 5vw, 60px);
	border-block: 1px solid var(--edge);
	background: linear-gradient(180deg, rgba(242, 246, 241, .022), transparent);
}
.strip__label {
	margin: 0 0 clamp(20px, 2.6vw, 30px);
	text-align: center;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--dim);
}
.strip__row {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: clamp(10px, 1.6vw, 22px);
	align-items: center;
	margin: 0;
	padding: 0;
}
.strip__row li {
	display: grid;
	place-items: center;
	padding: 0;
	border-radius: 13px;
	overflow: hidden;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.strip__row li:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0, 0, 0, .5); }
.strip__row img { width: 100%; height: auto; display: block; }

/* --------------------------------------------------------------------------
   WHAT WE DO
   -------------------------------------------------------------------------- */
.sec--offer::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(50% 44% at 78% 16%, rgba(30, 158, 47, .14), transparent 72%),
		radial-gradient(40% 36% at 6% 92%, rgba(240, 180, 41, .06), transparent 74%);
}
.offer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(14px, 1.7vw, 22px);
}
.card {
	position: relative;
	display: grid;
	align-content: start;
	gap: 12px;
	padding: clamp(22px, 2.4vw, 32px);
	border-radius: 20px;
	border: 1px solid var(--edge);
	background: linear-gradient(168deg, var(--raise-2), rgba(242, 246, 241, .012));
	transition: transform .45s var(--ease), border-color .35s, background-color .35s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(242, 246, 241, .2); }
.card--hero {
	grid-column: span 2;
	gap: 16px;
	border-color: var(--edge-lit);
	background:
		radial-gradient(74% 58% at 18% 6%, rgba(124, 224, 42, .2), transparent 70%),
		linear-gradient(160deg, rgba(124, 224, 42, .09), rgba(10, 20, 12, .5));
	box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}
.card__tag {
	justify-self: start;
	padding: 6px 13px;
	border-radius: 999px;
	background: var(--lime);
	color: #08150A;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.card__h {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -.03em;
	font-size: clamp(1.25rem, 1.8vw, 1.6rem);
}
.card--hero .card__h { font-size: clamp(2rem, 4vw, 3.1rem); }
.card__p { margin: 0; font-size: 14px; line-height: 1.6; color: #B7C3B9; max-width: 42ch; }
.card--hero .card__p { font-size: clamp(15px, 1.3vw, 17px); }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 4px 0 0; padding: 0; }
.chips li {
	padding: 7px 13px;
	border-radius: 999px;
	border: 1px solid var(--edge);
	background: rgba(242, 246, 241, .04);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .04em;
	color: #D5DED6;
}
.card--hero .chips li { border-color: rgba(124, 224, 42, .28); background: rgba(124, 224, 42, .09); color: #DFF6C9; }

/* --------------------------------------------------------------------------
   HOW IT RUNS
   -------------------------------------------------------------------------- */
.sec--steps { background: linear-gradient(180deg, transparent, rgba(242, 246, 241, .022), transparent); }
.sec--steps::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(44% 40% at 84% 84%, rgba(23, 140, 120, .12), transparent 74%);
}
.sec--work::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(46% 38% at 12% 10%, rgba(124, 224, 42, .09), transparent 72%);
}
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 2vw, 30px);
	margin: 0;
	padding: 0;
	counter-reset: s;
}
.step {
	position: relative;
	display: grid;
	align-content: start;
	gap: 10px;
	padding-top: 26px;
	border-top: 1px solid var(--edge);
}
.step::after {
	content: '';
	position: absolute;
	top: -1px; left: 0;
	width: 38px; height: 2px;
	background: var(--lime);
	box-shadow: 0 0 14px rgba(124, 224, 42, .6);
}
.step__n {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .16em;
	color: var(--lime);
}
.step__h {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.1rem, 1.6vw, 1.4rem);
	line-height: 1.2;
	letter-spacing: -.02em;
}
.step__p { margin: 0; font-size: 14.5px; line-height: 1.62; color: #AFBCB2; max-width: 34ch; }

/* --------------------------------------------------------------------------
   WORK — each tile wears its client's own brand colour
   -------------------------------------------------------------------------- */
.work {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(12px, 1.5vw, 20px);
	margin: 0;
	padding: 0;
}
.tile {
	position: relative;
	display: grid;
	grid-template-rows: 1fr auto;
	aspect-ratio: 4 / 3.4;
	padding: 18px;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--edge);
	background: linear-gradient(162deg, color-mix(in srgb, var(--a) 26%, #0A120E), color-mix(in srgb, var(--b) 30%, #070C09));
	transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .35s;
}
a.tile:hover {
	transform: translateY(-6px);
	border-color: color-mix(in srgb, var(--a) 55%, transparent);
	box-shadow: 0 26px 64px color-mix(in srgb, var(--a) 26%, transparent);
}
.tile__wash {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(70% 56% at 26% 8%, color-mix(in srgb, var(--a) 46%, transparent), transparent 72%),
		radial-gradient(60% 50% at 88% 96%, color-mix(in srgb, var(--b) 44%, transparent), transparent 74%);
	opacity: .9;
}
.tile__mark {
	position: relative;
	display: grid;
	place-items: center;
	padding: 6px;
}
.tile__mark img {
	width: min(160px, 86%);
	height: auto;
	border-radius: 10px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}
.tile__foot { position: relative; display: grid; gap: 2px; }
.tile__foot b { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: -.01em; }
.tile__foot i {
	font-style: normal;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: rgba(242, 246, 241, .66);
}
.tile__go {
	margin-top: 8px;
	font-size: 11.5px;
	font-weight: 700;
	color: #F2F6F1;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .35s var(--ease), transform .35s var(--ease);
}
a.tile:hover .tile__go { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   PROOF — the light section. The whole page breathes because of this.
   -------------------------------------------------------------------------- */
.sec--proof {
	background: linear-gradient(180deg, var(--cream), var(--cream-2));
	color: var(--on-cream);
}
.sec--proof .eyebrow { margin-bottom: clamp(26px, 3.4vw, 44px); }
.proof {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(22px, 3.4vw, 58px);
	margin: 0;
	padding: 0;
}
.proof li {
	display: grid;
	gap: 6px;
	padding-left: clamp(16px, 2vw, 26px);
	border-left: 2px solid rgba(11, 20, 16, .14);
}
.proof strong {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.6rem, 6.4vw, 5.2rem);
	line-height: .92;
	letter-spacing: -.055em;
	color: #12200F;
}
.proof span {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(.95rem, 1.3vw, 1.1rem);
	letter-spacing: -.01em;
}
.proof small { font-size: 13px; line-height: 1.5; color: #55645A; max-width: 30ch; }

/* --------------------------------------------------------------------------
   FOUNDER
   -------------------------------------------------------------------------- */
.who {
	display: grid;
	grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
	gap: clamp(30px, 5vw, 72px);
	align-items: end;
}
.who__art { position: relative; display: grid; place-items: end center; }
.who__halo {
	position: absolute;
	inset: 8% 0 0;
	border-radius: 26px;
	background:
		radial-gradient(60% 56% at 50% 88%, rgba(124, 224, 42, .28), transparent 72%),
		linear-gradient(180deg, rgba(242, 246, 241, .05), transparent 70%);
	border: 1px solid var(--edge);
	border-bottom: none;
}
/* Character art is sized by HEIGHT — the source files share a height, not a width. */
.who__art img { position: relative; height: clamp(260px, 38vw, 400px); width: auto; display: block; }
.who__p { margin: 20px 0 0; max-width: 46ch; font-size: clamp(1rem, 1.3vw, 1.12rem); line-height: 1.62; color: #C3CEC5; }
.who__meta { display: grid; gap: 2px; margin: 22px 0 18px; }
.who__meta b { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.who__meta span { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.sec--cta { padding-bottom: clamp(74px, 9vw, 120px); }
.cta {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid var(--edge-lit);
	background: #080E0A;
	padding: clamp(46px, 7vw, 96px) clamp(26px, 5vw, 80px);
	text-align: center;
	isolation: isolate;
}
.cta__aurora {
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.25) rotate(180deg);
	opacity: .62;
}
.cta__in { display: grid; justify-items: center; gap: 0; }
.cta__h {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.3rem, 6.6vw, 4.6rem);
	line-height: .98;
	letter-spacing: -.045em;
}
.cta__p { margin: 18px 0 0; max-width: 48ch; font-size: clamp(1rem, 1.3vw, 1.12rem); line-height: 1.6; color: #C8D3CA; }
.cta .hero__row { justify-content: center; }
.cta__line { margin: 22px 0 0; font-size: 13.5px; color: var(--dim); }
.cta__line a { color: #F2F6F1; font-weight: 700; }
.cta__line a:hover { color: var(--lime); }

/* --------------------------------------------------------------------------
   Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.hero__grid { grid-template-columns: 1fr; gap: clamp(34px, 6vw, 54px); }
	.hero__art { aspect-ratio: 1 / .7; max-width: 560px; margin-inline: auto; width: 100%; }
	.offer { grid-template-columns: repeat(2, 1fr); }
	.card--hero { grid-column: span 2; grid-row: auto; }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.work { grid-template-columns: repeat(3, 1fr); }
	.strip__row { grid-template-columns: repeat(4, 1fr); }
	.who { grid-template-columns: 1fr; }
	.who__art { justify-items: center; }
}

/* --------------------------------------------------------------------------
   Phone — this is the view that has to look good first
   -------------------------------------------------------------------------- */
@media (max-width: 680px) {
	.site-home .hero { padding-top: clamp(72px, 12vh, 110px); }
	.hero__h { font-size: clamp(2.3rem, 11vw, 3.1rem); }
	.hero__lead { font-size: 1rem; }
	.hero__row .btn { flex: 1 1 100%; justify-content: center; }
	.hero__proof { gap: 18px 26px; }
	/* Stack the two product cards on a phone — side by side they sat on top
	   of each other's text. Offset vertically, they still read as layered. */
	.hero__art { aspect-ratio: 1 / 1.34; }
	.shot--ad { width: 76%; left: 2%; top: 0; transform: rotate(-2deg); }
	.shot--chat { width: 60%; right: 2%; bottom: 0; transform: rotate(2deg); }
	.pill--a { top: 34%; right: 0; }
	.pill--b { bottom: 40%; left: 0; }
	.pill { font-size: 10.5px; padding: 7px 12px; }

	.offer { grid-template-columns: 1fr; }
	.card--hero { grid-column: span 1; }
	.steps { grid-template-columns: 1fr; gap: 24px; }
	.work { grid-template-columns: repeat(2, 1fr); }
	.strip__row { grid-template-columns: repeat(3, 1fr); }
	.proof { grid-template-columns: 1fr; gap: 26px; }
	.who__art img { height: clamp(220px, 58vw, 300px); }
	.cta { border-radius: 22px; }
}

@media (max-width: 400px) {
	.work { grid-template-columns: 1fr 1fr; }
	.tile { padding: 14px; aspect-ratio: 4 / 3.8; }
	.tile__mark img { width: 92%; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	.rise-on [data-rise] { opacity: 1 !important; transform: none !important; transition: none; }
	.site-home .btn, .card, .tile, .shot, .strip__row li { transition: none; }
}
