/* =========================================================================
   Sound Floors — main.css
   Dark charcoal + Sound Floors navy (#030460) & silver. Navy accents on light surfaces ONLY; white/silver accents on dark surfaces. System fonts. One file, no build step.
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
	--ink:        #151820; /* charcoal base */
	--ink-2:      #1b1f2a; /* raised panel */
	--ink-3:      #232936; /* highest panel */
	--accent:     #030460; /* brand navy — LIGHT SURFACES ONLY */
	--accent-inv: #b6b6b7; /* accent on dark surfaces (silver) */
	--silver:     #b6b6b7;
	--gray-light: #d4d4d4;
	--gray-mid:   #a8a8a8;
	--gray-dark:  #626262;
	--accent-hi:  #1e1f8f; /* navy hover (light surfaces) */
	--paper:      #ffffff;
	--paper-2:    #f4f5f7;
	--text-dark:  #1a1d26; /* body text on light */
	--text-mute:  #4d5360; /* muted on light (AA) */
	--text-inv:   #eceef3; /* body text on dark */
	--text-inv-mute: #bcc1ca; /* muted on dark (AA) */
	--line-light: rgba(21, 24, 32, 0.12);
	--line-dark:  rgba(255, 255, 255, 0.10);

	/* Type. System stack; condensed display feel via weight + tracking.
	   To use a self-hosted variable font instead, drop the .woff2 into
	   assets/fonts/ and uncomment the @font-face below. */
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	--font-display: "Arial Narrow", "Helvetica Neue", -apple-system,
		"Segoe UI", Roboto, Arial, sans-serif;
	--font-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas,
		Menlo, monospace;

	--radius: 6px;
	--container: 1200px;
	--container-narrow: 780px;
	--section-pad: clamp(4rem, 9vw, 7.5rem);
	--gutter: clamp(1.25rem, 4vw, 2rem);
	--shadow: 0 14px 40px rgba(15, 17, 24, 0.14);
	--speed: 0.25s;
}

/* @font-face {
	font-family: "SFS Display";
	src: url("../fonts/sfs-display.woff2") format("woff2-variations");
	font-weight: 300 900;
	font-display: swap;
} */

/* ---------- 2. Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text-dark);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}

img,
svg { max-width: 100%; height: auto; display: block; }

img { border-style: none; }

a { color: inherit; }

ul,
ol { padding-left: 1.25rem; }

button {
	font: inherit;
	cursor: pointer;
	background: none;
	border: 0;
	color: inherit;
}

:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 2px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--accent);
	color: #fff;
	padding: 0.75rem 1.25rem;
	font-weight: 700;
	text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Layout primitives ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-pad); }

.section--light { background: var(--paper); color: var(--text-dark); }

.section--dark {
	background: var(--ink);
	color: var(--text-inv);
}

.section--map { background: var(--paper-2); }

.section--tiles {
	background: var(--paper-2);
	padding-block: clamp(2.5rem, 6vw, 4rem);
}

.section--specs {
	background: var(--paper-2);
	border-top: 1px solid var(--line-light);
}

.section-head {
	max-width: 46rem;
	margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-head__sub {
	font-size: 1.125rem;
	color: var(--text-mute);
	margin: 1rem 0 0;
}

.section--dark .section-head__sub { color: var(--text-inv-mute); }

.section-foot {
	margin-top: clamp(2rem, 5vw, 3rem);
	text-align: center;
}

/* ---------- 4. Typography ---------- */
.display {
	font-family: var(--font-display);
	font-weight: 800;
	font-stretch: condensed;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	line-height: 1.02;
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	text-wrap: balance;
}

.display--hero { font-size: clamp(2.75rem, 7vw, 5.25rem); }

.display--sm { font-size: clamp(1.6rem, 3vw, 2.25rem); }

.display--article {
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.15;
	font-size: clamp(1.9rem, 4vw, 2.75rem);
}

.eyebrow {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0 0 1rem;
	color: var(--text-mute);
}

.eyebrow--accent { color: var(--accent); }

