/* ==========================================================================
   Kito Digital – main styles (v2, brand edition)
   Brand colours and font come from Appearance → Customize.
   ========================================================================== */

:root {
	--navy: #001E49;
	--orange: #C15200;
	--bg: #F4F5F7;
	--white: #FFFFFF;
	--font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;

	--fg: var(--navy);
	--fg-muted: color-mix(in srgb, var(--navy) 62%, var(--bg));
	--line: color-mix(in srgb, var(--navy) 12%, transparent);
	--navy-2: color-mix(in srgb, var(--navy) 86%, #ffffff);
	--orange-hi: color-mix(in srgb, var(--orange) 72%, #ffffff);
	--btn-fill: var(--navy);

	--gutter: clamp(1.25rem, 4vw, 3rem);
	--max: 1240px;
	--edge: clamp(8px, 1.2vw, 14px);
	--r-panel: clamp(22px, 2.6vw, 34px);
	--r-card: 24px;
	--ease: cubic-bezier(.2, .8, .2, 1);
	--ease-back: cubic-bezier(.34, 1.56, .64, 1);
	--header-h: 82px;
}

/* Dark areas flip the text colours */
.hero-panel,
.work,
.site-footer {
	--fg: #FFFFFF;
	--fg-muted: rgba(255, 255, 255, .72);
	--line: rgba(255, 255, 255, .14);
	--btn-fill: #FFFFFF;
	color: var(--fg);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: var(--font);
	font-size: 1.0625rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 3px;
}

h1, h2, h3, h4 {
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.02em;
	margin: 0 0 .5em;
	text-wrap: balance;
}
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { margin: 0 0 1em; }

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

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto;
	top: 1rem; left: 1rem; z-index: 999;
	padding: .75rem 1rem;
	background: var(--navy); color: #fff;
	border-radius: 10px;
}

.wrap {
	width: 100%;
	max-width: var(--max);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 800px; }

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head p { color: var(--fg-muted); font-size: 1.15rem; max-width: 46ch; margin: 0; }
.section-head-row {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem 3rem;
	flex-wrap: wrap;
}
.section-head-row h2 { max-width: 15ch; margin: 0; }
.section-head-row > div { max-width: 640px; }
.section-head-row > div h2 { margin-bottom: .5em; }

/* ---------- The Kito "!" mark, used as a graphic ---------- */
.big-mark,
.mini-mark,
.loader-mark {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.big-mark .bar,
.mini-mark .bar,
.loader-mark .bar {
	display: block;
	width: 100%;
	flex: 1 1 auto;
	background: var(--orange);
	border-radius: 18%/8%;
	transform-origin: 50% 100%;
}
.big-mark .dot,
.mini-mark .dot,
.loader-mark .dot {
	display: block;
	width: 100%;
	background: #fff;
	border-radius: 18%/22%;
}
.big-mark {
	position: absolute;
	top: 18%;
	bottom: 18%;
	left: 50%;
	width: 22%;
	transform: translateX(-50%);
	gap: 5%;
}
.big-mark .dot { flex: 0 0 22%; }

.mini-mark {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 22px;
	height: 64px;
	gap: 5px;
	z-index: 2;
}
.mini-mark .dot { flex: 0 0 15px; border-radius: 5px; }
.mini-mark .bar { border-radius: 5px; }

/* ---------- Buttons ---------- */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: .85rem;
	padding: .95rem 1.6rem;
	border: 0;
	border-radius: 999px;
	font: 600 1rem/1 var(--font);
	cursor: pointer;
	isolation: isolate;
	overflow: hidden;
	transition: color .4s var(--ease);
}
.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--btn-fill);
	border-radius: inherit;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .5s var(--ease);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:has(.btn-icon) { padding: .45rem .45rem .45rem 1.5rem; }
