/* ==========================================================================
   Tope Creative — design tokens & global styles
   ========================================================================== */

:root {
	--navy: #0D1B3E;
	--navy-deep: #0A1531;
	--orange: #EF7800;
	--orange-pressed: #C96200;
	--off-white: #F5F3EF;
	--white: #FFFFFF;
	--charcoal: #444444;
	--muted-grey: #888888;
	--border-grey: #E0DDD8;

	--font-serif: 'Libre Baskerville', serif;
	--font-body: 'Jost', sans-serif;
	--font-label: 'Josefin Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--off-white);
	color: var(--charcoal);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

h1, h2, h3, p { text-wrap: pretty; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-pressed); }

::selection { background: var(--orange); color: var(--white); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

button { font: inherit; }

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 6vw;
}

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

/* ==========================================================================
   Logo lockup
   ========================================================================== */

.logo-lockup { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-tope {
	font-family: var(--font-serif);
	font-size: 25px;
	color: var(--white);
	letter-spacing: -0.015em;
	line-height: 1;
}
.logo-divider { width: 1px; height: 21px; background: var(--orange); display: block; }
.logo-creative {
	font-family: var(--font-label);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.30em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.66);
	line-height: 1;
	padding-top: 2px;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--navy);
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.header-inner {
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-link {
	position: relative;
	padding: 8px 0;
	font-family: var(--font-label);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.78);
}
.nav-link:hover { color: var(--white); }
.nav-link.active::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	background: var(--orange);
	display: block;
}
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px; height: 34px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0;
}
.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--white);
	transition: transform 160ms ease, opacity 160ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 0;
	font-family: var(--font-label);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	text-decoration: none;
}
.btn-primary {
	background: var(--orange);
	color: var(--white);
	padding: 19px 34px;
	transition: background 160ms ease;
}
.btn-primary:hover { background: var(--orange-pressed); color: var(--white); }
.btn-primary--header { padding: 13px 22px; }
.btn-primary--cta { padding: 20px 38px; }

.btn-outline-navy {
	background: transparent;
	border: 1px solid var(--navy);
	color: var(--navy);
	padding: 17px 30px;
	transition: background 160ms ease, color 160ms ease;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-navy--lg { padding: 18px 32px; }

.btn-outline-light {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.34);
	color: var(--white);
	padding: 19px 34px;
	transition: border-color 160ms ease, background 160ms ease;
}
.btn-outline-light:hover { border-color: var(--orange); background: rgba(239,120,0,0.09); color: var(--white); }

/* ==========================================================================
   Eyebrow / rules / tags / chips
   ========================================================================== */

.eyebrow-rule {
	width: 48px; height: 2px;
	background: var(--orange);
	margin-bottom: 22px;
}
.eyebrow-rule--center { margin: 0 auto 22px; }
.eyebrow-rule--sm { width: 32px; margin-bottom: 20px; }

.eyebrow {
	margin: 0 0 26px;
	font-family: var(--font-label);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--muted-grey);
}
.eyebrow--on-navy { color: rgba(255,255,255,0.62); }

.tag-pill {
	display: inline-block;
	align-self: flex-start;
	padding: 8px 14px;
	font-family: var(--font-label);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--white);
}
.tag-pill--navy { background: var(--navy); }
.tag-pill--orange { background: var(--orange); }

.chip {
	display: inline-block;
	border: 1px solid var(--border-grey);
	padding: 8px 13px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 13px;
	color: var(--charcoal);
}

.italic-accent { font-style: italic; color: var(--orange); }

/* ==========================================================================
   Headings & body copy
   ========================================================================== */