/* ---------- 5. Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 700;
	font-stretch: condensed;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.9375rem;
	line-height: 1;
	padding: 0.95rem 1.6rem;
	border-radius: var(--radius);
	text-decoration: none;
	text-align: center;
	border: 2px solid transparent;
	transition: background var(--speed), color var(--speed),
		border-color var(--speed), transform var(--speed);
}

.btn:hover { transform: translateY(-2px); }

.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.0625rem; }

.btn--primary {
	background: var(--accent);
	color: #fff;
}
.btn--primary:hover { background: var(--accent-hi); color: #fff; }

/* Ghost: for dark surfaces */
.btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover { border-color: #fff; color: #fff; }

/* Outline: adapts to surface */
.btn--outline {
	background: transparent;
	color: var(--accent);
	border-color: var(--accent);
}
.btn--outline:hover { background: var(--accent); color: #fff; }

.section--light .btn--ghost {
	color: var(--ink);
	border-color: var(--line-light);
}
.section--light .btn--ghost:hover { border-color: var(--ink); }

/* ---------- 6. Top strip ---------- */
.sfs-topstrip {
	background: #0e1016;
	color: var(--text-inv-mute);
	font-size: 0.8125rem;
}

.sfs-topstrip__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	min-height: 2.25rem;
}

.sfs-topstrip__states { margin: 0; letter-spacing: 0.04em; }
.sfs-topstrip__states strong { color: var(--text-inv); font-weight: 600; }

.sfs-topstrip__phone {
	color: var(--accent);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}
.sfs-topstrip__phone:hover { color: var(--accent-hi); }

/* ---------- 7. Header / nav ---------- */
.sfs-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(21, 24, 32, 0.97);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid var(--line-dark);
	color: var(--text-inv);
	transition: box-shadow var(--speed);
}

.sfs-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }

.sfs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 4.5rem;
}

.sfs-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: inherit;
}

.sfs-logo__mark {
	width: 1rem;
	height: 2rem;
	background: var(--accent);
	clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
	border-radius: 1px;
}

.sfs-logo__text {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	font-size: 1.45rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.sfs-logo__text em {
	font-style: normal;
	color: var(--accent);
}

.custom-logo { max-height: 3rem; width: auto; }

.sfs-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.sfs-nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sfs-nav__list a {
	display: block;
	padding: 0.6rem 0.8rem;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-inv);
	border-radius: var(--radius);
	transition: color var(--speed), background var(--speed);
}

.sfs-nav__list a:hover { color: var(--accent); }

.sfs-nav__list .current-menu-item > a,
.sfs-nav__list .current-menu-ancestor > a { color: var(--accent); }

/* Dropdowns */
.sfs-nav__list li { position: relative; }

.sfs-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 17rem;
	background: var(--ink-2);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	list-style: none;
	margin: 0;
	padding: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--speed), transform var(--speed),
		visibility var(--speed);
}

.sfs-nav__list li:hover > .sub-menu,
.sfs-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sfs-nav__list .sub-menu a {
	font-size: 0.9rem;
	padding: 0.55rem 0.75rem;
}
.sfs-nav__list .sub-menu a:hover { background: var(--ink-3); }

.sfs-nav__cta { white-space: nowrap; }

/* Hamburger */
.sfs-nav-toggle {
	display: none;
	position: relative;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--radius);
}

.sfs-nav-toggle__bar,
.sfs-nav-toggle__bar::before,
.sfs-nav-toggle__bar::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 1.5rem;
	height: 2px;
	background: var(--text-inv);
	transform: translateX(-50%);
	transition: transform var(--speed), opacity var(--speed);
}

.sfs-nav-toggle__bar { top: 50%; }
.sfs-nav-toggle__bar::before { top: -7px; }
.sfs-nav-toggle__bar::after { top: 7px; }

.sfs-nav-toggle[aria-expanded="true"] .sfs-nav-toggle__bar { background: transparent; }
.sfs-nav-toggle[aria-expanded="true"] .sfs-nav-toggle__bar::before {
	top: 0; transform: translateX(-50%) rotate(45deg);
}
.sfs-nav-toggle[aria-expanded="true"] .sfs-nav-toggle__bar::after {
	top: 0; transform: translateX(-50%) rotate(-45deg);
}

/* ---------- 8. Hero ---------- */
.sfs-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(88vh, 56rem);
	background: var(--ink);
	color: var(--text-inv);
	overflow: hidden;
	isolation: isolate;
}

.sfs-hero__media,
.sfs-hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.sfs-hero__media--placeholder {
	background:
		radial-gradient(80rem 40rem at 85% 15%, rgba(182, 182, 183, 0.12), transparent 60%),
		linear-gradient(155deg, #1c212c 0%, var(--ink) 55%, #101319 100%);
}

.sfs-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg,
		rgba(13, 15, 20, 0.88) 0%,
		rgba(13, 15, 20, 0.66) 48%,
		rgba(13, 15, 20, 0.25) 100%);
}

.sfs-hero__content {
	padding-block: clamp(5rem, 12vw, 8rem);
	max-width: var(--container);
}

