/* =========================================================
   Link Electrical — theme stylesheet
   Mobile-first. Low specificity throughout so Elementor's own
   section/container styling always wins on any page it controls.
   ========================================================= */

/* ---- Fonts (self-hosted, variable) ---- */
@font-face {
	font-family: 'Space Grotesk';
	src: url('../fonts/SpaceGrotesk-Variable.woff2') format('woff2-variations'), url('../fonts/SpaceGrotesk-Variable.woff2') format('woff2');
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Variable.woff2') format('woff2-variations'), url('../fonts/Inter-Variable.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* ---- Custom properties ---- */
:root {
	--color-orange: #F15A29;
	--color-orange-dark: #d94a1c;
	--color-orange-accent: #F26521;
	--color-ink: #101012;
	--color-teal: #0F8E9B;
	--color-navy: #0B1E33;
	--color-gray-light: #EEEFF1;
	--color-gray-mid: #656668;
	--color-border: #E3E4E6;
	--color-white: #FFFFFF;
	--gradient-brand: linear-gradient(135deg, #0F8E9B 0%, #0B1E33 100%);

	--font-label: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
	--font-primary: 'Inter', 'Helvetica Neue', Arial, sans-serif;

	--container-width: 1180px;
	--container-pad: clamp(1.25rem, 4vw, 2.5rem);

	--header-height: 84px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
body {
	margin: 0;
	overflow-x: hidden;
	background: var(--color-white);
	color: var(--color-ink);
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
}
/* Bold display accents — Neue Haas 75 Bold in the source design (project
   titles, big statement words like "Connect."), distinct from the Medium
   weight used for regular headings. */
.project-row h2,
.values-row__item h3 {
	font-weight: 700;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Focus visibility (accessibility) */
:focus-visible {
	outline: 2px solid var(--color-orange);
	outline-offset: 3px;
}

.skip-link {
	position: absolute;
	left: 0;
	top: -100px;
	background: var(--color-ink);
	color: #fff;
	padding: 0.75em 1.25em;
	z-index: 10000;
	transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

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

/* ---- Layout helpers ---- */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}
.section-padding { padding-block: clamp(3rem, 7vw, 6rem); }
.text-orange { color: var(--color-orange-accent); }
.eyebrow {
	font-family: var(--font-label);
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-teal);
	margin: 0 0 0.75em;
}

/* Fluid type scale */
h1, .h1 { font-size: clamp(2.25rem, 4.5vw + 1rem, 3.75rem); }
h2, .h2 { font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); }
h3, .h3 { font-size: clamp(1.25rem, 1.2vw + 1rem, 1.5rem); }
.lede { font-size: clamp(1rem, 0.5vw + 0.9rem, 1.15rem); color: var(--color-gray-mid); }

/* ---- Scroll reveal (progressive enhancement; JS adds .is-visible) ---- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
}
.js-disabled .reveal { opacity: 1; transform: none; }

/* ---- Buttons ---- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.9em 1.6em;
	border-radius: 999px;
	font-family: var(--font-label);
	font-weight: 400;
	font-size: 0.9375rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
	min-height: 44px;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(0.97); }

.btn--primary {
	background: var(--color-orange);
	color: #fff;
}
.btn--primary:hover { background: var(--color-orange-dark); box-shadow: 0 8px 20px -6px rgba(241, 90, 41, 0.55); }

.btn--ghost-light {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,0.55);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn--text {
	padding: 0;
	border-radius: 0;
	background: none;
	color: var(--color-orange-accent);
	min-height: auto;
}
.btn--text:hover { color: var(--color-orange-dark); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: #fff;
	border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: var(--header-height);
}
.site-logo img { height: 40px; width: auto; }

.primary-nav__list {
	display: none;
}

.nav-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--color-ink);
}
.nav-toggle__icon svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 1024px) {
	.site-header__inner { gap: 2.5rem; }
	.site-logo img { height: 44px; }
	.primary-nav {
		display: block;
		flex: 1;
	}
	.primary-nav__list {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: clamp(1.25rem, 2vw, 2.25rem);
		font-family: var(--font-label);
		font-weight: 600;
		font-size: 0.8125rem;
		letter-spacing: 0.06em;
		text-transform: uppercase;
	}
	.primary-nav__list a {
		position: relative;
		padding-block: 0.4em;
		display: inline-block;
	}
	.primary-nav__list a::after {
		content: '';
		position: absolute;
		left: 0; right: 100%;
		bottom: -2px;
		height: 2px;
		background: var(--color-orange-accent);
		transition: right 0.25s var(--ease);
	}
	.primary-nav__list a:hover::after,
	.primary-nav__list li.current-menu-item a::after {
		right: 0;
	}
	.nav-toggle { display: none; }
}

/* Mobile nav drawer */
@media (max-width: 1023.98px) {
	.primary-nav {
		position: fixed;
		inset: var(--header-height) 0 0 0;
		background: #fff;
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
		overflow-y: auto;
		z-index: 490;
	}
	.primary-nav.is-open {
		opacity: 1;
		transform: none;
		visibility: visible;
		pointer-events: auto;
		transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
	}
	.primary-nav__list {
		display: flex;
		flex-direction: column;
		padding: 1.5rem var(--container-pad) 2.5rem;
		font-family: var(--font-label);
		font-weight: 600;
		font-size: 1.5rem;
	}
	.primary-nav__list li { border-bottom: 1px solid var(--color-border); }
	.primary-nav__list a { display: block; padding: 0.85em 0.1em; min-height: 44px; display: flex; align-items: center; }
	.primary-nav__list li.current-menu-item a { color: var(--color-orange-accent); }
}

/* =========================================================
   Hero (homepage — photo + dark overlay)
   ========================================================= */
.hero {
	position: relative;
	background: var(--color-ink);
	color: #fff;
	overflow: hidden;
	min-height: clamp(480px, 78vh, 760px);
	display: flex;
	align-items: center;
}
.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Homepage hero only: the source photo has baked-in mockup text with no
   horizontal object-position room to pan once cover-scaled width matches
   the container — this forced zoom creates that room. Other hero photos
   (About, etc.) don't have that problem and must stay untouched. */
.hero--home .hero__bg img {
	object-position: 92% center;
	transform: scale(1.65);
	transform-origin: 95% 45%;
}
.hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10,10,11,0.97) 0%, rgba(10,10,11,0.88) 35%, rgba(10,10,11,0.35) 65%, rgba(10,10,11,0.05) 100%);
}
.hero__content {
	position: relative;
	z-index: 1;
	max-width: 620px;
	padding-block: clamp(4rem, 12vh, 6rem);
}
.hero__eyebrow {
	font-family: var(--font-label);
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-teal);
	margin-bottom: 1em;
}
.hero h1 { color: #fff; margin-bottom: 0.5em; }
.hero .lede { color: rgba(255,255,255,0.85); font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem); max-width: 46ch; margin-bottom: 2em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =========================================================
   Inner-page banner (gradient hero for Services/Industries/Projects)
   ========================================================= */
.page-banner {
	position: relative;
	background: url('../images/inner-title-background.png') center top / 100% auto no-repeat, var(--gradient-brand);
	color: #fff;
	overflow: hidden;
	padding-block: clamp(3rem, 9vw, 5.5rem);
}
.page-banner__inner { position: relative; z-index: 1; max-width: 640px; }
.page-banner h1 { color: #fff; margin-bottom: 0.4em; }
.page-banner p { color: rgba(255,255,255,0.88); max-width: 56ch; }

/* About-page hero variant: photo banner, not gradient */
.hero--photo {
	min-height: clamp(420px, 60vh, 620px);
}
.hero--photo .hero__bg::after {
	background: linear-gradient(90deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.25) 45%, rgba(10,10,11,0.05) 100%), linear-gradient(0deg, rgba(10,10,11,0.35), transparent 40%);
}
.hero--photo .hero__content { max-width: 640px; padding-block: clamp(3rem, 10vh, 5rem); }

/* =========================================================
   What we do / icon tile grid
   ========================================================= */
.icon-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--color-border);
	border: 1px solid var(--color-border);
	margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 640px) { .icon-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .icon-grid { grid-template-columns: repeat(6, 1fr); } }

