	/*
	Theme Name: CheaperUSPS Child
	Theme URI: https://cheaperusps.example
	Template: cheaperusps
	Author: CheaperUSPS
	Author URI: https://cheaperusps.example
	Description: Child theme of CheaperUSPS. Carries the full homepage design — global color and typography variables, all component styling, and keyframe animations — ported faithfully from the original design.
	Version: 1.0.0
	Requires at least: 6.0
	Requires PHP: 7.4
	License: GNU General Public License v2 or later
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	Text Domain: cheaperusps-child
	*/

	/* =========================================================================
	1. GLOBAL VARIABLES — colors, typography, radius, easing
	========================================================================= */
	:root {
		--radius: 0.625rem;

		/* Brand palette */
		--brand-bg: #f7f3ec;
		--brand-paper: #efe7d8;
		--brand-surface: #ece4d3;
		--brand-warm: #d4a574;
		--brand-ember: #b8501c;
		--brand-text: #1a1612;
		--brand-muted: #6b5d4f;
		--brand-accent: #1a1612;

		/* Neutral (dark "Services" section) */
		--zinc-100: #f4f4f5;
		--zinc-300: #d4d4d8;
		--zinc-400: #a1a1aa;
		--zinc-500: #71717a;

		/* Typography */
		--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
		--font-display: "Fraunces", ui-serif, Georgia, serif;

		/* Motion */
		--ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);

		/* Layout */
		--mw-7xl: 1280px;
		--mw-6xl: 1152px;
		--mw-5xl: 1024px;
	}

	/* =========================================================================
	2. BASE / RESET (scoped to the homepage wrapper to avoid touching admin)
	========================================================================= */
	html {
		scroll-behavior: smooth;
	}

	.cu-page,
	.cu-page * {
		box-sizing: border-box;
	}

	.cu-page {
		min-height: 100vh;
		overflow-x: clip;
		margin: 0;
		background-color: var(--brand-bg);
		color: var(--brand-text);
		font-family: var(--font-sans);
		font-size: 16px;
		line-height: 1.5;
		-webkit-font-smoothing: antialiased;
		text-rendering: optimizeLegibility;
	}

	.cu-page img {
		display: block;
		max-width: 100%;
	}

	/* :where() keeps this reset at zero specificity so button color rules win. */
	.cu-page :where(a) {
		color: inherit;
		text-decoration: none;
	}

	/* :where() keeps this reset at zero specificity so per-element class rules
	(e.g. .cu-hero__title / .cu-hero__lead margins) are free to override it. */
	:where(.cu-page h1, .cu-page h2, .cu-page h3, .cu-page h4, .cu-page p, .cu-page ul, .cu-page figure) {
		margin: 0;
	}

	.cu-page ul {
		list-style: none;
		padding: 0;
	}

	.cu-page ::selection {
		background-color: var(--brand-ember);
		color: #fff;
	}

	.cu-font-display {
		font-family: var(--font-display);
		font-feature-settings: "ss01", "ss02";
	}

	.cu-em {
		font-style: italic;
	}
	.cu-em--ember {
		color: var(--brand-ember);
		font-style: italic;
	}

	.cu-container {
		width: 100%;
		margin-inline: auto;
		padding-inline: 1.5rem;
	}
	.cu-mw-7xl { max-width: var(--mw-7xl); }
	.cu-mw-6xl { max-width: var(--mw-6xl); }
	.cu-mw-5xl { max-width: var(--mw-5xl); }

	.cu-eyebrow {
		display: inline-block;
		font-size: 10px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.25em;
		color: var(--brand-ember);
	}

	/* =========================================================================
	3. KEYFRAMES
	========================================================================= */
	@keyframes cu-fade-up {
		from { opacity: 0; transform: translateY(24px); }
		to { opacity: 1; transform: translateY(0); }
	}
	@keyframes cu-fade-in {
		from { opacity: 0; }
		to { opacity: 1; }
	}
	@keyframes cu-marquee-slow {
		from { transform: translateX(0); }
		to { transform: translateX(-50%); }
	}
	@keyframes cu-float {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-12px); }
	}
	@keyframes cu-slow-zoom {
		from { transform: scale(1.05); }
		to { transform: scale(1.18); }
	}
	@keyframes cu-shimmer {
		0% { background-position: -200% 0; }
		100% { background-position: 200% 0; }
	}
	@keyframes cu-pulse-ring {
		0% { transform: scale(1); opacity: 0.6; }
		100% { transform: scale(2.4); opacity: 0; }
	}
	@keyframes cu-pulse {
		0%, 100% { opacity: 1; }
		50% { opacity: 0.4; }
	}

	/* =========================================================================
	4. ANIMATION UTILITIES
	========================================================================= */
	.cu-anim-fade-up {
		animation: cu-fade-up 1.1s var(--ease-out-expo) both;
	}
	.cu-anim-fade-in-slow {
		animation: cu-fade-in 1.4s var(--ease-out-expo) both;
	}
	.cu-anim-marquee-slow {
		animation: cu-marquee-slow 80s linear infinite;
	}
	.cu-anim-float {
		animation: cu-float 6s ease-in-out infinite;
	}
	.cu-anim-slow-zoom {
		animation: cu-slow-zoom 20s ease-out infinite alternate;
	}
	.cu-anim-pulse-ring {
		animation: cu-pulse-ring 2.4s var(--ease-out-expo) infinite;
	}
	.cu-anim-pulse {
		animation: cu-pulse 2s var(--ease-out-expo) infinite;
	}

	/* Scroll reveals */
	.cu-reveal {
		opacity: 0;
		transform: translateY(28px);
		transition:
			opacity 1.1s var(--ease-out-expo),
			transform 1.1s var(--ease-out-expo);
	}
	.cu-reveal.is-visible {
		opacity: 1;
		transform: translateY(0);
	}
	.cu-reveal-img {
		clip-path: inset(0 100% 0 0);
		transition: clip-path 1.4s var(--ease-out-expo);
	}
	.cu-reveal-img.is-visible {
		clip-path: inset(0 0 0 0);
	}

	/* Shimmer headline */
	.cu-shimmer-text {
		background: linear-gradient(
			90deg,
			var(--brand-text) 0%,
			var(--brand-ember) 50%,
			var(--brand-text) 100%
		);
		background-size: 200% auto;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		font-style: italic;
		animation: cu-shimmer 6s linear infinite;
	}

	/* Hover-grow underline link */
	.cu-story-link {
		position: relative;
	}
	.cu-story-link::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -2px;
		height: 1px;
		width: 0;
		background-color: currentColor;
		transition: width 0.3s var(--ease-out-expo);
	}
	.cu-story-link:hover::after {
		width: 100%;
	}

	@media (prefers-reduced-motion: reduce) {
		.cu-page *,
		.cu-page *::before,
		.cu-page *::after {
			animation-duration: 0.001ms !important;
			animation-iteration-count: 1 !important;
			transition-duration: 0.001ms !important;
		}
		.cu-reveal,
		.cu-reveal-img { opacity: 1; transform: none; clip-path: none; }
	}

	/* =========================================================================
	5. NAV
	========================================================================= */
	.cu-nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 50;
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		background-color: rgba(247, 243, 236, 0.75);
		-webkit-backdrop-filter: blur(24px);
		backdrop-filter: blur(24px);
	}
	.cu-nav__inner {
		max-width: var(--mw-7xl);
		margin-inline: auto;
		height: 64px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-inline: 1.5rem;
	}
	.cu-logo {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		font-size: 0.875rem;
		font-weight: 600;
		letter-spacing: -0.01em;
	}
	.cu-logo img {
		display: block;
		height: 30px;
		width: auto;
	}
	.cu-logo__dot {
		position: relative;
		display: inline-flex;
		width: 0.5rem;
		height: 0.5rem;
	}
	.cu-logo__dot-ring {
		position: absolute;
		inset: 0;
		border-radius: 9999px;
		background-color: var(--brand-ember);
	}
	.cu-logo__dot-core {
		position: relative;
		width: 0.5rem;
		height: 0.5rem;
		border-radius: 9999px;
		background-color: var(--brand-ember);
	}
	.cu-nav__links {
		display: none;
		gap: 2rem;
		font-size: 0.875rem;
		font-weight: 500;
		color: var(--brand-muted);
	}
	.cu-nav__links a {
		color: var(--brand-muted);
		transition: color 0.2s;
	}
	.cu-nav__links a:hover {
		color: var(--brand-text);
	}

	.cu-btn-cta {
		display: inline-flex;
		align-items: center;
		gap: 0.375rem;
		border-radius: 9999px;
		background-color: var(--brand-accent);
		padding: 0.5rem 1rem 0.5rem 0.75rem;
		font-size: 0.875rem;
		font-weight: 500;
		color: #fff;
		transition: background-color 0.2s, transform 0.1s;
	}
	.cu-btn-cta:hover { background-color: var(--brand-ember); }
	.cu-btn-cta:active { transform: scale(0.95); }
	.cu-btn-cta .cu-icon { transition: transform 0.2s; }
	.cu-btn-cta:hover .cu-icon { transform: translateX(2px); }

	.cu-icon {
		width: 1rem;
		height: 1rem;
		flex-shrink: 0;
	}

	/* ---- Mobile menu (hamburger → X + dropdown) ---- */
	.cu-nav__cta { display: none; }

	.cu-nav__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2.5rem;
		height: 2.5rem;
		margin-right: -0.5rem;
		padding: 0;
		border: none;
		background: transparent;
		color: var(--brand-text);
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}
	.cu-nav__bars {
		position: relative;
		display: block;
		width: 22px;
		height: 14px;
	}
	.cu-nav__bars span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		border-radius: 2px;
		background-color: currentColor;
		transition: transform 0.35s var(--ease-out-expo), opacity 0.2s ease;
	}
	.cu-nav__bars span:nth-child(1) { top: 0; }
	.cu-nav__bars span:nth-child(2) { top: 6px; }
	.cu-nav__bars span:nth-child(3) { top: 12px; }
	.cu-nav.is-open .cu-nav__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.cu-nav.is-open .cu-nav__bars span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
	.cu-nav.is-open .cu-nav__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

	.cu-nav__menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		padding: 0.5rem 1.5rem 1.5rem;
		background-color: rgba(247, 243, 236, 0.92);
		-webkit-backdrop-filter: blur(24px);
		backdrop-filter: blur(24px);
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		pointer-events: none;
		transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), visibility 0s linear 0.35s;
	}
	.cu-nav.is-open .cu-nav__menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
		transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), visibility 0s;
	}
	.cu-nav__menu > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0.9rem 0.25rem;
		font-size: 1.05rem;
		font-weight: 500;
		color: var(--brand-text);
		border-bottom: 1px solid rgba(26, 22, 18, 0.07);
		opacity: 0;
		transform: translateY(8px);
		transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
	}
	.cu-nav.is-open .cu-nav__menu > a {
		opacity: 1;
		transform: translateY(0);
	}
	.cu-nav.is-open .cu-nav__menu > a:nth-child(1) { transition-delay: 0.06s; }
	.cu-nav.is-open .cu-nav__menu > a:nth-child(2) { transition-delay: 0.12s; }
	.cu-nav.is-open .cu-nav__menu > a:nth-child(3) { transition-delay: 0.18s; }
	.cu-nav.is-open .cu-nav__menu > a:nth-child(4) { transition-delay: 0.24s; }
	.cu-nav.is-open .cu-nav__menu > a:nth-child(5) { transition-delay: 0.30s; }
	.cu-nav__menu-cta {
		justify-content: center !important;
		gap: 0.5rem;
		margin-top: 1rem;
		border-radius: 9999px;
		border-bottom: none !important;
		background-color: var(--brand-accent);
		color: #fff !important;
		font-weight: 500;
	}
	.cu-nav__menu-cta:active { transform: scale(0.99); }

	.cu-nav__scrim {
		position: fixed;
		inset: 0;
		z-index: 40;
		background-color: rgba(26, 22, 18, 0.28);
		opacity: 0;
		transition: opacity 0.35s var(--ease-out-expo);
	}
	.cu-nav__scrim.is-open {
		opacity: 1;
	}

	/* =========================================================================
	6. HERO
	========================================================================= */
	.cu-hero {
		position: relative;
		padding: 8rem 1.5rem 4rem;
	}
	.cu-hero__inner {
		max-width: var(--mw-7xl);
		margin-inline: auto;
	}
	.cu-hero__head {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin-bottom: 2.5rem;
	}
	.cu-badge {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		border-radius: 9999px;
		background-color: var(--brand-paper);
		padding: 0.25rem 0.75rem;
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
		margin-bottom: 2rem;
	}
	.cu-badge__dot {
		width: 0.375rem;
		height: 0.375rem;
		border-radius: 9999px;
		background-color: var(--brand-ember);
	}
	.cu-badge__text {
		font-size: 0.75rem;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		color: var(--brand-muted);
	}

	.cu-hero__title {
		margin-bottom: 2rem;
		max-width: 14ch;
		font-size: 3rem;
		font-weight: 300;
		line-height: 1.02;
		letter-spacing: -0.02em;
		text-wrap: balance;
	}
	.cu-hero__lead {
		margin-bottom: 3rem;
		max-width: 56ch;
		font-size: 1rem;
		color: var(--brand-muted);
		text-wrap: pretty;
	}
	.cu-hero__lead strong {
		font-weight: 600;
		color: var(--brand-text);
	}
	.cu-hero__actions {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.cu-btn-primary {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		border-radius: 9999px;
		background-color: var(--brand-accent);
		padding: 0.875rem 1.5rem;
		font-size: 0.875rem;
		font-weight: 500;
		color: #fff;
		box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
		transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
	}
	.cu-btn-primary:hover {
		background-color: var(--brand-ember);
		transform: translateY(-2px);
		box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
	}
	.cu-btn-primary .cu-icon { transition: transform 0.2s; }
	.cu-btn-primary:hover .cu-icon { transform: translateX(4px); }

	.cu-btn-secondary {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		border-radius: 9999px;
		background-color: var(--brand-paper);
		padding: 0.875rem 1.5rem;
		font-size: 0.875rem;
		font-weight: 500;
		color: var(--brand-text);
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
		transition: background-color 0.2s;
	}
	.cu-btn-secondary:hover { background-color: var(--brand-surface); }

	/* Hero image + parallax */
	.cu-hero__media {
		position: relative;
		margin: 1.5rem auto 0;
		max-width: var(--mw-6xl);
	}
	.cu-hero__frame {
		position: relative;
		aspect-ratio: 16 / 9;
		will-change: transform;
		transform: translate3d(0, var(--py, 0), 0);
	}
	.cu-hero__canvas {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		display: block;
		background: transparent;
	}

	/* Stat cards — flow below the canvas on mobile, float over it on desktop */
	.cu-stats {
		margin: 1.25rem auto 0;
		max-width: var(--mw-5xl);
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: center;
		gap: 1rem;
	}
	.cu-stat {
		pointer-events: auto;
		min-width: 140px;
		border-radius: 1rem;
		padding: 1rem 1.5rem;
		text-align: center;
		background-color: rgba(247, 243, 236, 0.9);
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05),
			0 20px 25px -5px rgba(0, 0, 0, 0.05);
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
		transition: transform 0.2s;
	}
	.cu-stat:hover { transform: translateY(-4px); }
	.cu-stat--accent {
		background-color: var(--brand-ember);
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2),
			0 20px 25px -5px rgba(0, 0, 0, 0.05);
	}
	.cu-stat__value {
		display: block;
		font-family: var(--font-display);
		font-size: 1.875rem;
		font-weight: 300;
		color: var(--brand-text);
	}
	.cu-stat__label {
		font-size: 10px;
		text-transform: uppercase;
		letter-spacing: 0.2em;
		color: var(--brand-muted);
	}
	.cu-stat--accent .cu-stat__value { color: #fff; }
	.cu-stat--accent .cu-stat__label { color: rgba(255, 255, 255, 0.8); }

	.cu-spacer { height: 3rem; }

	/* =========================================================================
	7. SECTION SHELL + HEADINGS
	========================================================================= */
	.cu-section {
		position: relative;
		padding: 8rem 1.5rem;
	}
	.cu-section--bg { background-color: var(--brand-bg); }
	.cu-section--paper { background-color: var(--brand-paper); overflow: hidden; }
	.cu-section--accent {
		background-color: var(--brand-accent);
		color: var(--zinc-100);
		overflow: hidden;
	}
	.cu-section__inner {
		max-width: var(--mw-7xl);
		margin-inline: auto;
	}

	.cu-h2 {
		font-family: var(--font-display);
		font-size: 2.25rem;
		font-weight: 300;
		line-height: 1.05;
		letter-spacing: -0.02em;
	}

	/* =========================================================================
	8. ABOUT
	========================================================================= */
	.cu-about__grid {
		display: grid;
		gap: 4rem;
		align-items: center;
	}
	.cu-about__media { position: relative; }
	.cu-about__img-main {
		overflow: hidden;
		border-radius: 1rem;
	}
	.cu-about__img-main img {
		aspect-ratio: 4 / 5;
		width: 100%;
		object-fit: cover;
	}
	.cu-about__img-float {
		position: absolute;
		bottom: -2.5rem;
		right: -1.5rem;
		width: 40%;
		overflow: hidden;
		border-radius: 1rem;
		box-shadow: 0 0 0 4px var(--brand-bg);
	}
	.cu-about__img-float img {
		aspect-ratio: 4 / 5;
		width: 100%;
		object-fit: cover;
	}
	.cu-about__blob {
		position: absolute;
		left: -2rem;
		top: -2rem;
		width: 6rem;
		height: 6rem;
		border-radius: 9999px;
		background-color: rgba(212, 165, 116, 0.4);
		filter: blur(40px);
		will-change: transform;
		transform: translate3d(0, var(--py, 0), 0);
		pointer-events: none;
	}
	.cu-about__figure {
		position: relative;
		z-index: 1;
	}
	.cu-about__figure img {
		width: 100%;
		height: auto;
		filter: drop-shadow(0 30px 45px rgba(26, 22, 18, 0.12));
	}
	.cu-about__copy .cu-h2 {
		margin: 1rem 0 2rem;
		max-width: 16ch;
	}
	.cu-about__copy p {
		margin-bottom: 1.5rem;
		color: var(--brand-muted);
		text-wrap: pretty;
	}
	.cu-about__copy p:last-of-type { margin-bottom: 2.5rem; }
	.cu-ministats {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
		border-top: 1px solid rgba(26, 22, 18, 0.1);
		padding-top: 2rem;
	}
	.cu-ministat__value {
		font-family: var(--font-display);
		font-size: 1.5rem;
		font-weight: 300;
		color: var(--brand-text);
	}
	.cu-ministat__label {
		margin-top: 0.25rem;
		font-size: 10px;
		text-transform: uppercase;
		letter-spacing: 0.2em;
		color: var(--brand-muted);
	}

	/* =========================================================================
	9. PROCESS
	========================================================================= */
	.cu-process__head {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 2rem;
		flex-wrap: wrap;
		margin-bottom: 5rem;
	}
	.cu-process__head .cu-h2 {
		margin-top: 1rem;
		max-width: 18ch;
	}
	.cu-process__head p {
		max-width: 36ch;
		color: var(--brand-muted);
	}
	.cu-process__grid {
		display: grid;
		gap: 2rem;
	}
	.cu-card {
		position: relative;
		height: 100%;
		border-radius: 1rem;
		background-color: var(--brand-bg);
		padding: 2rem;
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
		transition: transform 0.3s, box-shadow 0.3s;
	}
	.cu-card:hover {
		transform: translateY(-4px);
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05),
			0 20px 25px -5px rgba(0, 0, 0, 0.05);
	}
	.cu-card__top {
		display: flex;
		align-items: baseline;
		justify-content: space-between;
		margin-bottom: 2rem;
	}
	.cu-card__num {
		font-family: var(--font-display);
		font-size: 3rem;
		font-weight: 300;
		color: var(--brand-ember);
	}
	.cu-card__icon {
		display: inline-flex;
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 9999px;
		background-color: var(--brand-paper);
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
		transition: transform 0.3s;
	}
	.cu-card:hover .cu-card__icon { transform: rotate(12deg); }
	.cu-card__icon svg {
		width: 100%;
		height: 100%;
		padding: 0.625rem;
		color: var(--brand-text);
	}
	.cu-card h3 {
		margin-bottom: 1rem;
		font-size: 1.25rem;
		font-weight: 500;
	}
	.cu-card p {
		font-size: 0.875rem;
		line-height: 1.6;
		color: var(--brand-muted);
	}

	/* Marquee */
	.cu-marquee {
		margin-top: 5rem;
		overflow: hidden;
		border-radius: 1rem;
	}
	.cu-marquee__track {
		display: flex;
		flex-shrink: 0;
		gap: 1.5rem;
		width: max-content;
	}
	.cu-marquee__track img {
		height: 14rem;
		width: 20rem;
		flex-shrink: 0;
		border-radius: 0.75rem;
		object-fit: cover;
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
	}

	/* =========================================================================
	10. GLOBAL / MAP
	========================================================================= */
	.cu-reach__grid {
		display: grid;
		gap: 3rem;
		align-items: center;
	}
	.cu-reach__copy .cu-h2 {
		margin: 1rem 0 1.5rem;
		max-width: 18ch;
	}
	.cu-reach__copy p {
		margin-bottom: 2rem;
		max-width: 48ch;
		color: var(--brand-muted);
	}
	.cu-chips {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
	}
	.cu-chip {
		border-radius: 9999px;
		background-color: var(--brand-paper);
		padding: 0.375rem 0.75rem;
		font-size: 0.75rem;
		font-weight: 500;
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
		transition: transform 0.2s;
	}
	.cu-chip:hover { transform: translateY(-2px); }
	/* Coverage map sits directly on the light section — no panel */
	.cu-reach__map {
		background: transparent;
	}
	.cu-reach__map svg {
		display: block;
		width: 100%;
		height: auto;
	}

	/* =========================================================================
	11. SERVICES (dark)
	========================================================================= */
	.cu-services__bg {
		position: absolute;
		inset: 0;
		opacity: 0.2;
		pointer-events: none;
	}
	.cu-services__bg span {
		position: absolute;
		border-radius: 9999px;
		filter: blur(64px);
	}
	.cu-services__bg span:nth-child(1) {
		left: -8rem;
		top: 5rem;
		width: 20rem;
		height: 20rem;
		background-color: var(--brand-ember);
	}
	.cu-services__bg span:nth-child(2) {
		right: 0;
		bottom: 0;
		width: 24rem;
		height: 24rem;
		background-color: var(--brand-warm);
	}
	.cu-services__inner {
		position: relative;
		max-width: var(--mw-7xl);
		margin-inline: auto;
	}
	.cu-services__head {
		text-align: center;
		margin-bottom: 5rem;
	}
	.cu-services__head .cu-eyebrow { color: var(--brand-warm); }
	.cu-services__head .cu-h2 { margin: 1rem 0; }
	.cu-services__head p {
		margin-inline: auto;
		max-width: 48ch;
		color: var(--zinc-400);
	}
	.cu-tiers {
		display: grid;
		gap: 1.5rem;
	}
	.cu-tier {
		position: relative;
		height: 100%;
		overflow: hidden;
		border-radius: 1rem;
		padding: 2rem;
		background-color: rgba(255, 255, 255, 0.04);
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
		transition: transform 0.3s, background-color 0.3s;
	}
	.cu-tier:hover {
		transform: translateY(-4px);
		background-color: rgba(255, 255, 255, 0.08);
	}
	.cu-tier--highlight {
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
	}
	.cu-tier--highlight:hover { background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)); }
	.cu-tier__badge {
		position: absolute;
		top: 1.5rem;
		right: 1.5rem;
		border-radius: 9999px;
		background-color: var(--brand-ember);
		padding: 0.25rem 0.625rem;
		font-size: 10px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		color: #fff;
	}
	.cu-tier h3 {
		margin-bottom: 0.25rem;
		font-size: 1.125rem;
		font-weight: 500;
	}
	.cu-tier__sub {
		margin-bottom: 2rem;
		font-size: 0.875rem;
		color: var(--zinc-400);
	}
	.cu-tier__price {
		margin-bottom: 2rem;
		display: flex;
		align-items: baseline;
		gap: 0.5rem;
	}
	.cu-tier__save {
		font-family: var(--font-display);
		font-size: 3rem;
		font-weight: 300;
		letter-spacing: -0.02em;
		color: var(--brand-warm);
	}
	.cu-tier__vs {
		font-size: 0.75rem;
		color: var(--zinc-500);
	}
	.cu-tier ul {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
	.cu-tier li {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		font-size: 0.875rem;
		color: var(--zinc-300);
	}
	.cu-tier li svg {
		width: 1rem;
		height: 1rem;
		flex-shrink: 0;
		color: var(--brand-warm);
	}

	/* =========================================================================
	12. QUOTE
	========================================================================= */
	/* Rotating testimonials — slides stacked in one grid cell, cross-faded by JS */
	.cu-quotes {
		display: grid;
	}
	.cu-quote-slide {
		grid-area: 1 / 1;
		opacity: 0;
		transform: translateY(12px);
		transition:
			opacity 0.8s var(--ease-out-expo),
			transform 0.8s var(--ease-out-expo);
		pointer-events: none;
	}
	.cu-quote-slide.is-active {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
	.cu-quotes-dots {
		display: flex;
		gap: 0.5rem;
		margin-top: 2.5rem;
	}
	.cu-quotes-dot {
		width: 0.5rem;
		height: 0.5rem;
		padding: 0;
		border: none;
		cursor: pointer;
		border-radius: 9999px;
		background-color: rgba(26, 22, 18, 0.18);
		transition: background-color 0.3s, width 0.3s;
	}
	.cu-quotes-dot.is-active {
		width: 1.5rem;
		background-color: var(--brand-ember);
	}

	.cu-quote {
		font-family: var(--font-display);
		font-size: 1.875rem;
		font-weight: 300;
		line-height: 1.2;
		letter-spacing: -0.02em;
		text-wrap: balance;
	}
	.cu-quote__mark { color: var(--brand-ember); }
	.cu-quote__by {
		margin-top: 2.5rem;
		display: flex;
		align-items: center;
		gap: 1rem;
	}
	.cu-quote__avatar {
		width: 3rem;
		height: 3rem;
		border-radius: 9999px;
		background: linear-gradient(135deg, var(--brand-warm), var(--brand-ember));
		flex-shrink: 0;
	}
	.cu-quote__name { font-size: 0.875rem; font-weight: 500; }
	.cu-quote__role { font-size: 0.75rem; color: var(--brand-muted); }

	/* =========================================================================
	13. CONTACT
	========================================================================= */
	.cu-contact__grid {
		display: grid;
		gap: 4rem;
	}
	.cu-contact__copy .cu-h2 {
		margin: 1rem 0 1.5rem;
		max-width: 14ch;
	}
	.cu-contact__copy > p {
		margin-bottom: 2.5rem;
		max-width: 42ch;
		color: var(--brand-muted);
	}
	.cu-contact__photo {
		position: relative;
		aspect-ratio: 4 / 5;
		overflow: hidden;
		border-radius: 1rem;
	}
	.cu-contact__photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.cu-form {
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
		border-radius: 1rem;
		background-color: var(--brand-paper);
		padding: 2rem;
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
	}
	.cu-form__row {
		display: grid;
		gap: 1.5rem;
	}
	.cu-field {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}
	.cu-field label {
		font-size: 10px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.2em;
		color: var(--brand-muted);
	}
	.cu-field input,
	.cu-field select,
	.cu-field textarea {
		width: 100%;
		border: none;
		border-radius: 0.5rem;
		background-color: var(--brand-bg);
		padding: 0.75rem 1rem;
		font-size: 0.875rem;
		font-family: inherit;
		color: var(--brand-text);
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
		outline: none;
		transition: box-shadow 0.2s;
	}
	.cu-field textarea { resize: none; }
	.cu-field select { appearance: none; -webkit-appearance: none; }
	.cu-field input:focus,
	.cu-field select:focus,
	.cu-field textarea:focus {
		box-shadow: inset 0 0 0 2px var(--brand-ember);
	}
	.cu-form__submit {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		border: none;
		cursor: pointer;
		border-radius: 0.5rem;
		background-color: var(--brand-accent);
		padding: 1rem;
		font-size: 1rem;
		font-weight: 500;
		font-family: inherit;
		color: #fff;
		transition: background-color 0.2s, transform 0.1s;
	}
	.cu-form__submit:hover { background-color: var(--brand-ember); }
	.cu-form__submit:active { transform: scale(0.99); }
	.cu-form__submit .cu-icon { transition: transform 0.2s; }
	.cu-form__submit:hover .cu-icon { transform: translateX(4px); }

	/* =========================================================================
	14. FOOTER
	========================================================================= */
	.cu-footer {
		border-top: 1px solid rgba(26, 22, 18, 0.1);
		background-color: var(--brand-paper);
		padding: 4rem 1.5rem;
	}
	.cu-footer__top {
		max-width: var(--mw-7xl);
		margin-inline: auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		gap: 3rem;
	}
	.cu-footer__brand { max-width: 32ch; }
	.cu-footer__brand span {
		display: block;
		margin-bottom: 1rem;
		font-family: var(--font-display);
		font-size: 1.5rem;
		font-weight: 300;
		letter-spacing: -0.01em;
	}
	.cu-footer__logo {
		display: block;
		width: 190px;
		max-width: 70%;
		height: auto;
		margin-bottom: 1.25rem;
	}
	.cu-footer__brand p {
		font-size: 0.75rem;
		line-height: 1.6;
		color: var(--brand-muted);
	}
	.cu-footer__cols {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}
	.cu-footer__col h4 {
		margin-bottom: 1rem;
		font-size: 10px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.25em;
		color: var(--brand-text);
	}
	.cu-footer__col ul {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		font-size: 0.75rem;
		color: var(--brand-muted);
	}
	.cu-footer__col a:hover { color: var(--brand-text); }
	.cu-footer__bottom {
		max-width: var(--mw-7xl);
		margin: 4rem auto 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-top: 1px solid rgba(26, 22, 18, 0.1);
		padding-top: 2rem;
	}
	.cu-footer__copy { font-size: 10px; color: var(--brand-muted); }
	.cu-footer__made {
		font-size: 10px;
		text-transform: uppercase;
		letter-spacing: 0.25em;
		color: var(--brand-muted);
	}

	/* =========================================================================
	15. RESPONSIVE
	========================================================================= */
	@media (min-width: 640px) {
		.cu-hero__lead { font-size: 1.125rem; }
		.cu-hero__actions { flex-direction: row; }
		.cu-about__img-float { right: -2.5rem; }
	}

	@media (min-width: 768px) {
		.cu-nav__links { display: flex; }
		.cu-nav__cta { display: inline-flex; }
		.cu-nav__toggle { display: none; }
		.cu-nav__menu { display: none; }
		.cu-hero { padding-top: 10rem; }
		/* Short wide band on desktop so the route sits close under the buttons */
		.cu-hero__frame { aspect-ratio: 1000 / 300; }
		/* Float the stat cards over the bottom of the canvas on desktop */
		.cu-stats {
			position: absolute;
			bottom: -2rem;
			left: 0;
			right: 0;
			z-index: 10;
			margin: 0 auto;
			padding-inline: 1rem;
			pointer-events: none;
		}
		/* Larger type needs more room below so descenders don't crowd the lead */
		.cu-hero__title { font-size: 6rem; margin-bottom: 3rem; }
		.cu-h2 { font-size: 3rem; }
		.cu-quote { font-size: 3rem; }
		.cu-about__copy p,
		.cu-reach__copy p,
		.cu-contact__copy > p { font-size: 1.125rem; }
		.cu-ministat__value { font-size: 1.875rem; }
		.cu-about__img-float { width: 50%; }
		.cu-process__grid { grid-template-columns: repeat(3, 1fr); }
		.cu-marquee__track img { height: 18rem; width: 24rem; }
		.cu-tiers { grid-template-columns: repeat(2, 1fr); }
		.cu-form { padding: 2.5rem; }
		.cu-form__row { grid-template-columns: repeat(2, 1fr); }
		.cu-footer__top { flex-direction: row; }
		.cu-footer__cols { grid-template-columns: repeat(3, 1fr); }
	}

	@media (min-width: 1024px) {
		.cu-about__grid { grid-template-columns: repeat(12, 1fr); }
		.cu-about__media { grid-column: span 6; }
		.cu-about__copy { grid-column: span 6; padding-left: 2rem; }
		.cu-reach__grid { grid-template-columns: repeat(2, 1fr); }
		.cu-tiers { grid-template-columns: repeat(3, 1fr); }
		.cu-contact__grid { grid-template-columns: repeat(2, 1fr); }
	}
