:root {
	--color-ink: #080908;
	--color-panel: #10120f;
	--color-panel-soft: #171a16;
	--color-paper: #f6f2e8;
	--color-muted: #b8baad;
	--color-line: rgba(246, 242, 232, 0.14);
	--color-accent: #c9ff3d;
	--color-accent-strong: #a8e62d;
	--color-pink: #ff3f8f;
	--color-coral: #ff6b4a;
	--color-teal: #44d7c6;
	--font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--container: 1180px;
	--radius: 8px;
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

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

html {
	scroll-behavior: smooth;
	scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

body {
	margin: 0;
	background:
		linear-gradient(90deg, rgba(246, 242, 232, 0.032) 0 1px, transparent 1px 120px),
		linear-gradient(180deg, rgba(246, 242, 232, 0.024) 0 1px, transparent 1px 120px),
		var(--color-ink);
	color: var(--color-paper);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-ms-overflow-style: none;
	text-rendering: optimizeLegibility;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: 0;
	content: "";
	pointer-events: none;
	background:
		radial-gradient(circle, rgba(246, 242, 232, 0.16) 0 0.7px, transparent 0.8px) 0 0 / 6px 6px,
		linear-gradient(135deg, transparent 0 48%, rgba(201, 255, 61, 0.08) 48% 49%, transparent 49% 100%);
	opacity: 0.12;
}

body.mobile-menu-open {
	overflow: hidden;
}

.site-main,
.site-footer {
	position: relative;
	z-index: 1;
}

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

img {
	height: auto;
}

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

a:hover,
a:focus {
	color: var(--color-accent);
}

.has-drop360-cursor,
.has-drop360-cursor * {
	cursor: none !important;
}

.drop360-scrollbar {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 8998;
	width: 7px;
	height: 100vh;
	background: #171817;
	pointer-events: none;
	transition: opacity 180ms ease;
}

.drop360-scrollbar.is-hidden {
	opacity: 0;
}

.drop360-scrollbar-thumb {
	position: absolute;
	top: 0;
	right: 0;
	width: 4px;
	min-height: 70px;
	background: #ff3f8f;
	will-change: transform, height;
}

p {
	margin: 0 0 1rem;
	color: var(--color-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--color-paper);
	font-weight: 900;
	line-height: 1.03;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(3rem, 8vw, 7.5rem);
	max-width: 1050px;
}

h2 {
	font-size: clamp(2rem, 5vw, 4.75rem);
}

h3 {
	font-size: clamp(1.1rem, 2vw, 1.45rem);
}

button,
input,
textarea {
	font: inherit;
}

input,
textarea {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	color: var(--color-paper);
	padding: 0.85rem 1rem;
}

input::placeholder,
textarea::placeholder {
	color: rgba(246, 242, 232, 0.58);
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--color-accent);
	color: var(--color-ink);
	border-radius: var(--radius);
}

.container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

.narrow-container {
	width: min(100% - 32px, 860px);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--color-line);
	background: rgba(8, 9, 8, 0.88);
	backdrop-filter: blur(18px);
}

.admin-bar .site-header {
	top: 32px;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 1.5rem;
}

.site-branding {
	flex: 0 0 auto;
}

.custom-logo {
	width: auto;
	max-height: 54px;
}

.site-logo-text {
	display: inline-flex;
	align-items: center;
	font-size: 1.35rem;
	font-weight: 900;
	color: var(--color-paper);
}

.site-logo-text span {
	color: var(--color-accent);
}

.nav-menu,
.footer-menu,
.mobile-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 1.35rem;
}

.nav-menu a {
	color: var(--color-muted);
	font-size: 0.95rem;
	font-weight: 700;
}

.nav-menu .current-menu-item > a,
.nav-menu a:hover,
.nav-menu a:focus {
	color: var(--color-paper);
}

.nav-menu .menu-item-has-children {
	position: relative;
}

.nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 0.6rem;
	list-style: none;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: #121510;
	box-shadow: var(--shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: 160ms ease;
}

.nav-menu .menu-item-has-children:hover .sub-menu,
.nav-menu .menu-item-has-children:focus-within .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-menu .sub-menu a {
	display: block;
	padding: 0.65rem 0.75rem;
	border-radius: 6px;
}