.sfs-hero__content .eyebrow { color: var(--accent); }

.sfs-hero__sub {
	max-width: 34rem;
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: var(--text-inv);
	margin: 1.5rem 0 2.25rem;
}

.sfs-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ---------- 9. Stat band ---------- */
.sfs-stats {
	background: var(--ink-2);
	color: var(--text-inv);
	border-block: 1px solid var(--line-dark);
	padding-block: clamp(2.5rem, 6vw, 4rem);
}

.sfs-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.sfs-stat {
	text-align: center;
	border-left: 1px solid var(--line-dark);
	padding-inline: 1rem;
}
.sfs-stat:first-child { border-left: 0; }

.sfs-stat__number {
	display: block;
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	font-size: clamp(2.25rem, 4.5vw, 3.5rem);
	line-height: 1;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
}

.sfs-stat__suffix { font-size: 0.6em; margin-left: 0.1em; }

.sfs-stat__label {
	display: block;
	margin-top: 0.6rem;
	font-size: 0.9rem;
	color: var(--text-inv-mute);
	letter-spacing: 0.02em;
}

/* ---------- 10. Tiles (tech story + service pages) ---------- */
.tile-grid {
	display: grid;
	gap: 1.5rem;
}

.tile-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tile-grid--4 { grid-template-columns: repeat(4, 1fr); }

.tile {
	background: var(--ink-2);
	border: 1px solid var(--line-dark);
	border-top: 3px solid var(--accent);
	border-radius: var(--radius);
	padding: 2rem 1.75rem;
}

.tile--light {
	background: var(--paper);
	border-color: var(--line-light);
	border-top-color: var(--accent);
	box-shadow: 0 6px 24px rgba(15, 17, 24, 0.06);
}

.tile__number {
	display: block;
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	line-height: 1;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
}

.tile__unit {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-top: 0.4rem;
	color: inherit;
	opacity: 0.75;
}

.tile__copy {
	margin: 1rem 0 0;
	font-size: 0.975rem;
	color: var(--text-inv-mute);
}

.tile--light .tile__copy { color: var(--text-mute); }

/* Tech story extras */
.sfs-tech__challenge {
	margin-top: clamp(2.5rem, 6vw, 4rem);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	border-left: 4px solid var(--accent);
	padding: 1.25rem 1.75rem;
	background: var(--ink-2);
	border-radius: 0 var(--radius) var(--radius) 0;
}

.sfs-tech__quote {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 700;
	font-size: clamp(1.2rem, 2.4vw, 1.6rem);
	line-height: 1.3;
	margin: 0;
	max-width: 38rem;
}

/* ---------- 11. Cards (services grid + archives) ---------- */
.card-grid {
	display: grid;
	gap: 1.75rem;
}

.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--speed), box-shadow var(--speed);
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.card__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--paper-2);
}

.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card__media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, rgba(3, 4, 96, 0.10), transparent 55%),
		repeating-linear-gradient(-45deg, #e7e9ee 0 14px, #eef0f4 14px 28px);
}

.card__media-placeholder--wide { aspect-ratio: 16 / 10; }
.card__media-placeholder--tall { aspect-ratio: 4 / 5; border-radius: var(--radius); }

.card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.5rem;
}

.card__meta {
	font-size: 0.8rem;
	color: var(--text-mute);
	margin: 0 0 0.5rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.card__title {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 1.2rem;
	line-height: 1.2;
	margin: 0 0 0.6rem;
}

.card__title a { text-decoration: none; }
.card__title a:hover { color: var(--accent); }

.card__blurb {
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
	color: var(--text-mute);
	flex: 1;
}

.card__link {
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--accent);
}
.card__link:hover { color: var(--accent-hi); }

/* ---------- 12. Projects strip ---------- */
.project-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.project-card__media {
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 1.1rem;
	background: var(--ink-3);
}

.section--dark .card__media-placeholder {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 55%),
		repeating-linear-gradient(-45deg, #232936 0 14px, #1d222d 14px 28px);
}

.project-card__title {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 1.2rem;
	margin: 0 0 0.4rem;
}

.project-card__desc {
	margin: 0;
	font-size: 0.95rem;
	color: var(--text-inv-mute);
}

/* ---------- 13. Trust band ---------- */
.logo-wall {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem 2.5rem;
	list-style: none;
	margin: 0 0 clamp(2.5rem, 6vw, 4rem);
	padding: 1.5rem;
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	background: var(--paper-2);
}

.logo-wall__item { display: flex; align-items: center; }