.h1-hero {
	margin: 0;
	max-width: 19ch;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: clamp(40px, 5.5vw, 78px);
	line-height: 1.07;
	letter-spacing: -0.02em;
	color: var(--white);
}
.h1-inner {
	margin: 0;
	max-width: 20ch;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: clamp(35px, 4.6vw, 64px);
	line-height: 1.09;
	letter-spacing: -0.02em;
	color: var(--white);
}
.h2-section {
	margin: 0 0 68px;
	max-width: 26ch;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: clamp(31px, 3.6vw, 50px);
	line-height: 1.14;
	letter-spacing: -0.015em;
	color: var(--navy);
}
.h2-secondary {
	margin: 0 0 28px;
	max-width: 22ch;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: clamp(27px, 3.2vw, 44px);
	line-height: 1.16;
	letter-spacing: -0.015em;
	color: var(--navy);
}
.lead-hero {
	margin: 38px 0 0;
	max-width: 60ch;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.62;
	color: rgba(255,255,255,0.70);
}
.body-copy {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.68;
	color: var(--charcoal);
}
.fine-print {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted-grey);
}
.pull-quote {
	margin: 0;
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: 23px;
	line-height: 1.44;
	color: var(--white);
}

/* ==========================================================================
   Navy panel treatment: corner glow + grain
   ========================================================================== */

.navy-section { position: relative; background: var(--navy); overflow: hidden; }
.navy-glow {
	position: absolute;
	pointer-events: none;
	background: radial-gradient(circle at center, rgba(239,120,0,0.30) 0%, rgba(239,120,0,0.09) 42%, rgba(239,120,0,0) 70%);
}
.navy-glow--hero { top: -22%; right: -12%; width: 760px; height: 760px; }
.navy-glow--services {
	top: -30%; right: -8%; width: 620px; height: 620px;
	background: radial-gradient(circle at center, rgba(239,120,0,0.26) 0%, rgba(239,120,0,0) 68%);
}
.navy-glow--about {
	bottom: -40%; left: -10%; width: 660px; height: 660px;
	background: radial-gradient(circle at center, rgba(239,120,0,0.22) 0%, rgba(239,120,0,0) 68%);
}
.navy-glow--contact {
	top: -25%; right: -8%; width: 640px; height: 640px;
	background: radial-gradient(circle at center, rgba(239,120,0,0.26) 0%, rgba(239,120,0,0) 68%);
}
.navy-glow--panel {
	top: 0; right: 0; width: 340px; height: 340px;
	background: radial-gradient(circle at top right, rgba(239,120,0,0.24) 0%, rgba(239,120,0,0) 68%);
}

.grain {
	position: absolute;
	inset: 0;
	background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22140%22%20height%3D%22140%22%3E%3Cfilter%20id%3D%22n%22%3E%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.85%22%20numOctaves%3D%223%22%20stitchTiles%3D%22stitch%22%2F%3E%3C%2Ffilter%3E%3Crect%20width%3D%22140%22%20height%3D%22140%22%20filter%3D%22url%28%23n%29%22%20opacity%3D%220.55%22%2F%3E%3C%2Fsvg%3E);
	opacity: 0.11;
	mix-blend-mode: overlay;
	pointer-events: none;
}

/* ==========================================================================
   Home — Hero
   ========================================================================== */

.hero-home .container { position: relative; padding-top: 126px; padding-bottom: 104px; }

/* ==========================================================================
   Home — Capability strip
   ========================================================================== */

.capability-strip { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.12); }
.capability-strip .container { padding-top: 0; padding-bottom: 0; }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.capability-cell { padding: 52px 34px; border-right: 1px solid rgba(255,255,255,0.12); }
.capability-cell:first-child { padding-left: 0; }
.capability-cell:last-child { padding-right: 0; border-right: 0; }
.capability-num {
	margin: 0 0 16px;
	font-family: var(--font-label);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	color: var(--orange);
}
.capability-title {
	margin: 0 0 10px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 19px;
	line-height: 1.34;
	color: var(--white);
}
.capability-copy {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255,255,255,0.56);
}

/* ==========================================================================
   Home — Two ways to work together
   ========================================================================== */