.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu a:focus {
	background: rgba(201, 255, 61, 0.1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.button,
.wp-block-button__link,
button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 48px;
	padding: 0.8rem 1.05rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
button[type="submit"]:hover,
button[type="submit"]:focus {
	transform: translateY(-1px);
}

.button.is-cursor-absorbing,
.wp-block-button__link.is-cursor-absorbing,
button.is-cursor-absorbing,
input[type="button"].is-cursor-absorbing,
input[type="submit"].is-cursor-absorbing,
[role="button"].is-cursor-absorbing,
.mobile-menu-toggle.is-cursor-absorbing,
.mobile-menu-close.is-cursor-absorbing {
	transform: translateY(-1px) scale(1.015);
	box-shadow: 0 0 0 6px rgba(201, 255, 61, 0.08);
}

.button svg,
.text-link svg,
.icon-badge svg,
.mobile-menu-toggle svg,
.mobile-menu-close svg {
	width: 1.1rem;
	height: 1.1rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.drop360-cursor-spotlight,
.drop360-cursor-label {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	will-change: transform, width, height, opacity, background-color, box-shadow;
}

.drop360-cursor-spotlight {
	display: flex;
	z-index: 10000;
	width: 80px;
	height: 80px;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 50%;
	background: #fff;
	color: var(--color-ink);
	mix-blend-mode: difference;
	transition:
		width 180ms ease,
		height 180ms ease,
		opacity 160ms ease,
		background-color 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease,
		filter 220ms ease;
}

.drop360-cursor-spotlight::after {
	position: absolute;
	inset: -8px;
	border: 1px solid var(--drop360-cursor-color, currentColor);
	border-radius: inherit;
	content: "";
	opacity: 0;
	transform: scale(0.72);
	transition: opacity 220ms ease, transform 260ms ease;
}

.drop360-cursor-label {
	display: block;
	z-index: 9999;
	width: max-content;
	height: auto;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	filter: none !important;
	isolation: isolate;
	mix-blend-mode: normal !important;
	overflow: visible;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
	text-transform: uppercase;
	transition: opacity 140ms ease;
}

.drop360-cursor-label-text {
	display: block;
	font: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	pointer-events: none;
	text-transform: inherit;
	white-space: nowrap;
}

.drop360-cursor-spotlight.is-visible,
.drop360-cursor-label.is-visible {
	opacity: 1;
}

.drop360-cursor-spotlight.is-interactive {
	width: 38px;
	height: 38px;
}

.drop360-cursor-spotlight.is-absorbed {
	width: 58px;
	height: 58px;
	border-color: var(--drop360-cursor-color, var(--color-ink));
	background: var(--drop360-cursor-bg, var(--color-accent));
	color: var(--drop360-cursor-color, var(--color-ink));
	box-shadow: 0 14px 44px var(--drop360-cursor-glow, rgba(201, 255, 61, 0.28));
	filter: saturate(1.12);
	mix-blend-mode: normal;
}

.drop360-cursor-spotlight.is-absorbed.is-menu-toggle-target {
	border-color: var(--drop360-cursor-menu-border, rgba(255, 255, 255, 0.62));
	background: var(--drop360-cursor-menu-bg, rgba(255, 255, 255, 0.05));
	box-shadow:
		inset 0 0 0 1px var(--drop360-cursor-menu-glow, rgba(255, 255, 255, 0.12)),
		0 0 24px var(--drop360-cursor-menu-glow, rgba(255, 255, 255, 0.12));
	filter: none;
}

.drop360-cursor-spotlight.is-absorbed::after {
	opacity: 0.44;
	transform: scale(1);
}

.drop360-cursor-spotlight.is-absorbed.is-menu-toggle-target::after {
	opacity: 0.2;
}

.drop360-cursor-label.is-interactive {
	opacity: 0;
}

.drop360-cursor-spotlight.is-pressed {
	width: 32px;
	height: 32px;
}

.drop360-cursor-spotlight.is-absorbed.is-pressed {
	width: 48px;
	height: 48px;
}

.icon-badge svg path,
.icon-badge svg circle {
	fill: currentColor;
	stroke: none;
}

.button-accent,
.wp-block-button__link,
button[type="submit"] {
	background: var(--color-accent);
	color: var(--color-ink);
}

.button-accent:hover,
.button-accent:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	background: var(--color-accent-strong);
	color: var(--color-ink);
}

.button-ghost {
	border-color: var(--color-line);
	background: rgba(255, 255, 255, 0.04);
	color: var(--color-paper);
}

.mobile-menu-toggle,
.mobile-menu-close {
	display: none;
	position: relative;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
	color: var(--color-paper);
	overflow: hidden;
}

.mobile-menu-panel {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(0, 0, 0, 0.62);
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, -100%, 0);
	transition: transform 560ms cubic-bezier(0.76, 0, 0.24, 1), opacity 320ms ease;
	will-change: transform, opacity;
}

.mobile-menu-panel.is-open,
.mobile-menu-panel.is-closing {
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu-panel.is-open {
	transform: translate3d(0, 0, 0);
}

.mobile-menu-panel.is-closing {
	pointer-events: none;
	transform: translate3d(0, -100%, 0);
}

.mobile-menu-surface {
	width: min(92vw, 420px);
	height: 100%;
	margin-left: auto;
	padding: 1rem;
	background: var(--color-panel);
	box-shadow: var(--shadow);
}

.mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.mobile-nav-menu a {
	display: block;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--color-line);
	font-weight: 800;
}

.mobile-cta {
	width: 100%;
	margin-top: 1.5rem;
}

.hero-section {
	position: relative;
	min-height: calc(100vh - 78px);
	overflow: hidden;
	background:
		linear-gradient(rgba(8, 9, 8, 0.72), rgba(8, 9, 8, 0.92)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
		var(--color-ink);
}

.hero-section::before,
.hero-section::after {
	position: absolute;
	z-index: 1;
	pointer-events: none;
	font-weight: 950;
	line-height: 0.85;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-section::before {
	top: 7rem;
	left: max(1rem, calc((100vw - var(--container)) / 2));
	content: "DROP360";
	color: transparent;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px rgba(246, 242, 232, 0.18);
	font-size: 12rem;
	opacity: 0.78;
	paint-order: stroke;
}

.hero-section::after {
	top: 10rem;
	right: -4rem;
	content: "DROP360";
	padding: 0.16em 0.34em 0.2em;
	background:
		repeating-linear-gradient(135deg, transparent 0 9px, rgba(8, 9, 8, 0.2) 9px 13px),
		linear-gradient(90deg, var(--color-accent), #fff159);
	color: var(--color-ink);
	font-size: 3.5rem;
	transform: rotate(-1.2deg);
}

.hero-video {
	position: absolute;
	inset: 50% auto auto 50%;
	z-index: 0;
	width: 177.78vh;
	min-width: 100%;
	height: 100vh;
	min-height: 100%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	border: 0;
	opacity: 0.42;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(8, 9, 8, 0.22), var(--color-ink));
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: calc(100vh - 78px);
	flex-direction: column;
	justify-content: flex-end;
	padding: 7rem 0 3rem;
}

.eyebrow {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 1rem;
	color: var(--color-accent);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.hero-row {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.6fr);
	gap: 2rem;
	align-items: end;
	margin-top: 1.4rem;
	padding-top: 1.6rem;
	border-top: 1px solid var(--color-line);
}

.hero-row p {
	max-width: 680px;
	font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.75rem;
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2.5rem;
}

.hero-metrics div,
.feature-list div,
.service-card,
.card,
.testimonial-card,
.person-card,
.cta-box {
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.045);
}

.hero-metrics div {
	padding: 1rem;
}

.hero-metrics strong {
	display: block;
	color: var(--color-accent);
	font-size: 1.35rem;
	line-height: 1;
}

.hero-metrics span {
	display: block;
	margin-top: 0.35rem;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.section {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 9vw, 7rem) 0;
}

.section > .container {
	position: relative;
	z-index: 1;
}

.services-section::before,
.dark-band::before,
.testimonial-section::before,
.team-client-section::before,
.blog-section::before {
	position: absolute;
	z-index: 0;
	content: "DROP360";
	color: transparent;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px rgba(246, 242, 232, 0.12);
	font-size: 10rem;
	font-weight: 950;
	line-height: 0.82;
	letter-spacing: 0;
	paint-order: stroke;
	pointer-events: none;
	text-transform: uppercase;
}

.services-section::before {
	top: 2rem;
	right: -4rem;
}

.services-section::after,
.dark-band::after,
.team-client-section::after {
	position: absolute;
	z-index: 0;
	content: "";
	pointer-events: none;
}

.services-section::after {
	top: 5.5rem;
	left: 0;
	width: 22rem;
	height: 12px;
	background:
		linear-gradient(135deg, var(--color-accent) 25%, transparent 25%) 0 0 / 24px 12px,
		linear-gradient(225deg, var(--color-accent) 25%, transparent 25%) 0 0 / 24px 12px;
	opacity: 0.18;
}

@supports not (-webkit-text-stroke: 1px #fff) {
	.hero-section::before,
	.services-section::before,
	.dark-band::before,
	.testimonial-section::before,
	.team-client-section::before,
	.blog-section::before {
		color: rgba(246, 242, 232, 0.055);
		-webkit-text-fill-color: rgba(246, 242, 232, 0.055);
	}
}

.section-heading {
	margin-bottom: 2rem;
}

.split-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
	gap: 2rem;
	align-items: end;
}

.split-heading > p,
.split-heading > h3 {
	align-self: end;
}

.service-grid,
.case-grid,
.testimonial-grid,
.team-client-grid,
.post-grid {
	display: grid;
	gap: 1rem;
}

.service-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
	min-height: 310px;
	padding: 1.25rem;
	background: var(--color-panel-soft);
	transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card:hover,
.service-card:focus-within,
.card:hover,
.card:focus-within,
.testimonial-card:hover,
.testimonial-card:focus-within,
.person-card:hover,
.person-card:focus-within {
	border-color: rgba(201, 255, 61, 0.46);
	transform: translateY(-4px);
}

.service-card:nth-child(3n + 2) .icon-badge {
	color: var(--color-coral);
}

.service-card:nth-child(3n) .icon-badge {
	color: var(--color-teal);
}

.icon-badge {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	border-radius: 50%;
	background: rgba(201, 255, 61, 0.12);
	color: var(--color-accent);
}

.service-card h3 {
	margin-bottom: 0.75rem;
}

.dark-band {
	background:
		linear-gradient(90deg, rgba(255, 63, 143, 0.07) 0 1px, transparent 1px 84px),
		var(--color-panel);
}

.dark-band::before {
	right: -5rem;
	bottom: 1.25rem;
	content: "PORTFOLIO";
	-webkit-text-stroke-color: rgba(246, 242, 232, 0.11);
	font-size: 9rem;
}

.dark-band::after {
	top: 0;
	left: max(1rem, calc((100vw - var(--container)) / 2));
	width: 4rem;
	height: 100%;
	background:
		linear-gradient(var(--color-pink), var(--color-pink)) 0 0 / 4px 100% no-repeat,
		repeating-linear-gradient(0deg, rgba(246, 242, 232, 0.22) 0 1px, transparent 1px 18px);
	opacity: 0.32;
}

.case-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
	overflow: hidden;
	background: var(--color-panel-soft);
	transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.card-media,
.media-placeholder {
	display: block;
	aspect-ratio: 16 / 11;
	width: 100%;
	background: #20241b;
}

.card-media img,
.person-card img,
.entry-featured img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(135deg, rgba(201, 255, 61, 0.2), rgba(255, 107, 74, 0.16)),
		#151812;
}