.logo-wall__ph {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
	color: var(--text-mute);
	padding: 0.5rem 0.75rem;
	border: 1px dashed var(--line-light);
	border-radius: var(--radius);
}

.logo-wall img { max-height: 3.25rem; width: auto; filter: grayscale(1); opacity: 0.75; transition: filter var(--speed), opacity var(--speed); }
.logo-wall img:hover { filter: none; opacity: 1; }

.promise-tile {
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	padding: 1.75rem 1.5rem;
	box-shadow: 0 6px 24px rgba(15, 17, 24, 0.05);
}

.promise-tile__title {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 1.1rem;
	margin: 0 0 0.6rem;
	padding-bottom: 0.6rem;
	border-bottom: 3px solid var(--accent);
	display: inline-block;
}

.promise-tile p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--text-mute);
}

.numbers-testimonial {
	margin: clamp(2.5rem, 6vw, 4rem) auto 0;
	max-width: 44rem;
	text-align: center;
}

.numbers-testimonial blockquote {
	margin: 0;
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 700;
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	line-height: 1.35;
}

.numbers-testimonial blockquote p { margin: 0; }

.numbers-testimonial blockquote p::before { content: "\201C"; color: var(--accent); }
.numbers-testimonial blockquote p::after { content: "\201D"; color: var(--accent); }

.numbers-testimonial figcaption {
	margin-top: 0.9rem;
	font-size: 0.9rem;
	color: var(--text-mute);
	letter-spacing: 0.04em;
}

/* ---------- 14. Coverage map ---------- */
.sfs-map { max-width: 54rem; margin-inline: auto; }

.sfs-map__svg { width: 100%; height: auto; }

.sfs-map__state path {
	fill: var(--ink-2);
	stroke: var(--paper-2);
	stroke-width: 3;
	stroke-linejoin: round;
	transition: fill var(--speed);
}

.sfs-map__state:hover path,
.sfs-map__state:focus path { fill: var(--accent-hi); }

.sfs-map__state:focus { outline: none; }

.sfs-map__label {
	fill: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 26px;
	letter-spacing: 2px;
	pointer-events: none;
}

.sfs-map__metros {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
}

.sfs-chip {
	display: inline-block;
	padding: 0.45rem 0.9rem;
	border: 1px solid var(--line-light);
	border-radius: 99px;
	background: var(--paper);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--text-dark);
	transition: background var(--speed), color var(--speed),
		border-color var(--speed);
}

.sfs-chip:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

/* ---------- 15. Closing CTA band ---------- */
.sfs-cta-band {
	background:
		radial-gradient(70rem 30rem at 110% -20%, rgba(182, 182, 183, 0.11), transparent 60%),
		var(--ink);
	color: var(--text-inv);
	border-top: 4px solid var(--accent);
	padding-block: clamp(3.5rem, 8vw, 6rem);
}

.sfs-cta-band__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.sfs-cta-band__copy p {
	margin: 1rem 0 0;
	max-width: 34rem;
	color: var(--text-inv-mute);
}

.sfs-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ---------- 16. Footer ---------- */
.sfs-footer {
	background: #0e1016;
	color: var(--text-inv-mute);
	font-size: 0.95rem;
}

.sfs-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 2.5rem;
	padding-block: clamp(3rem, 7vw, 5rem);
}

.sfs-footer__col p { margin: 0.75rem 0 0; max-width: 24rem; }

.sfs-footer__tagline {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
}

.sfs-logo--footer .sfs-logo__text { color: var(--text-inv); }

.sfs-footer__heading {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.95rem;
	color: var(--text-inv);
	margin: 0 0 1rem;
}

.sfs-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sfs-footer__list li { margin-bottom: 0.55rem; }

.sfs-footer__list a {
	text-decoration: none;
	color: var(--text-inv-mute);
	transition: color var(--speed);
}
.sfs-footer__list a:hover { color: var(--accent); }

.sfs-footer__rfp { font-weight: 700; color: var(--accent) !important; }

.sfs-footer__bottom {
	border-top: 1px solid var(--line-dark);
	padding-block: 1.25rem;
	font-size: 0.85rem;
}

.sfs-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
}

.sfs-footer__bottom p { margin: 0; }