.icon-tile {
	background: #fff;
	padding: clamp(1.25rem, 2.5vw, 1.75rem) 1rem;
	text-align: center;
	transition: background-color 0.25s var(--ease);
}
.icon-tile:hover { background: var(--color-gray-light); }
.icon-tile__icon {
	width: 40px; height: 40px;
	margin: 0 auto 0.85em;
	color: var(--color-teal);
}
.icon-tile__icon svg { stroke-width: 1.5; }
.icon-tile h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.4em; }
.icon-tile p { font-size: 0.8125rem; color: var(--color-gray-mid); }

/* =========================================================
   Split feature (van / connects-solves-evolves / built-for-industry)
   Full-bleed: the photo runs edge-to-edge with no padding or radius;
   only the text column keeps container-aligned padding.
   ========================================================= */
.split-feature {
	display: grid;
	grid-template-columns: 1fr;
	min-height: clamp(320px, 42vw, 560px);
}
@media (min-width: 900px) {
	.split-feature { grid-template-columns: 1fr 1fr; }
}
.split-feature__media { position: relative; min-height: 280px; }
.split-feature__media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.split-feature__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-block: clamp(2.5rem, 6vw, 4rem);
	padding-inline: var(--container-pad);
}
.split-feature__text > * { max-width: 480px; }
@media (min-width: 900px) {
	.split-feature__text { padding-inline-end: clamp(2rem, 5vw, 4rem); }
	.split-feature__text { padding-inline-start: max(var(--container-pad), calc((100vw - var(--container-width)) / 2)); }
	/* --reverse: DOM order is media-then-text (matches "image left, text
	   right" by default); this flips it to "text left, image right" by
	   pulling text ahead of media in visual (not DOM/reading) order. */
	.split-feature--reverse .split-feature__text {
		order: -1;
		padding-inline-start: max(var(--container-pad), calc((100vw - var(--container-width)) / 2));
		padding-inline-end: clamp(2rem, 5vw, 4rem);
	}
}
.split-feature__text .accent-rule {
	width: 40px; height: 3px; background: var(--color-orange-accent); margin-bottom: 1.25em; border: 0;
}