.media-placeholder span {
	color: rgba(246, 242, 232, 0.52);
	font-weight: 900;
}

.card-content {
	padding: 1.15rem;
}

.card-meta,
.meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 0.75rem;
	color: var(--color-muted);
	font-size: 0.82rem;
	font-weight: 800;
}

.card-meta svg {
	width: 1rem;
	height: 1rem;
	stroke: var(--color-accent);
}

.card-content h3 {
	margin-bottom: 0.75rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--color-accent);
	font-weight: 900;
}

.split-feature {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.58fr);
	gap: 2rem;
	align-items: start;
}

.feature-list {
	display: grid;
	gap: 0.8rem;
}

.feature-list div {
	padding: 1rem;
}

.feature-list strong,
.feature-list span {
	display: block;
}

.feature-list strong {
	margin-bottom: 0.25rem;
}

.feature-list span {
	color: var(--color-muted);
}

.testimonial-section {
	background:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px),
		var(--color-ink);
}

.testimonial-section::before {
	top: 1.4rem;
	left: -3.5rem;
	content: "360";
	-webkit-text-stroke-color: rgba(68, 215, 198, 0.16);
	font-size: 13rem;
}

.testimonial-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.055);
	transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.testimonial-card svg {
	width: 2rem;
	height: 2rem;
	margin-bottom: 1rem;
	color: var(--color-accent);
	fill: currentColor;
}