.sfs-footer__legal {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sfs-footer__legal a { color: var(--text-inv-mute); text-decoration: none; }
.sfs-footer__legal a:hover { color: var(--accent); }

/* ---------- 17. Page heroes (interior) ---------- */
.page-hero {
	background:
		radial-gradient(60rem 26rem at 100% 0%, rgba(182, 182, 183, 0.09), transparent 60%),
		var(--ink);
	color: var(--text-inv);
	padding-block: clamp(3.5rem, 8vw, 6rem);
}

.page-hero__sub {
	max-width: 40rem;
	font-size: 1.15rem;
	color: var(--text-inv-mute);
	margin: 1.25rem 0 0;
}

.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

/* ---------- 18. Entry content (editor output) ---------- */
.entry-content h2,
.entry-content h3 {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.15;
	margin: 2.25rem 0 0.75rem;
}

.entry-content h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.entry-content h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

.entry-content p { margin: 0 0 1.2rem; }

.entry-content a { color: var(--accent); }
.entry-content a:hover { color: var(--accent-hi); }

.entry-content img {
	border-radius: var(--radius);
	margin-block: 1rem;
}

.entry-content ul,
.entry-content ol { margin: 0 0 1.2rem; }

.entry-content li { margin-bottom: 0.4rem; }

.entry-content blockquote {
	margin: 1.75rem 0;
	padding: 0.5rem 0 0.5rem 1.5rem;
	border-left: 4px solid var(--accent);
	font-weight: 600;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--line-light);
	padding: 0.6rem 0.8rem;
	text-align: left;
}

.entry-content th { background: var(--paper-2); }

.page-thumb { margin: 0 0 2rem; }
.page-thumb img { border-radius: var(--radius); width: 100%; }

/* ---------- 19. Service / metro helper blocks ---------- */
.service-list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.service-list__item a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-left: 4px solid var(--accent);
	border-radius: var(--radius);
	text-decoration: none;
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: transform var(--speed), box-shadow var(--speed);
}

.service-list__item a:hover {
	transform: translateX(4px);
	box-shadow: var(--shadow);
}

.service-list__arrow { color: var(--accent); }

.section--map .service-list__item a,
.section--light .service-list__item a { background: var(--paper); }

.project-slot__empty {
	border: 1px dashed var(--line-light);
	border-radius: var(--radius);
	padding: 2rem;
	text-align: center;
	color: var(--text-mute);
	background: var(--paper-2);
}

.project-slot__empty a { color: var(--accent); }

/* Split layout (technology page) */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.split--reverse .split__media { order: 2; }
.split--reverse .split__copy { order: 1; }

.spec-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.spec-list li {
	position: relative;
	padding: 0 0 0 1.75rem;
	margin-bottom: 0.9rem;
}

.spec-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 0.7rem;
	height: 0.7rem;
	background: var(--accent);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Solve blocks (technology page) */
.solve-blocks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	counter-reset: solve;
}

.solve-block {
	position: relative;
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	padding: 1.9rem 1.75rem 1.75rem;
	box-shadow: 0 6px 24px rgba(15, 17, 24, 0.05);
}

.solve-block:last-child { grid-column: 1 / -1; }

.solve-block__num {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	font-size: 2.5rem;
	line-height: 1;
	color: rgba(3, 4, 96, 0.30);
}

.solve-block h3 {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 1.2rem;
	margin: 0.5rem 0 0.6rem;
}

.solve-block p {
	margin: 0;
	font-size: 0.975rem;
	color: var(--text-mute);
}

/* ---------- 20. Mock batch report (pure CSS) ---------- */
.mock-report {
	background: #f8f9fb;
	color: var(--text-dark);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	font-family: var(--font-mono);
	font-size: 0.8rem;
	overflow: hidden;
	transform: rotate(-1deg);
	max-width: 30rem;
	margin-inline: auto;
}

.mock-report__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--ink);
	color: #fff;
	padding: 0.9rem 1.2rem;
}

.mock-report__brand {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.mock-report__meta { font-size: 0.7rem; color: var(--text-inv-mute); }

.mock-report__sub {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 1.2rem;
	border-bottom: 1px solid var(--line-light);
	color: var(--text-mute);
	font-size: 0.72rem;
}

.mock-report__table { padding: 0.4rem 1.2rem 0.8rem; }

.mock-report__row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 0.6fr;
	gap: 0.5rem;
	padding: 0.45rem 0;
	border-bottom: 1px dashed var(--line-light);
}

.mock-report__row--head {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.68rem;
	color: var(--text-mute);
	border-bottom: 2px solid var(--ink);
}

.mock-report__row span:nth-child(n+2) { color: #1c7a3d; }
.mock-report__row--head span { color: var(--text-mute); }

.mock-report__foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.9rem 1.2rem;
	background: var(--paper-2);
	font-size: 0.7rem;
	color: var(--text-mute);
}

.mock-report__stamp {
	border: 2px solid var(--accent);
	color: var(--accent);
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 0.25rem 0.5rem;
	border-radius: 3px;
	transform: rotate(-3deg);
}