/* =========================================================
   Strips (industries / projects thumbnail rows)
   ========================================================= */
.strip-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.thumb-strip {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(0.75rem, 2vw, 1.25rem);
}
@media (min-width: 640px) { .thumb-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .thumb-strip--industries { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 1024px) { .thumb-strip--projects { grid-template-columns: repeat(4, 1fr); } }

.thumb-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3/4;
	display: block;
	/* Card corner shape (confirmed with the client): top-left and
	   bottom-right are chamfer-cut; top-right and bottom-left are
	   rounded (approximated with a 4-point polygon arc). Built as a
	   single clip-path polygon rather than an SVG data-URI mask —
	   Chromium was inconsistently failing to rasterize the mask on
	   some (not all) elements sharing the identical mask-image value,
	   even with byte-identical computed styles. Plain polygon math has
	   no such issue. */
	clip-path: polygon(
		10% 0%, 94% 0%, 96.3% 0.46%, 98.2% 1.76%, 99.5% 3.7%, 100% 6%,
		100% 86%, 86% 100%,
		6% 100%, 3.7% 99.5%, 1.76% 98.2%, 0.46% 96.3%, 0% 94%,
		0% 10%
	);
}
.thumb-strip--projects .thumb-card { aspect-ratio: 6/5; }
.thumb-card img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.5s var(--ease);
}
.thumb-card:hover img { transform: scale(1.06); }