.btn-primary:hover { color: var(--bg); }
.hero-panel .btn-primary:hover { color: var(--navy); }
.btn-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	color: var(--orange);
	transform: rotate(-45deg);
	transition: transform .45s var(--ease), background-color .4s;
}
.btn:hover .btn-icon { transform: rotate(0); background: var(--orange); color: #fff; }

.btn-ghost {
	color: var(--fg);
	box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { color: var(--bg); }
.hero-panel .btn-ghost:hover { color: var(--navy); }
.btn-small { padding: .72rem 1.3rem; font-size: .95rem; }

.text-link {
	display: inline-flex; align-items: center; gap: .5rem;
	font-weight: 600;
	color: var(--orange);
}
.text-link svg { width: 1.1em; height: 1.1em; transition: transform .35s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }

.chip {
	display: inline-block;
	padding: .3rem .8rem;
	border-radius: 999px;
	font-size: .8rem;
	font-weight: 600;
	color: var(--orange);
	background: color-mix(in srgb, var(--orange) 12%, transparent);
}
.work .chip { color: var(--orange-hi); background: color-mix(in srgb, var(--orange) 22%, transparent); }

/* Placeholder when a project or post has no image: small Kito "!" on navy */
.facet-fill {
	position: absolute;
	inset: 0;
	background: linear-gradient(150deg, var(--navy-2), var(--navy));
}
.facet-fill::before,
.facet-fill::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 11%;
	transform: translateX(-50%);
	border-radius: 8px;
	transition: transform .6s var(--ease);
}
.facet-fill::before { top: 28%; height: 32%; background: var(--orange); transform-origin: 50% 100%; }
.facet-fill::after { top: 63%; height: 9%; background: #fff; }
.facet-fill-about::before,
.facet-fill-about::after { display: none; }

/* ---------- Loader ---------- */
.loader {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	background: var(--bg);
	transition: clip-path .8s var(--ease) .15s, visibility 0s linear 1s;
	clip-path: inset(0 0 0 0);
}
.loader-mark { width: 30px; height: 104px; gap: 7px; }
.loader-mark .bar { border-radius: 8px; animation: grow .6s var(--ease) both; }
.loader-mark .dot { flex: 0 0 26px; background: var(--navy); border-radius: 8px; animation: drop .55s var(--ease-back) .45s both; }
@keyframes grow { from { transform: scaleY(0); } }
@keyframes drop { from { transform: translateY(-70px); opacity: 0; } }
body.is-ready .loader { clip-path: inset(0 0 100% 0); visibility: hidden; }
body.is-loading { overflow: hidden; }

/* ---------- Scroll progress ---------- */
.progress {
	position: fixed;
	top: 0; left: 0;
	z-index: 120;
	width: 100%;
	height: 3px;
	background: var(--orange);
	transform: scaleX(var(--p, 0));
	transform-origin: left;
}

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding-top: env(safe-area-inset-top, 0px);
	background: var(--bg);
	transition: transform .45s var(--ease), background-color .35s, box-shadow .35s;
}
.site-header.is-scrolled {
	background: color-mix(in srgb, var(--bg) 82%, transparent);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	backdrop-filter: blur(14px) saturate(160%);
	box-shadow: 0 1px 0 var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner {
	max-width: var(--max);
	margin-inline: auto;
	padding-inline: var(--gutter);
	height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.brand { position: relative; z-index: 2; }
.custom-logo { height: 50px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav .menu { display: flex; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.site-nav .menu a {
	display: block;
	padding: .55rem 1rem;
	border-radius: 999px;
	font-weight: 500;
	font-size: .98rem;
	transition: background-color .3s, color .3s;
}
.site-nav .menu a:hover,
.site-nav .menu .current-menu-item a { background: color-mix(in srgb, var(--navy) 7%, transparent); }

.menu-toggle {
	display: none;
	width: 48px; height: 48px;
	border: 0;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	cursor: pointer;
	position: relative;
	z-index: 2;
}
.menu-toggle-lines { display: grid; gap: 6px; width: 18px; margin: auto; }
.menu-toggle-lines span { height: 2px; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease); }
.menu-open .menu-toggle-lines span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-toggle-lines span:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 900px) {
	:root { --header-h: 72px; }
	.custom-logo { height: 42px; }
	.menu-toggle { display: grid; }
	.site-nav {
		position: fixed;
		inset: 0;
		z-index: 1;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		gap: 2.5rem;
		padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
		background: var(--bg);
		clip-path: circle(0 at calc(100% - 44px) 36px);
		transition: clip-path .7s var(--ease), visibility 0s linear .7s;
		visibility: hidden;
	}
	.menu-open .site-nav { clip-path: circle(150% at calc(100% - 44px) 36px); visibility: visible; transition: clip-path .7s var(--ease); }
	.site-nav .menu { flex-direction: column; gap: 0; }
	.site-nav .menu a {
		padding: .3rem 0;
		font-size: clamp(2.1rem, 9vw, 3rem);
		font-weight: 700;
		letter-spacing: -.02em;
		opacity: 0;
		transform: translateY(26px);
		transition: opacity .5s var(--ease), transform .5s var(--ease);
	}
	.site-nav .menu a:hover { background: none; color: var(--orange); }
	.menu-open .site-nav .menu a { opacity: 1; transform: none; }
	.menu-open .site-nav .menu li:nth-child(1) a { transition-delay: .15s; }
	.menu-open .site-nav .menu li:nth-child(2) a { transition-delay: .2s; }
	.menu-open .site-nav .menu li:nth-child(3) a { transition-delay: .25s; }
	.menu-open .site-nav .menu li:nth-child(4) a { transition-delay: .3s; }
	.menu-open .site-nav .menu li:nth-child(n+5) a { transition-delay: .35s; }
	.menu-open { overflow: hidden; }
	.menu-open .site-header { transform: none; background: var(--bg); box-shadow: none; }
}

/* ---------- Hero ---------- */
.hero { padding: calc(var(--header-h) + env(safe-area-inset-top, 0px)) var(--edge) 0; }
.hero-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
	align-items: center;
	gap: clamp(2.5rem, 5vw, 5rem);
	min-height: calc(100svh - var(--header-h) - var(--edge));
	padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
	background: var(--navy);
	border-radius: var(--r-panel);
	overflow: hidden;
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	padding: .45rem 1rem .45rem .8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: var(--fg-muted);
	font-size: .95rem;
	font-weight: 500;
	margin-bottom: 1.8rem;
}
.kicker-mark {
	width: 6px; height: 16px;
	background: linear-gradient(var(--orange) 0 68%, transparent 68% 78%, #fff 78%);
	border-radius: 2px;
}

.hero-title {
	font-size: clamp(2.4rem, 5.6vw, 5.4rem);
	line-height: 1;
	letter-spacing: -.025em;
	text-transform: uppercase;
	margin: 0 0 1.8rem;
}
.hero-title .line { display: block; overflow: hidden; padding: 0 .1em .06em 0; margin-bottom: -.06em; }
.hero-title .line-inner { display: inline-block; }
.line-strong { font-weight: 800; }
.line-light { font-weight: 200; }
.hero-title .word { white-space: nowrap; }
.kdot {
	display: inline-block;
	width: .19em;
	height: .19em;
	margin-left: .06em;
	background: var(--orange);
	border-radius: .035em;
}
.line-light .kdot { width: .14em; height: .14em; }
.hero-text { max-width: 44ch; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--fg-muted); margin-bottom: 2.3rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-visual {
	position: relative;
	width: 100%;
	max-width: 480px;
	justify-self: end;
}
.visual-frame {
	position: relative;
	aspect-ratio: 4 / 5;
	max-height: 68vh;
	margin-inline: auto;
	border-radius: var(--r-card);
	overflow: hidden;
	background:
		radial-gradient(90% 60% at 50% 110%, color-mix(in srgb, var(--orange) 28%, transparent), transparent 70%),
		var(--navy-2);
}
.visual-frame img { width: 100%; height: 100%; object-fit: cover; }

.float-tag {
	position: absolute;
	z-index: 3;
	padding: .6rem 1.1rem;
	border-radius: 999px;
	background: #fff;
	color: var(--navy);
	font-weight: 600;
	font-size: .95rem;
	white-space: nowrap;
	box-shadow: 0 12px 30px rgba(0, 10, 30, .28);
	animation: float 6s ease-in-out infinite alternate;
}
.float-tag::before {
	content: "";
	display: inline-block;
	width: 7px; height: 7px;
	margin-right: .55rem;
	border-radius: 2px;
	background: var(--orange);
	vertical-align: .1em;
}
.float-tag-1 { top: 10%; left: -14%; }
.float-tag-2 { top: 34%; right: -8%; animation-delay: -1.5s; }
.float-tag-3 { top: 60%; left: -10%; animation-delay: -3s; }
.float-tag-4 { bottom: 7%; right: 10%; animation-delay: -4.5s; }
@keyframes float { from { translate: 0 -8px; } to { translate: 0 8px; } }

.spin-badge {
	position: absolute;
	z-index: 4;
	left: -58px;
	bottom: -26px;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: var(--bg);
	color: var(--navy);
	display: grid;
	place-items: center;
	box-shadow: 0 0 0 8px var(--navy);
}
.spin-badge svg { position: absolute; inset: 6px; width: calc(100% - 12px); height: calc(100% - 12px); animation: spin 16s linear infinite; }
.spin-badge text { font-family: var(--font); font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; fill: currentColor; }
.spin-badge-core {
	width: 48px; height: 48px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--orange);
	color: #fff;
	transform: rotate(90deg);
	transition: transform .45s var(--ease);
}
.spin-badge-core svg { width: 20px; height: 20px; animation: none; position: static; }
.spin-badge:hover .spin-badge-core { transform: rotate(90deg) scale(1.12); }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
	.hero-panel { grid-template-columns: 1fr; min-height: 0; }
	.hero-visual { justify-self: center; max-width: 420px; }
	.float-tag-1 { left: 4%; }
	.float-tag-2 { right: 4%; }
	.float-tag-3 { left: 4%; }
	.spin-badge { left: auto; right: -6px; bottom: -34px; width: 116px; height: 116px; }
}
@media (max-width: 520px) {
	.hero-panel { padding-bottom: 4rem; }
	.hero-kicker { font-size: .85rem; }
	.hero-title { font-size: clamp(2.3rem, 10vw, 2.8rem); }
	.float-tag { font-size: .85rem; padding: .5rem .9rem; }
	.float-tag-4 { right: auto; left: 6%; bottom: 6%; }
}

/* Hero entrance (only when JS runs) */
.js .hero-kicker,
.js .hero-text,
.js .hero-actions { opacity: 0; transform: translateY(22px); }
.js .hero-title .line-inner { transform: translateY(108%); }
.js .kdot { scale: 0; }
.js .visual-frame { clip-path: inset(100% 0 0 0 round var(--r-card)); }
.js .big-mark .bar { transform: scaleY(0); }
.js .big-mark .dot { opacity: 0; transform: translateY(-120%); }
.js .float-tag { opacity: 0; scale: .6; }
.js .spin-badge { scale: 0; }

.is-ready .hero-kicker,
.is-ready .hero-text,
.is-ready .hero-actions,
.is-ready .hero-title .line-inner {
	opacity: 1;
	transform: none;
	transition: opacity .9s var(--ease), transform 1.1s var(--ease);
}
.is-ready .hero-kicker { transition-delay: .05s; }
.is-ready .line-strong .line-inner { transition-delay: .12s; }
.is-ready .line-light .line-inner { transition-delay: .26s; }
.is-ready .hero-text { transition-delay: .5s; }
.is-ready .hero-actions { transition-delay: .62s; }
.is-ready .kdot { scale: 1; transition: scale .6s var(--ease-back) .8s; }
.is-ready .line-light .kdot { transition-delay: .95s; }
.is-ready .visual-frame { clip-path: inset(0 0 0 0 round var(--r-card)); transition: clip-path 1.2s var(--ease) .25s; }
.is-ready .big-mark .bar { transform: none; transition: transform .9s var(--ease) .8s; }
.is-ready .big-mark .dot { opacity: 1; transform: none; transition: opacity .3s 1.3s, transform .7s var(--ease-back) 1.3s; }
.is-ready .float-tag { opacity: 1; scale: 1; transition: opacity .4s, scale .6s var(--ease-back); }
.is-ready .float-tag-1 { transition-delay: 1.4s; }
.is-ready .float-tag-2 { transition-delay: 1.55s; }
.is-ready .float-tag-3 { transition-delay: 1.7s; }
.is-ready .float-tag-4 { transition-delay: 1.85s; }
.is-ready .spin-badge { scale: 1; transition: scale .8s var(--ease-back) 1.1s; }


/* ---------- Clients ---------- */
.clients { padding-block: clamp(2.5rem, 5vw, 4rem) 0; }
.clients-title {
	text-align: center;
	color: var(--fg-muted);
	font-weight: 500;
	margin-bottom: 1.6rem;
}
.clients .team-empty { margin-inline: auto; }
.clients-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: .8rem;
}
.client {
	display: grid;
	place-items: center;
	height: 104px;
	padding: 1.2rem 1.5rem;
	border-radius: 18px;
	background: #fff;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
a.client:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -20px color-mix(in srgb, var(--navy) 40%, transparent); }
.client img { max-height: 52px; max-width: 100%; width: auto; height: auto; object-fit: contain; transition: filter .4s, opacity .4s; }
.client-name { font-weight: 700; font-size: 1.1rem; letter-spacing: -.01em; text-align: center; color: var(--navy); transition: color .4s; }
.is-muted .client img { filter: grayscale(1); opacity: .6; }
.is-muted .client-name { color: var(--fg-muted); }
.is-muted .client:hover img { filter: none; opacity: 1; }
.is-muted .client:hover .client-name { color: var(--navy); }
.clients-strip { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.clients-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.clients-strip:hover .clients-track { animation-play-state: paused; }
.clients-set { display: flex; gap: .8rem; padding-right: .8rem; }
.clients-set .client { width: 190px; }
@media (max-width: 520px) {
	.clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.client { height: 88px; padding: 1rem; }
	.clients-set .client { width: 150px; }
}

/* ---------- Marquee ---------- */
.marquee {
	padding-block: clamp(2rem, 4vw, 3rem);
	overflow: hidden;
}
.marquee-row { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.marquee-set { display: flex; align-items: center; flex: none; }
.marquee-word {
	font-size: clamp(1.7rem, 4vw, 3.2rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -.02em;
	white-space: nowrap;
	padding-inline: clamp(1rem, 2vw, 1.8rem);
}
.marquee-word.is-light { font-weight: 200; }
.marquee-sep {
	position: relative;
	flex: none;
	width: .55rem;
	height: 1.9rem;
	background: linear-gradient(var(--orange) 0 70%, transparent 70% 80%, var(--navy) 80%);
	border-radius: 3px;
}
.marquee:hover .marquee-row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { padding-top: clamp(2rem, 4vw, 3rem); }
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}
.service {
	position: relative;
	padding: clamp(1.75rem, 3vw, 2.6rem);
	border-radius: var(--r-card);
	background: #fff;
	overflow: hidden;
	isolation: isolate;
	transition: color .5s var(--ease);
}
.service::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--navy);
	clip-path: circle(0 at calc(100% - 50px) 50px);
	transition: clip-path .7s var(--ease);
}
.service:hover { color: #fff; }
.service:hover::before { clip-path: circle(150% at calc(100% - 50px) 50px); }
.service-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.service-icon {
	display: grid;
	place-items: center;
	width: 60px; height: 60px;
	border-radius: 18px;
	background: var(--bg);
	color: var(--orange);
	transition: background-color .5s, color .5s;
}
.service-icon svg { width: 28px; height: 28px; }
.service:hover .service-icon { background: var(--orange); color: #fff; }
.service-go {
	display: grid;
	place-items: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1.5px var(--line);
	transform: rotate(-45deg);
	transition: transform .5s var(--ease), background-color .4s, color .4s, box-shadow .4s;
}
.service-go svg { width: 20px; height: 20px; }
.service:hover .service-go { transform: rotate(0); background: #fff; color: var(--navy); box-shadow: none; }
.service h3 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); margin-bottom: .45em; }
.service p { color: var(--fg-muted); max-width: 44ch; transition: color .5s; }
.service:hover p { color: rgba(255, 255, 255, .75); }
.service-items { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.service-items li {
	padding: .42rem .9rem;
	border-radius: 999px;
	background: var(--bg);
	font-size: .88rem;
	font-weight: 500;
	transition: background-color .5s;
}
.service:hover .service-items li { background: rgba(255, 255, 255, .1); }
@media (max-width: 820px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Work (navy panel) ---------- */
.work {
	margin-inline: var(--edge);
	background: var(--navy);
	border-radius: var(--r-panel);
	overflow: hidden;
}
.track-controls { display: flex; gap: .6rem; }
.track-btn {
	width: 54px; height: 54px;
	border: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: transparent;
	color: #fff;
	box-shadow: inset 0 0 0 1.5px var(--line);
	cursor: pointer;
	transition: background-color .3s, color .3s;
}
.track-btn svg { width: 20px; height: 20px; }
.track-btn:hover { background: var(--orange); box-shadow: none; }

.work-track {
	--pad: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter) - var(--edge)));
	display: flex;
	gap: clamp(1rem, 2vw, 1.5rem);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: var(--pad);
	padding: .5rem var(--pad) .5rem;
	scrollbar-width: none;
	cursor: grab;
}
.work-track::-webkit-scrollbar { display: none; }
.work-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.work-track.is-dragging a { pointer-events: none; }

