@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/montserrat-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Playfair Display";
	font-style: normal;
	font-weight: 500 700;
	font-display: swap;
	src: url("../fonts/playfair-display-latin.woff2") format("woff2");
}

@font-face {
	font-family: "IBM Plex Mono";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
}

@font-face {
	font-family: "IBM Plex Mono";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
}

:root {
	--green: #1e3b32;
	--green-deep: #112820;
	--brass: #b08a4a;
	--brass-light: #d7bd88;
	--brass-ink: #71572f;
	--clay: #a45137;
	--ivory: #f7f3ea;
	--stone: #d8d4c9;
	--charcoal: #20211f;
	--white: #fffdf8;
	--muted: #5f625d;
	--shadow: 0 24px 70px rgba(17, 40, 32, 0.13);
	--radius: 2px;
	--shell: min(1180px, calc(100vw - 40px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ivory);
	color: var(--charcoal);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

a:hover {
	color: var(--clay);
}

h1 {
	margin: 0 0 0.55em;
	color: var(--green);
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(3rem, 4.2vw, 3.5rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.1;
	text-wrap: balance;
}

h2,
h3,
h4 {
	margin: 0 0 0.65em;
	color: var(--green);
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.25;
	text-wrap: balance;
}

h2 {
	font-size: clamp(1.375rem, 2.4vw, 1.75rem);
}

h3 {
	font-size: clamp(1.125rem, 1.8vw, 1.375rem);
}

p {
	margin: 0 0 0.9em;
}

ul,
ol {
	margin: 0 0 1.5em;
	padding-left: 1.25em;
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.shell--narrow {
	max-width: 800px;
}

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

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 12px 16px;
	transform: translateY(-160%);
	background: var(--ivory);
	color: var(--green);
}

.skip-link:focus {
	transform: none;
}

.eyebrow {
	margin-bottom: 1.1rem;
	color: var(--brass-ink);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.button,
button.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.45rem;
	border: 1px solid var(--clay);
	border-radius: var(--radius);
	background: var(--clay);
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.25;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
	border-color: var(--green);
	background: var(--green);
	color: var(--white);
	transform: translateY(-2px);
}

.button--brass {
	border-color: var(--brass);
	background: var(--brass);
	color: var(--green-deep);
}

.button--brass:hover,
.button--brass:focus-visible {
	border-color: var(--white);
	background: var(--white);
	color: var(--green-deep);
}

.button--outline {
	border-color: rgba(255, 255, 255, 0.6);
	background: transparent;
}

.button--small {
	min-height: 42px;
	padding: 0.65rem 1rem;
	font-size: 0.875rem;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.4rem;
}

.text-link {
	display: inline-block;
	color: var(--green);
	font-size: 1rem;
	font-weight: 600;
}

.site-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid rgba(30, 59, 50, 0.16);
	background: rgba(247, 243, 234, 0.98);
}

.utility-bar {
	background: var(--green-deep);
	color: rgba(255, 255, 255, 0.76);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.66rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.utility-bar__inner {
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.utility-bar__inner div {
	display: flex;
	gap: 1.3rem;
}

.utility-bar a {
	color: var(--brass-light);
	text-decoration: none;
}

.header-main {
	display: flex;
	min-height: 92px;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.brand {
	display: block;
	width: 138px;
	flex: 0 0 auto;
}

.brand img {
	width: 100%;
	height: auto;
	mix-blend-mode: multiply;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 1.3rem;
}

.primary-nav .menu {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 1.4rem;
	list-style: none;
}

.primary-nav .menu a {
	color: var(--green);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
	text-decoration: none;
}

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

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 25px;
	height: 2px;
	margin: 5px auto;
	background: var(--green);
}

.hero {
	position: relative;
	overflow: hidden;
	background: var(--green-deep);
	color: var(--white);
}

.hero::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(17, 40, 32, 0.98) 0%, rgba(17, 40, 32, 0.92) 38%, rgba(17, 40, 32, 0.2) 74%, rgba(17, 40, 32, 0.3) 100%),
		url("../images/crebb-hero-office.webp") center 34% / cover;
	content: "";
}

.hero::after {
	position: absolute;
	right: -8%;
	bottom: -180px;
	width: 60%;
	height: 380px;
	border-top: 1px solid rgba(215, 189, 136, 0.36);
	border-radius: 50%;
	content: "";
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 680px;
	align-items: center;
	padding-block: 7rem;
}

.hero__content {
	max-width: 850px;
}

.hero h1 {
	max-width: 760px;
	color: var(--white);
	font-size: clamp(3rem, 4.2vw, 3.5rem);
}

.hero h1 em {
	color: var(--brass-light);
	font-style: italic;
	font-weight: 500;
}

.hero__deck {
	max-width: 650px;
	margin-block: 1.5rem 2.2rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.125rem;
	line-height: 1.5;
}

.hero__proof {
	display: grid;
	max-width: 780px;
	margin-top: 4.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.hero__proof strong {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--brass-light);
	font-family: "IBM Plex Mono", monospace;
	font-size: 1.25rem;
	font-weight: 500;
}

.hero__proof span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	line-height: 1.45;
}

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

.section--white {
	background: var(--white);
}

.section--green {
	background: var(--green);
	color: var(--white);
}

.section--green h2,
.section--green h3 {
	color: var(--white);
}

.section--green .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.article-hero .eyebrow,
.lead-panel .eyebrow {
	color: var(--brass-light);
}

.section--stone {
	background: #ece8df;
}

.section-heading {
	display: grid;
	margin-bottom: 3.4rem;
	align-items: end;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	gap: 4rem;
}

.section-heading > * {
	margin-bottom: 0;
}

.section-heading p:last-child {
	color: var(--muted);
}

.section--green .section-heading p:last-child {
	color: rgba(255, 255, 255, 0.7);
}

.services-grid {
	display: grid;
	border-top: 1px solid var(--stone);
	border-left: 1px solid var(--stone);
	grid-template-columns: repeat(3, 1fr);
}

.service-card {
	position: relative;
	min-height: 340px;
	padding: 2.2rem;
	border-right: 1px solid var(--stone);
	border-bottom: 1px solid var(--stone);
	background: var(--ivory);
	text-decoration: none;
	transition: background 200ms ease, transform 200ms ease;
}

.service-card:hover {
	z-index: 2;
	background: var(--white);
	color: inherit;
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.service-card__number {
	color: var(--brass-ink);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.72rem;
}

.service-card h3 {
	margin-top: 4rem;
}

.service-card p {
	color: var(--muted);
	font-size: 1rem;
}

.service-card__arrow {
	position: absolute;
	right: 2rem;
	bottom: 1.6rem;
	color: var(--clay);
	font-size: 1.5rem;
}

.split {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(3rem, 8vw, 7rem);
}

.split__media {
	position: relative;
}

.split__media::before {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 55%;
	height: 55%;
	border: 1px solid var(--brass);
	content: "";
}

.split__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.split__content {
	max-width: 560px;
}

.split__content .lead {
	color: var(--green);
	font-family: "Playfair Display", serif;
	font-size: 1.5rem;
	line-height: 1.45;
}

.process-grid {
	display: grid;
	margin-top: 3.5rem;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.22);
}

.process-step {
	min-height: 260px;
	padding: 2rem;
	background: var(--green);
}

.process-step .eyebrow {
	color: var(--brass-light);
}

.process-step p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 1rem;
}

.case-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1.5rem;
}

.case-card {
	position: relative;
	min-height: 470px;
	overflow: hidden;
	background: var(--green);
	color: var(--white);
}

.case-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.case-card:hover img {
	transform: scale(1.035);
}

.case-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(17, 40, 32, 0.93) 100%);
	content: "";
}

.case-card__content {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 2rem;
}

.case-card h3 {
	color: var(--white);
}

.case-card a {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}

.testimonial {
	display: flex;
	min-height: 300px;
	padding: 2rem;
	flex-direction: column;
	justify-content: space-between;
	border-top: 3px solid var(--brass);
	background: var(--white);
	box-shadow: 0 12px 30px rgba(17, 40, 32, 0.07);
}

.testimonial blockquote {
	margin: 0;
	color: var(--green);
	font-family: "Playfair Display", serif;
	font-size: 1.25rem;
	line-height: 1.5;
}

.testimonial cite {
	color: var(--muted);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.72rem;
	font-style: normal;
	text-transform: uppercase;
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.audience-card {
	padding: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	text-decoration: none;
}

.audience-card:hover {
	border-color: var(--brass-light);
	background: rgba(255, 255, 255, 0.05);
	color: var(--white);
}

.audience-card h3 {
	font-size: 1.35rem;
}

.audience-card p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 1rem;
}

.lead-panel {
	display: grid;
	margin-block: clamp(4rem, 8vw, 8rem);
	overflow: hidden;
	background: var(--green-deep);
	color: var(--white);
	grid-template-columns: 0.9fr 1.1fr;
	box-shadow: var(--shadow);
}

