/* ==========================================================================
   WebSoCal theme
   Colour encodes the two service families everywhere:
   kelp  = Data Science      poppy = Digital Marketing
   ========================================================================== */

:root {
	--pacific: #0B2540;
	--pacific-2: #14395C;
	--pacific-3: #1E4B73;
	--fog: #EEF3F6;
	--fog-2: #E1E9EF;
	--line: #D3DDE5;
	--ink: #0B2540;
	--muted: #4B5F73;
	--white: #FFFFFF;

	--kelp: #2BC4A4;       /* on dark */
	--kelp-ink: #0B7A66;   /* on light, AA contrast */
	--kelp-wash: #E3F5F0;
	--poppy: #F59331;
	--poppy-ink: #A9500A;
	--poppy-wash: #FDEEDD;

	--font-display: "Bricolage Grotesque", "Avenir Next", "Segoe UI", system-ui, sans-serif;
	--font-body: "Public Sans", "Helvetica Neue", Arial, system-ui, sans-serif;

	--step--1: 0.875rem;
	--step-0: 1.0625rem;
	--step-1: 1.25rem;
	--step-2: 1.563rem;
	--step-3: clamp(1.75rem, 1.4rem + 1.4vw, 2.441rem);
	--step-4: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem);
	--step-5: clamp(2.6rem, 1.7rem + 4vw, 4.6rem);

	--wrap: 1200px;
	--gutter: clamp(1.25rem, 4vw, 2.5rem);
	--section: clamp(4rem, 8vw, 7rem);
	--header-h: 76px;

	--accent: var(--kelp-ink);
	--accent-on-dark: var(--kelp);

	/* Kadence Blocks reads these, so its defaults (buttons, accents, row widths) match the brand. */
	--global-palette1: #F59331;  /* accent: buttons */
	--global-palette2: #0B7A66;  /* accent alt */
	--global-palette3: #0B2540;  /* strongest text */
	--global-palette4: #14395C;  /* strong text */
	--global-palette5: #4B5F73;  /* medium text */
	--global-palette6: #8497A8;  /* subtle text */
	--global-palette7: #E1E9EF;  /* subtle background */
	--global-palette8: #EEF3F6;  /* light background */
	--global-palette9: #FFFFFF;  /* white */
	--global-palette-btn-bg: #F59331;
	--global-palette-btn-bg-hover: #FFA852;
	--global-palette-btn: #0B2540;
	--global-palette-btn-hover: #0B2540;
	--global-content-width: 1200px;
	--global-content-edge-padding: var(--gutter);
	--global-body-font-family: var(--font-body);
	--global-heading-font-family: var(--font-display);
}

.group-kelp { --accent: var(--kelp-ink); --accent-on-dark: var(--kelp); --accent-wash: var(--kelp-wash); }
.group-poppy { --accent: var(--poppy-ink); --accent-on-dark: var(--poppy); --accent-wash: var(--poppy-wash); }

/* ---------- Base ---------- */

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

html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 1rem); }

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: var(--step-0);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 650;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 0.5em;
	text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }

:focus-visible { outline: 3px solid var(--poppy); outline-offset: 3px; border-radius: 4px; }

::selection { background: var(--kelp); color: var(--pacific); }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; left: 1rem; top: -100px; z-index: 1000;
	background: var(--poppy); color: var(--pacific); padding: 0.75rem 1rem; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * var(--gutter), 760px); }

.muted { color: var(--muted); }

/* ---------- Buttons & links ---------- */

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	min-height: 48px; padding: 0.7rem 1.35rem;
	border-radius: 10px; border: 2px solid transparent;
	font: 600 1rem/1.2 var(--font-body);
	text-decoration: none; cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--poppy); color: var(--pacific); }
.btn-primary:hover { background: #FFA852; }
.btn-ghost { border-color: var(--pacific); color: var(--pacific); background: transparent; }
.btn-ghost:hover { background: var(--pacific); color: var(--white); }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: var(--white); background: transparent; }
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.text-link {
	display: inline-flex; align-items: center; gap: .4rem;
	font-weight: 600; color: var(--accent);
	text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 0.25em;
}
.text-link:hover { text-decoration-thickness: 3px; }

/* ---------- Header & navigation ---------- */

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--pacific); color: var(--white);
	transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 8px 24px rgba(4,17,31,.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1.5rem; }

.wordmark {
	display: inline-flex; align-items: center; gap: .6rem;
	color: var(--white); text-decoration: none;
	font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; letter-spacing: -0.02em;
}
.wordmark b { font-weight: 800; }
.wordmark-mark { color: var(--kelp); flex: none; }
.custom-logo { max-height: 52px; width: auto; }

.nav-toggle, .sub-toggle { display: none; }

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav .menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .25rem; }
.site-nav .menu > li { position: relative; }
.site-nav .menu > li > a {
	display: flex; align-items: center; gap: .3rem;
	padding: .6rem .8rem; border-radius: 8px;
	color: rgba(255,255,255,.88); text-decoration: none; font-weight: 500; font-size: .98rem;
}
.site-nav .menu > li > a:hover,
.site-nav .menu > .current-menu-item > a,
.site-nav .menu > .current-menu-ancestor > a { color: var(--white); background: rgba(255,255,255,.08); }
.site-nav .menu > .menu-item-has-children > a::after {
	content: ""; width: .45em; height: .45em; margin-left: .15em; margin-top: -.2em;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); opacity: .7;
}