/* Projects strip: caption overlaid directly on the photo with a gradient scrim */
.thumb-card--overlay::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 55%);
}
.thumb-card--overlay .thumb-card__label {
	position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.75rem;
	z-index: 1;
	color: #fff;
	font-family: var(--font-label);
	font-weight: 600;
	font-size: 0.8125rem;
	line-height: 1.25;
}

/* Industries strip: photo card + bold caps caption below it */
.industry-card { display: block; }
.industry-card:hover .thumb-card img { transform: scale(1.06); }
.industry-card__caption {
	display: block;
	margin-top: 0.75rem;
	font-family: var(--font-label);
	font-weight: 700;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--color-ink);
	line-height: 1.25;
}

/* =========================================================
   Card grid (Services / Industries pages)
   ========================================================= */
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.info-card {
	border-top: 1px solid var(--color-border);
	padding-top: 1.5rem;
}
.info-card__photo {
	overflow: hidden;
	aspect-ratio: 4/3;
	margin-bottom: 1.25rem;
}
.info-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.info-card:hover .info-card__photo img { transform: scale(1.05); }
.info-card__num {
	font-family: var(--font-label);
	font-weight: 600;
	font-size: 0.75rem;
	color: var(--color-orange-accent);
	letter-spacing: 0.06em;
	margin-bottom: 0.5em;
}
.info-card h3 { margin-bottom: 0.5em; }
.info-card p:not(.info-card__num) { color: var(--color-gray-mid); font-size: 0.9375rem; margin-bottom: 1.1em; }
.info-card .btn--text { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.8125rem; }
.info-card .btn--text svg { width: 16px; height: 16px; }
.info-card__tags { font-size: 0.875rem; }
.info-card__tags li { position: relative; padding-left: 1em; margin-bottom: 0.3em; }
.info-card__tags li::before { content: '\2022'; position: absolute; left: 0; color: var(--color-gray-mid); }

/* =========================================================
   Values row (Connect. Solve. Evolve.)
   ========================================================= */
.values-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 768px) {
	.values-row { grid-template-columns: repeat(3, 1fr); gap: 0; }
	.values-row__item { padding-inline: 2rem; border-left: 1px solid var(--color-border); }
	.values-row__item:first-child { padding-left: 0; border-left: 0; }
}
.values-row__item .accent-rule { width: 32px; height: 3px; background: var(--color-orange-accent); border: 0; margin-bottom: 1em; }
.values-row__item h3 { font-size: clamp(1.5rem, 2vw, 2rem); margin-bottom: 0.35em; }
.values-row__item p { color: var(--color-gray-mid); }

/* =========================================================
   Project case-study rows (Projects page)
   ========================================================= */
/* Full-width stacked layout: image on top, heading/copy/meta below —
   matches the source design (no side-by-side alternating rows). */
.project-row {
	padding-block: clamp(2rem, 5vw, 3rem);
}
.project-row:first-of-type { padding-top: 0; }
.project-row__media { aspect-ratio: 21/9; margin-bottom: 1.75rem; }
.project-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-row h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.6em; }
.project-row__desc { color: var(--color-gray-mid); margin-bottom: 1.5em; max-width: 760px; }
.project-row__meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem 1.5rem;
	padding-block: 1.5em;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}