.lead-panel__intro {
	padding: clamp(2.4rem, 5vw, 5rem);
	background:
		linear-gradient(rgba(17, 40, 32, 0.86), rgba(17, 40, 32, 0.96)),
		url("../images/team-collaboration.webp") center / cover;
}

.lead-panel h2 {
	color: var(--white);
	font-size: clamp(1.375rem, 2.4vw, 1.75rem);
}

.lead-panel__intro > p:not(.eyebrow),
.check-list {
	color: rgba(255, 255, 255, 0.72);
}

.check-list {
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	margin-bottom: 0.7rem;
	padding-left: 1.8rem;
}

.check-list li::before {
	position: absolute;
	left: 0;
	color: var(--brass-light);
	content: "✓";
}

.lead-form {
	display: grid;
	padding: clamp(2rem, 5vw, 4.5rem);
	background: var(--white);
	color: var(--charcoal);
	gap: 1.1rem;
}

.lead-form label {
	display: grid;
	gap: 0.4rem;
	color: var(--green);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 0.8rem 0.9rem;
	border: 1px solid #b7b8b2;
	border-radius: 0;
	background: #fff;
	color: var(--charcoal);
	font: inherit;
	font-size: 0.95rem;
}

.lead-form textarea {
	resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
	outline: 3px solid rgba(176, 138, 74, 0.26);
	border-color: var(--brass);
}

.field-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.lead-form .consent-field {
	display: flex;
	align-items: flex-start;
	color: var(--muted);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.5;
	text-transform: none;
}

.lead-form .consent-field input {
	width: 18px;
	min-height: 18px;
	margin-top: 2px;
}

.form-note {
	margin: 0;
	color: var(--muted);
	font-size: 0.75rem;
	line-height: 1.45;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
}

.page-hero,
.article-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5rem, 11vw, 10rem);
	background: var(--green-deep);
	color: var(--white);
}

.page-hero::after,
.article-hero::after {
	position: absolute;
	right: -6vw;
	bottom: -15vw;
	width: 52vw;
	height: 36vw;
	border: 1px solid rgba(215, 189, 136, 0.28);
	border-radius: 50%;
	content: "";
}

.page-hero__inner {
	position: relative;
	z-index: 1;
}

.page-hero h1,
.article-hero h1 {
	max-width: 980px;
	color: var(--white);
}

.page-deck {
	max-width: 760px;
	margin-top: 1.5rem;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1.125rem;
	line-height: 1.5;
}

.page-content {
	padding-block: clamp(4rem, 8vw, 8rem);
}

.page-content > :first-child {
	margin-top: 0;
}

.content-section {
	margin-block: 4rem;
}

.content-section + .content-section {
	margin-top: 7rem;
}

.content-intro {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(2rem, 7vw, 7rem);
}

.content-intro .lead {
	color: var(--green);
	font-family: "Playfair Display", serif;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	line-height: 1.35;
}

.detail-grid {
	display: grid;
	margin-top: 3rem;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.detail-card {
	padding: 1.8rem;
	border: 1px solid var(--stone);
	background: var(--white);
}

.detail-card p:last-child {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1rem;
}

.timeline {
	display: grid;
	margin-block: 3rem;
	counter-reset: steps;
	gap: 1px;
	background: var(--stone);
}

.timeline-item {
	display: grid;
	padding: 1.5rem;
	align-items: start;
	background: var(--white);
	grid-template-columns: 64px 1fr;
	gap: 1rem;
	counter-increment: steps;
}

.timeline-item::before {
	color: var(--brass);
	font-family: "IBM Plex Mono", monospace;
	content: "0" counter(steps);
}

.timeline-item h3 {
	margin-bottom: 0.3rem;
	font-size: 1.3rem;
}

.timeline-item p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1rem;
}

.faq-list {
	margin-block: 3rem;
	border-top: 1px solid var(--stone);
}

.faq-item {
	border-bottom: 1px solid var(--stone);
}

.faq-item button {
	display: flex;
	width: 100%;
	padding: 1.35rem 0;
	align-items: center;
	justify-content: space-between;
	border: 0;
	background: transparent;
	color: var(--green);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.125rem, 1.8vw, 1.375rem);
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
}

.faq-item button::after {
	color: var(--brass);
	content: "+";
	font-family: "Montserrat", sans-serif;
}

.faq-item button[aria-expanded="true"]::after {
	content: "-";
}

.faq-answer {
	display: block;
	max-width: 800px;
	padding-bottom: 1.5rem;
	color: var(--muted);
}

.faq-list.is-enhanced .faq-answer {
	display: none;
}

.faq-list.is-enhanced .faq-item.is-open .faq-answer {
	display: block;
}

.embed-shell,
.integration-placeholder {
	margin-block: 2rem;
	padding: 1.5rem;
	border: 1px solid var(--stone);
	background: var(--white);
}

.embed-shell iframe {
	width: 100%;
	min-height: 760px;
	border: 0;
}

.video-embed {
	position: relative;
	width: 100%;
	margin-block: 1.5rem;
	padding-top: 56.25%;
	overflow: hidden;
	background: var(--green-deep);
}

.video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.integration-placeholder {
	display: grid;
	min-height: 360px;
	place-items: center;
	text-align: center;
}

.integration-placeholder div {
	max-width: 600px;
}

.integration-placeholder .eyebrow {
	margin-bottom: 0.8rem;
}

.team-grid {
	display: grid;
	margin-top: 3rem;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.team-card {
	background: var(--white);
}

.team-card img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.team-card__content {
	padding: 1.4rem;
}

.team-card h3 {
	margin-bottom: 0.2rem;
	font-size: 1.35rem;
}

.team-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.875rem;
}

.team-card__bio {
	margin-top: 0.85rem !important;
	font-size: 0.8125rem !important;
	line-height: 1.5;
}

.team-card__contact {
	display: block;
	margin-top: 0.65rem;
	font-size: 0.8125rem;
	font-weight: 600;
}

.team-card__disclosure {
	margin-top: 0.65rem !important;
	font-size: 0.75rem !important;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.post-card {
	padding: 2rem;
	border-top: 3px solid var(--brass);
	background: var(--white);
}

.post-card h2 {
	font-size: 1.65rem;
}

.article-content {
	padding-block: 5rem;
}

.article-content h2,
.article-content h3 {
	margin-top: 2.2em;
}

.article-content blockquote {
	margin: 2.5rem 0;
	padding: 1.5rem 2rem;
	border-left: 3px solid var(--brass);
	background: var(--white);
	color: var(--green);
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
}

.error-page {
	padding-block: 10rem;
}

.site-footer {
	padding-top: 5rem;
	background: var(--green-deep);
	color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 3rem;
}

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

.site-footer li {
	margin-bottom: 0.6rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--brass-light);
}

.footer-wordmark {
	display: block;
	width: 150px;
	height: auto;
	margin-bottom: 1rem;
	filter: brightness(0) invert(1);
}

.footer-brand > p:nth-child(2) {
	margin-top: 0.8rem;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	line-height: 1.6;
	text-transform: uppercase;
}