.work-card {
	position: relative;
	flex: none;
	width: clamp(260px, 29vw, 380px);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	-webkit-user-drag: none;
}
.work-media {
	position: relative;
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 20px;
	background: var(--navy-2);
}
.work-media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease);
	pointer-events: none;
}
.work-card:hover .work-media img { transform: scale(1.06); }
.work-card:hover .facet-fill::before { transform: translateX(-50%) scaleY(1.15); }
.work-meta h3 { margin: .65rem 0 .25rem; font-size: 1.3rem; font-weight: 600; }
.work-client { display: flex; gap: 1rem; color: var(--fg-muted); font-size: .95rem; margin: 0; }

.work-card-more,
.work-card-empty {
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: .7rem;
	aspect-ratio: 4 / 5;
	align-self: flex-start;
	border-radius: 20px;
	background: var(--navy-2);
	font-size: 1.25rem;
	font-weight: 600;
	transition: background-color .4s;
}
.work-card-more svg { width: 1.2em; height: 1.2em; transition: transform .4s var(--ease); }
.work-card-more:hover { background: var(--orange); }
.work-card-more:hover svg { transform: translateX(6px); }
.work-card-empty { width: min(560px, 85vw); aspect-ratio: 16 / 10; overflow: hidden; }
.work-card-empty .facet-fill { opacity: .3; }
.empty-text { position: relative; max-width: 36ch; font-size: 1rem; font-weight: 400; padding: 2rem; }
.empty-text strong { display: block; font-size: 1.4rem; margin-bottom: .5rem; }