.testimonial-card strong,
.testimonial-card span {
	display: block;
}

.testimonial-card span {
	color: var(--color-muted);
}

.cta-section {
	padding-top: 0;
}

.cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: clamp(1.25rem, 4vw, 2rem);
	background: var(--color-paper);
	color: var(--color-ink);
}

.cta-box h2,
.cta-box p {
	color: var(--color-ink);
}

.cta-box .eyebrow {
	color: #516a0d;
}

.cta-box .button-accent {
	background: var(--color-ink);
	color: var(--color-paper);
}

.team-client-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-client-section::before {
	top: 1.5rem;
	right: -4.5rem;
	content: "STUDIO";
	-webkit-text-stroke-color: rgba(201, 255, 61, 0.13);
	font-size: 10rem;
}

.team-client-section::after {
	right: max(1rem, calc((100vw - var(--container)) / 2));
	bottom: 3rem;
	width: 11rem;
	height: 11rem;
	border: 1px solid rgba(246, 242, 232, 0.12);
	background:
		linear-gradient(90deg, rgba(255, 63, 143, 0.5) 0 4px, transparent 4px 100%),
		linear-gradient(180deg, rgba(68, 215, 198, 0.34) 0 4px, transparent 4px 100%);
	opacity: 0.55;
}

.person-card {
	padding: 0.75rem;
	background: var(--color-panel-soft);
	transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.person-card img,
.avatar-placeholder {
	aspect-ratio: 1 / 1;
	width: 100%;
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(68, 215, 198, 0.18), rgba(201, 255, 61, 0.16)),
		#171a16;
	object-fit: cover;
}

.person-card h3 {
	margin-top: 1rem;
}

.person-card p {
	margin-bottom: 0;
}

.post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-section::before {
	top: 1rem;
	left: -4rem;
	content: "NOTES";
	-webkit-text-stroke-color: rgba(255, 107, 74, 0.13);
	font-size: 10rem;
}

.site-footer {
	padding: 4rem 0 2rem;
	border-top: 1px solid var(--color-line);
	background: #0b0c0b;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.7fr 1.2fr;
	gap: 2rem;
}

.footer-grid h2 {
	margin-bottom: 1rem;
	font-size: 1rem;
}

.footer-brand p {
	margin-top: 1rem;
}

.footer-contact {
	display: grid;
	gap: 0.35rem;
	margin-top: 1rem;
	color: var(--color-muted);
}