/* ---------- 21. RFP page (estimate request) ----------
   Copy left, wizard card right. The card is sticky so it follows the page
   while the visitor reads; sticky (and the 2-col grid) switch off < 900px. */
.sfs-rfp__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(380px, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.sfs-rfp__wizard-col {
	position: sticky;
	top: 6.25rem; /* clears the sticky header */
	align-self: start;
}

@media (max-width: 900px) {
	.sfs-rfp__layout { grid-template-columns: 1fr; }
	.sfs-rfp__wizard-col { position: static; }
}

.sfs-rfp__intro { margin-bottom: 2rem; }

.sfs-rfp__guarantee {
	margin-top: 1.75rem;
	padding: 1.1rem 1.4rem;
	border-left: 4px solid var(--accent);
	background: var(--paper-2);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 0.975rem;
}

.sidebar-card {
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	padding: 1.6rem 1.5rem;
	margin-bottom: 1.25rem;
	box-shadow: 0 6px 24px rgba(15, 17, 24, 0.05);
}

.sidebar-card__title {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 1.05rem;
	margin: 0 0 0.9rem;
}

.sidebar-card--contact { border-top: 3px solid var(--accent); }

.sidebar-card__phone {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--accent);
	text-decoration: none;
}

.sidebar-card--contact p { margin: 0 0 0.5rem; }

.sidebar-card__hours { color: var(--text-mute); font-size: 0.9rem; }

.sidebar-card--muted {
	background: var(--paper-2);
	box-shadow: none;
}

.sidebar-card__fineprint {
	margin: 0;
	font-size: 0.85rem;
	color: var(--text-mute);
}

.check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.check-list li {
	position: relative;
	padding-left: 1.8rem;
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
}

.check-list li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--accent);
	font-weight: 800;
}

/* ---------- 22. Companion-plugin slot baseline styles (.sfs-*) ----------
   The plugin ships its own detailed styles; these keep its output
   on-brand even before/without plugin CSS. */
.sfs-rfp-form-slot form,
.sfs-rfp-form { display: block; }

.sfs-rfp-form-slot input[type="text"],
.sfs-rfp-form-slot input[type="email"],
.sfs-rfp-form-slot input[type="tel"],
.sfs-rfp-form-slot input[type="number"],
.sfs-rfp-form-slot input[type="date"],
.sfs-rfp-form-slot select,
.sfs-rfp-form-slot textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	font: inherit;
	background: var(--paper);
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.sfs-rfp-form-slot input:focus,
.sfs-rfp-form-slot select:focus,
.sfs-rfp-form-slot textarea:focus {
	outline: 3px solid rgba(3, 4, 96, 0.22);
	border-color: var(--accent);
}

.sfs-rfp-form-slot label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
}

.sfs-rfp-form-slot button[type="submit"],
.sfs-rfp-form-slot input[type="submit"] {
	background: var(--accent);
	color: #fff;
	border: 0;
	border-radius: var(--radius);
	padding: 1rem 2rem;
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
}

.sfs-rfp-form-slot button[type="submit"]:hover,
.sfs-rfp-form-slot input[type="submit"]:hover { background: var(--accent-hi); }

.sfs-spec-downloads-slot { margin-top: 1.5rem; }

/* Plugin spec-download list baseline */
.sfs-spec-downloads-slot .sfs-spec-item,
.sfs-spec-downloads-slot li {
	margin-bottom: 0.6rem;
}

.sfs-spec-downloads-slot a { color: var(--accent); font-weight: 600; }

.sfs-slot-note {
	border: 1px dashed var(--line-light);
	border-radius: var(--radius);
	padding: 1.25rem 1.5rem;
	background: var(--paper-2);
	color: var(--text-mute);
	font-size: 0.95rem;
}

.sfs-slot-note a { color: var(--accent); }

.sfs-slot-note--form { padding: 2rem; }

/* Floating bid widget (plugin) — reserve stacking room only */
.sfs-bid-widget { z-index: 80; }

/* ---------- 23. Blog/archive extras ---------- */
.post-footer {
	margin-top: 3rem;
	border-top: 1px solid var(--line-light);
	padding-top: 2rem;
}

.post-footer__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	background: var(--paper-2);
	border-left: 4px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.post-footer__cta p { margin: 0; max-width: 30rem; }

.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	font-weight: 600;
}

.post-nav a { color: var(--accent); text-decoration: none; }
.post-nav a:hover { color: var(--accent-hi); }