@media (min-width: 480px) { .project-row__meta { grid-template-columns: repeat(3, 1fr); } }
.project-row__meta dt { font-size: 0.875rem; font-weight: 700; color: var(--color-ink); margin-bottom: 0.5em; }
.project-row__meta dd { margin: 0; font-size: 0.875rem; }
.project-row__meta dd ul li { position: relative; padding-left: 1em; }
.project-row__meta dd ul li::before { content: '\2022'; position: absolute; left: 0; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
	background: url('../images/cta-background.png') center / 100% 100% no-repeat, var(--gradient-brand);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.cta-band__inner {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: flex-start;
	padding-block: clamp(2rem, 5vw, 2.75rem);
	position: relative;
	z-index: 1;
}
@media (min-width: 700px) {
	.cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-band__heading { font-family: var(--font-label); font-weight: 700; font-size: clamp(1.375rem, 2vw, 1.75rem); margin: 0; }
.cta-band__phone { text-align: right; }
.cta-band__phone-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); margin-bottom: 0.3em; }
.cta-band__phone-number { display: block; font-family: var(--font-label); font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.625rem); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: #fff; padding-top: clamp(2.5rem, 6vw, 4rem); }
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr) 1fr 0.6fr; gap: 1.5rem; } }

.footer-brand .site-logo img { height: 34px; }
.footer-tagline { font-family: var(--font-primary); font-weight: 700; font-size: 1.375rem; margin-top: 1rem; line-height: 1.2; }

.footer-col__title { font-family: var(--font-primary); font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1em; }
.footer-col__list li { color: var(--color-gray-mid); font-size: 0.875rem; margin-bottom: 0.65em; }
.footer-col__list a:hover { color: var(--color-orange); }
.footer-col__list--contact a,
.footer-col__list--contact li { display: flex; align-items: center; gap: 0.6em; }
.footer-col__list--contact svg { width: 15px; height: 15px; color: var(--color-orange-accent); flex-shrink: 0; }

.footer-badge { display: block; }
.footer-badge img { display: block; width: 55px; height: auto; }

.footer-bottom { border-top: 1px solid var(--color-border); padding-block: 1.25rem; }
.footer-bottom__inner {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.8125rem;
	color: var(--color-gray-mid);
}
@media (min-width: 640px) { .footer-bottom__inner { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--color-orange); }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; } }
.contact-details dt { font-family: var(--font-label); font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-gray-mid); margin-top: 1.5em; margin-bottom: 0.4em; }
.contact-details dt:first-child { margin-top: 0; }
.contact-details dd { margin: 0; font-size: 1.0625rem; }
.contact-details a:hover { color: var(--color-orange); }

.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.5em; }
.form-field input,
.form-field textarea {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	padding: 0.85em 1em;
	font: inherit;
	font-size: 0.9375rem;
	background: #fff;
	min-height: 44px;
	transition: border-color 0.2s var(--ease);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--color-orange); outline: none; box-shadow: 0 0 0 3px rgba(241,90,41,0.15); }

.form-notice { padding: 1em 1.25em; border-radius: 8px; font-size: 0.9375rem; margin-bottom: 1.5rem; }
.form-notice--success { background: #E9F8EE; color: #1B7A3D; }
.form-notice--error { background: #FDEDEA; color: #B3261E; }

/* =========================================================
   Misc
   ========================================================= */
.bg-light { background: var(--color-gray-light); }
.bg-ink { background: var(--color-ink); color: #fff; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.two-col-intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 800px) { .two-col-intro { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } }

.full-bleed-photo { width: 100%; aspect-ratio: 21/9; overflow: hidden; }
.full-bleed-photo img { width: 100%; height: 100%; object-fit: cover; }

.bullet-columns {
	margin-top: 1.25em;
	column-count: 1;
	column-gap: 2rem;
}
@media (min-width: 480px) { .bullet-columns { column-count: 3; } }
.bullet-columns li {
	list-style: disc outside;
	margin-left: 1.1em;
	padding-left: 0.2em;
	font-size: 0.9375rem;
	break-inside: avoid;
	margin-bottom: 0.5em;
}
.bullet-columns li::marker { color: var(--color-ink); }

/* Editor/Gutenberg content inside pages: keep loose, let utility classes above do the real work */
.entry-content > * + * { margin-top: 0; }
