:root {
	--cx-white: #fffefc;
	--cx-paper: #fbfaf7;
	--cx-linen: #f5f2ec;
	--cx-foam: #e8efe9;
	--cx-mist: #dde7df;
	--cx-sand: #e9e1d4;
	--cx-ink: #2a302b;
	--cx-muted: #667066;
	--cx-muted-2: #5c635c;
	--cx-sage: #7d9880;
	--cx-sage-deep: #5a7260;
	--cx-green: #5a7260;
	--cx-lime: #d7e2cc;
	--cx-mint: #dde7df;
	--cx-navy: #3e4a41;
	--cx-navy-deep: #2a302b;
	--cx-line: rgba(42, 48, 43, 0.1);
	--cx-shadow: 0 18px 50px rgba(42, 48, 43, 0.07);
	--cx-max: 1180px;
	--cx-sans: "Figtree", "Inter", system-ui, sans-serif;
	--cx-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
	--cx-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--cx-sans);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--cx-ink);
	background: var(--cx-linen);
	-webkit-font-smoothing: antialiased;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 80;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.nav-open {
	overflow: hidden;
}

body.nav-open .cx-header {
	z-index: 220;
	background: transparent;
}

body.nav-open .cx-header::after {
	opacity: 0;
}

body.nav-open .cx-header__inner {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

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

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

:focus-visible {
	outline: 2px solid var(--cx-sage-deep);
	outline-offset: 3px;
}

::selection {
	background: var(--cx-mist);
	color: var(--cx-ink);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.skip-link:focus {
	clip: auto;
	height: auto;
	width: auto;
	z-index: 100000;
	top: 0.5rem;
	left: 0.5rem;
	padding: 0.6rem 0.9rem;
	background: var(--cx-ink);
	color: var(--cx-white);
}

.cx-wrap {
	width: min(100% - 48px, var(--cx-max));
	margin-inline: auto;
}

.wrap,
.wrap--narrow {
	width: min(100% - 48px, 720px);
	margin-inline: auto;
}

.wrap--wide {
	width: min(100% - 48px, var(--cx-max));
}

/* Header
   ========================================================================== */

.cx-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 14px 0 12px;
	background: var(--cx-linen);
}

.cx-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -16px;
	height: 16px;
	background: linear-gradient(180deg, var(--cx-linen), transparent);
	pointer-events: none;
}

.cx-header__inner {
	width: min(100% - 32px, var(--cx-max));
	margin-inline: auto;
	min-height: 68px;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 8px 10px 8px 16px;
	background: rgba(251, 250, 247, 0.94);
	border: 1px solid var(--cx-line);
	border-radius: 999px;
	box-shadow: 0 10px 30px rgba(42, 48, 43, 0.04);
	transition: box-shadow 0.35s var(--cx-ease), background 0.35s ease;
}

.cx-header.is-scrolled .cx-header__inner {
	background: rgba(251, 250, 247, 0.92);
	box-shadow: var(--cx-shadow);
}

.cx-logo a,
.cx-logo--footer {
	display: flex;
	align-items: center;
	flex: none;
}

.cx-logo__img,
.cx-logo img,
.cx-logo .custom-logo {
	display: block;
	width: auto;
	height: 48px;
	max-width: min(168px, 46vw);
	object-fit: contain;
	object-position: left center;
}

.cx-logo--footer .cx-logo__img {
	height: 56px;
	max-width: 196px;
}

.cx-nav {
	margin-left: auto;
}