.footer-menu a {
	display: block;
	padding: 0.25rem 0;
	color: var(--color-muted);
}

.newsletter-form,
.search-form {
	display: flex;
	gap: 0.6rem;
}

.newsletter-form input,
.search-form input {
	min-width: 0;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1rem;
}

.social-links a {
	padding: 0.45rem 0.65rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	color: var(--color-muted);
	font-size: 0.85rem;
	font-weight: 800;
}

.footer-bottom {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 3rem;
	padding-top: 1rem;
	border-top: 1px solid var(--color-line);
	color: var(--color-muted);
}

.footer-wordmark {
	color: rgba(246, 242, 232, 0.12);
	font-size: clamp(2.4rem, 8vw, 6.5rem);
	font-weight: 900;
	line-height: 0.9;
}

.archive-header {
	margin-bottom: 2rem;
}

.archive-description {
	max-width: 720px;
	margin-top: 1rem;
	color: var(--color-muted);
}

.entry-content-wrap {
	display: grid;
	gap: 1.5rem;
}

.entry-header h1,
.entry-header h2 {
	margin-bottom: 0.75rem;
}

.entry-meta {
	color: var(--color-muted);
	font-weight: 700;
}

.entry-featured {
	overflow: hidden;
	border-radius: var(--radius);
}

.video-frame {
	aspect-ratio: 16 / 9;
	background: var(--color-panel);
}

.video-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.entry-featured img {
	max-height: 540px;
}

.entry-body {
	color: var(--color-paper);
}