.footer-tagline {
	color: var(--brass-light);
	font-family: "Montserrat", sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-heading {
	margin-bottom: 1.3rem;
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-contact > a {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
}

.footer-contact address {
	margin: 0;
	font-style: normal;
}

.footer-address-link {
	margin-bottom: 1rem;
	line-height: 1.65;
}

.footer-location {
	display: grid;
	margin-top: 4rem;
	overflow: hidden;
	border: 1px solid rgba(215, 189, 136, 0.34);
	background: #0c2f26;
	grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
}

.footer-location__details {
	position: relative;
	padding: clamp(2rem, 4vw, 4rem);
	overflow: hidden;
}

.footer-location__details::after {
	position: absolute;
	right: -110px;
	bottom: -130px;
	width: 260px;
	height: 260px;
	border: 1px solid rgba(215, 189, 136, 0.25);
	border-radius: 50%;
	box-shadow: 0 0 0 42px rgba(215, 189, 136, 0.035), 0 0 0 84px rgba(215, 189, 136, 0.02);
	content: "";
	pointer-events: none;
}

.footer-location .eyebrow {
	margin-bottom: 1.4rem;
	color: var(--brass-light);
}

.footer-location h2 {
	max-width: 500px;
	margin: 0;
	color: var(--white);
	font-size: clamp(2rem, 3.6vw, 3.5rem);
	line-height: 1.04;
}

.footer-location__details > p:not(.eyebrow) {
	max-width: 520px;
	margin: 1.4rem 0 2rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.75;
}

.site-footer .footer-location__profile {
	position: relative;
	z-index: 1;
	display: grid;
	max-width: 520px;
	min-height: 82px;
	padding: 1rem 1.15rem;
	align-items: center;
	border: 1px solid rgba(215, 189, 136, 0.38);
	background: rgba(255, 255, 255, 0.035);
	color: var(--white);
	grid-template-columns: auto 1fr auto;
	gap: 0.9rem;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-footer .footer-location__profile:hover,
.site-footer .footer-location__profile:focus-visible {
	border-color: var(--brass-light);
	background: rgba(215, 189, 136, 0.09);
	color: var(--white);
	transform: translateY(-2px);
}

.footer-location__pin {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--brass-light);
	border-radius: 50%;
	color: var(--brass-light);
	font-size: 0.72rem;
}

.footer-location__profile strong {
	color: var(--brass-light);
	font-weight: 600;
}

.footer-location__arrow {
	color: var(--brass-light);
	font-size: 1.2rem;
}

.footer-location__map {
	position: relative;
	min-height: 420px;
	background: #d9d4c8;
}

.footer-location__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
	filter: saturate(0.82) contrast(1.04);
}

.site-footer .footer-location__map > a {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: inline-flex;
	min-height: 46px;
	padding: 0.75rem 1rem;
	align-items: center;
	border: 1px solid rgba(215, 189, 136, 0.72);
	background: rgba(9, 40, 32, 0.94);
	box-shadow: 0 8px 24px rgba(9, 40, 32, 0.24);
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	gap: 0.65rem;
}

.site-footer .footer-location__map > a:hover,
.site-footer .footer-location__map > a:focus-visible {
	background: var(--brass-light);
	color: var(--green-deep);
}

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

.social-links a {
	font-size: 0.8125rem;
	font-weight: 600;
}

.footer-bottom {
	display: grid;
	margin-top: 4rem;
	padding-block: 1.5rem;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
	grid-template-columns: 1fr auto auto;
	gap: 2rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom div {
	display: flex;
	gap: 1rem;
}

@media (max-width: 1080px) {
	.footer-location {
		grid-template-columns: 1fr;
	}

	.footer-location__map,
	.footer-location__map iframe {
		min-height: 360px;
	}

	.primary-nav {
		gap: 0.9rem;
	}

	.primary-nav .menu {
		gap: 0.9rem;
	}

	.primary-nav .menu a {
		font-size: 0.8125rem;
	}

	.services-grid,
	.testimonial-grid,
	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 700px) {
	.footer-location {
		margin-top: 2.5rem;
	}

	.footer-location__details {
		padding: 2rem 1.25rem;
	}

	.site-footer .footer-location__profile {
		min-height: 76px;
		padding: 0.9rem;
		font-size: 0.82rem;
	}

	.footer-location__map,
	.footer-location__map iframe {
		min-height: 300px;
	}

	.site-footer .footer-location__map > a {
		right: 0.75rem;
		bottom: 0.75rem;
		left: 0.75rem;
		justify-content: center;
	}
}

@media (max-width: 900px) {
	.utility-bar__inner > span,
	.utility-bar__inner a + a {
		display: none;
	}

	.utility-bar__inner {
		justify-content: flex-end;
	}

	.header-main {
		min-height: 76px;
		flex-wrap: wrap;
	}

	.brand {
		width: 112px;
	}

	.js .menu-toggle {
		display: block;
	}

	.primary-nav {
		position: static;
		display: flex;
		width: 100%;
		padding: 0 0 1rem;
		align-items: stretch;
		flex-direction: column;
		background: var(--ivory);
	}

	.js .primary-nav {
		position: fixed;
		inset: 110px 0 0;
		display: none;
		padding: 2rem 20px;
		overflow-y: auto;
	}

	.js .primary-nav.is-open {
		display: flex;
	}

	.primary-nav .menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-nav .menu li {
		border-bottom: 1px solid var(--stone);
	}

	.primary-nav .menu a {
		display: block;
		padding: 1rem 0;
		font-size: 1rem;
	}

	.hero__inner {
		min-height: 650px;
		padding-block: 5rem;
	}

	.section-heading,
	.split,
	.content-intro,
	.lead-panel {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.process-grid,
	.audience-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.case-grid {
		grid-template-columns: 1fr;
	}

	.case-card {
		min-height: 400px;
	}

	.detail-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.footer-contact {
		grid-column: 2 / -1;
	}
}

@media (max-width: 620px) {
	:root {
		--shell: min(100% - 28px, 1180px);
	}

	body {
		font-size: 16px;
	}

	h1 {
		font-size: clamp(1.75rem, 8.5vw, 2rem);
	}

	.utility-bar__inner {
		min-height: 30px;
	}

	.js .primary-nav {
		inset-block-start: 106px;
	}

	.hero::before {
		background:
			linear-gradient(180deg, rgba(17, 40, 32, 0.72), rgba(17, 40, 32, 0.98) 73%),
		url("../images/crebb-hero-office.webp") 38% 28% / cover;
	}

	.hero__inner {
		min-height: 720px;
		align-items: end;
		padding-block: 4rem;
	}

	.hero h1 {
		font-size: clamp(1.75rem, 8.5vw, 2rem);
	}

	.hero__proof {
		margin-top: 2.6rem;
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.hero__proof div {
		display: grid;
		align-items: baseline;
		grid-template-columns: 100px 1fr;
		gap: 0.8rem;
	}

	.section {
		padding-block: 4.5rem;
	}

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

	.services-grid,
	.testimonial-grid,
	.process-grid,
	.audience-grid,
	.detail-grid,
	.team-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 280px;
	}

	.service-card h3 {
		margin-top: 2.5rem;
	}

	.split__media::before {
		display: none;
	}

	.process-step {
		min-height: 220px;
	}

	.case-card {
		min-height: 360px;
	}

	.lead-panel {
		width: 100%;
		margin-inline: 0;
		min-width: 0;
	}

	.lead-panel > * {
		min-width: 0;
	}

	.lead-form .button {
		max-width: 100%;
		white-space: normal;
		text-align: center;
	}

	.field-grid {
		grid-template-columns: 1fr;
	}

	.page-content {
		padding-block: 3.5rem;
	}

	.timeline-item {
		grid-template-columns: 44px 1fr;
	}

	.footer-grid,
	.footer-bottom {
		grid-template-columns: 1fr;
	}

	.footer-contact {
		grid-column: auto;
	}

	.footer-bottom {
		gap: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}
}

/* CREBB V2 — modern editorial deal intelligence */

:root {
	--line: rgba(30, 59, 50, 0.18);
	--line-light: rgba(255, 255, 255, 0.2);
	--display: "Playfair Display", Georgia, serif;
	--sans: "Montserrat", Arial, sans-serif;
	--mono: "IBM Plex Mono", monospace;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
	overflow-x: clip;
}

.site-header {
	position: sticky;
	top: 0;
	border-bottom-color: var(--line);
	background: rgba(247, 243, 234, 0.94);
	backdrop-filter: blur(18px);
}

.header-main {
	min-height: 86px;
	gap: 2.5rem;
}

.brand-lockup {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex: 0 0 auto;
}

.brand-lockup .brand {
	width: 112px;
}

.brand-context {
	max-width: 100px;
	padding-left: 1.25rem;
	border-left: 1px solid var(--line);
	color: var(--muted);
	font-family: var(--mono);
	font-size: 0.58rem;
	letter-spacing: 0.08em;
	line-height: 1.45;
	text-transform: uppercase;
}

.primary-nav {
	flex: 1 1 auto;
	justify-content: flex-end;
	gap: 1.2rem;
}

.primary-nav .menu {
	gap: 1.1rem;
}

.primary-nav .menu a {
	position: relative;
	font-size: 0.78rem;
	font-weight: 600;
}

.primary-nav .menu a::after {
	position: absolute;
	right: 0;
	bottom: -0.45rem;
	left: 0;
	height: 1px;
	transform: scaleX(0);
	transform-origin: left;
	background: var(--clay);
	content: "";
	transition: transform 220ms var(--ease-out);
}

.primary-nav .menu a:hover::after,
.primary-nav .current-menu-item > a::after {
	transform: scaleX(1);
}

.header-phone {
	display: grid;
	color: var(--green);
	text-decoration: none;
}

.header-phone span {
	color: var(--muted);
	font-family: var(--mono);
	font-size: 0.52rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.header-phone strong {
	font-size: 0.75rem;
	font-weight: 600;
}

.header-cta {
	min-height: 40px;
	padding-inline: 1rem;
	font-size: 0.75rem;
	white-space: nowrap;
}

.hero--editorial {
	position: relative;
	background:
		linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.055) 50%, transparent calc(50% + 1px)),
		var(--green-deep);
}

.hero--editorial::before,
.hero--editorial::after {
	display: none;
}

.hero--editorial .hero__inner {
	display: grid;
	min-height: 660px;
	padding-block: clamp(4rem, 7vw, 7rem);
	align-items: center;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
	gap: clamp(3rem, 7vw, 7rem);
}

.hero--editorial .hero__content {
	max-width: 620px;
}

.hero--editorial h1 {
	max-width: 660px;
	margin-bottom: 0.5em;
	font-size: clamp(3.2rem, 5vw, 5.3rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 0.98;
}

.hero--editorial h1 em {
	display: inline-block;
	margin-top: 0.12em;
}

.hero--editorial .hero__deck {
	max-width: 590px;
	margin-block: 1.6rem 2rem;
	font-size: clamp(1rem, 1.35vw, 1.15rem);
	line-height: 1.65;
}

.text-link--light {
	color: var(--white);
}

.text-link--light:hover,
.text-link--light:focus-visible {
	color: var(--brass-light);
}

.hero__visual {
	position: relative;
	min-width: 0;
	padding: 1.35rem 1.35rem 3.6rem 3.6rem;
}

.hero__visual::before {
	position: absolute;
	inset: 0 35% 22% 0;
	border: 1px solid rgba(215, 189, 136, 0.42);
	content: "";
}

.hero__image-frame {
	position: relative;
	z-index: 1;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--green);
}

.hero__image-frame::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 40, 32, 0.02), rgba(17, 40, 32, 0.34));
	content: "";
}