.cx-nav .menu {
	display: flex;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cx-nav a {
	color: var(--cx-muted);
	font-size: 0.95rem;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 999px;
	transition: color 0.2s ease, background 0.2s ease;
}

.cx-nav a:hover,
.cx-nav .current-menu-item a {
	color: var(--cx-ink);
	background: var(--cx-foam);
}

.cx-header .cx-nav__mobile-cta,
.cx-nav__kicker,
.cx-nav__meta {
	display: none;
}

.cx-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
	cursor: pointer;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.25s var(--cx-ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cx-btn span {
	position: relative;
	z-index: 1;
}

.cx-btn::before {
	content: "";
	position: absolute;
	left: var(--mx, 50%);
	top: var(--my, 50%);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.5s var(--cx-ease);
	pointer-events: none;
	background: rgba(255, 254, 252, 0.35);
}

.cx-btn:hover::before {
	transform: translate(-50%, -50%) scale(80);
}

.cx-btn:hover {
	transform: translateY(-1px);
}

.cx-btn--green,
.cx-btn--mint,
.cx-btn--lime {
	background: var(--cx-sage-deep);
	color: var(--cx-white);
}

.cx-btn--ghost {
	background: var(--cx-white);
	color: var(--cx-ink);
	border-color: var(--cx-line);
}

.cx-btn--ghost::before {
	background: var(--cx-foam);
}

.cx-header__cta {
	flex: none;
}

.cx-burger {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--cx-foam);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 0;
	cursor: pointer;
	z-index: 60;
}

.cx-burger span:not(.screen-reader-text) {
	display: block;
	width: 16px;
	height: 1.5px;
	background: var(--cx-ink);
	transition: transform 0.3s var(--cx-ease), opacity 0.2s ease;
}

.cx-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(3.75px) rotate(45deg);
}

.cx-burger[aria-expanded="true"] span:nth-child(2) {
	transform: translateY(-3.75px) rotate(-45deg);
}

/* Hero
   ========================================================================== */

.cx-hero {
	position: relative;
	padding: 36px 0 20px;
	overflow: hidden;
}

.cx-hero__glow {
	position: absolute;
	inset: -10% 10% auto;
	height: 420px;
	background:
		radial-gradient(ellipse at 20% 40%, rgba(125, 152, 128, 0.22), transparent 55%),
		radial-gradient(ellipse at 80% 20%, rgba(233, 225, 212, 0.7), transparent 50%);
	pointer-events: none;
}

.cx-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.cx-hero__badge {
	display: inline-flex;
	margin: 0 0 18px;
	padding: 7px 14px;
	border-radius: 999px;
	background: var(--cx-foam);
	color: var(--cx-sage-deep);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cx-hero__title,
.cx-h2,
.page-hero__title,
.entry-title,
.archive-hero__title,
.contact-hero__title {
	font-family: var(--cx-serif);
	font-weight: 500;
	font-optical-sizing: auto;
	letter-spacing: -0.03em;
	text-transform: none;
	margin: 0 0 16px;
	color: var(--cx-ink);
}

.cx-hero__title {
	font-size: clamp(2.5rem, 5.4vw, 4.4rem);
	line-height: 1.05;
	max-width: 14ch;
}

.cx-hero__title span {
	font-style: italic;
	font-weight: 400;
	color: var(--cx-sage-deep);
}

.cx-hero__text {
	max-width: 38em;
	margin: 0 0 28px;
	color: var(--cx-muted);
	font-size: 1.05rem;
}

.cx-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}

.cx-hero__frame {
	position: relative;
	border-radius: 36px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--cx-sand);
	box-shadow: var(--cx-shadow);
}

.cx-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cx-hero__chip {
	position: absolute;
	left: 20px;
	bottom: 20px;
	padding: 12px 16px;
	border-radius: 18px;
	background: rgba(251, 250, 247, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 0.82rem;
	color: var(--cx-muted);
}

.cx-hero__chip strong {
	color: var(--cx-ink);
	font-size: 0.92rem;
	font-weight: 600;
}

.cx-avatars {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cx-avatars img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--cx-white);
	margin-left: -12px;
}

.cx-avatars img:first-child {
	margin-left: 0;
}

.cx-avatars__copy {
	display: flex;
	flex-direction: column;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--cx-muted);
}

.cx-stars {
	color: var(--cx-sage);
	letter-spacing: 1px;
}

/* Marquee
   ========================================================================== */

.cx-marquee {
	overflow: hidden;
	padding: 28px 0 8px;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cx-marquee__track {
	display: flex;
	gap: 40px;
	width: max-content;
	animation: cx-marquee 36s linear infinite;
	color: var(--cx-sage);
	font-family: var(--cx-serif);
	font-size: 1.15rem;
	font-style: italic;
}

.cx-marquee__track span::after {
	content: " · ";
	color: var(--cx-sand);
}

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

/* Sections
   ========================================================================== */

.cx-section {
	padding: 96px 0;
}

.cx-section--soft {
	background: var(--cx-paper);
}

.cx-section--tight {
	padding-top: 24px;
}

.cx-section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.cx-eyebrow {
	margin: 0 0 10px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cx-sage);
}

.cx-h2 {
	font-size: clamp(2rem, 3.6vw, 3.1rem);
	line-height: 1.15;
}