.ways-section { background: var(--off-white); }
.ways-section .container { padding-top: 118px; padding-bottom: 118px; }
.ways-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.card {
	background: var(--white);
	border: 1px solid var(--border-grey);
	padding: 52px 46px 46px;
	display: flex;
	flex-direction: column;
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 48px -18px rgba(13,27,62,0.28);
	border-color: var(--navy);
}
.card-title {
	margin: 30px 0 16px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 32px;
	line-height: 1.16;
	letter-spacing: -0.01em;
	color: var(--navy);
}
.card-copy {
	margin: 0 0 34px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.66;
	color: var(--charcoal);
}
.card-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.card-cta { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   Home — Process
   ========================================================================== */

.process-section { background: var(--white); border-top: 1px solid var(--border-grey); }
.process-section .container { padding-top: 112px; padding-bottom: 112px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--border-grey); }
.process-cell { padding: 38px 32px 0; border-right: 1px solid var(--border-grey); }
.process-cell:first-child { padding-left: 0; }
.process-cell:last-child { padding-right: 0; border-right: 0; }
.process-step {
	margin: 0 0 18px;
	font-family: var(--font-label);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	color: var(--orange);
}
.process-title {
	margin: 0 0 12px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 22px;
	line-height: 1.26;
	color: var(--navy);
}
.process-copy {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 15.5px;
	line-height: 1.64;
	color: var(--charcoal);
}

/* ==========================================================================
   Home — About teaser
   ========================================================================== */

.about-teaser { background: var(--white); border-top: 1px solid var(--border-grey); }
.about-teaser .container {
	padding-top: 112px; padding-bottom: 112px;
	display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-teaser-copy {
	margin: 0 0 20px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17.5px;
	line-height: 1.7;
	color: var(--charcoal);
}
.about-teaser-copy:last-of-type { margin-bottom: 36px; }

.navy-panel {
	position: relative;
	background: var(--navy);
	padding: 52px 46px;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}
.navy-panel-photo { position: relative; width: 100%; height: 250px; }
.navy-panel-quote { position: relative; margin-top: 40px; padding-bottom: 124px; }

.stat-card {
	position: absolute;
	left: -30px; bottom: -30px;
	background: var(--white);
	border: 1px solid var(--border-grey);
	padding: 26px 30px;
	max-width: 230px;
	box-shadow: 0 20px 44px -18px rgba(13,27,62,0.34);
}
.stat-card-label {
	margin: 0 0 8px;
	font-family: var(--font-label);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--muted-grey);
}
.stat-card-value {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 19px;
	line-height: 1.32;
	color: var(--navy);
}

/* image-slot placeholder (used until a real photo is set via Customizer) */
.image-slot {
	position: relative;
	width: 100%; height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.image-slot img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* The homepage panel is short and wide relative to a portrait photo, so a
   centered crop eats into the forehead — bias it toward the top of the
   frame instead. */
.navy-panel-photo .image-slot img { object-position: center 12%; }
.image-slot.is-empty {
	border: 1px dashed rgba(255,255,255,0.3);
	background: rgba(255,255,255,0.03);
}
.image-slot.is-empty .image-slot-label {
	font-family: var(--font-label);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	text-align: center;
	padding: 0 20px;
}
.image-slot--light.is-empty {
	border-color: var(--border-grey);
	background: var(--off-white);
}
.image-slot--light.is-empty .image-slot-label { color: var(--muted-grey); }

/* ==========================================================================
   Home — Closing CTA band
   ========================================================================== */

.closing-cta { background: var(--off-white); border-top: 1px solid var(--border-grey); }
.closing-cta .container {
	max-width: 820px;
	padding-top: 126px; padding-bottom: 126px;
	text-align: center;
}
.closing-cta .eyebrow { text-align: center; }
.h2-cta {
	margin: 0 0 22px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: clamp(33px, 4.2vw, 58px);
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--navy);
}
.closing-cta-copy {
	margin: 0 auto 42px;
	max-width: 52ch;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 18.5px;
	line-height: 1.66;
	color: var(--charcoal);
}

/* ==========================================================================
   Inner-page heroes
   ========================================================================== */

.hero-inner .container { position: relative; padding-top: 104px; padding-bottom: 92px; }
.hero-inner .lead-hero { max-width: 58ch; font-size: 19px; margin-top: 34px; }

/* ==========================================================================
   Services — blocks + deliverables grid
   ========================================================================== */

.services-blocks { background: var(--off-white); }
.services-blocks .container { padding-top: 104px; padding-bottom: 104px; }
.service-block { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; }
.service-block--first { padding-bottom: 76px; border-bottom: 1px solid var(--border-grey); }
.service-block--second { padding-top: 76px; }
.service-block-heading {
	margin: 26px 0 18px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.14;
	letter-spacing: -0.015em;
	color: var(--navy);
}
.service-block-desc {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.68;
	color: var(--charcoal);
}
.service-block-terms { margin: 24px 0 0; }