.pagination-wrap { margin-top: 3rem; text-align: center; }

.pagination-wrap .nav-links {
	display: inline-flex;
	gap: 0.4rem;
}

.pagination-wrap .page-numbers {
	display: inline-block;
	min-width: 2.5rem;
	padding: 0.55rem 0.7rem;
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 600;
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.no-results { max-width: 34rem; }
.no-results .sfs-search { margin-block: 1.5rem; }

/* ---------- 24. Search form ---------- */
.sfs-search {
	display: flex;
	gap: 0.6rem;
	max-width: 26rem;
}

.sfs-search__input {
	flex: 1;
	padding: 0.8rem 1rem;
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	font: inherit;
}

/* ---------- 25. 404 ---------- */
.sfs-404 { text-align: center; }

.sfs-404__inner { max-width: 46rem; }

.sfs-404__code {
	font-family: var(--font-display);
	font-stretch: condensed;
	font-weight: 800;
	font-size: clamp(5rem, 16vw, 10rem);
	line-height: 1;
	margin: 0 0 0.5rem;
	color: transparent;
	-webkit-text-stroke: 2px var(--accent);
}

.sfs-404__sub {
	color: var(--text-inv-mute);
	margin: 1.25rem auto 2rem;
	max-width: 30rem;
}

.sfs-404__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.sfs-404__links ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.75rem;
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
}

.sfs-404__links a {
	color: var(--text-inv-mute);
	text-decoration: none;
	font-size: 0.95rem;
}
.sfs-404__links a:hover { color: var(--accent); }

.sfs-404__search { display: flex; justify-content: center; }
.sfs-404__search .sfs-search__input { background: var(--ink-2); border-color: var(--line-dark); color: var(--text-inv); }

/* ---------- 26. Scroll-reveal animation ---------- */
/* Hidden state only when JS is confirmed running (html.js) — content is
   never lost to a script failure or no-JS browser. */
.js .reveal {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0s),
		transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0s);
	will-change: opacity, transform;
}

.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.js .reveal { opacity: 1; transform: none; transition: none; }
	.btn:hover,
	.card:hover,
	.service-list__item a:hover { transform: none; }
	*,
	*::before,
	*::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ---------- 27. Responsive ---------- */
@media (max-width: 1024px) {
	.card-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.tile-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.sfs-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.sfs-nav-toggle { display: block; }

	.sfs-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--ink);
		border-bottom: 1px solid var(--line-dark);
		padding: 1rem var(--gutter) 1.5rem;
		display: none;
		max-height: calc(100vh - 7rem);
		overflow-y: auto;
	}

	.sfs-nav.is-open { display: flex; }

	.sfs-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.sfs-nav__list a { padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--line-dark); border-radius: 0; }

	.sfs-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		background: transparent;
		padding: 0 0 0 1rem;
		min-width: 0;
	}

	.sfs-nav__cta { margin-top: 1.25rem; }
}

@media (max-width: 820px) {
	.sfs-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 1rem; }
	.sfs-stat { border-left: 0; }
	.tile-grid--3 { grid-template-columns: 1fr; }
	.project-strip { grid-template-columns: 1fr; }
	.card-grid--3 { grid-template-columns: 1fr; }
	.split { grid-template-columns: 1fr; }
	.split--reverse .split__media { order: 1; }
	.split--reverse .split__copy { order: 2; }
	.solve-blocks { grid-template-columns: 1fr; }
	.service-list { grid-template-columns: 1fr; }
	.sfs-topstrip__inner { justify-content: center; }
	.sfs-topstrip__phone { display: none; }
}

@media (max-width: 560px) {
	.card-grid--4 { grid-template-columns: 1fr; }
	.tile-grid--4 { grid-template-columns: 1fr; }
	.sfs-footer__grid { grid-template-columns: 1fr; }
	.sfs-hero { min-height: 74vh; }
	.btn--lg { width: 100%; }
	.sfs-hero__actions,
	.sfs-cta-band__actions { width: 100%; flex-direction: column; }
	.post-nav { flex-direction: column; }
}

/* =========================================================================
   28. BRAND PALETTE — dark-surface overrides (navy is unusable on charcoal;
   accents on dark surfaces are white or silver. Non-negotiable.)
   ========================================================================= */

/* Accent text on dark surfaces -> silver */
.section--dark .eyebrow--accent,
.sfs-hero .eyebrow,
.sfs-hero .eyebrow--accent,
.page-hero .eyebrow--accent,
.sfs-cta-band .eyebrow--accent { color: var(--silver); }