.hero__image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% center;
	filter: saturate(0.88) contrast(1.02);
}

.hero__index {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 1.2rem;
	left: 4.95rem;
	display: flex;
	justify-content: space-between;
	color: rgba(255, 255, 255, 0.58);
	font-family: var(--mono);
	font-size: 0.58rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero__signal {
	position: absolute;
	z-index: 3;
	right: -2.2rem;
	bottom: 0.8rem;
	width: 46%;
	overflow: visible;
	fill: none;
	stroke: var(--brass-light);
	stroke-width: 1;
	opacity: 0.68;
}

.hero--editorial .hero__proof {
	position: relative;
	z-index: 2;
	max-width: none;
	margin-top: 0;
	padding-block: 1.4rem 1.7rem;
	border-top-color: var(--line-light);
}

.hero--editorial .hero__proof div {
	display: grid;
	padding-right: 2rem;
	grid-template-columns: minmax(100px, auto) 1fr;
	align-items: start;
	gap: 1rem;
}

.hero--editorial .hero__proof div + div {
	padding-left: 2rem;
	border-left: 1px solid var(--line-light);
}

.hero--editorial .hero__proof strong {
	font-size: 0.95rem;
}

.hero--editorial .hero__proof span {
	font-size: 0.7rem;
}

.editorial-heading {
	display: grid;
	margin-bottom: clamp(3rem, 6vw, 6rem);
	grid-template-columns: 0.44fr 1.1fr 0.7fr;
	align-items: start;
	gap: clamp(2rem, 4vw, 4rem);
}

.editorial-heading > * {
	margin-bottom: 0;
}

.editorial-heading .eyebrow {
	padding-top: 0.45rem;
}

.editorial-heading h2 {
	max-width: 700px;
	font-family: var(--display);
	font-size: clamp(2rem, 3.5vw, 3.8rem);
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.editorial-heading > p:last-child {
	padding-top: 0.5rem;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.section--advisory {
	position: relative;
}

.section--advisory::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--line) 1px, transparent 1px),
		linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-position: center;
	background-size: 80px 80px;
	opacity: 0.13;
	content: "";
}

.section--advisory > .shell {
	position: relative;
}

.advisory-map {
	display: grid;
	min-height: 540px;
	border: 1px solid var(--line);
	background: var(--ivory);
	grid-template-columns: 0.82fr 1.18fr;
}

.advisory-map__core {
	position: relative;
	display: flex;
	padding: clamp(2.2rem, 5vw, 5rem);
	overflow: hidden;
	flex-direction: column;
	justify-content: center;
	background: var(--green);
	color: var(--white);
}

.advisory-map__core::after {
	position: absolute;
	right: -190px;
	bottom: -190px;
	width: 380px;
	height: 380px;
	border: 1px solid rgba(215, 189, 136, 0.48);
	border-radius: 50%;
	box-shadow:
		0 0 0 55px rgba(215, 189, 136, 0.05),
		0 0 0 110px rgba(215, 189, 136, 0.035);
	content: "";
}