/* Desktop dropdowns */
@media (min-width: 1081px) {
	.site-nav .sub-menu {
		list-style: none; margin: 0; padding: .5rem;
		position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
		background: var(--white); color: var(--ink);
		border-radius: 12px; box-shadow: 0 18px 48px rgba(4,17,31,.22), 0 0 0 1px rgba(11,37,64,.06);
		opacity: 0; visibility: hidden; transform: translateY(-4px);
		transition: opacity .15s ease, transform .15s ease, visibility .15s;
	}
	/* Opened by theme.js with a short hover delay (class .is-open).
	   Plain :hover is only a fallback when JavaScript is off. */
	html:not(.js) .site-nav .menu > li:hover > .sub-menu,
	.site-nav .menu > li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
	/* Bridge the gap between the menu item and its panel. It lives on the
	   panel itself, so it only exists while the panel is open. */
	.site-nav .menu > li > .sub-menu::before {
		content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
	}
	.site-nav .sub-menu a {
		display: block; padding: .55rem .75rem; border-radius: 8px;
		text-decoration: none; font-size: .95rem; color: var(--ink);
	}
	.site-nav .sub-menu a:hover { background: var(--fog); }

	/* Services mega menu: two coloured columns, Data Science first */
	.site-nav { position: relative; }
	.site-nav .menu > li.mega { position: static; }
	.site-nav .mega > .sub-menu {
		display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
		width: min(680px, 90vw); left: auto; right: 0; padding: 1rem;
	}
	.site-nav .mega > .sub-menu > li > a {
		font-family: var(--font-display); font-weight: 650; font-size: 1.05rem;
		color: var(--accent); padding-bottom: .6rem; margin-bottom: .25rem;
		border-bottom: 2px solid var(--accent-wash, var(--fog-2)); border-radius: 8px 8px 0 0;
	}
	.site-nav .mega .sub-menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; padding: 0; min-width: 0; background: transparent;
	}
	.site-nav .mega .sub-menu .sub-menu a { padding: .45rem .75rem; font-size: .93rem; }
	.site-nav .mega > .sub-menu > .group-kelp { background: linear-gradient(var(--kelp-wash), transparent 70%); border-radius: 10px; }
	.site-nav .mega > .sub-menu > .group-poppy { background: linear-gradient(var(--poppy-wash), transparent 70%); border-radius: 10px; }
}

.nav-cta .btn { min-height: 42px; padding: .55rem 1.1rem; }

/* Mobile navigation */
@media (max-width: 1080px) {
	.nav-toggle {
		display: inline-flex; align-items: center; justify-content: center;
		width: 48px; height: 48px; border-radius: 10px;
		background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); cursor: pointer;
	}
	.nav-toggle-close { display: none; }
	.nav-open .nav-toggle-open { display: none; }
	.nav-open .nav-toggle-close { display: inline; }

	.site-nav {
		position: fixed; inset: var(--header-h) 0 0 0;
		flex-direction: column; align-items: stretch; gap: 1.5rem;
		padding: 1rem var(--gutter) 2rem;
		background: var(--pacific); overflow-y: auto;
		visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s;
	}
	.nav-open .site-nav { visibility: visible; opacity: 1; }
	.nav-open { overflow: hidden; }

	.site-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav .menu li { position: relative; border-bottom: 1px solid rgba(255,255,255,.1); }
	.site-nav .menu > li > a { padding: 1rem 3.5rem 1rem 0; font-size: 1.15rem; border-radius: 0; background: none !important; }
	.site-nav .menu > .menu-item-has-children > a::after { display: none; }
	.site-nav .sub-menu { list-style: none; margin: 0; padding: 0 0 .75rem 1rem; display: none; }
	.site-nav .sub-open > .sub-menu { display: block; }
	.site-nav .sub-menu li { border: 0; }
	.site-nav .sub-menu a { display: block; padding: .55rem 3rem .55rem 0; color: rgba(255,255,255,.82); text-decoration: none; }
	.site-nav .sub-menu .sub-menu { display: block; padding-bottom: .5rem; }
	.site-nav .mega > .sub-menu > li > a { color: var(--accent-on-dark); font-weight: 600; }
	.sub-toggle {
		position: absolute; right: 0; top: .45rem;
		width: 44px; height: 44px; border-radius: 8px;
		background: transparent; border: 0; color: var(--white); cursor: pointer;
		display: inline-flex; align-items: center; justify-content: center;
	}
	.sub-toggle svg { transition: transform .2s ease; }
	.sub-open > .sub-toggle svg { transform: rotate(180deg); }
	.nav-cta .btn { width: 100%; min-height: 52px; }
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	background: var(--pacific);
	color: var(--white);
	overflow: hidden;
	padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.hero::after { /* horizon line where the Pacific meets the page */
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
	background: linear-gradient(90deg, var(--kelp) 0 58%, var(--poppy) 58% 100%);
}
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-title {
	font-size: var(--step-5);
	font-weight: 800;
	line-height: 1.0;
	letter-spacing: -0.035em;
	margin-bottom: .45em;
	max-width: 13ch;
}
.hero-text { font-size: var(--step-1); line-height: 1.55; color: rgba(255,255,255,.84); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.hero-note { margin-top: 1.75rem; font-size: var(--step--1); color: rgba(255,255,255,.62); }

.hero-chart { margin: 0; position: relative; }
.hero-chart svg { width: 100%; height: auto; overflow: visible; }
.hero-chart .grid line { stroke: rgba(255,255,255,.1); stroke-width: 1; }
.hero-chart .band { fill: rgba(43,196,164,.18); }
.hero-chart .today { stroke: rgba(255,255,255,.35); stroke-width: 1; stroke-dasharray: 3 5; }
.hero-chart .today-label { fill: rgba(255,255,255,.65); font: 500 13px var(--font-body); }
.hero-chart .line-actual { fill: none; stroke: var(--white); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.hero-chart .line-forecast { fill: none; stroke: var(--kelp); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: .018 .014; }
.hero-chart .dot-now { fill: var(--pacific); stroke: var(--white); stroke-width: 3; }
.hero-chart .dot-end { fill: var(--poppy); }
.hero-chart-legend { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: .75rem; font-size: var(--step--1); color: rgba(255,255,255,.7); }
.key { display: inline-flex; align-items: center; gap: .5rem; }
.key::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--white); }
.key-forecast::before { background: repeating-linear-gradient(90deg, var(--kelp) 0 6px, transparent 6px 10px); }