/* Top strip phone (near-black strip) */
.sfs-topstrip__phone { color: #ffffff; }
.sfs-topstrip__phone:hover { color: var(--silver); }

/* Header nav (charcoal): hover/current -> white + silver underline */
.sfs-nav__list a:hover { color: #ffffff; }
.sfs-nav__list .current-menu-item > a,
.sfs-nav__list .current-menu-ancestor > a {
	color: #ffffff;
	text-decoration: underline;
	text-decoration-color: var(--silver);
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}

/* Fallback logo mark/word on charcoal */
.sfs-logo__mark { background: var(--silver); }
.sfs-logo__text em { color: var(--silver); }

/* SVG logo images */
.sfs-logo__img { height: 3.25rem; width: auto; }
.sfs-logo--footer .sfs-logo__img { height: 2.75rem; }

/* Stat band (dark): numbers white */
.sfs-stat__number { color: #ffffff; }

/* Tiles: dark tiles get silver top border + white number;
   light tiles keep navy (base vars). */
.tile { border-top-color: var(--silver); }
.tile__number { color: #ffffff; }
.tile--light { border-top-color: var(--accent); }
.tile--light .tile__number { color: var(--accent); }

/* Tech challenge block on dark */
.sfs-tech__challenge { border-left-color: var(--silver); }

/* CTA band on charcoal: silver top border */
.sfs-cta-band { border-top-color: var(--silver); }

/* Footer (near-black): accents white/silver */
.sfs-footer__tagline { color: var(--silver); }
.sfs-footer__list a:hover { color: #ffffff; }
.sfs-footer__rfp { color: #ffffff !important; }
.sfs-footer__legal a:hover { color: #ffffff; }

/* 404 (dark): outline numerals + link hovers */
.sfs-404__code { -webkit-text-stroke: 2px var(--silver); }
.sfs-404__links a:hover { color: #ffffff; }

/* Buttons on dark surfaces: white fill + navy text (primary),
   silver-outlined ghost handled by .btn--ghost already. */
.section--dark .btn--primary,
.sfs-hero .btn--primary,
.page-hero .btn--primary,
.sfs-cta-band .btn--primary,
.sfs-header .btn--primary,
.sfs-nav .btn--primary,
.sfs-404 .btn--primary {
	background: #ffffff;
	color: var(--accent);
}
.section--dark .btn--primary:hover,
.sfs-hero .btn--primary:hover,
.page-hero .btn--primary:hover,
.sfs-cta-band .btn--primary:hover,
.sfs-header .btn--primary:hover,
.sfs-nav .btn--primary:hover,
.sfs-404 .btn--primary:hover {
	background: var(--gray-light);
	color: var(--accent);
}

/* Outline buttons on dark surfaces: silver border, white text */
.section--dark .btn--outline,
.sfs-hero .btn--outline,
.page-hero .btn--outline,
.sfs-cta-band .btn--outline,
.sfs-404 .btn--outline {
	color: #ffffff;
	border-color: var(--silver);
}
.section--dark .btn--outline:hover,
.sfs-hero .btn--outline:hover,
.page-hero .btn--outline:hover,
.sfs-cta-band .btn--outline:hover,
.sfs-404 .btn--outline:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--accent);
}

/* Focus rings: navy on light, white on dark surfaces */
.section--dark :focus-visible,
.sfs-header :focus-visible,
.sfs-hero :focus-visible,
.page-hero :focus-visible,
.sfs-cta-band :focus-visible,
.sfs-footer :focus-visible,
.sfs-topstrip :focus-visible,
.sfs-stats :focus-visible,
.sfs-404 :focus-visible { outline-color: #ffffff; }

/* Skip link is fine navy-on-white; ensure it sits on white */
.skip-link { background: #ffffff; color: var(--accent); box-shadow: 0 4px 18px rgba(0,0,0,.35); }

/* =========================================================================
   29. Photo wiring — hero crop, tech-tile media, content photo grids
   ========================================================================= */
.sfs-hero__media img { object-position: 62% 55%; }

.tile__media {
	margin: -2rem -1.75rem 1.4rem;
	overflow: hidden;
	border-radius: var(--radius) var(--radius) 0 0;
}
.tile__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
}

.sfs-figure-lead { margin: 0 0 2rem; }
.sfs-figure-lead img { width: 100%; border-radius: var(--radius); }

.sfs-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 1.5rem 0 2rem;
}
.sfs-photo-grid figure { margin: 0; }
.sfs-photo-grid a { display: block; }
.sfs-photo-grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	margin: 0;
}
@media (max-width: 820px) {
	.sfs-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