.cx-lead {
	max-width: 640px;
	margin: 0 auto 8px;
	color: var(--cx-muted);
}

.cx-lead--left {
	margin-left: 0;
}

.cx-intro {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 64px;
	align-items: center;
	margin-bottom: 64px;
}

.cx-intro__visual {
	margin: 0;
	position: relative;
}

.cx-intro__visual img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 32px;
}

.cx-intro__visual figcaption {
	position: absolute;
	right: -12px;
	bottom: 28px;
	padding: 10px 16px;
	background: var(--cx-white);
	border-radius: 999px;
	font-size: 0.85rem;
	box-shadow: var(--cx-shadow);
}

.cx-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.cx-pills li {
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--cx-foam);
	font-size: 0.88rem;
	font-weight: 500;
}

.cx-offer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.cx-offer-card,
.cx-principles article,
.cx-price-card {
	background: var(--cx-white);
	border: 1px solid var(--cx-line);
	border-radius: 24px;
	padding: 28px 26px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.cx-offer-card:nth-child(2) {
	background: var(--cx-foam);
}

.cx-offer-card:nth-child(3) {
	background: var(--cx-sand);
}

.cx-offer-card__index,
.cx-principles .cx-offer-card__index {
	margin: 0 0 18px;
	font-family: var(--cx-serif);
	font-size: 1.6rem;
	font-style: italic;
	color: var(--cx-sage);
}

.cx-offer-card h3,
.cx-process-card h3,
.cx-blog-card h3,
.cx-principles h2,
.cx-price-card h2,
.cx-service-item h2 {
	font-family: var(--cx-serif);
	font-size: 1.45rem;
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 12px;
}

.cx-offer-card p,
.cx-process-card p,
.cx-principles p,
.cx-price-card p {
	color: var(--cx-muted);
	font-size: 0.98rem;
	margin: 0 0 16px;
}

.cx-textlink {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--cx-sage-deep);
}

.cx-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.cx-process-card {
	background: var(--cx-white);
	color: var(--cx-ink);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--cx-line);
}

.cx-process-card__img {
	aspect-ratio: 5 / 4;
	overflow: hidden;
}

.cx-process-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--cx-ease);
}

.cx-process-card:hover img {
	transform: scale(1.04);
}

.cx-process-card__body {
	padding: 22px 20px 26px;
}

.cx-step {
	margin: 0 0 8px;
	color: var(--cx-sage);
	font-weight: 600;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
}

.cx-bento {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(220px, 1fr));
	gap: 16px;
	min-height: 560px;
}

.cx-bento__card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 28px;
	min-height: 220px;
	color: var(--cx-white);
}

.cx-bento__card--tall {
	grid-row: span 2;
}

.cx-bento__card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	transition: transform 0.8s var(--cx-ease);
}

.cx-bento__card:hover img {
	transform: scale(1.05);
}

.cx-bento__card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(42, 48, 43, 0) 30%, rgba(42, 48, 43, 0.55) 100%);
}

.cx-bento__card h3 {
	position: absolute;
	left: 22px;
	right: 18px;
	bottom: 20px;
	z-index: 2;
	margin: 0;
	font-family: var(--cx-serif);
	font-size: 1.45rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--cx-white);
}

.cx-bento__card--tall h3 {
	font-size: 1.8rem;
}

/* Stats / CTA / quotes
   ========================================================================== */

.cx-stats {
	padding: 72px 0;
	background: var(--cx-foam);
}

.cx-stats__intro {
	text-align: center;
	margin-bottom: 40px;
}

.cx-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	text-align: center;
}

.cx-stat__num {
	font-family: var(--cx-serif);
	font-size: 3rem;
	line-height: 1;
	letter-spacing: -0.04em;
	margin: 0 0 10px;
	font-variant-numeric: tabular-nums;
	color: var(--cx-sage-deep);
}

.cx-stat p:last-child {
	margin: 0;
	color: var(--cx-muted);
	font-size: 0.95rem;
}

.cx-eco {
	position: relative;
	background: var(--cx-mist);
	color: var(--cx-ink);
	overflow: hidden;
	padding: 110px 30px;
}

.cx-eco--compact {
	padding: 80px 30px;
}

.cx-eco__copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 18px;
	max-width: 560px;
	margin: 0 auto;
}