/* The one orchestrated moment: history draws in, then the forecast and its range appear. */
@media (prefers-reduced-motion: no-preference) {
	.js .hero-chart .line-actual { stroke-dasharray: 1 1; stroke-dashoffset: 1; }
	.js .hero-chart .line-forecast,
	.js .hero-chart .band,
	.js .hero-chart .dot-end,
	.js .hero-chart .dot-now { opacity: 0; }
	.js .hero-chart.is-drawn .line-actual { animation: draw 1.6s cubic-bezier(.5,0,.2,1) forwards; }
	.js .hero-chart.is-drawn .dot-now { animation: fade .3s ease 1.5s forwards; }
	.js .hero-chart.is-drawn .band { animation: fade .8s ease 1.7s forwards; }
	.js .hero-chart.is-drawn .line-forecast { animation: fade .6s ease 1.7s forwards; }
	.js .hero-chart.is-drawn .dot-end { animation: fade .4s ease 2.2s forwards; }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }

/* ---------- Sections ---------- */

.section { padding: var(--section) 0; }
.section-title { font-size: var(--step-4); font-weight: 650; letter-spacing: -0.03em; }
.section-title a { text-decoration: none; }
.section-title a:hover { text-decoration: underline; }
.section-lede { font-size: var(--step-1); line-height: 1.55; color: var(--muted); max-width: 36rem; }
.section-head-row { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem 2rem; margin-bottom: 2.5rem; }
.section-head-row .section-title { margin: 0; }
.section--tint { background: var(--fog); }

/* Data science block: dark, primary */
.section--ds { background: var(--pacific); color: var(--white); --accent: var(--kelp); }
.section--ds .section-lede { color: rgba(255,255,255,.78); }
.section--ds .text-link { color: var(--kelp); }

/* Digital marketing block: light, secondary */
.section--dm { background: var(--fog); --accent: var(--poppy-ink); }

.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.split-head { position: sticky; top: calc(var(--header-h) + 2rem); }
.split-head .btn { margin-top: 1rem; }
.split--reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.split--reverse .split-head { order: 2; }

/* Service rows */
.service-list { list-style: none; margin: 0; padding: 0; }
.service-list a {
	display: grid; grid-template-columns: 1fr auto; column-gap: 1.5rem; row-gap: .25rem;
	padding: 1.4rem 0; text-decoration: none;
	border-top: 1px solid var(--line);
}
.service-list li:last-child a { border-bottom: 1px solid var(--line); }
.service-name { font-family: var(--font-display); font-size: var(--step-2); font-weight: 650; letter-spacing: -0.02em; line-height: 1.2; }
.service-short { grid-column: 1; color: var(--muted); max-width: 38rem; }
.service-go {
	grid-column: 2; grid-row: 1 / span 2; align-self: center;
	width: 44px; height: 44px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1.5px solid var(--line); color: var(--accent);
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.service-list a:hover .service-name { color: var(--accent); }
.service-list a:hover .service-go,
.service-list a:focus-visible .service-go { background: var(--accent); border-color: var(--accent); color: var(--white); }

.section--ds .service-list a { border-color: rgba(255,255,255,.14); }
.section--ds .service-short { color: rgba(255,255,255,.72); }
.section--ds .service-go { border-color: rgba(255,255,255,.25); color: var(--kelp); }
.section--ds .service-list a:hover .service-name { color: var(--kelp); }
.section--ds .service-list a:hover .service-go { background: var(--kelp); color: var(--pacific); border-color: var(--kelp); }

/* Compact variant for digital marketing: two columns, smaller type */
.service-list--compact { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; }
.service-list--compact li:last-child a { border-bottom: 0; }
.service-list--compact a { padding: 1.1rem 0; }
.service-list--compact .service-name { font-size: var(--step-1); }
.service-list--compact .service-short { font-size: .95rem; }
.service-list--compact .service-go { width: 36px; height: 36px; }

/* Process: real sequence, so numbers are meaningful */
.process { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; counter-reset: step; }
.process li { counter-increment: step; padding-top: 1.25rem; border-top: 3px solid var(--pacific); }
.process li::before {
	content: counter(step); display: block; margin-bottom: .75rem;
	font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--kelp-ink);
}
.process h3 { font-size: var(--step-2); }
.process p { color: var(--muted); }