.js .work-track .work-card { opacity: 0; transform: translateX(70px); }
.js .work-track.is-in .work-card {
	opacity: 1;
	transform: none;
	transition: opacity .8s var(--ease), transform 1s var(--ease);
}
.js .work-track.is-in .work-card:nth-child(2) { transition-delay: .08s; }
.js .work-track.is-in .work-card:nth-child(3) { transition-delay: .16s; }
.js .work-track.is-in .work-card:nth-child(4) { transition-delay: .24s; }
.js .work-track.is-in .work-card:nth-child(n+5) { transition-delay: .32s; }

.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
	gap: 2.5rem 1.5rem;
	padding-bottom: 5rem;
}
.work-grid .work-card { width: auto; }
.work-grid .work-meta h3 { color: var(--navy); }

/* ---------- Numbers ---------- */
.numbers { padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.numbers-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-block: 1px solid var(--line);
}
.number { padding: 2rem 1.5rem; }
.number + .number { border-left: 1px solid var(--line); }
.number-value {
	font-size: clamp(2.6rem, 5.5vw, 4.4rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
	margin: 0 0 .4rem;
	font-variant-numeric: tabular-nums;
}
.number-suffix { color: var(--orange); }
.number-label { color: var(--fg-muted); margin: 0; }
@media (max-width: 760px) {
	.numbers-grid { grid-template-columns: 1fr 1fr; }
	.number:nth-child(3) { border-left: 0; }
	.number:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- News ---------- */
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}
.news-grid-archive { padding-bottom: 3rem; }
.news-card {
	display: flex;
	flex-direction: column;
	padding: 10px;
	border-radius: var(--r-card);
	background: #fff;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px color-mix(in srgb, var(--navy) 35%, transparent); }
.news-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: 16px;
	background: var(--navy);
}
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.news-card:hover .news-media img { transform: scale(1.05); }
.news-body { padding: 1.2rem .9rem 1rem; }
.news-meta { display: flex; align-items: center; gap: .9rem; font-size: .88rem; color: var(--fg-muted); margin-bottom: .8rem; }
.news-card h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.25; }
.news-card h3 a:hover { color: var(--orange); }
.news-body > p:last-child { color: var(--fg-muted); margin: 0; }
@media (max-width: 960px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
}
.about-text { color: var(--fg-muted); font-size: 1.1rem; max-width: 54ch; }
.about-text p:first-child { color: var(--fg); font-size: 1.3rem; line-height: 1.5; }
.about-media {
	position: relative;
	margin: 0;
	aspect-ratio: 5 / 4;
	border-radius: var(--r-panel);
	overflow: hidden;
	background: var(--navy);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media .big-mark { width: 14%; top: 22%; bottom: 22%; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }


/* ---------- Team ---------- */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem 1.25rem;
}
.team-grid-page { padding-bottom: 2rem; }
.member { position: relative; }
.member-photo {
	position: relative;
	display: block;
	margin: 0;
	aspect-ratio: 4 / 5;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(150deg, var(--navy-2), var(--navy));
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 15%); transition: transform 1s var(--ease), filter .6s; }
.member-photo.is-whole { background: #fff; }
.member-photo.is-whole img { object-fit: contain; }
.member:hover .member-photo.is-whole img { transform: scale(1.02); }
.member:hover .member-photo img { transform: scale(1.05); }
.member-initials {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 200;
	letter-spacing: .02em;
}
.member-bar {
	position: absolute;
	left: 16px;
	bottom: 16px;
	width: 8px;
	height: 38%;
	border-radius: 4px;
	background: var(--orange);
	transform: scaleY(0);
	transform-origin: 50% 100%;
	transition: transform .6s var(--ease);
}
.member:hover .member-bar { transform: scaleY(1); }
.member-links {
	list-style: none;
	display: flex;
	gap: .4rem;
	padding: 0;
	margin: -58px 0 16px 36px;
	position: relative;
	z-index: 2;
	height: 42px;
}
.member-links a {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: #fff;
	color: var(--navy);
	box-shadow: 0 6px 18px rgba(0, 10, 30, .18);
	transition: background-color .3s, color .3s;
}
.member-links a:hover { background: var(--orange); color: #fff; }
.member-links svg { width: 17px; height: 17px; }
@media (hover: hover) {
	.member .member-links li {
		opacity: 0;
		translate: 0 12px;
		transition: opacity .4s var(--ease), translate .5s var(--ease);
	}
	.member:hover .member-links li,
	.member:focus-within .member-links li { opacity: 1; translate: 0 0; }
	.member:hover .member-links li:nth-child(2) { transition-delay: .05s; }
	.member:hover .member-links li:nth-child(3) { transition-delay: .1s; }
	.member:hover .member-links li:nth-child(4) { transition-delay: .15s; }
}
.member h3 { margin: 1.1rem 0 .15rem; font-size: 1.25rem; font-weight: 600; }
.member:has(.member-links) h3 { margin-top: 1.1rem; }
.member h3 a:hover { color: var(--orange); }
.member-role { margin: 0; color: var(--orange); font-weight: 500; font-size: .95rem; }

.team-empty {
	display: block;
	max-width: 560px;
	padding: 2rem;
	border-radius: var(--r-card);
	background: #fff;
	box-shadow: inset 0 0 0 2px var(--line);
	color: var(--fg-muted);
}
.team-empty strong { display: block; color: var(--fg); font-size: 1.3rem; margin-bottom: .4rem; }

.team-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-block: clamp(3rem, 6vw, 5rem);
	padding: clamp(2rem, 4vw, 3rem);
	border-radius: var(--r-panel);
	background: #fff;
}
.team-cta h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.4rem); }