.deliverables-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-top: 1px solid var(--border-grey);
}
.deliverable {
	padding: 28px;
	border-bottom: 1px solid var(--border-grey);
}
.deliverable:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--border-grey); }
.deliverable:nth-child(even) { padding-right: 0; }
.deliverable:nth-last-child(-n+2) { border-bottom: 0; }
.deliverable-title {
	margin: 0 0 8px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 18px;
	color: var(--navy);
}
.deliverable-copy {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
	color: var(--charcoal);
}

.audit-cta { background: var(--navy); }
.audit-cta .container {
	padding-top: 96px; padding-bottom: 96px;
	display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.audit-cta h2 {
	margin: 0;
	max-width: 20ch;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: var(--white);
}
.audit-cta-copy {
	margin: 0 0 34px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.68;
	color: rgba(255,255,255,0.72);
}

/* ==========================================================================
   About — bio
   ========================================================================== */

.bio-section { background: var(--white); }
.bio-section .container { padding-top: 104px; padding-bottom: 104px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 74px; }
.bio-portrait { position: relative; width: 100%; aspect-ratio: 4/5; background: var(--off-white); border: 1px solid var(--border-grey); }
.bio-caption {
	margin: 18px 0 0;
	font-family: var(--font-label);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--muted-grey);
}
.bio-lead {
	margin: 0 0 22px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 23px;
	line-height: 1.5;
	color: var(--navy);
}
.bio-copy {
	margin: 0 0 20px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17.5px;
	line-height: 1.72;
	color: var(--charcoal);
}
.bio-copy:last-of-type { margin-bottom: 44px; }

.principles-row {
	border-top: 1px solid var(--border-grey);
	padding-top: 44px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 34px;
}
.principle-num {
	margin: 0 0 10px;
	font-family: var(--font-label);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--orange);
}
.principle-title {
	margin: 0 0 8px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.3;
	color: var(--navy);
}
.principle-copy {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
	color: var(--charcoal);
}

/* ==========================================================================
   About — sector experience  (reuses ruled-4 pattern, light ground)
   ========================================================================== */

.sector-section { background: var(--off-white); border-top: 1px solid var(--border-grey); }
.sector-section .container { padding-top: 96px; padding-bottom: 96px; }
.sector-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border-grey); }
.sector-cell { padding: 34px 30px; border-right: 1px solid var(--border-grey); }
.sector-cell:first-child { padding-left: 0; }
.sector-cell:last-child { padding-right: 0; border-right: 0; }
.sector-title {
	margin: 0 0 8px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 20px;
	color: var(--navy);
}
.sector-copy {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.6;
	color: var(--charcoal);
}

/* ==========================================================================
   Contact — hero + two columns
   ========================================================================== */

.contact-hero .container {
	padding-top: 104px; padding-bottom: 96px;
	display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: end;
}
.contact-hero .h1-inner { margin-bottom: 30px; max-width: 18ch; }
.big-email-link {
	display: inline-block;
	font-family: var(--font-serif);
	font-size: clamp(22px, 2.4vw, 32px);
	color: var(--orange);
	border-bottom: 1px solid rgba(239,120,0,0.5);
	padding-bottom: 6px;
	transition: color 160ms ease, border-color 160ms ease;
}
.big-email-link:hover { color: var(--white); border-color: var(--white); }

.contact-details { border-left: 1px solid rgba(255,255,255,0.16); padding-left: 44px; }
.contact-details-label {
	margin: 0 0 10px;
	font-family: var(--font-label);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
}
.contact-details-value {
	margin: 0 0 28px;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	color: var(--white);
}
.contact-details-value:last-child { margin-bottom: 0; }