.cx-eco__copy .cx-h2,
.cx-eco-text,
.cx-eco .cx-eyebrow {
	color: var(--cx-ink);
	margin: 0;
}

.cx-eco-text {
	max-width: 460px;
	color: var(--cx-muted);
}

.cx-eco__tickers {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 7%;
	right: 7%;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	opacity: 0.55;
}

.cx-ticker {
	position: relative;
	width: 18%;
	max-width: 220px;
	height: 100%;
	overflow: hidden;
}

.cx-ticker::before,
.cx-ticker::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 64px;
	z-index: 2;
}

.cx-ticker::before {
	top: 0;
	background: linear-gradient(180deg, var(--cx-mist) 0%, transparent 100%);
}

.cx-ticker::after {
	bottom: 0;
	background: linear-gradient(0deg, var(--cx-mist) 0%, transparent 100%);
}

.cx-ticker__track {
	display: flex;
	flex-direction: column;
	gap: 14px;
	animation: cx-ticker-up 32s linear infinite;
}

.cx-ticker--down .cx-ticker__track {
	animation-name: cx-ticker-down;
}

.cx-ticker img {
	width: 100%;
	aspect-ratio: 0.85;
	object-fit: cover;
	border-radius: 18px;
}

@keyframes cx-ticker-up {
	from { transform: translateY(0); }
	to { transform: translateY(-50%); }
}

@keyframes cx-ticker-down {
	from { transform: translateY(-50%); }
	to { transform: translateY(0); }
}

.cx-quotes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.cx-quote {
	margin: 0;
	padding: 28px 26px;
	background: var(--cx-white);
	border-radius: 24px;
	border: 1px solid var(--cx-line);
}

.cx-quote p {
	font-family: var(--cx-serif);
	font-size: 1.2rem;
	line-height: 1.45;
	font-weight: 400;
	margin: 0 0 20px;
}

.cx-quote footer {
	font-size: 0.9rem;
	font-weight: 600;
	font-style: normal;
}

.cx-quote footer span {
	display: block;
	font-weight: 400;
	color: var(--cx-muted);
	margin-top: 2px;
}

.cx-blog-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 40px;
}

.cx-blog-grid,
.post-loop {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cx-blog-card,
.loop-card {
	background: var(--cx-white);
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--cx-line);
}

.cx-blog-card a,
.loop-card {
	display: block;
	padding: 0 0 20px;
	color: inherit;
}

.loop-card {
	padding: 0 0 20px;
}

.cx-blog-card img,
.loop-card__image {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
	margin-bottom: 16px;
}

.cx-blog-card h3,
.loop-card__title {
	padding: 0 18px;
	margin: 0;
}

.cx-blog-card__meta,
.loop-card__meta {
	padding: 0 18px;
	margin: 0 0 8px;
	font-size: 0.8rem;
	color: var(--cx-sage);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.loop-card__excerpt,
.loop-card__header {
	padding: 0 18px;
}

.loop-card__header {
	padding-top: 4px;
}

/* FAQ / newsletter / footer
   ========================================================================== */

.cx-faqband {
	background: var(--cx-paper);
	padding: 96px 0;
}

.cx-faq {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 28px;
	align-items: stretch;
}

.cx-faq__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cx-acc {
	background: var(--cx-white);
	color: var(--cx-ink);
	border: 1px solid var(--cx-line);
	border-radius: 18px;
	padding: 18px 22px;
}

.cx-acc summary {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: var(--cx-serif);
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 1.3;
	list-style: none;
}

.cx-acc summary::-webkit-details-marker {
	display: none;
}

.cx-acc summary::after {
	content: "+";
	flex-shrink: 0;
	font-family: var(--cx-sans);
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--cx-sage);
}

.cx-acc[open] summary::after {
	content: "–";
}

.cx-acc p {
	color: var(--cx-muted);
	margin: 12px 28px 0 0;
	font-size: 0.98rem;
}

.cx-faq__visual {
	border-radius: 28px;
	overflow: hidden;
	min-height: 100%;
	background: var(--cx-sand);
}

.cx-faq__visual img {
	width: 100%;
	height: 100%;
	min-height: 480px;
	max-width: none;
	object-fit: cover;
}

.cx-newsband {
	padding: 24px 0 96px;
	background: var(--cx-paper);
}

.cx-newsform {
	background: var(--cx-foam);
	border-radius: 28px;
	padding: 40px 44px;
}