.member-single { padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem)); padding-bottom: 5rem; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; color: var(--fg-muted); margin-bottom: 2rem; }
.back-link svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.back-link:hover { color: var(--orange); }
.back-link:hover svg { transform: translateX(-4px); }
.member-single-grid {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: start;
}
.member-photo-large { border-radius: var(--r-panel); }
.member-bio h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.03em; margin-top: 1rem; }
.member-lead { font-size: 1.3rem; line-height: 1.5; }
.member-bio .entry-content { font-size: 1.1rem; }
.member-links-static { margin: 2rem 0 0; height: auto; }
.member-links-static a { box-shadow: inset 0 0 0 1.5px var(--line); }

@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .member-single-grid { grid-template-columns: 1fr; } .member-photo-large { max-width: 420px; } }
@media (max-width: 420px) {
	.team-grid { gap: 1.5rem .8rem; }
	.member h3 { font-size: 1.05rem; }
	.member-role { font-size: .85rem; }
	.member-links { margin-left: 12px; }
	.member-links a { width: 34px; height: 34px; }
}

/* ---------- Contact (navy panel) ---------- */
.contact { padding-bottom: var(--edge); }
.contact > .wrap { max-width: none; padding-inline: var(--edge); }
.contact-card {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: clamp(2rem, 5vw, 4rem);
	padding: clamp(2rem, 6vw, 5rem);
	background: #fff;
	border-radius: var(--r-panel);
}
.contact-main h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); font-weight: 800; letter-spacing: -.03em; }
.contact-lead { color: var(--fg-muted); font-size: 1.15rem; max-width: 44ch; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 2rem 0 2.5rem; }
.btn-wa { background: #25D366; color: #06331a; }
.admin-note {
	padding: 1rem 1.2rem;
	border-radius: 14px;
	background: color-mix(in srgb, var(--orange) 10%, transparent);
	font-size: .95rem;
}
.contact-details { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact-details > li { display: flex; gap: .9rem; align-items: flex-start; color: var(--fg-muted); }
.contact-details svg { width: 22px; height: 22px; flex: none; color: var(--orange); margin-top: .15rem; }
.contact-map { height: 100%; min-height: 340px; overflow: hidden; border-radius: 20px; background: var(--bg); }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.contact-map-wide { margin-top: var(--edge); height: 380px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	padding: .9rem 1.1rem;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--bg);
	color: var(--navy);
	font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--orange); border-color: transparent; }