.contact-cols { background: var(--white); }
.contact-cols .container { padding-top: 96px; padding-bottom: 96px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-cols .h2-secondary { margin-bottom: 30px; }

.hairline-rows { border-top: 1px solid var(--border-grey); }
.hairline-row { padding: 26px 0; border-bottom: 1px solid var(--border-grey); }
.hairline-row p {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.62;
	color: var(--charcoal);
}

.next-steps { border-top: 1px solid var(--border-grey); }
.next-step {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 20px;
	padding: 30px 0;
	border-bottom: 1px solid var(--border-grey);
}
.next-step-num {
	margin: 0;
	font-family: var(--font-label);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	color: var(--orange);
}
.next-step-title {
	margin: 0 0 8px;
	font-family: var(--font-serif);
	font-weight: 400;
	font-size: 19px;
	color: var(--navy);
}
.next-step-copy {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.62;
	color: var(--charcoal);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.12); }
.footer-cols {
	padding: 76px 6vw 40px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 56px;
}
.footer-tagline {
	margin: 0;
	max-width: 34ch;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.62;
	color: rgba(255,255,255,0.56);
}
.footer-heading {
	margin: 0 0 22px;
	font-family: var(--font-label);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.42);
}
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-links a, .footer-links span {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	color: rgba(255,255,255,0.72);
}
.footer-links a:hover { color: var(--orange); }
.footer-legal {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 26px 0 40px;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.footer-legal p {
	margin: 0;
	font-family: var(--font-label);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.38);
}

/* ==========================================================================
   Responsive — collapses at ~900px per design-handoff guidance
   ========================================================================== */

@media (max-width: 900px) {

	/* Header: collapse to toggled menu, keep Email Me visible */
	.nav-toggle { display: flex; }
	.nav-links {
		position: fixed;
		top: 78px; left: 0; right: 0;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		background: var(--navy);
		border-bottom: 1px solid rgba(255,255,255,0.12);
		max-height: 0;
		overflow: hidden;
		transition: max-height 220ms ease;
		z-index: 49;
	}
	.nav-links.is-open { max-height: 320px; }
	.nav-links .nav-link { width: 100%; padding: 16px 6vw; }
	.nav-links .nav-link.active::after { left: 6vw; right: auto; width: 24px; bottom: 12px; }
	.site-nav { gap: 16px; }

	/* Section vertical rhythm tightens */
	.hero-home .container,
	.hero-inner .container { padding-top: 72px; padding-bottom: 64px; }
	.capability-cell { padding: 34px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
	.capability-cell:last-child { border-bottom: 0; }
	.ways-section .container,
	.process-section .container,
	.about-teaser .container,
	.closing-cta .container,
	.services-blocks .container,
	.audit-cta .container,
	.bio-section .container,
	.sector-section .container,
	.contact-cols .container { padding-top: 64px; padding-bottom: 64px; }
	.contact-hero .container { padding-top: 64px; padding-bottom: 56px; }

	/* Grids collapse to one column */
	.ways-grid,
	.about-teaser .container,
	.audit-cta .container,
	.bio-section .container,
	.contact-cols .container { grid-template-columns: 1fr; }
	.about-teaser .container { gap: 56px; }
	.contact-hero .container { grid-template-columns: 1fr; align-items: start; gap: 40px; }
	.contact-details { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.16); padding-top: 28px; }

	.capability-grid,
	.process-grid,
	.sector-grid { grid-template-columns: 1fr; border-top: 0; }
	.process-cell,
	.sector-cell {
		padding: 28px 0 !important;
		border-right: 0 !important;
		border-bottom: 1px solid var(--border-grey);
	}
	.process-grid, .sector-grid { border-top: 1px solid var(--border-grey); }
	.process-cell:last-child,
	.sector-cell:last-child { border-bottom: 0; }

	.service-block { grid-template-columns: 1fr; gap: 40px; }
	.deliverables-grid { grid-template-columns: 1fr; }
	.deliverable { padding: 22px 0 !important; border-right: 0 !important; }
	.deliverable:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-grey); }
	.deliverable:last-child { border-bottom: 0; }

	.principles-row { grid-template-columns: 1fr; gap: 28px; }

	/* Home about-teaser stat card drops into normal flow */
	.navy-panel-quote { padding-bottom: 0; }
	.stat-card {
		position: static;
		margin-top: 24px;
		max-width: none;
		box-shadow: none;
	}

	/* Footer stacks, legal row stays two-item row */
	.footer-cols { grid-template-columns: 1fr; padding: 56px 6vw 32px; gap: 36px; }
}