.cx-newsform label {
	display: block;
	font-family: var(--cx-serif);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 1.25;
	margin-bottom: 22px;
	max-width: 18ch;
}

.cx-newsform__row {
	display: flex;
	gap: 10px;
	max-width: 520px;
}

.cx-newsform input,
.contact-form input,
.contact-form textarea,
.search-field {
	flex: 1;
	width: 100%;
	border: 1px solid var(--cx-line);
	border-radius: 16px;
	padding: 14px 18px;
	font: inherit;
	background: var(--cx-white);
	color: var(--cx-ink);
}

.cx-newsform input {
	border-radius: 999px;
}

.cx-footer {
	background: var(--cx-linen);
	color: var(--cx-ink);
	padding: 28px 0 32px;
	border-top: 1px solid var(--cx-line);
}

.cx-footer__top {
	padding: 48px 0 36px;
	border-bottom: 1px solid var(--cx-line);
	margin-bottom: 36px;
}

.cx-footer__wordmark {
	font-family: var(--cx-serif);
	font-size: clamp(3.2rem, 10vw, 7.5rem);
	line-height: 0.9;
	letter-spacing: -0.05em;
	margin: 0 0 12px;
	color: var(--cx-sage-deep);
	font-weight: 500;
}

.cx-footer__tagline {
	margin: 0;
	color: var(--cx-muted);
	max-width: 36em;
}

.cx-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 36px;
}

.cx-footer h2 {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 12px;
	color: var(--cx-sage);
}

.cx-footer .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cx-footer a:hover {
	color: var(--cx-sage-deep);
}

.cx-footer__social {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cx-footer address,
.contact-details address {
	font-style: normal;
}

.cx-footer__copy {
	border-top: 1px solid var(--cx-line);
	padding-top: 18px;
	font-size: 0.88rem;
	color: var(--cx-muted);
}

.cx-footer__brand p {
	color: var(--cx-muted);
}

/* Inner pages
   ========================================================================== */

.page-hero {
	padding: 48px 0 24px;
}

.page-hero__inner {
	max-width: 760px;
}

.page-hero__title {
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 1.08;
}

.page-hero__intro,
.contact-hero__intro {
	font-size: 1.12rem;
	color: var(--cx-muted);
	max-width: 38em;
	margin: 0;
}

.entry {
	padding: 32px 0 72px;
}

.single .entry {
	padding-top: 56px;
}

.entry-title {
	font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.entry-meta {
	color: var(--cx-muted);
	font-size: 0.92rem;
}

.entry-hero img {
	width: 100%;
	border-radius: 24px;
	margin: 16px 0 28px;
}

.entry-content {
	font-size: 1.05rem;
	color: var(--cx-ink);
}

.entry-content p,
.entry-content li {
	color: var(--cx-muted-2);
}

.contact-layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 28px;
	margin: 12px auto 80px;
}

.contact-form-panel,
.contact-details {
	background: var(--cx-white);
	border: 1px solid var(--cx-line);
	border-radius: 28px;
	padding: 32px;
}

.contact-form p {
	margin: 0 0 16px;
}

.contact-form label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 0.85rem;
}

.contact-form .is-invalid input,
.contact-form .is-invalid textarea {
	border-color: #c98989;
}

.contact-details h2 {
	font-family: var(--cx-serif);
	font-size: 1.6rem;
	font-weight: 500;
	margin: 0 0 16px;
}

.contact-details p,
.contact-details address {
	margin: 0 0 10px;
}

.contact-map {
	width: 100%;
	min-height: 220px;
	border: 0;
	border-radius: 18px;
	margin-top: 16px;
}

.form-notice {
	padding: 12px 16px;
	border-radius: 14px;
	margin-bottom: 16px;
}

.form-notice--success {
	background: var(--cx-foam);
}

.form-notice--error {
	background: #f7ecec;
}

.cx-about-grid,
.cx-principles {
	display: grid;
	gap: 28px;
}

.cx-about-grid {
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
}

.cx-about-grid__visual {
	margin: 0;
}