/* Works */
.section--works { border-top: 1px solid var(--line); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.work-card-link { display: block; text-decoration: none; }
.work-card-media {
	display: grid; place-items: center; aspect-ratio: 16 / 10;
	background: var(--fog); border-radius: 14px; overflow: hidden;
}
.work-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 12%; transition: transform .3s ease; }
.work-card-link:hover .work-card-media img { transform: scale(1.03); }
.work-card-initial { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: var(--pacific-3); }
.work-card-body { display: flex; flex-direction: column; gap: .2rem; padding-top: .9rem; }
.work-card-cat { font-size: var(--step--1); color: var(--muted); }
.work-card-title { font-family: var(--font-display); font-size: var(--step-1); font-weight: 650; line-height: 1.25; }
.work-card-link:hover .work-card-title { text-decoration: underline; }
.work-card-result { font-weight: 600; color: var(--kelp-ink); font-size: .95rem; }

/* Testimonials */
.section--quote { background: var(--fog); }
.testimonial { margin: 0; }
.testimonial blockquote { margin: 0 0 1.25rem; }
.testimonial blockquote p { margin: 0; }
.testimonial--lg blockquote p {
	font-family: var(--font-display); font-weight: 500;
	font-size: clamp(1.35rem, 1rem + 1.3vw, 2rem); line-height: 1.35; letter-spacing: -0.015em;
	max-width: 52rem;
}
.testimonial--lg blockquote p::before { content: "“"; color: var(--poppy); margin-left: -.45em; }
.testimonial--lg blockquote p::after { content: "”"; color: var(--poppy); }
.testimonial--lg + .text-link { margin-top: 1.5rem; }
.testimonial figcaption { display: flex; flex-direction: column; }
.t-name { font-weight: 600; }
.t-role { color: var(--muted); font-size: .95rem; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
.testimonial-grid .testimonial { padding-top: 1.5rem; border-top: 3px solid var(--poppy); }
.testimonial-grid .testimonial blockquote p { font-size: 1.05rem; line-height: 1.65; }

/* Audit band */
.section--audit { background: var(--white); border-top: 1px solid var(--line); }
.audit-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }

/* News */
.section--news { background: var(--fog); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.post-card { display: flex; flex-direction: column; }
.post-card-media { display: block; aspect-ratio: 16 / 10; border-radius: 12px; overflow: hidden; background: var(--fog-2); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card-placeholder {
	display: grid; place-items: center; height: 100%;
	background: var(--pacific); color: var(--kelp);
	font-family: var(--font-display); font-weight: 800; font-size: 2rem;
}
.post-card-body { padding-top: 1rem; }
.post-card-meta { font-size: var(--step--1); color: var(--muted); margin-bottom: .4rem; }
.post-card-title { font-size: var(--step-1); line-height: 1.3; margin-bottom: .5rem; }
.post-card-title a { text-decoration: none; }
.post-card-title a:hover { text-decoration: underline; }
.post-card-excerpt { color: var(--muted); font-size: .98rem; margin: 0; }
.section--news .post-card-media { background: var(--white); }

.post-feature { display: grid; grid-template-columns: 7fr 5fr; gap: 2.5rem; align-items: center; margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line); }
.post-feature-media { display: block; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: var(--pacific); }
.post-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.post-feature-title { font-size: var(--step-3); }
.post-feature-title a { text-decoration: none; }
.post-feature-title a:hover { text-decoration: underline; }

.news-tools { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; margin-bottom: 2.5rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.news-tools .chips { margin: 0; }
.chip {
	display: inline-flex; align-items: center; min-height: 40px; padding: .4rem 1rem;
	border-radius: 999px; border: 1px solid var(--line); text-decoration: none; font-size: .95rem; font-weight: 500;
}
.chip:hover { border-color: var(--pacific); }
.chip.is-active { background: var(--pacific); border-color: var(--pacific); color: var(--white); }

.search-form { display: flex; min-width: min(100%, 320px); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--white); }
.search-form input { flex: 1; min-width: 0; border: 0; padding: .7rem 1rem; font: inherit; background: transparent; }
.search-form input:focus { outline: none; }
.search-form:focus-within { outline: 3px solid var(--poppy); outline-offset: 2px; }
.search-form button { border: 0; background: var(--pacific); color: var(--white); width: 48px; cursor: pointer; display: grid; place-items: center; }

/* Pagination */
.pagination { margin-top: 3rem; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .4rem; }
.pagination .page-numbers {
	display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .8rem;
	border-radius: 10px; border: 1px solid var(--line); text-decoration: none; font-weight: 500;
}
.pagination .page-numbers.current { background: var(--pacific); color: var(--white); border-color: var(--pacific); }
.pagination a.page-numbers:hover { border-color: var(--pacific); }

/* CTA band */
.cta-band { background: var(--pacific); color: var(--white); padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.cta-band-inner { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 2rem 4rem; align-items: center; }
.cta-band-title { font-size: var(--step-4); letter-spacing: -0.03em; max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 36rem; margin: 0; font-size: var(--step-1); line-height: 1.5; }
.cta-band-actions { display: flex; flex-direction: column; gap: .75rem; }

/* ---------- Inner pages ---------- */

.page-head { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4.5rem); }
.page-head--dark { background: var(--pacific); color: var(--white); --accent: var(--accent-on-dark); }
.page-head--fog { background: var(--fog); }
.page-head--plain { border-bottom: 1px solid var(--line); }
.page-title { font-size: var(--step-5); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; max-width: 20ch; margin-bottom: .35em; }
.page-lede { font-size: var(--step-1); line-height: 1.55; max-width: 44rem; margin: 0; color: var(--muted); }
.page-head--dark .page-lede { color: rgba(255,255,255,.8); }
.page-kicker { margin: 0 0 .75rem; font-weight: 600; }
.page-kicker a { color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.page-kicker a::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: currentColor; }
.page-kicker a:hover { text-decoration: underline; }
.page-head--service .page-title { max-width: 22ch; }
.page-head .hero-actions { margin-top: 2rem; }
.page-head--fog .btn-ghost-light { border-color: var(--pacific); color: var(--pacific); }

.breadcrumbs ol { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-wrap: wrap; gap: .25rem; font-size: var(--step--1); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .25rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; opacity: .5; margin-right: .1rem; }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.page-head--dark .breadcrumbs li { color: rgba(255,255,255,.65); }

.with-aside { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.with-aside--form { grid-template-columns: minmax(0, 1fr) 340px; }
.aside { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: calc(var(--header-h) + 1.5rem); }
.aside-title { font-size: 1.15rem; margin-bottom: .75rem; }
.aside-card { padding: 1.5rem; border-radius: 14px; background: var(--fog); }
.aside-card p { font-size: .98rem; }
.aside-nav ul { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.aside-nav a { display: block; padding: .5rem 0 .5rem 1rem; margin-left: -2px; border-left: 2px solid transparent; text-decoration: none; color: var(--muted); font-size: .98rem; }
.aside-nav a:hover { color: var(--ink); }
.aside-nav .is-current a { border-left-color: var(--accent); color: var(--ink); font-weight: 600; }

.deliverables { margin-bottom: 3rem; }
.deliverables h2 { font-size: var(--step-3); }
.checklist { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; padding: 1.1rem 1.1rem; background: var(--accent-wash, var(--fog)); border-radius: 12px; line-height: 1.45; }
.checklist .icon { flex: none; color: var(--accent); margin-top: .1rem; }
.checklist--sm { grid-template-columns: 1fr; gap: .6rem; margin-bottom: 1rem; }
.checklist--sm li { background: none; padding: 0; font-size: .98rem; }
.checklist--sm .icon { color: var(--kelp-ink); }
.tools-title { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; color: var(--muted); }
.tools { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.tools li { padding: .35rem .8rem; border: 1px solid var(--line); border-radius: 8px; font-size: .92rem; }

.cross { max-width: 44rem; }
.section--cross { border-top: 1px solid var(--line); }
.section--cross .section-title { font-size: var(--step-3); }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 3rem; margin-top: 2rem; }
.values h3 { font-size: var(--step-2); }
.values p { color: var(--muted); }

.plain-list { list-style: none; margin: 0; padding: 0; }
.plain-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.plain-list li:last-child { border-bottom: 0; }
.plain-list li a { font-weight: 600; color: var(--accent); }
.plain-list li span { color: var(--muted); font-size: .95rem; }
.plain-list--links { margin-top: 2rem; }
.plain-list--links li a { color: var(--ink); }

.contact-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .85rem; }
.contact-list li { display: flex; gap: .75rem; align-items: center; }
.contact-list .icon { color: var(--kelp-ink); flex: none; }

.steps { margin: 0; padding-left: 1.25rem; display: grid; gap: .75rem; }
.steps li::marker { font-family: var(--font-display); font-weight: 800; color: var(--kelp-ink); }

.facts { margin: 0; display: grid; gap: 1.1rem; }
.facts div { padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.facts dt { font-size: var(--step--1); color: var(--muted); margin-bottom: .2rem; }
.facts dd { margin: 0; font-weight: 500; }
.facts a { display: inline-flex; align-items: center; gap: .35rem; }
.fact-result { font-family: var(--font-display); font-size: var(--step-2); font-weight: 650; color: var(--kelp-ink); line-height: 1.2; }
.work-media { margin-bottom: 2.5rem; border-radius: 14px; overflow: hidden; background: var(--fog); }

.empty { color: var(--muted); }

/* Prose (editor content) */
.prose { font-size: 1.08rem; line-height: 1.7; }
.prose > * { max-width: 72ch; }
.prose h2 { font-size: var(--step-3); margin-top: 2.2em; }
.prose h3 { font-size: var(--step-2); margin-top: 1.8em; }
.prose h4 { font-size: var(--step-1); margin-top: 1.6em; }
.prose > :first-child { margin-top: 0; }
.prose a { color: var(--kelp-ink); font-weight: 500; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose li::marker { color: var(--kelp-ink); }
.prose img { border-radius: 12px; height: auto; }
.prose blockquote { margin: 2rem 0; padding: .25rem 0 .25rem 1.5rem; border-left: 3px solid var(--poppy); font-size: 1.2rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: .98rem; display: block; overflow-x: auto; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: .6rem .75rem; text-align: left; }
.prose pre { background: var(--pacific); color: var(--white); padding: 1.25rem; border-radius: 12px; overflow-x: auto; }
.prose .wp-block-image, .prose figure { margin: 2rem 0; }
.prose figcaption { font-size: var(--step--1); color: var(--muted); margin-top: .5rem; }
.alignwide { max-width: 1100px !important; }
.alignfull { max-width: none !important; }
.aligncenter { margin-inline: auto; }
.alignleft { float: left; margin: .3rem 1.5rem 1rem 0; }
.alignright { float: right; margin: .3rem 0 1rem 1.5rem; }

.article-meta { color: var(--muted); margin: 0; }
.article-meta a { color: inherit; }
.article-media { margin-top: -2rem; margin-bottom: 0; position: relative; }
.article-media img { border-radius: 14px; width: 100%; }
.section--article { padding-top: 3rem; }
.sep { opacity: .7; }
.tags { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.tags a { padding: .3rem .75rem; border: 1px solid var(--line); border-radius: 999px; font-size: .9rem; text-decoration: none; color: var(--ink); font-weight: 400; }
.post-nav { padding-bottom: var(--section); }
.post-nav .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; border-top: 1px solid var(--line); padding-top: 2rem; }
.post-nav a { text-decoration: none; font-family: var(--font-display); font-weight: 650; font-size: 1.1rem; line-height: 1.3; display: block; }
.post-nav a:hover { text-decoration: underline; }
.post-nav .nav-next { text-align: right; grid-column: 2; }
.post-nav-label { display: block; font-family: var(--font-body); font-weight: 500; font-size: var(--step--1); color: var(--muted); margin-bottom: .3rem; }

.comments { padding-bottom: var(--section); }

/* ---------- Page builder canvas (Kadence Blocks / block editor) ---------- */

.builder-content { overflow-x: clip; }
/* Top-level blocks follow WordPress's widths: normal = reading width,
   wide = site width, full = edge to edge. Same as in the editor. */
.builder-content > * { width: min(100% - 2 * var(--gutter), 760px); margin-inline: auto; }
.builder-content > .alignwide { width: min(100% - 2 * var(--gutter), var(--wrap)); max-width: none !important; }
.builder-content > .alignfull { width: 100%; max-width: none !important; }
/* Vertical rhythm between top-level blocks. Stacked full-width Kadence rows
   touch (they carry their own padding); everything else gets breathing room. */
.builder-content > * { margin-block: 0; }
.builder-content > * + * { margin-top: 1.25rem; }
.builder-content > * + :where(h2, h3) { margin-top: 2.5rem; }
.builder-content > .alignwide,
.builder-content > .alignfull + *,
.builder-content > * + .alignfull { margin-top: clamp(2.5rem, 5vw, 4rem); }
.builder-content > .alignfull + .alignfull { margin-top: 0; }
/* WPBakery and Elementor manage their own widths and spacing. */
.builder-content > :is(.wpb-content-wrapper, .vc_row, .vc_section) { width: min(100% - 2 * var(--gutter), var(--wrap)); max-width: none; }
.builder-content > :is(.elementor, [data-elementor-type]) { width: 100%; max-width: none; margin: 0 !important; }
.builder-content > :first-child:not(.alignfull):not(.wpb-content-wrapper):not(.vc_row):not(.vc_section):not(.elementor):not([data-elementor-type]) { margin-top: var(--section); }
.builder-content > :last-child:not(.alignfull):not(.elementor):not([data-elementor-type]):not(.wpb-content-wrapper):not(.vc_row):not(.vc_section) { margin-bottom: var(--section); }
.builder-content > .wpb-content-wrapper:first-child { padding-top: clamp(2.5rem, 5vw, 4rem); }
.builder-content > .wpb-content-wrapper:last-child { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
/* WPBakery buttons and headings pick up the brand */
.builder-content .vc_btn3.vc_btn3-color-juicy-pink, .builder-content .vc_btn3.vc_btn3-color-orange { background-color: var(--poppy) !important; color: var(--pacific) !important; border-color: var(--poppy) !important; }
.builder-content .vc_btn3 { border-radius: 10px !important; font-weight: 600; }
.builder-content .vc_custom_heading, .builder-content .wpb_text_column h1, .builder-content .wpb_text_column h2, .builder-content .wpb_text_column h3 { font-family: var(--font-display); }
.builder-content > .alignleft, .builder-content > .alignright { width: auto; }

/* Kadence rows: inner content lines up with the header and footer */
.builder-content .kt-row-column-wrap { max-width: var(--global-content-width); }
.builder-content .kb-row-layout-wrap.alignfull > .kt-row-column-wrap,
.builder-content .wp-block-kadence-rowlayout.alignfull > .kt-row-column-wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.builder-content .wp-block-kadence-advancedheading { text-wrap: balance; }
.builder-content .wp-block-kadence-advancedbtn .kb-button { border-radius: 10px; font-weight: 600; }

/* Core blocks: brand defaults */
.builder-content .wp-block-button__link, .prose .wp-block-button__link { border-radius: 10px; font-weight: 600; text-decoration: none; }
.wp-block-separator { border: 0; border-top: 1px solid var(--line); }
.has-pacific-background-color, .has-pacific-2-background-color { color: var(--white); }
.has-pacific-background-color a:not(.wp-element-button):not(.kb-button) { color: var(--kelp); }

/* Blocks inside theme-design pages (content shown within the designed layout) */
.prose .alignfull, .prose .kb-row-layout-wrap { max-width: 100% !important; }

/* Builder sections added below the designed home page */
.home-builder { border-top: 1px solid var(--line); }
.home-builder:empty { display: none; }

/* ---------- Forms ---------- */

.ws-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin: 0; min-width: 0; }
.field--wide { grid-column: 1 / -1; }
.field label, .field legend { font-weight: 600; font-size: .95rem; }
fieldset.field { border: 0; padding: 0; }
fieldset.field legend { margin-bottom: .6rem; padding: 0; }
.ws-form input[type="text"], .ws-form input[type="email"], .ws-form input[type="tel"], .ws-form input[type="url"], .ws-form select, .ws-form textarea {
	width: 100%; min-height: 50px; padding: .75rem .95rem;
	font: inherit; color: var(--ink); background: var(--white);
	border: 1.5px solid var(--line); border-radius: 10px;
	transition: border-color .15s ease;
}
.ws-form textarea { min-height: 140px; resize: vertical; }
.ws-form input:hover, .ws-form select:hover, .ws-form textarea:hover { border-color: #A9B8C6; }
.ws-form input:focus, .ws-form select:focus, .ws-form textarea:focus { outline: none; border-color: var(--pacific); box-shadow: 0 0 0 3px rgba(245,147,49,.45); }
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.choice {
	display: flex; align-items: flex-start; gap: .6rem; padding: .7rem .85rem;
	border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; font-weight: 400 !important; font-size: .96rem !important; line-height: 1.35;
}
.choice input { margin-top: .15rem; width: 18px; height: 18px; accent-color: var(--pacific); flex: none; }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-wash, var(--fog)); }
fieldset.group-kelp legend { color: var(--kelp-ink); }
fieldset.group-poppy legend { color: var(--poppy-ink); }
.form-actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.form-note { margin: 0; font-size: var(--step--1); color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice { grid-column: 1 / -1; padding: 1rem 1.25rem; border-radius: 10px; font-weight: 500; }
.notice-ok { background: var(--kelp-wash); color: #064F42; border: 1px solid #9FDCCD; }
.notice-error { background: #FDECEC; color: #8A1C1C; border: 1px solid #F2B8B8; }

.ws-form.is-compact { grid-template-columns: 1fr; gap: 1rem; padding: 1.75rem; background: var(--fog); border-radius: 16px; }
.ws-form.is-compact .btn { width: 100%; }

/* Form plugins (Contact Form 7, WPForms, Gravity Forms…) placed via Customizer → WebSoCal: forms */
.ws-form-embed.is-compact { padding: 1.75rem; background: var(--fog); border-radius: 16px; }
.ws-form-embed label, .ws-form-embed legend { font-weight: 600; font-size: .95rem; }
.ws-form-embed p { margin: 0 0 1.1rem; }
.ws-form-embed input[type="text"], .ws-form-embed input[type="email"], .ws-form-embed input[type="tel"],
.ws-form-embed input[type="url"], .ws-form-embed input[type="number"], .ws-form-embed input[type="date"],
.ws-form-embed select, .ws-form-embed textarea {
	width: 100% !important; max-width: 100% !important; min-height: 50px; padding: .75rem .95rem !important; margin-top: .35rem;
	font: inherit !important; color: var(--ink); background: var(--white);
	border: 1.5px solid var(--line) !important; border-radius: 10px !important; box-shadow: none !important;
}
.ws-form-embed textarea { min-height: 140px; }
.ws-form-embed input:focus, .ws-form-embed select:focus, .ws-form-embed textarea:focus { outline: none; border-color: var(--pacific) !important; box-shadow: 0 0 0 3px rgba(245,147,49,.45) !important; }
.ws-form-embed input[type="submit"], .ws-form-embed button[type="submit"], .ws-form-embed .wpforms-submit, .ws-form-embed .gform_button {
	display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .7rem 1.35rem !important;
	background: var(--poppy) !important; color: var(--pacific) !important; border: 0 !important; border-radius: 10px !important;
	font: 600 1rem/1.2 var(--font-body) !important; cursor: pointer;
}
.ws-form-embed input[type="submit"]:hover, .ws-form-embed button[type="submit"]:hover { background: #FFA852 !important; }
.ws-form-embed .wpcf7-response-output { margin: 1rem 0 0 !important; padding: .9rem 1.1rem !important; border-radius: 10px; }
.ws-form-embed .wpcf7-not-valid-tip { font-size: .9rem; margin-top: .3rem; }

/* Formidable Forms specifics */
.ws-form-embed .frm_forms .frm_primary_label,
.ws-form-embed .with_frm_style .frm_primary_label { font-family: var(--font-body) !important; font-weight: 600 !important; font-size: .95rem !important; color: var(--ink) !important; padding-bottom: .35rem !important; }
.ws-form-embed .with_frm_style .frm_required { color: var(--poppy-ink) !important; }
.ws-form-embed .with_frm_style .frm_form_field { margin-bottom: 1.25rem !important; }
.ws-form-embed .with_frm_style .frm_description { color: var(--muted) !important; font-size: .9rem !important; }
.ws-form-embed .with_frm_style .frm_checkbox label,
.ws-form-embed .with_frm_style .frm_radio label { font-size: .98rem !important; color: var(--ink) !important; display: inline-flex !important; align-items: center; gap: .55rem; padding: .25rem 0; }
.ws-form-embed .with_frm_style input[type="checkbox"],
.ws-form-embed .with_frm_style input[type="radio"] { width: 18px !important; height: 18px !important; min-height: 0 !important; margin: 0 !important; accent-color: var(--pacific); appearance: auto !important; -webkit-appearance: auto !important; border: 0 !important; }
.ws-form-embed .with_frm_style .frm_blank_field input,
.ws-form-embed .with_frm_style .frm_blank_field select,
.ws-form-embed .with_frm_style .frm_blank_field textarea { border-color: #C0392B !important; }
.ws-form-embed .with_frm_style .frm_error { color: #A61B1B !important; font-size: .9rem !important; margin-top: .3rem; }
.ws-form-embed .frm_error_style { background: #FDECEC !important; border: 1px solid #F2B8B8 !important; color: #8A1C1C !important; border-radius: 10px !important; padding: 1rem 1.25rem !important; }
.ws-form-embed .frm_error_style a { color: inherit !important; }
.ws-form-embed .frm_message { background: var(--kelp-wash) !important; border: 1px solid #9FDCCD !important; color: #064F42 !important; border-radius: 10px !important; padding: 1rem 1.25rem !important; font-weight: 500; }
.ws-form-embed .with_frm_style .frm_submit { margin-top: .5rem; }
.ws-form-embed.is-compact .frm_submit button, .ws-form-embed.is-compact .frm_button_submit { width: 100% !important; }

/* ---------- Footer ---------- */

.site-footer { background: #081D33; color: rgba(255,255,255,.78); padding-top: clamp(3.5rem, 6vw, 5rem); font-size: .98rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-about p { margin: 1.25rem 0; max-width: 26rem; }
.footer-title { font-size: 1.05rem; color: var(--white); margin-bottom: 1rem; }
.footer-title a { text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.footer-col.group-kelp .footer-title a::before, .footer-col.group-poppy .footer-title a::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-on-dark); }
.footer-title a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a, .footer-contact a { text-decoration: none; }
.footer-col a:hover, .footer-contact a:hover { color: var(--white); text-decoration: underline; }
.footer-contact li { display: flex; gap: .6rem; align-items: center; margin-bottom: .55rem; }
.footer-contact .icon { color: var(--kelp); flex: none; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,.1); font-size: var(--step--1); }
.footer-base p { margin: 0; }
.social { display: flex; gap: .5rem; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.18); }
.social a:hover { border-color: var(--white); color: var(--white); }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
	.hero-inner { grid-template-columns: 1fr; }
	.hero-title { max-width: 16ch; }
	.hero-chart { max-width: 640px; }
	.split, .split--reverse { grid-template-columns: 1fr; }
	.split-head { position: static; }
	.split--reverse .split-head { order: 0; }
	.process { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.with-aside, .with-aside--form { grid-template-columns: 1fr; }
	.aside { position: static; }
	.audit-inner, .cta-band-inner { grid-template-columns: 1fr; }
	.cta-band-actions { flex-direction: row; flex-wrap: wrap; }
	.post-feature { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
	:root { --header-h: 66px; }
	.work-grid, .post-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
	.service-list--compact { grid-template-columns: 1fr; }
	.service-list--compact li:last-child a { border-bottom: 1px solid var(--line); }
	.testimonial-grid, .values, .checklist { grid-template-columns: 1fr; }
	.ws-form, .choices { grid-template-columns: 1fr; }
	.post-nav .nav-links { grid-template-columns: 1fr; }
	.post-nav .nav-next { grid-column: 1; text-align: left; }
	.nav-cta { display: block; }
}

@media (max-width: 520px) {
	.work-grid, .post-grid, .process, .footer-grid { grid-template-columns: 1fr; }
	.hero-actions .btn, .page-head .hero-actions .btn, .cta-band-actions .btn { width: 100%; }
	.service-name { font-size: var(--step-1); }
	.service-go { width: 36px; height: 36px; }
	.testimonial--lg blockquote p::before { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; }
}

@media print {
	.site-header, .site-footer, .cta-band, .hero-chart { display: none; }
}