.advisory-map__label {
	margin-bottom: 5rem;
	color: var(--brass-light);
	font-family: var(--mono);
	font-size: 0.64rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.advisory-map__core strong {
	position: relative;
	z-index: 1;
	max-width: 390px;
	color: var(--white);
	font-family: var(--display);
	font-size: clamp(2rem, 3vw, 3.4rem);
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.advisory-map__core p {
	position: relative;
	z-index: 1;
	max-width: 390px;
	margin: 2rem 0 0;
	color: rgba(255, 255, 255, 0.68);
}

.advisory-map__routes {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.advisory-map__routes a {
	position: relative;
	display: grid;
	min-height: 180px;
	padding: 2rem;
	border-bottom: 1px solid var(--line);
	border-left: 1px solid var(--line);
	align-content: space-between;
	color: var(--green);
	text-decoration: none;
	transition: background 220ms ease, color 220ms ease;
}

.advisory-map__routes a:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.advisory-map__routes a:hover,
.advisory-map__routes a:focus-visible {
	background: var(--white);
	color: var(--clay);
}

.advisory-map__routes a > span {
	color: var(--brass-ink);
	font-family: var(--mono);
	font-size: 0.62rem;
}

.advisory-map__routes strong {
	display: block;
	margin-top: 2.8rem;
	font-size: 1rem;
	font-weight: 600;
}

.advisory-map__routes small {
	color: var(--muted);
	font-family: var(--mono);
	font-size: 0.59rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.section--story {
	position: relative;
	overflow: hidden;
	background: var(--ivory);
}

.section--story::after {
	position: absolute;
	top: 0;
	right: 0;
	width: clamp(12px, 4vw, 64px);
	height: 100%;
	background: var(--green);
	content: "";
}

.story-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: clamp(4rem, 10vw, 9rem);
}

.story-layout__media {
	position: relative;
	padding: 0 0 3.2rem 3.2rem;
}

.story-layout__media::before {
	position: absolute;
	inset: 3.2rem 30% 0 0;
	border: 1px solid var(--brass);
	content: "";
}

.story-layout__media img {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5.25;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.86);
}

.story-layout__caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 4.8rem;
	display: flex;
	margin: 0;
	justify-content: space-between;
	color: var(--muted);
	font-family: var(--mono);
	font-size: 0.58rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.story-layout__content {
	max-width: 660px;
	padding: clamp(2rem, 5vw, 5rem) 0;
}

.story-layout__content h2 {
	font-family: var(--display);
	font-size: clamp(2.2rem, 4vw, 4.3rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.04;
}

.story-layout__content .lead {
	margin-block: 1.5rem;
	color: var(--clay);
	font-family: var(--mono);
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.story-layout__content > p:not(.eyebrow, .lead) {
	max-width: 590px;
	color: var(--muted);
	line-height: 1.75;
}

.story-layout__actions {
	display: flex;
	margin-top: 2.2rem;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
}

.story-quote {
	max-width: 500px;
	margin: 4rem 0 0;
	padding: 1.5rem 0 0 2rem;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--brass);
	color: var(--green);
	font-family: var(--display);
	font-size: 1.45rem;
	font-style: italic;
	line-height: 1.4;
}

.section--routes {
	position: relative;
	background:
		radial-gradient(circle at 88% 8%, rgba(176, 138, 74, 0.13), transparent 28%),
		var(--green-deep);
}

.editorial-heading--light h2 {
	color: var(--white);
}

.editorial-heading--light > p:last-child {
	color: rgba(255, 255, 255, 0.62);
}

.route-grid {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr 0.88fr;
}

.route-card {
	position: relative;
	display: flex;
	min-height: 340px;
	padding: clamp(1.8rem, 3vw, 3rem);
	flex-direction: column;
	border-top: 1px solid var(--line-light);
	border-right: 1px solid var(--line-light);
	color: var(--white);
	text-decoration: none;
	transition: background 220ms ease, color 220ms ease;
}

.route-card:nth-child(3) {
	border-right: 0;
}

.route-card:hover,
.route-card:focus-visible {
	background: rgba(255, 255, 255, 0.07);
	color: var(--white);
}

.route-card--feature {
	grid-row: span 2;
	min-height: 680px;
}

.route-card--wide {
	grid-column: 2 / -1;
	min-height: 340px;
	border-bottom: 1px solid var(--line-light);
	border-top: 1px solid var(--line-light);
	border-right: 0;
}

.route-card__number {
	color: var(--brass-light);
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.route-card h3 {
	max-width: 390px;
	margin: auto 0 1.1rem;
	color: var(--white);
	font-family: var(--display);
	font-size: clamp(1.7rem, 2.6vw, 3rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.12;
}

.route-card p {
	max-width: 390px;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.65;
}

.route-card__link {
	display: flex;
	margin-top: 2rem;
	padding-top: 1rem;
	justify-content: space-between;
	border-top: 1px solid var(--line-light);
	color: var(--brass-light);
	font-family: var(--mono);
	font-size: 0.64rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.route-card__link b {
	font-size: 1rem;
	font-weight: 400;
}

.route-index {
	display: grid;
	margin-top: 3.2rem;
	grid-template-columns: repeat(4, 1fr);
}

.route-index a {
	display: flex;
	padding: 1rem 1.2rem;
	justify-content: space-between;
	border-top: 1px solid var(--line-light);
	border-right: 1px solid var(--line-light);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.72rem;
	text-decoration: none;
}

.route-index a:last-child {
	border-right: 0;
}

.route-index a:hover {
	color: var(--brass-light);
}

.process-line {
	position: relative;
	display: grid;
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: repeat(4, 1fr);
}

.process-line::before {
	position: absolute;
	top: 17px;
	right: 12.5%;
	left: 12.5%;
	height: 1px;
	background: var(--line);
	content: "";
}

.process-line li {
	position: relative;
	padding-right: clamp(1.5rem, 4vw, 4rem);
}

.process-line li > span {
	position: relative;
	z-index: 1;
	display: grid;
	width: 34px;
	height: 34px;
	margin-bottom: 3.5rem;
	border: 1px solid var(--brass);
	border-radius: 50%;
	background: var(--white);
	color: var(--brass-ink);
	font-family: var(--mono);
	font-size: 0.58rem;
	place-items: center;
}

.process-line .eyebrow {
	margin-bottom: 0.75rem;
}

.process-line h3 {
	font-family: var(--display);
	font-size: 1.45rem;
	font-weight: 500;
}

.process-line li p:last-child {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.7;
}

.section--work {
	background: var(--ivory);
}

.work-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	align-items: start;
	gap: clamp(1.5rem, 4vw, 4rem);
}

.work-card a {
	display: block;
	text-decoration: none;
}

.work-card img {
	width: 100%;
	height: auto;
	object-fit: cover;
	filter: saturate(0.82);
	transition: filter 400ms ease, transform 600ms var(--ease-out);
}

.work-card a:hover img {
	filter: saturate(1);
	transform: scale(1.018);
}

.work-card--primary img {
	aspect-ratio: 1.35 / 1;
}

.work-card--secondary {
	margin-top: 7rem;
}

.work-card--secondary img {
	aspect-ratio: 0.92 / 1;
}

.work-card > a > div {
	display: grid;
	padding-top: 1.5rem;
	grid-template-columns: 0.45fr 1fr;
	gap: 0 2rem;
}

.work-card .eyebrow {
	grid-row: span 3;
}

.work-card h3 {
	font-family: var(--display);
	font-size: clamp(1.7rem, 2.7vw, 3rem);
	font-weight: 500;
}

.work-card p:not(.eyebrow) {
	color: var(--muted);
	line-height: 1.65;
}

.work-card a span {
	color: var(--clay);
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.voices-grid {
	display: grid;
	border-top: 1px solid var(--line);
	grid-template-columns: repeat(3, 1fr);
}

.voices-grid figure {
	display: grid;
	min-height: 360px;
	margin: 0;
	padding: clamp(2rem, 4vw, 3.5rem);
	border-right: 1px solid var(--line);
	grid-template-rows: auto 1fr auto;
}

.voices-grid figure:last-child {
	border-right: 0;
}

.voices-grid figure > span {
	color: var(--brass);
	font-family: var(--display);
	font-size: 4rem;
	line-height: 0.8;
}

.voices-grid blockquote {
	margin: 1.5rem 0;
	color: var(--green);
	font-family: var(--display);
	font-size: clamp(1.15rem, 1.55vw, 1.4rem);
	line-height: 1.55;
}

.voices-grid cite {
	color: var(--muted);
	font-family: var(--mono);
	font-size: 0.62rem;
	font-style: normal;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section--contact .lead-panel {
	margin-block: 0;
	border: 1px solid rgba(30, 59, 50, 0.12);
	box-shadow: 0 30px 90px rgba(17, 40, 32, 0.12);
}

.page-hero,
.article-hero {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		var(--green-deep);
	background-size: 80px 100%;
}

.page-hero::after,
.article-hero::after {
	border-color: rgba(215, 189, 136, 0.52);
}

.detail-card,
.team-card,
.post-card {
	border-color: var(--line);
	box-shadow: none;
	transition: transform 260ms var(--ease-out), box-shadow 260ms ease, border-color 260ms ease;
}

.detail-card:hover,
.team-card:hover,
.post-card:hover {
	transform: translateY(-4px);
	border-color: rgba(176, 138, 74, 0.6);
	box-shadow: 0 22px 60px rgba(17, 40, 32, 0.1);
}

.reveal-ready [data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 700ms var(--ease-out),
		transform 700ms var(--ease-out);
}

.reveal-ready [data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

@media (max-width: 1180px) {
	.brand-context,
	.header-phone {
		display: none;
	}

	.primary-nav .menu {
		gap: 0.85rem;
	}

	.hero--editorial .hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
	}

	.hero--editorial h1 {
		font-size: clamp(3rem, 5.7vw, 4.5rem);
	}
}

@media (max-width: 900px) {
	.site-header {
		backdrop-filter: none;
	}

	.header-main {
		min-height: 76px;
	}

	.brand-lockup .brand {
		width: 102px;
	}

	.js .primary-nav {
		inset-block-start: 77px;
		background: var(--ivory);
	}

	.primary-nav .menu a::after {
		display: none;
	}

	.header-phone {
		display: grid;
		padding: 1rem 0;
		border-bottom: 1px solid var(--stone);
	}

	.header-phone span {
		font-size: 0.6rem;
	}

	.header-phone strong {
		font-size: 1rem;
	}

	.header-cta {
		margin-top: 0.5rem;
	}

	.hero--editorial .hero__inner {
		min-height: 0;
		padding-block: 4.5rem;
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.hero--editorial .hero__content {
		max-width: 720px;
	}

	.hero__visual {
		max-width: 620px;
		margin-left: auto;
	}

	.hero__image-frame {
		aspect-ratio: 1.2 / 1;
	}

	.hero--editorial .hero__proof {
		grid-template-columns: 1fr;
	}

	.hero--editorial .hero__proof div,
	.hero--editorial .hero__proof div + div {
		padding: 1rem 0;
		border-left: 0;
		border-bottom: 1px solid var(--line-light);
	}

	.hero--editorial .hero__proof div:last-child {
		border-bottom: 0;
	}

	.editorial-heading {
		grid-template-columns: 0.45fr 1.55fr;
		gap: 2rem;
	}

	.editorial-heading > p:last-child {
		max-width: 620px;
		padding-top: 0;
		grid-column: 2;
	}

	.advisory-map {
		grid-template-columns: 1fr;
	}

	.advisory-map__routes a {
		border-left: 0;
	}

	.story-layout {
		grid-template-columns: 0.8fr 1.2fr;
		gap: 3rem;
	}

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

	.route-grid {
		grid-template-columns: 1fr 1fr;
	}

	.route-card--feature {
		min-height: 500px;
	}

	.route-card:nth-child(2) {
		border-right: 0;
	}

	.route-card:nth-child(3) {
		border-right: 1px solid var(--line-light);
	}

	.route-card--wide {
		grid-column: auto;
		min-height: 340px;
		border-right: 0;
	}

	.route-index {
		grid-template-columns: 1fr 1fr;
	}

	.route-index a:nth-child(2) {
		border-right: 0;
	}

	.process-line {
		grid-template-columns: 1fr 1fr;
		gap: 3rem 1.5rem;
	}

	.process-line::before {
		display: none;
	}

	.process-line li > span {
		margin-bottom: 2rem;
	}
}

@media (max-width: 700px) {
	.hero--editorial h1 {
		font-size: clamp(2.6rem, 12vw, 4rem);
	}

	.hero__visual {
		padding: 0.8rem 0.8rem 2.8rem 2rem;
	}

	.hero__visual::before {
		inset: 1.5rem 35% 12% 0;
	}

	.hero__index {
		left: 2.8rem;
	}

	.hero__signal {
		right: -0.8rem;
		width: 55%;
	}

	.editorial-heading {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.editorial-heading > p:last-child {
		grid-column: auto;
	}

	.editorial-heading h2 {
		font-size: clamp(2rem, 9vw, 3.15rem);
	}

	.advisory-map__core {
		min-height: 430px;
	}

	.advisory-map__label {
		margin-bottom: 3rem;
	}

	.advisory-map__routes {
		grid-template-columns: 1fr;
	}

	.advisory-map__routes a,
	.advisory-map__routes a:nth-last-child(-n + 2) {
		min-height: 145px;
		border-bottom: 1px solid var(--line);
	}

	.advisory-map__routes a:last-child {
		border-bottom: 0;
	}

	.advisory-map__routes strong {
		margin-top: 2rem;
	}

	.story-layout {
		grid-template-columns: 1fr;
	}

	.story-layout__media {
		max-width: 520px;
		padding: 0 0 2.4rem 1.6rem;
	}

	.story-layout__caption {
		left: 2.4rem;
	}

	.story-layout__content {
		padding-bottom: 0;
	}

	.story-quote {
		margin-top: 3rem;
	}

	.route-grid {
		grid-template-columns: 1fr;
	}

	.route-card,
	.route-card--feature,
	.route-card--wide {
		min-height: 380px;
		border-right: 0;
		border-bottom: 1px solid var(--line-light);
		grid-column: auto;
		grid-row: auto;
	}

	.route-card h3 {
		font-size: 2.1rem;
	}

	.route-index {
		grid-template-columns: 1fr;
	}

	.route-index a,
	.route-index a:nth-child(2) {
		border-right: 0;
	}

	.process-line {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.process-line li {
		display: grid;
		padding-right: 0;
		grid-template-columns: 48px 1fr;
		gap: 1.2rem;
	}

	.process-line li > span {
		margin: 0;
	}

	.work-grid {
		grid-template-columns: 1fr;
	}

	.work-card--secondary {
		margin-top: 2rem;
	}

	.work-card--secondary img {
		aspect-ratio: 1.2 / 1;
	}

	.work-card > a > div {
		grid-template-columns: 1fr;
	}

	.work-card .eyebrow {
		grid-row: auto;
	}

	.voices-grid {
		grid-template-columns: 1fr;
	}

	.voices-grid figure {
		min-height: 300px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.voices-grid figure:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 620px) {
	.hero--editorial .hero__inner {
		align-items: stretch;
		padding-block: 3.6rem 4.2rem;
	}

	.hero--editorial .hero__deck {
		font-size: 1rem;
	}

	.hero--editorial .button-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero--editorial .hero__proof div,
	.hero--editorial .hero__proof div + div {
		display: grid;
		grid-template-columns: 105px 1fr;
	}

	.story-layout__content h2 {
		font-size: clamp(2.25rem, 10vw, 3.3rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.reveal-ready [data-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* CREBB V3 - gold-forward decision intelligence and mobile refinement */

:root {
	--gold: #b08a4a;
	--gold-bright: #d7bd88;
	--gold-pale: #efe1bd;
	--gold-wash: #f2e8d3;
	--green-ink: #0e251d;
	--section-space: clamp(5.5rem, 8vw, 8rem);
}

:target {
	scroll-margin-top: 110px;
}

.site-header::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--green-deep) 0 8%, var(--gold) 8% 38%, var(--gold-bright) 38% 64%, var(--gold) 64% 92%, var(--green-deep) 92%);
	content: "";
}

.primary-nav .menu a::after {
	height: 2px;
	background: var(--gold);
}

.button,
button.button {
	min-height: 52px;
	border-color: var(--gold-bright);
	background: var(--gold-bright);
	color: var(--green-deep);
	font-weight: 700;
	box-shadow: inset 0 0 0 1px rgba(17, 40, 32, 0.05);
}

.button:hover,
.button:focus-visible {
	border-color: var(--gold-pale);
	background: var(--gold-pale);
	color: var(--green-deep);
	box-shadow: 0 10px 30px rgba(17, 40, 32, 0.2);
}

.button--dark {
	border-color: var(--green-deep);
	background: var(--green-deep);
	color: var(--white);
}

.button--dark:hover,
.button--dark:focus-visible {
	border-color: var(--green);
	background: var(--green);
	color: var(--white);
}

.button--outline {
	border-color: currentColor;
	background: transparent;
	box-shadow: none;
}

.hero--editorial {
	background:
		linear-gradient(90deg, transparent calc(50% - 1px), rgba(215, 189, 136, 0.12) 50%, transparent calc(50% + 1px)),
		radial-gradient(circle at 77% 18%, rgba(176, 138, 74, 0.18), transparent 34%),
		var(--green-deep);
}

.hero--editorial::after {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: clamp(12px, 1.4vw, 22px);
	height: 100%;
	border: 0;
	border-radius: 0;
	background: linear-gradient(180deg, var(--gold-bright), var(--gold), #76582b);
	content: "";
}

.hero--editorial .eyebrow {
	position: relative;
	display: inline-flex;
	padding: 0.5rem 0.75rem 0.5rem 1rem;
	align-items: center;
	background: rgba(215, 189, 136, 0.12);
	color: var(--gold-pale);
}

.hero--editorial .eyebrow::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
	background: var(--gold-bright);
	content: "";
}

.hero--editorial h1 em {
	color: var(--gold-bright);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__visual::before {
	border-width: 2px;
	border-color: rgba(215, 189, 136, 0.7);
}

.hero__image-frame {
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.hero__signal {
	stroke-width: 1.5;
	opacity: 0.9;
}

.hero--editorial .hero__proof {
	border-top: 2px solid rgba(215, 189, 136, 0.46);
}

.hero--editorial .hero__proof strong {
	color: var(--gold-bright);
	font-size: 1.05rem;
}

.hero--editorial .hero__proof span {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.78rem;
	line-height: 1.55;
}

.editorial-heading .eyebrow,
.story-layout__content .eyebrow,
.content-section > .eyebrow {
	color: var(--brass-ink);
}

.section--routes .eyebrow,
.section--intelligence .eyebrow {
	color: var(--gold-pale);
}

.section--intelligence {
	position: relative;
	overflow: hidden;
	padding-block: var(--section-space);
	background:
		radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.42), transparent 24%),
		linear-gradient(130deg, #b1843f 0%, #d4b36e 54%, #ead7a6 100%);
	color: var(--green-deep);
}

.section--intelligence::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(17, 40, 32, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(17, 40, 32, 0.08) 1px, transparent 1px);
	background-size: 72px 72px;
	content: "";
	opacity: 0.5;
}

.intelligence-home {
	position: relative;
	z-index: 1;
	display: grid;
	border: 1px solid rgba(17, 40, 32, 0.3);
	background: rgba(247, 243, 234, 0.18);
	grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.intelligence-home__heading {
	display: flex;
	padding: clamp(2.5rem, 5vw, 5rem);
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	border-right: 1px solid rgba(17, 40, 32, 0.3);
	background: rgba(247, 243, 234, 0.56);
}

.intelligence-home__heading h2 {
	max-width: 520px;
	color: var(--green-deep);
	font-family: var(--display);
	font-size: clamp(2.5rem, 4.2vw, 4.7rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.02;
}

.intelligence-home__heading > p:not(.eyebrow) {
	max-width: 520px;
	margin-block: 1rem 2rem;
	font-size: 1.02rem;
	line-height: 1.75;
}

.intelligence-home__briefs {
	display: grid;
}

.intelligence-home__briefs > a {
	position: relative;
	display: grid;
	min-height: 250px;
	padding: clamp(2rem, 4vw, 3.6rem);
	border-bottom: 1px solid rgba(17, 40, 32, 0.28);
	color: var(--green-deep);
	text-decoration: none;
	transition: background 220ms ease, color 220ms ease;
}

.intelligence-home__briefs > a:last-child {
	border-bottom: 0;
}

.intelligence-home__briefs > a:hover,
.intelligence-home__briefs > a:focus-visible {
	background: var(--green-deep);
	color: var(--white);
}

.intelligence-home__briefs span,
.resource-card > span,
.phase-grid article > span,
.article-meta span {
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.intelligence-home__briefs h3 {
	max-width: 650px;
	margin-block: 1rem 0.7rem;
	color: currentColor;
	font-family: var(--display);
	font-size: clamp(1.65rem, 2.4vw, 2.5rem);
	font-weight: 500;
	line-height: 1.1;
}

.intelligence-home__briefs p {
	max-width: 650px;
	font-size: 0.98rem;
	line-height: 1.65;
}

.intelligence-home__briefs b,
.resource-card b {
	margin-top: auto;
	padding-top: 1rem;
	font-family: var(--mono);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.content-section--intelligence {
	padding: clamp(2.2rem, 5vw, 4.5rem);
	border: 1px solid rgba(176, 138, 74, 0.48);
	background:
		linear-gradient(135deg, rgba(242, 232, 211, 0.86), rgba(255, 253, 248, 0.95)),
		var(--white);
}

.intelligence-heading {
	display: grid;
	padding-bottom: 2.5rem;
	border-bottom: 2px solid var(--gold);
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
	align-items: end;
	gap: clamp(2rem, 6vw, 6rem);
}

.intelligence-heading h2 {
	max-width: 720px;
	font-family: var(--display);
	font-size: clamp(2rem, 3.4vw, 3.6rem);
	font-weight: 500;
	line-height: 1.08;
}

.intelligence-heading > p {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
}

.question-grid {
	display: grid;
	margin-top: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.question-grid article {
	position: relative;
	min-height: 260px;
	padding: clamp(1.8rem, 3.5vw, 3rem);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(255, 253, 248, 0.72);
}

.question-grid article > span {
	display: grid;
	width: 38px;
	height: 38px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--brass-ink);
	font-family: var(--mono);
	font-size: 0.7rem;
	place-items: center;
}

.question-grid h3 {
	margin-top: 2.1rem;
	color: var(--green);
	font-family: var(--display);
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	font-weight: 500;
	line-height: 1.2;
}

.question-grid p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
}

.related-briefs {
	display: grid;
	margin-top: 2.5rem;
	grid-template-columns: repeat(3, 1fr);
}

.related-briefs a {
	display: flex;
	min-height: 64px;
	padding: 1rem 1.2rem;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--line);
	border-right: 1px solid var(--line);
	color: var(--green);
	font-size: 0.86rem;
	font-weight: 600;
	text-decoration: none;
}

.related-briefs a:last-child {
	border-right: 0;
}

.related-briefs a:hover,
.related-briefs a:focus-visible {
	background: var(--green);
	color: var(--white);
}

.resource-grid {
	display: grid;
	margin-top: 3rem;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-card {
	display: flex;
	min-height: 330px;
	padding: clamp(2rem, 4vw, 3.2rem);
	flex-direction: column;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--white);
	color: var(--green);
	text-decoration: none;
	transition: background 220ms ease, color 220ms ease;
}

.resource-card--feature {
	background: var(--green);
	color: var(--white);
}

.resource-card:hover,
.resource-card:focus-visible {
	background: var(--gold-wash);
	color: var(--green-deep);
}

.resource-card--feature:hover,
.resource-card--feature:focus-visible {
	background: var(--green-deep);
	color: var(--white);
}

.resource-card h3 {
	margin-block: 2rem 1rem;
	color: currentColor;
	font-family: var(--display);
	font-size: clamp(1.55rem, 2.4vw, 2.35rem);
	font-weight: 500;
	line-height: 1.15;
}

.resource-card p {
	color: inherit;
	font-size: 1rem;
	line-height: 1.7;
	opacity: 0.78;
}

.article-intro {
	position: relative;
	padding-top: 5rem;
	border-top: 3px solid var(--gold);
}

.article-meta {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	display: flex;
	padding: 1rem 0;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--line);
	gap: 0.8rem 2rem;
	color: var(--brass-ink);
}

.phase-grid {
	display: grid;
	margin-top: 3rem;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phase-grid article {
	min-height: 270px;
	padding: clamp(1.8rem, 3.5vw, 3rem);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.phase-grid article > span {
	color: var(--brass-ink);
}

.phase-grid h3 {
	margin-top: 3rem;
	font-family: var(--display);
	font-size: clamp(1.4rem, 2.2vw, 2rem);
	font-weight: 500;
}

.phase-grid p {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
}

.takeaway-panel {
	display: grid;
	padding: clamp(2.5rem, 6vw, 5rem);
	border: 0;
	background:
		radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.44), transparent 30%),
		linear-gradient(135deg, var(--gold), var(--gold-bright));
	grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
	gap: clamp(2rem, 6vw, 6rem);
}

.takeaway-panel h2 {
	color: var(--green-deep);
	font-family: var(--display);
	font-size: clamp(2rem, 3.3vw, 3.5rem);
	font-weight: 500;
	line-height: 1.08;
}

.takeaway-panel p {
	color: var(--green-deep);
	font-size: 1rem;
	line-height: 1.75;
}

.decision-list {
	margin-top: 3rem;
	border-top: 2px solid var(--gold);
}

.decision-list p {
	display: grid;
	margin: 0;
	padding: 1.4rem 0;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.65;
	grid-template-columns: minmax(130px, 0.25fr) minmax(0, 1fr);
}

.decision-list strong {
	color: var(--green);
}

.author-note {
	display: grid;
	padding: clamp(2rem, 4vw, 3.5rem);
	border: 1px solid var(--line);
	border-left: 8px solid var(--gold);
	background: var(--white);
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
	gap: clamp(2rem, 5vw, 5rem);
}

.author-note h2 {
	font-family: var(--display);
	font-size: clamp(1.6rem, 2.5vw, 2.5rem);
	font-weight: 500;
}

.author-note > p {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.page-hero,
.article-hero {
	border-bottom: 8px solid var(--gold);
	background:
		linear-gradient(90deg, rgba(215, 189, 136, 0.1) 1px, transparent 1px),
		radial-gradient(circle at 78% 40%, rgba(176, 138, 74, 0.2), transparent 28%),
		var(--green-deep);
	background-size: 80px 100%, auto, auto;
}

.page-hero::before,
.article-hero::before {
	position: absolute;
	top: 50%;
	right: 7vw;
	width: clamp(80px, 11vw, 170px);
	height: 4px;
	background: var(--gold-bright);
	box-shadow: 0 -16px 0 rgba(215, 189, 136, 0.28), 0 16px 0 rgba(215, 189, 136, 0.28);
	content: "";
}

.page-hero h1,
.article-hero h1 {
	max-width: 900px;
	font-size: clamp(3rem, 5.2vw, 5.25rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.02;
}

.page-deck {
	max-width: 780px;
	font-size: clamp(1.05rem, 1.5vw, 1.28rem);
	line-height: 1.65;
}

.content-section > p:not(.eyebrow),
.content-section > div > p,
.content-intro > div p {
	font-size: 1.03rem;
	line-height: 1.75;
}

.detail-card {
	padding: 2rem;
	border-top: 3px solid var(--gold);
}

.detail-card h3 {
	font-family: var(--display);
	font-size: 1.45rem;
	font-weight: 500;
}

.lead-panel {
	border-top: 8px solid var(--gold);
}

.lead-panel__intro {
	background:
		linear-gradient(rgba(17, 40, 32, 0.76), rgba(17, 40, 32, 0.95)),
		url("../images/team-collaboration.webp") center / cover;
}

.lead-panel h2 {
	font-family: var(--display);
	font-size: clamp(2rem, 3.2vw, 3.4rem);
	font-weight: 500;
	line-height: 1.08;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
	min-height: 54px;
	font-size: 1rem;
}

.lead-form label {
	font-size: 0.82rem;
}

@media (max-width: 1450px) {
	.header-phone {
		display: none;
	}
}

@media (max-width: 1100px) {
	.primary-nav .menu a {
		font-size: 0.72rem;
	}

	.intelligence-home {
		grid-template-columns: 1fr;
	}

	.intelligence-home__heading {
		border-right: 0;
		border-bottom: 1px solid rgba(17, 40, 32, 0.3);
	}
}

@media (max-width: 900px) {
	.intelligence-heading,
	.takeaway-panel,
	.author-note {
		grid-template-columns: 1fr;
	}

	.related-briefs {
		grid-template-columns: 1fr;
	}

	.related-briefs a {
		border-right: 0;
	}
}

@media (max-width: 700px) {
	:root {
		--shell: min(100% - 28px, 1180px);
		--section-space: 4.25rem;
	}

	html {
		scroll-padding-top: 78px;
	}

	body {
		font-size: 17px;
		line-height: 1.6;
	}

	.site-header {
		min-height: 70px;
	}

	.header-main {
		min-height: 70px;
	}

	.brand-lockup .brand {
		width: 86px;
	}

	.menu-toggle {
		width: 48px;
		height: 48px;
	}

	.js .primary-nav {
		inset-block-start: 71px;
		max-height: calc(100dvh - 71px);
		padding: 1.2rem 1rem 1.5rem;
		overflow-y: auto;
	}

	.primary-nav .menu a {
		display: flex;
		min-height: 52px;
		align-items: center;
		font-size: 0.98rem;
	}

	.header-cta {
		width: 100%;
		min-height: 54px;
	}

	.hero--editorial::after {
		width: 7px;
	}

	.hero--editorial .hero__inner {
		padding-block: 2.8rem 3.5rem;
		gap: 2.5rem;
	}

	.hero--editorial h1 {
		margin-bottom: 0.6em;
		font-size: clamp(2.65rem, 12vw, 3.45rem);
		line-height: 0.98;
	}

	.hero--editorial .hero__deck {
		margin-block: 1.4rem 1.8rem;
		font-size: 1.04rem;
		line-height: 1.65;
	}

	.hero--editorial .button-row {
		width: 100%;
		gap: 1rem;
	}

	.hero--editorial .button-row .button {
		width: 100%;
		min-height: 56px;
		padding-inline: 1rem;
		text-align: center;
	}

	.hero--editorial .text-link {
		display: inline-flex;
		min-height: 48px;
		align-items: center;
	}

	.hero__visual {
		width: 100%;
		max-width: none;
		padding: 0.7rem 0.7rem 2.6rem 1.3rem;
	}

	.hero__image-frame {
		aspect-ratio: 1.04 / 1;
	}

	.hero__index {
		left: 2.1rem;
		font-size: 0.68rem;
	}

	.hero--editorial .hero__proof {
		padding-block: 0.5rem 1rem;
	}

	.hero--editorial .hero__proof div,
	.hero--editorial .hero__proof div + div {
		display: block;
		padding: 1.25rem 0;
	}

	.hero--editorial .hero__proof strong {
		display: block;
		margin-bottom: 0.35rem;
		font-size: 1.08rem;
	}

	.hero--editorial .hero__proof span {
		font-size: 0.88rem;
	}

	.section {
		padding-block: var(--section-space);
	}

	.editorial-heading {
		margin-bottom: 2.6rem;
	}

	.editorial-heading .eyebrow,
	.eyebrow {
		font-size: 0.78rem;
		line-height: 1.5;
	}

	.editorial-heading h2,
	.story-layout__content h2 {
		font-size: clamp(2.15rem, 9.5vw, 3rem);
		line-height: 1.06;
	}

	.editorial-heading > p:last-child,
	.story-layout__content > p:not(.eyebrow, .lead) {
		font-size: 1rem;
		line-height: 1.7;
	}

	.advisory-map__core {
		min-height: 330px;
		padding: 2rem;
	}

	.advisory-map__label {
		margin-bottom: 2.3rem;
		font-size: 0.76rem;
	}

	.advisory-map__core strong {
		font-size: 2.45rem;
	}

	.advisory-map__routes a,
	.advisory-map__routes a:nth-last-child(-n + 2) {
		min-height: 132px;
		padding: 1.5rem;
	}

	.advisory-map__routes a > span,
	.advisory-map__routes small {
		font-size: 0.7rem;
	}

	.advisory-map__routes strong {
		margin-top: 1.4rem;
		font-size: 1.03rem;
	}

	.story-layout {
		gap: 2.5rem;
	}

	.story-layout__media {
		padding: 0 0 2rem 1rem;
	}

	.story-layout__caption {
		left: 1.6rem;
		font-size: 0.66rem;
	}

	.story-layout__content {
		padding-top: 0;
	}

	.story-layout__actions .button {
		width: 100%;
	}

	.story-quote {
		margin-top: 2.2rem;
		padding-left: 1.2rem;
		font-size: 1.35rem;
	}

	.route-card,
	.route-card--feature,
	.route-card--wide {
		min-height: 285px;
		padding: 2rem 1.7rem;
	}

	.route-card h3 {
		font-size: 1.95rem;
	}

	.route-card p {
		font-size: 0.98rem;
	}

	.route-card__number,
	.route-card__link,
	.route-index a {
		font-size: 0.72rem;
	}

	.route-index {
		margin-top: 2rem;
	}

	.route-index a {
		min-height: 56px;
		align-items: center;
	}

	.process-line {
		gap: 2rem;
	}

	.process-line li {
		grid-template-columns: 42px 1fr;
	}

	.process-line li > span {
		width: 38px;
		height: 38px;
	}

	.process-line h3 {
		font-size: 1.35rem;
	}

	.work-card--secondary {
		margin-top: 1.5rem;
	}

	.work-card h3 {
		font-size: 2rem;
	}

	.voices-grid figure {
		min-height: 250px;
		padding: 2rem 1.5rem;
	}

	.voices-grid blockquote {
		font-size: 1.28rem;
	}

	.section--intelligence {
		padding-block: 4.25rem;
	}

	.intelligence-home__heading,
	.intelligence-home__briefs > a {
		padding: 2rem 1.5rem;
	}

	.intelligence-home__heading h2 {
		font-size: 2.65rem;
	}

	.intelligence-home__briefs > a {
		min-height: 270px;
	}

	.intelligence-home__briefs h3 {
		font-size: 1.75rem;
	}

	.page-hero,
	.article-hero {
		padding-block: 4.2rem;
		border-bottom-width: 6px;
	}

	.page-hero::before,
	.article-hero::before {
		display: none;
	}

	.page-hero h1,
	.article-hero h1 {
		font-size: clamp(2.6rem, 12vw, 3.55rem);
		line-height: 1;
	}

	.page-deck {
		font-size: 1.05rem;
		line-height: 1.65;
	}

	.page-content {
		padding-block: 3.75rem 5rem;
	}

	.content-section,
	.content-section + .content-section {
		margin-block: 3.5rem;
	}

	.content-intro {
		grid-template-columns: 1fr;
		gap: 1.8rem;
	}

	.content-intro .lead {
		font-size: 1.8rem;
		line-height: 1.3;
	}

	.content-section > p:not(.eyebrow),
	.content-section > div > p,
	.content-intro > div p {
		font-size: 1rem;
		line-height: 1.75;
	}

	.detail-grid,
	.resource-grid,
	.question-grid,
	.phase-grid {
		grid-template-columns: 1fr;
	}

	.detail-card,
	.question-grid article,
	.phase-grid article,
	.resource-card {
		min-height: 0;
		padding: 1.6rem;
	}

	.question-grid h3,
	.phase-grid h3,
	.resource-card h3 {
		margin-top: 1.7rem;
	}

	.content-section--intelligence {
		padding: 2rem 1rem;
	}

	.intelligence-heading {
		padding-inline: 0.5rem;
		gap: 1rem;
	}

	.intelligence-heading h2 {
		font-size: 2.25rem;
	}

	.related-briefs a {
		min-height: 58px;
		font-size: 0.82rem;
	}

	.article-intro {
		padding-top: 7rem;
	}

	.article-meta {
		gap: 0.55rem 1.2rem;
	}

	.takeaway-panel {
		padding: 2rem 1.5rem;
	}

	.takeaway-panel h2 {
		font-size: 2.25rem;
	}

	.decision-list p {
		display: block;
		padding: 1.2rem 0;
	}

	.decision-list strong {
		display: block;
		margin-bottom: 0.35rem;
	}

	.author-note {
		padding: 2rem 1.5rem;
		border-left-width: 5px;
	}

	.lead-panel {
		margin-block: 3.75rem;
	}

	.lead-panel__intro,
	.lead-form {
		padding: 2rem 1.4rem;
	}

	.lead-panel h2 {
		font-size: 2.35rem;
	}

	.field-grid {
		grid-template-columns: 1fr;
	}

	.lead-form input,
	.lead-form select {
		min-height: 56px;
	}

	.lead-form .button {
		width: 100%;
		min-height: 56px;
	}

	.form-note {
		font-size: 0.82rem;
	}
}

@media (max-width: 380px) {
	.hero--editorial h1 {
		font-size: 2.45rem;
	}

	.page-hero h1,
	.article-hero h1 {
		font-size: 2.45rem;
	}
}

/* V4 local market authority */
.section--market {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4.75rem, 8vw, 8rem);
	background:
		linear-gradient(120deg, rgba(176, 138, 74, 0.18), transparent 42%),
		var(--ivory);
	border-block: 1px solid rgba(176, 138, 74, 0.42);
}

.section--market::after {
	content: "";
	position: absolute;
	inset: 0 0 auto auto;
	width: min(30vw, 420px);
	height: 100%;
	background: linear-gradient(180deg, var(--brass), #d9bd7a);
	clip-path: polygon(58% 0, 100% 0, 100% 100%, 0 100%);
	opacity: 0.2;
	pointer-events: none;
}

.market-panel {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
	gap: clamp(3rem, 7vw, 7rem);
}

.market-panel__heading h2 {
	max-width: 11ch;
	margin-block: 0.65rem 1.35rem;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(3rem, 5.2vw, 5.3rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.045em;
	color: var(--green);
}

.market-panel__heading > p:last-child {
	max-width: 58ch;
	font-size: 1.05rem;
	line-height: 1.8;
}

.market-panel__paths {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(30, 59, 50, 0.28);
}

.market-panel__paths a {
	display: flex;
	min-height: 240px;
	padding: clamp(1.6rem, 3vw, 2.5rem);
	flex-direction: column;
	color: var(--green);
	border-right: 1px solid rgba(30, 59, 50, 0.28);
	border-bottom: 1px solid rgba(30, 59, 50, 0.28);
	text-decoration: none;
	transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.market-panel__paths a:nth-child(even) {
	border-right: 0;
}

.market-panel__paths a:hover,
.market-panel__paths a:focus-visible {
	color: var(--ivory);
	background: var(--green);
	transform: translateY(-3px);
}

.market-panel__paths span {
	margin-bottom: auto;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brass);
}

.market-panel__paths strong {
	display: block;
	margin-block: 2.2rem 0.7rem;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.7rem, 2.3vw, 2.45rem);
	font-weight: 600;
	line-height: 1.08;
}

.market-panel__paths p {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.65;
}

.market-panel__note {
	grid-column: 1 / -1;
	margin: 0;
	padding-top: 1.4rem;
	border-top: 3px solid var(--brass);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green);
}

@media (max-width: 900px) {
	.market-panel {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.market-panel__heading h2 {
		max-width: 14ch;
	}
}

@media (max-width: 700px) {
	.section--market {
		padding-block: 4rem;
	}

	.section--market::after {
		width: 60vw;
		opacity: 0.11;
	}

	.market-panel__heading h2 {
		font-size: clamp(2.65rem, 11vw, 3.75rem);
	}

	.market-panel__paths {
		grid-template-columns: 1fr;
	}

	.market-panel__paths a,
	.market-panel__paths a:nth-child(even) {
		min-height: 210px;
		border-right: 0;
	}

	.market-panel__paths strong {
		font-size: 1.85rem;
	}

	.market-panel__note {
		font-size: 0.72rem;
		line-height: 1.65;
	}
}