.entry-body a {
	color: var(--color-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.entry-body ul,
.entry-body ol {
	color: var(--color-muted);
}

.page-links,
.post-navigation,
.comments-area,
.empty-state {
	margin-top: 2rem;
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.post-navigation a,
.empty-state {
	display: block;
	padding: 1rem;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.045);
}

.post-navigation span {
	display: block;
	color: var(--color-accent);
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.comment-list {
	padding-left: 1.2rem;
}

.comment-form {
	display: grid;
	gap: 1rem;
}

.not-found-page .button {
	margin-top: 1rem;
}

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2rem;
}

.page-numbers {
	display: inline-flex;
	min-width: 42px;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	color: var(--color-muted);
	font-weight: 800;
}

.page-numbers.current {
	background: var(--color-accent);
	color: var(--color-ink);
}

@media (max-width: 1024px) {
	.primary-navigation,
	.header-cta {
		display: none;
	}

	.hero-section::before {
		top: 6rem;
		font-size: 9rem;
	}

	.hero-section::after {
		top: 8rem;
		right: -5rem;
		font-size: 2.7rem;
	}

	.services-section::before,
	.team-client-section::before,
	.blog-section::before {
		font-size: 7rem;
	}

	.dark-band::before {
		font-size: 6.5rem;
	}

	.testimonial-section::before {
		font-size: 9rem;
	}

	.mobile-menu-toggle,
	.mobile-menu-close {
		display: inline-flex;
	}

	.service-grid,
	.team-client-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.case-grid,
	.testimonial-grid,
	.post-grid,
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-newsletter {
		grid-column: 1 / -1;
	}
}

@media (hover: none), (pointer: coarse) {
	.has-drop360-cursor,
	.has-drop360-cursor * {
		cursor: auto !important;
	}

	.drop360-cursor-spotlight,
	.drop360-cursor-label {
		display: none;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	body::before {
		opacity: 0.08;
	}

	.hero-section::before {
		top: 5.5rem;
		left: 1rem;
		font-size: 6rem;
	}

	.hero-section::after {
		top: 7rem;
		right: -4.5rem;
		font-size: 2rem;
	}

	.services-section::before,
	.dark-band::before,
	.testimonial-section::before,
	.team-client-section::before,
	.blog-section::before {
		font-size: 5.5rem;
	}

	.services-section::after {
		width: 15rem;
	}

	.team-client-section::after {
		display: none;
	}

	.hero-row,
	.split-heading,
	.split-feature,
	.cta-box,
	.footer-bottom {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-actions {
		justify-content: flex-start;
	}

	.hero-metrics,
	.service-grid,
	.case-grid,
	.testimonial-grid,
	.team-client-grid,
	.post-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.newsletter-form,
	.search-form {
		flex-direction: column;
	}

	.newsletter-form .button,
	.search-form .button {
		width: 100%;
	}
}

@media (max-width: 600px) {
	body {
		font-size: 15px;
	}

	.hero-section::before {
		font-size: 4.4rem;
	}

	.hero-section::after {
		display: none;
	}

	.services-section::before,
	.dark-band::before,
	.testimonial-section::before,
	.team-client-section::before,
	.blog-section::before {
		font-size: 4.2rem;
	}

	.dark-band::after {
		opacity: 0.18;
	}

	.admin-bar .site-header {
		top: 0;
	}

	.header-inner {
		min-height: 68px;
	}

	.hero-content {
		min-height: calc(100vh - 68px);
		padding-top: 5rem;
	}

	.hero-actions .button {
		width: 100%;
	}

	.section {
		padding: 3.5rem 0;
	}
}

/* Modern fixed agency menu */
.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 9000;
	height: 0;
	border: 0;
	background: transparent;
	backdrop-filter: none;
	pointer-events: none;
}

body.mobile-menu-open .site-header,
body.mobile-menu-closing .site-header {
	z-index: 9010;
}

.admin-bar .site-header {
	top: 32px;
}

.header-inner {
	width: auto;
	min-height: 0;
	margin: 0;
}

.site-branding {
	position: fixed;
	top: clamp(1.4rem, 3vw, 3.1rem);
	left: clamp(1.25rem, 3vw, 2.5rem);
	z-index: 9002;
	pointer-events: auto;
	transform: translate3d(var(--logo-drag-x, 0), var(--logo-drag-y, 0), 0);
	transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
	will-change: transform, opacity;
}

.site-branding.is-logo-dragging {
	z-index: 9601;
	transition-duration: 0ms;
}

.site-branding.is-logo-easter-held {
	z-index: 9602;
	transition: opacity 260ms ease;
}

.site-branding.is-logo-dragging .site-logo-text {
	cursor: grabbing !important;
	filter: drop-shadow(0 18px 36px rgba(201, 255, 61, 0.18));
}

.site-branding .custom-logo-link {
	display: inline-flex;
	width: 32px;
	height: auto;
	align-items: center;
}

.site-branding .custom-logo {
	max-width: 42px;
	max-height: 80px;
	object-fit: contain;
}

.header-actions {
	position: fixed;
	top: clamp(1.75rem, 4vw, 4.8rem);
	right: clamp(1.5rem, 4vw, 5rem);
	z-index: 9002;
	pointer-events: auto;
}

.primary-navigation,
.header-cta {
	display: none;
}

.mobile-menu-toggle,
.mobile-menu-close {
	--menu-toggle-magnet-x: 0px;
	--menu-toggle-magnet-y: 0px;
	display: inline-flex;
	position: relative;
	width: 46px;
	height: 46px;
	border: 0;
	background: transparent;
	color: var(--color-paper);
	box-shadow: none;
	overflow: hidden;
	transform: translate3d(var(--menu-toggle-magnet-x), var(--menu-toggle-magnet-y), 0);
	transition: color 180ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle.is-magnetized {
	transition-duration: 180ms;
}

.menu-toggle-icon {
	position: absolute;
	inset: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform: translateY(0) rotate(0deg) scale(1);
	transition: transform 440ms cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-toggle-line {
	transform-box: fill-box;
	transform-origin: center;
	transition: transform 440ms cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-toggle-line-top {
	transform: translate(-0.5px, 2px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-toggle-line-bottom {
	transform: translate(2.5px, -2px) rotate(-45deg);
}

.mobile-menu-toggle svg,
.mobile-menu-close svg {
	width: 28px;
	height: 28px;
	stroke-width: 1.8;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus,
.mobile-menu-toggle:focus-visible,
.mobile-menu-toggle.is-cursor-absorbing {
	background: transparent;
	box-shadow: none;
	color: var(--color-accent);
	transform: translate3d(var(--menu-toggle-magnet-x), var(--menu-toggle-magnet-y), 0);
}

.mobile-menu-panel {
	position: fixed;
	inset: 0;
	z-index: 9001;
	--menu-cursor-x: calc(100% - 4rem);
	--menu-cursor-y: 4rem;
	--menu-pull-x: 0px;
	--menu-reveal-size: 150vmax;
	background: #f5f5f2;
	color: #202124;
	opacity: 0;
	pointer-events: none;
	clip-path: circle(0 at var(--menu-cursor-x) var(--menu-cursor-y));
	transform: translate3d(var(--menu-pull-x), -105%, 0) scale(0.985);
	transition:
		clip-path 720ms cubic-bezier(0.76, 0, 0.24, 1),
		transform 720ms cubic-bezier(0.76, 0, 0.24, 1),
		opacity 220ms ease;
	backface-visibility: hidden;
	contain: layout paint;
	will-change: transform, opacity, clip-path;
}

.mobile-menu-panel[hidden] {
	display: none;
}

.mobile-menu-panel.is-opening,
.mobile-menu-panel.is-open,
.mobile-menu-panel.is-closing {
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu-panel.is-open {
	clip-path: circle(var(--menu-reveal-size) at var(--menu-cursor-x) var(--menu-cursor-y));
	transform: translate3d(0, 0, 0) scale(1);
}

.mobile-menu-panel.is-closing {
	pointer-events: none;
	clip-path: circle(0 at var(--menu-cursor-x) var(--menu-cursor-y));
	transform: translate3d(calc(var(--menu-pull-x) * -0.18), -105%, 0) scale(0.985);
}

.mobile-menu-panel::after {
	position: fixed;
	top: 0;
	right: 0;
	width: 4px;
	height: 70px;
	content: "";
	background: #ff3f8f;
}

.mobile-menu-surface {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: clamp(1.35rem, 3vw, 3rem) clamp(1.4rem, 4vw, 5rem);
	background: transparent;
	box-shadow: none;
	opacity: 0;
	transform: translate3d(calc(var(--menu-pull-x) * 0.1), -28px, 0);
	transition: opacity 320ms ease 160ms, transform 640ms cubic-bezier(0.76, 0, 0.24, 1) 110ms;
}

.mobile-menu-panel.is-open .mobile-menu-surface {
	opacity: 1;
	transform: translateY(0);
}

.mobile-menu-panel.is-closing .mobile-menu-surface {
	opacity: 0;
	transform: translate3d(calc(var(--menu-pull-x) * -0.08), -28px, 0);
	transition-delay: 0ms;
}

.mobile-menu-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0;
}

.mobile-menu-head .site-logo-text {
	color: #202124;
}

.mobile-menu-close {
	color: #202124;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus {
	background: transparent;
	color: #ff3f8f;
	transform: none;
}

.menu-overlay-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
	gap: clamp(2rem, 7vw, 9rem);
	width: min(100%, 1000px);
	margin: clamp(5rem, 15vh, 10rem) auto 0;
	align-items: center;
}

.menu-overlay-primary .mobile-nav-menu {
	display: grid;
	gap: clamp(1.2rem, 4vh, 2.4rem);
}

.menu-overlay-primary .mobile-nav-menu a {
	display: inline-flex;
	width: fit-content;
	padding: 0;
	border: 0;
	color: #202124;
	font-size: clamp(3.2rem, 6vw, 5.8rem);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: 0;
	transition: color 160ms ease, transform 180ms ease;
}

.menu-overlay-primary .mobile-nav-menu a::after {
	content: ".";
}

.menu-overlay-primary .mobile-nav-menu a:hover,
.menu-overlay-primary .mobile-nav-menu a:focus {
	color: #8fff1f;
	transform: translateX(12px);
}

.menu-overlay-primary .sub-menu {
	display: none;
}

.menu-overlay-aside {
	display: grid;
	gap: 1.15rem;
	align-content: center;
}

.menu-overlay-aside a {
	width: fit-content;
	color: #202124;
	font-size: clamp(1rem, 1.2vw, 1.25rem);
	font-weight: 500;
	line-height: 1;
	transition: color 160ms ease, transform 180ms ease;
}

.menu-overlay-aside a:hover,
.menu-overlay-aside a:focus {
	color: #ff3f8f;
	transform: translateX(8px);
}

.menu-overlay-cta {
	margin-top: 1rem;
	font-weight: 900;
}

body.mobile-menu-open .site-branding,
body.mobile-menu-closing .site-branding {
	z-index: 9003;
}

body.mobile-menu-open .header-actions,
body.mobile-menu-closing .header-actions {
	z-index: 9006;
}

body.mobile-menu-open .site-header .site-logo-text {
	color: #202124;
}

body.mobile-menu-open .mobile-menu-toggle,
body.mobile-menu-closing .mobile-menu-toggle {
	z-index: 9004;
	color: #202124;
	pointer-events: auto;
}

body.mobile-menu-open .drop360-cursor-spotlight:not(.is-menu-toggle-target) {
	background: #fff;
}

body.mobile-menu-open .drop360-cursor-spotlight.is-menu-toggle-target {
	border-color: var(--drop360-cursor-menu-border, rgba(32, 33, 36, 0.62));
	background: var(--drop360-cursor-menu-bg, rgba(32, 33, 36, 0.05));
}

body.mobile-menu-open .drop360-cursor-label {
	color: #111 !important;
	-webkit-text-fill-color: #111;
	text-shadow: none;
}

.drop360-logo-easter {
	position: fixed;
	inset: 0;
	z-index: 9500;
	display: grid;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94) 0 12%, rgba(255, 241, 102, 0.76) 13% 18%, transparent 19%),
		repeating-conic-gradient(from -10deg at 50% 50%, rgba(255, 63, 143, 0.22) 0 8deg, rgba(255, 255, 255, 0.8) 8deg 14deg, rgba(68, 215, 198, 0.2) 14deg 22deg),
		linear-gradient(135deg, #fff8c9, #ffeff8 34%, #eafcff 66%, #f7ffd8);
	opacity: 0;
	pointer-events: none;
	transform: scale(1.04);
	transition: opacity 420ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
	visibility: hidden;
}

.drop360-logo-easter::before {
	position: absolute;
	inset: -18%;
	content: "";
	background:
		conic-gradient(from 0deg, rgba(255, 63, 143, 0.48), rgba(255, 245, 85, 0.52), rgba(143, 255, 31, 0.48), rgba(68, 215, 198, 0.46), rgba(255, 107, 74, 0.42), rgba(255, 63, 143, 0.48));
	filter: blur(38px) saturate(1.28);
	opacity: 0.88;
	animation: drop360-easter-field 5s linear both;
}

.drop360-logo-easter::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		radial-gradient(circle, rgba(32, 33, 36, 0.16) 0 1.8px, transparent 2px) 0 0 / 18px 18px,
		linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.76) 48%, transparent 55% 100%);
	mix-blend-mode: multiply;
	opacity: 0.42;
	animation: drop360-easter-shine 5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.drop360-logo-easter.is-active {
	opacity: 1;
	transform: scale(1);
	visibility: visible;
}

.drop360-logo-easter-mark {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.08em;
	color: transparent;
	background: linear-gradient(90deg, #ff3f8f, #fff159, #8fff1f, #44d7c6, #ff6b4a, #ff3f8f);
	background-size: 300% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-stroke: clamp(2px, 0.55vw, 8px) #202124;
	font-size: clamp(5rem, 22vw, 22rem);
	font-weight: 950;
	line-height: 0.82;
	letter-spacing: -0.1em;
	text-transform: uppercase;
	text-shadow:
		0.035em 0.035em 0 #ff3f8f,
		0.07em 0.07em 0 #44d7c6,
		0 22px 70px rgba(32, 33, 36, 0.22);
	transform: translateY(14px) scale(0.88);
	animation:
		drop360-easter-logo 5s cubic-bezier(0.16, 1, 0.3, 1) both,
		drop360-easter-gradient 5s linear both;
}

.drop360-logo-easter-mark .logo-drop,
.drop360-logo-easter-mark .logo-360 {
	display: inline-block;
	margin: 0;
	background: inherit;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-stroke: inherit;
	writing-mode: horizontal-tb;
	text-orientation: mixed;
	filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.78));
	animation: drop360-easter-bounce 5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.drop360-logo-easter-mark .logo-360 {
	animation-delay: 140ms;
}

body.logo-easter-active .site-branding {
	z-index: 9602;
	opacity: 1;
}

body.logo-easter-ending .site-branding {
	opacity: 0;
}

@keyframes drop360-easter-field {
	0% {
		transform: rotate(0deg) scale(0.98);
	}

	100% {
		transform: rotate(360deg) scale(1.08);
	}
}

@keyframes drop360-easter-logo {
	0% {
		opacity: 0;
		transform: translateY(32px) scale(0.72);
	}

	16%,
	82% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	100% {
		opacity: 0;
		transform: translateY(-18px) scale(1.08);
	}
}

@keyframes drop360-easter-shine {
	0% {
		transform: translateX(-28%);
		opacity: 0;
	}

	18%,
	76% {
		opacity: 0.44;
	}

	100% {
		transform: translateX(28%);
		opacity: 0;
	}
}

@keyframes drop360-easter-gradient {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 300% 50%;
	}
}

@keyframes drop360-easter-bounce {
	0% {
		transform: translateY(22px) rotate(-2deg) scale(0.88);
	}

	18% {
		transform: translateY(0) rotate(1deg) scale(1.04);
	}

	34%,
	78% {
		transform: translateY(0) rotate(0deg) scale(1);
	}

	100% {
		transform: translateY(-16px) rotate(2deg) scale(1.08);
	}
}

/* DROP360 wordmark */
.site-logo-text {
	display: inline-flex;
	width: auto;
	height: auto;
	flex-direction: column;
	align-items: center;
	gap: 0.18rem;
	padding: 0;
	background: transparent;
	color: var(--color-paper);
	font-size: clamp(0.82rem, 1.1vw, 1.1rem);
	font-weight: 950;
	line-height: 0.82;
	letter-spacing: -0.08em;
	text-transform: uppercase;
}

.logo-drop,
.logo-360 {
	display: inline-block;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.logo-drop {
	color: var(--color-accent);
	text-shadow: 0 0 16px rgba(201, 255, 61, 0.12);
}

.logo-360 {
	color: #fff;
	margin-top: 0.12rem;
	text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.mobile-menu-head .site-logo-text,
body.mobile-menu-open .site-header .site-logo-text {
	color: inherit;
}

.mobile-menu-head .site-logo-text {
	padding: 0.5rem 0.58rem 0.52rem;
	border-radius: 6px;
	background: #111;
}

body.mobile-menu-open .site-branding .site-logo-text {
	border-radius: 6px;
	background: #111;
	box-shadow: 0 0 0 0.56rem #111;
}

body.mobile-menu-open .site-branding .logo-360,
.mobile-menu-head .logo-360 {
	color: #fff;
}

@media (max-width: 782px) {
	.site-logo-text {
		font-size: 1.1rem;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 0;
	}

	.site-branding {
		top: 1.1rem;
		left: 1rem;
	}

	.header-actions {
		top: 1.15rem;
		right: 1rem;
	}

	.header-actions::after,
	.mobile-menu-panel::after {
		height: 54px;
	}

	.menu-overlay-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-top: 5.5rem;
	}

	.menu-overlay-primary .mobile-nav-menu a {
		font-size: clamp(2.6rem, 14vw, 4.3rem);
	}

	.menu-overlay-aside {
		gap: 0.9rem;
	}
}