.cx-about-grid__visual img {
	width: 100%;
	border-radius: 28px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

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

.cx-service-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cx-service-item {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 28px;
	align-items: center;
	background: var(--cx-white);
	border: 1px solid var(--cx-line);
	border-radius: 28px;
	overflow: hidden;
	padding-right: 28px;
}

.cx-service-item__img img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.cx-price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.cx-price-card--featured {
	background: var(--cx-foam);
	transform: translateY(-8px);
}

.cx-price-card__note {
	font-family: var(--cx-serif);
	font-style: italic;
	color: var(--cx-sage-deep) !important;
}

.error-404 {
	padding-bottom: 80px;
}

.search-form {
	display: flex;
	gap: 10px;
	margin-bottom: 32px;
}

.search-submit,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--cx-sage-deep);
	color: var(--cx-white);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.post-navigation,
.comments-area {
	padding: 24px 0 64px;
}

.nav-links {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.page-numbers,
.nav-previous a,
.nav-next a {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--cx-white);
	border: 1px solid var(--cx-line);
}

.canvas-page {
	padding: 48px 0 80px;
}

.comments-title {
	font-family: var(--cx-serif);
	font-weight: 500;
}

/* Motion
   ========================================================================== */

[data-reveal] {
	opacity: 1;
}

.js-reveal [data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s var(--cx-ease), transform 0.8s var(--cx-ease);
}