.contact-form input[type="submit"],
.contact-form button {
	width: auto;
	padding: 1rem 1.8rem;
	border: 0;
	border-radius: 999px;
	background: var(--orange);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}
@media (max-width: 900px) { .contact-card { grid-template-columns: 1fr; } }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
	position: fixed;
	right: calc(1.25rem + env(safe-area-inset-right, 0px));
	bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
	z-index: 90;
	display: flex;
	align-items: center;
	gap: .6rem;
	height: 58px;
	padding: 0 17px;
	border-radius: 30px;
	background: #25D366;
	color: #06331a;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(0, 20, 50, .25);
	transition: transform .35s var(--ease-back);
}
.wa-float svg { width: 25px; height: 25px; }
.wa-float span { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .5s var(--ease); }
.wa-float:hover { transform: translateY(-3px); }
.wa-float:hover span { max-width: 180px; }

/* ---------- Footer (navy panel) ---------- */
.site-footer {
	margin: var(--edge);
	padding: clamp(3rem, 6vw, 4.5rem) 0 calc(1.8rem + env(safe-area-inset-bottom, 0px));
	background: var(--navy);
	border-radius: var(--r-panel);
}
.home-main + .site-footer { margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.footer-logo img { width: 150px; height: auto; }
.footer-brand p { color: var(--fg-muted); max-width: 34ch; margin-top: 1.4rem; }
.footer-nav .menu { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-nav a,
.footer-contact a { transition: color .3s; }
.footer-nav a:hover,
.footer-contact a:hover { color: var(--orange-hi); }
.footer-contact { color: var(--fg-muted); display: grid; gap: 1rem; align-content: start; }
.socials { list-style: none; display: flex; gap: .5rem; padding: 0; margin: 1.5rem 0 0; }
.socials a {
	width: 42px; height: 42px;
	display: grid; place-items: center;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1.5px var(--line);
	transition: background-color .3s, box-shadow .3s;
}
.socials svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--orange); box-shadow: none; }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	color: var(--fg-muted);
	font-size: .9rem;
}
.footer-bottom p { margin: 0; }
.to-top:hover { color: #fff; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- Inner pages ---------- */
.inner-main { min-height: 60vh; }
.page-hero { padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(2.5rem, 5vw, 3.5rem); }
.page-hero h1 { font-size: clamp(2.3rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: -.03em; max-width: 20ch; }
.page-hero p,
.archive-desc { color: var(--fg-muted); font-size: 1.15rem; max-width: 56ch; }
.entry-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; color: var(--fg-muted); margin-bottom: 1.3rem; }
.entry-cover { margin: 0 auto 3.5rem; }
.entry-cover img { width: 100%; border-radius: var(--r-panel); }

.entry-content { font-size: 1.15rem; line-height: 1.75; color: color-mix(in srgb, var(--navy) 88%, #000); }
.entry-content > * { margin-block: 0 1.4em; }
.entry-content h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 2em; }
.entry-content h3 { margin-top: 1.8em; }
.entry-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
	margin-inline: 0;
	padding: .2rem 0 .2rem 1.5rem;
	border-left: 4px solid var(--orange);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.45;
}
.entry-content img { border-radius: 16px; }
.entry-content .alignwide { width: min(1100px, 100vw - 2 * var(--gutter)); margin-inline: 50%; transform: translateX(-50%); }
.entry-content .alignfull { width: 100vw; margin-inline: 50%; transform: translateX(-50%); max-width: none; }
.entry-content .wp-block-button__link { background: var(--orange); color: #fff; border-radius: 999px; text-decoration: none; }
.entry-content pre,
.entry-content code { background: #fff; border-radius: 8px; }
.entry-content pre { padding: 1rem; overflow-x: auto; }
.entry-content figcaption { color: var(--fg-muted); font-size: .9rem; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content td,
.entry-content th { border-bottom: 1px solid var(--line); padding: .6rem; text-align: left; }
.wp-block-table { overflow-x: auto; }

.entry-nav {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-block: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
	font-weight: 600;
}
.entry-nav a:hover { color: var(--orange); }
.entry-nav .next { margin-left: auto; text-align: right; }

.filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.filter a {
	padding: .6rem 1.2rem;
	border-radius: 999px;
	background: #fff;
	font-weight: 500;
	transition: background-color .3s, color .3s;
}
.filter a:hover,
.filter a.is-active { background: var(--navy); color: #fff; }

.nav-links { display: flex; gap: .5rem; flex-wrap: wrap; padding-bottom: 4rem; }
.page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 1rem; border-radius: 999px; background: #fff; }
.page-numbers.current { background: var(--navy); color: #fff; }

.page-404 { text-align: center; min-height: 70vh; display: grid; align-content: center; }
.page-404 h1,
.page-404 p { margin-inline: auto; }
.mark-404 { position: relative; top: auto; left: auto; width: 30px; height: 96px; margin: 0 auto 2rem; }
.mark-404 .dot { background: var(--navy); }

.search-form { display: flex; gap: .5rem; max-width: 460px; margin: 1.5rem auto; }
.search-form label { flex: 1; }
.search-field {
	width: 100%;
	padding: .9rem 1.2rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--navy);
	font: inherit;
}
.search-submit {
	padding: .9rem 1.4rem;
	border: 0;
	border-radius: 999px;
	background: var(--navy);
	color: #fff;
	font: 600 1rem var(--font);
	cursor: pointer;
}
.empty-state { color: var(--fg-muted); padding-bottom: 5rem; }

.comments { margin-bottom: 4rem; }
.comment-list { padding-left: 1.2rem; }
.comment-respond input,
.comment-respond textarea {
	width: 100%;
	padding: .8rem 1rem;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	color: var(--navy);
	font: inherit;
}
.comment-respond .submit { width: auto; background: var(--orange); color: #fff; border: 0; border-radius: 999px; padding: .9rem 1.6rem; cursor: pointer; }

/* ---------- Scroll reveals ---------- */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .9s var(--ease) var(--d, 0ms), transform 1s var(--ease) var(--d, 0ms);
}
.js [data-reveal="cut"] {
	opacity: 1;
	transform: none;
	clip-path: inset(100% 0 0 0 round var(--r-panel));
	transition: clip-path 1.2s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal="cut"].is-in { clip-path: inset(0 0 0 0 round var(--r-panel)); }
.js .numbers-grid [data-reveal]:nth-child(2) { --d: 80ms; }
.js .numbers-grid [data-reveal]:nth-child(3) { --d: 160ms; }
.js .numbers-grid [data-reveal]:nth-child(4) { --d: 240ms; }
.js .about-media.is-in .big-mark .bar { animation: grow 1s var(--ease) .5s both; }
.js .about-media.is-in .big-mark .dot { animation: drop .7s var(--ease-back) 1.1s both; }

/* Customizer preview: never hide content while editing */
.customize-partial-edit-shortcuts-shown [data-reveal] { opacity: 1; transform: none; clip-path: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .001s !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001s !important;
		transition-delay: 0s !important;
		scroll-behavior: auto !important;
	}
	.marquee-row { transform: none; }
	.js [data-reveal] { opacity: 1; transform: none; }
	.js [data-reveal="cut"] { clip-path: none; }
}
.js .service[data-reveal] {
	transition: opacity .9s var(--ease) var(--d, 0ms), transform 1s var(--ease) var(--d, 0ms), color .5s var(--ease);
}