.js-reveal [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.cx-marquee__track,
	.cx-ticker__track,
	.js-reveal [data-reveal],
	.cx-nav.is-open .menu li,
	.cx-nav.is-open .cx-nav__kicker,
	.cx-nav.is-open .cx-nav__mobile-cta,
	.cx-nav.is-open .cx-nav__meta {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

@keyframes cxNavIn {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* Breakpoints
   ========================================================================== */

@media (max-width: 1199px) and (min-width: 768px) {
	.cx-hero__grid,
	.cx-intro,
	.cx-faq,
	.cx-about-grid,
	.cx-footer__grid,
	.contact-layout {
		grid-template-columns: 1fr 1fr;
	}

	.cx-offer-grid,
	.cx-process-grid,
	.cx-blog-grid,
	.post-loop,
	.cx-stats__grid,
	.cx-principles,
	.cx-price-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cx-bento {
		min-height: 440px;
	}

	.cx-hero__title {
		max-width: none;
	}

	.cx-eco {
		padding: 88px 24px;
	}

	.cx-price-card--featured {
		transform: none;
	}

	.cx-service-item {
		grid-template-columns: 220px 1fr;
	}
}

@media (max-width: 767px) {
	.cx-wrap,
	.wrap,
	.wrap--narrow {
		width: min(100% - 32px, var(--cx-max));
	}

	.cx-header {
		padding-top: 10px;
	}

	.cx-header__inner {
		width: min(100% - 16px, var(--cx-max));
		min-height: 60px;
		border-radius: 22px;
	}

	.cx-nav,
	.cx-header__cta {
		display: none;
	}

	.cx-nav.is-open {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		gap: 0;
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100%;
		background:
			radial-gradient(ellipse 80% 50% at 100% -10%, rgba(216, 226, 204, 0.9), transparent 55%),
			radial-gradient(ellipse 70% 40% at -10% 90%, rgba(232, 239, 233, 0.95), transparent 50%),
			var(--cx-linen);
		z-index: 200;
		padding: max(96px, calc(env(safe-area-inset-top) + 80px)) 28px max(32px, env(safe-area-inset-bottom));
		margin: 0;
	}

	.cx-nav.is-open .cx-nav__kicker {
		display: block;
		margin: 0 auto 18px;
		width: min(100%, 360px);
		font-size: 0.72rem;
		font-weight: 600;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: var(--cx-sage-deep);
		animation: cxNavIn 0.45s var(--cx-ease) both;
	}

	.cx-nav.is-open .menu {
		counter-reset: cx-nav;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: min(100%, 360px);
		margin: 0 auto;
	}

	.cx-nav.is-open .menu li {
		counter-increment: cx-nav;
		border-bottom: 1px solid var(--cx-line);
		opacity: 0;
		animation: cxNavIn 0.55s var(--cx-ease) both;
	}

	.cx-nav.is-open .menu li:nth-child(1) { animation-delay: 0.04s; }
	.cx-nav.is-open .menu li:nth-child(2) { animation-delay: 0.1s; }
	.cx-nav.is-open .menu li:nth-child(3) { animation-delay: 0.16s; }
	.cx-nav.is-open .menu li:nth-child(4) { animation-delay: 0.22s; }
	.cx-nav.is-open .menu li:nth-child(5) { animation-delay: 0.28s; }
	.cx-nav.is-open .menu li:nth-child(6) { animation-delay: 0.34s; }

	.cx-nav.is-open .menu a {
		display: flex;
		align-items: baseline;
		gap: 16px;
		width: 100%;
		padding: 16px 2px;
		font-family: var(--cx-serif);
		font-size: clamp(1.7rem, 7.2vw, 2.2rem);
		font-weight: 500;
		letter-spacing: -0.03em;
		line-height: 1.15;
		color: var(--cx-ink);
		background: transparent;
		border-radius: 0;
	}

	.cx-nav.is-open .menu a::before {
		content: counter(cx-nav, decimal-leading-zero);
		font-family: var(--cx-sans);
		font-size: 0.7rem;
		font-weight: 600;
		letter-spacing: 0.08em;
		color: var(--cx-sage);
		min-width: 1.7em;
		transform: translateY(-0.2em);
	}

	.cx-nav.is-open .menu a:hover,
	.cx-nav.is-open .current-menu-item a {
		color: var(--cx-sage-deep);
		background: transparent;
	}

	.cx-nav.is-open .cx-nav__mobile-cta,
	.cx-nav.is-open .cx-nav__mobile-cta:hover {
		display: inline-flex;
		width: min(100%, 360px);
		margin: 28px auto 0;
		padding: 14px 22px;
		color: var(--cx-white);
		background: var(--cx-sage-deep);
		animation: cxNavIn 0.55s var(--cx-ease) 0.32s both;
	}

	.cx-nav.is-open .cx-nav__meta {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 10px 18px;
		width: min(100%, 360px);
		margin: 22px auto 0;
		padding-top: 18px;
		border-top: 1px solid var(--cx-line);
		font-size: 0.92rem;
		font-weight: 500;
		color: var(--cx-muted);
		animation: cxNavIn 0.55s var(--cx-ease) 0.4s both;
	}

	.cx-nav.is-open .cx-nav__meta a {
		font-family: var(--cx-sans);
		font-size: 0.92rem;
		font-weight: 500;
		padding: 0;
		border-radius: 0;
		color: var(--cx-muted);
	}

	.cx-nav.is-open .cx-nav__meta a:hover {
		color: var(--cx-ink);
		background: transparent;
	}

	.cx-burger {
		display: flex;
		margin-left: auto;
		position: relative;
		z-index: 210;
	}

	.cx-burger[aria-expanded="true"] {
		background: var(--cx-ink);
	}

	.cx-burger[aria-expanded="true"] span:not(.screen-reader-text) {
		background: var(--cx-white);
	}

	.cx-hero {
		padding-top: 20px;
	}

	.cx-hero__grid,
	.cx-intro,
	.cx-offer-grid,
	.cx-process-grid,
	.cx-blog-grid,
	.post-loop,
	.cx-stats__grid,
	.cx-split,
	.cx-faq,
	.cx-footer__grid,
	.cx-quotes,
	.cx-blog-head,
	.cx-newsform__row,
	.contact-layout,
	.cx-bento,
	.cx-about-grid,
	.cx-principles,
	.cx-price-grid,
	.cx-service-item {
		grid-template-columns: 1fr;
		display: grid;
	}

	.cx-hero__frame {
		aspect-ratio: 4 / 5;
		max-height: 460px;
		border-radius: 28px;
	}

	.cx-intro__visual figcaption {
		right: 12px;
	}

	.cx-eco__tickers,
	.cx-ticker {
		display: none;
	}

	.cx-eco,
	.cx-eco--compact {
		padding: 64px 20px;
	}

	.cx-bento {
		grid-template-rows: none;
		min-height: 0;
	}

	.cx-bento__card,
	.cx-bento__card--tall {
		grid-row: auto;
		min-height: 220px;
	}

	.cx-bento__card--tall {
		min-height: 300px;
	}

	.cx-faqband,
	.cx-section {
		padding: 64px 0;
	}

	.cx-faq__visual img {
		min-height: 260px;
	}

	.cx-newsform {
		padding: 28px 22px;
	}

	.cx-stat__num {
		font-size: 2.4rem;
	}

	.cx-service-item {
		padding-right: 0;
	}

	.cx-service-item__body {
		padding: 0 20px 24px;
	}

	.cx-price-card--featured {
		transform: none;
	}

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

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

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