:root {
	--background: #fafafa;
	--surface: #fff;
	--foreground: #18181b;
	--muted-foreground: #52525b;
	--primary: #0a4730;
	--primary-dark: #061f17;
	--accent: #0d6b45;
	--muted: #f0f5f3;
	--border: #d4e0db;
	--shadow-sm: 0 1px 2px rgba(6, 31, 23, .04), 0 5px 18px rgba(6, 31, 23, .04);
	--shadow-lg: 0 18px 45px rgba(6, 31, 23, .12);
	--radius: 6px;
	--header-height: 112px;
	--admin-bar-offset: 0px;
}

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

html {
	min-height: 100%;
	overflow-x: clip;
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	min-height: 100vh;
	overflow-x: clip;
	background: var(--background);
	color: var(--foreground);
	font-family: Arial, Helvetica, system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-is-open { overflow: hidden; }
body.admin-bar { --admin-bar-offset: 32px; }
img { display: block; max-width: 100%; height: auto; }
svg { flex: 0 0 auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, summary { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.18; text-wrap: balance; }
p { text-wrap: pretty; }
:target { scroll-margin-top: calc(var(--header-height) + var(--admin-bar-offset) + 18px); }
::selection { background: rgba(10, 71, 48, .18); }

.container { width: min(100% - 40px, 1280px); margin-inline: auto; }
.content-wide { max-width: 1120px; }
.content-medium { max-width: 980px; }
.content-narrow { max-width: 760px; }
.section { padding-block: 88px; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
	top: 8px; left: 8px; z-index: 9999; width: auto; height: auto; padding: 10px 14px;
	clip: auto; background: #fff; color: var(--primary); border-radius: 4px;
}

.button {
	display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px;
	padding: 11px 22px; border: 1px solid transparent; border-radius: 3px;
	font-size: 14px; font-weight: 700; line-height: 1.2; text-align: center;
	transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
	outline: 3px solid rgba(13, 107, 69, .32); outline-offset: 3px;
}
.button-primary { background: var(--primary); color: #fff; }
.button-primary:hover { background: #083d29; box-shadow: 0 7px 18px rgba(10, 71, 48, .18); }
.button-light { background: #eff5f2; border-color: #eff5f2; color: #0a3a2b; }
.button-light:hover { background: #fff; border-color: #fff; }
.button-ghost-light { border-color: rgba(199, 218, 210, .7); color: #f4f8f6; }
.button-ghost-light:hover { background: rgba(11, 48, 36, .76); border-color: #fff; }
.button-outline { background: transparent; border-color: var(--border); color: var(--primary); }
.button-outline:hover { background: var(--muted); border-color: rgba(10, 71, 48, .32); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header {
	position: fixed; inset: var(--admin-bar-offset) 0 auto; z-index: 100;
	background: var(--background); border-bottom: 1px solid var(--border);
	transition: transform .3s ease, box-shadow .3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(6, 31, 23, .08); }
.topbar { height: 32px; background: var(--primary); color: #fff; }
.topbar-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; line-height: 1; }
.topbar-item:hover { color: rgba(255, 255, 255, .78); }
.topbar-hours { margin-right: auto; }
.topbar-phone { font-weight: 700; }
.topbar-social { display: flex; align-items: center; gap: 2px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.18); }
.topbar-social a { display: grid; width: 25px; height: 25px; place-items: center; color: rgba(255,255,255,.7); }
.topbar-social a:hover { color: #fff; }
.nav-shell { height: 80px; }
.nav-inner { display: flex; height: 100%; align-items: center; gap: 32px; }
.site-brand { display: flex; height: 56px; min-width: 0; align-items: center; }
.site-brand img { width: auto; height: 100%; object-fit: contain; }
.brand-addon { display: block; margin-left: 12px; padding-left: 12px; border-left: 1px solid rgba(10, 71, 48, .25); color: var(--primary); font-size: 11px; font-weight: 700; line-height: 1.2; }
.desktop-nav { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 30px; padding: 0; margin: 0; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu a { position: relative; display: block; padding-block: 11px; color: var(--muted-foreground); font-size: 14px; font-weight: 500; }
.nav-menu > li > a::after { position: absolute; right: 100%; bottom: 7px; left: 0; height: 2px; background: var(--primary); content: ""; transition: right .2s; }
.nav-menu > li > a:hover, .nav-menu .current-menu-item > a, .nav-menu .is-section-active > a { color: var(--foreground); }
.nav-menu > li > a:hover::after, .nav-menu .current-menu-item > a::after, .nav-menu .is-section-active > a::after { right: 0; }
.nav-menu.has-section-active .current-menu-item:not(.is-section-active):not(:hover) > a { color: var(--muted-foreground); }
.nav-menu.has-section-active .current-menu-item:not(.is-section-active):not(:hover) > a::after { right: 100%; }
.nav-menu .sub-menu {
	position: absolute; top: 100%; left: -15px; min-width: 220px; padding: 8px; margin: 0;
	visibility: hidden; transform: translateY(7px); opacity: 0; list-style: none;
	background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg);
	transition: visibility .2s, opacity .2s, transform .2s;
}
.nav-menu li:hover > .sub-menu, .nav-menu li:focus-within > .sub-menu { visibility: visible; transform: translateY(0); opacity: 1; }
.nav-menu .sub-menu a { padding: 8px 10px; border-radius: 3px; }
.nav-menu .sub-menu a:hover { background: var(--muted); color: var(--primary); }
.desktop-contact { min-height: 40px; padding: 9px 16px; }
.menu-toggle { display: none; width: 42px; height: 42px; margin-left: auto; padding: 9px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--foreground); transition: opacity .25s, transform .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: calc(var(--header-height) + var(--admin-bar-offset)) 0 0; overflow-y: auto; background: var(--background); }
.mobile-menu-inner { padding-block: 22px 40px; }
.mobile-kicker { margin-bottom: 3px; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.mobile-subtitle { padding-bottom: 17px; margin-bottom: 0; border-bottom: 1px solid var(--border); color: var(--muted-foreground); font-size: 14px; }
.mobile-nav-list { padding: 0; margin: 0 0 24px; list-style: none; }
.mobile-nav-list li { border-bottom: 1px solid rgba(212, 224, 219, .65); }
.mobile-nav-list a { display: flex; padding: 16px 0; font-size: 17px; font-weight: 700; }
.mobile-nav-list .current-menu-item > a, .mobile-nav-list .is-section-active > a { color: var(--primary); }
.mobile-nav-list.has-section-active .current-menu-item:not(.is-section-active) > a { color: var(--foreground); }
.mobile-nav-list .sub-menu { padding: 0 0 10px 18px; list-style: none; }
.mobile-nav-list .sub-menu li { border: 0; }
.mobile-nav-list .sub-menu a { padding: 7px 0; color: var(--muted-foreground); font-size: 14px; font-weight: 500; }
.mobile-phone { width: 100%; }

/* Hero */
.hero { position: relative; height: 100dvh; min-height: 620px; overflow: hidden; background: var(--primary-dark); color: #fff; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(4,25,18,.82) 0%,rgba(5,29,21,.54) 42%,rgba(5,27,20,.38) 62%,rgba(3,21,15,.8) 100%), linear-gradient(90deg,rgba(3,21,15,.3),rgba(3,21,15,.04) 28%,rgba(3,21,15,.04) 72%,rgba(3,21,15,.3));
}
.hero-shell { position: relative; display: flex; height: 100%; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 56px); padding-bottom: 34px; text-align: center; }
.hero-copy { max-width: 864px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: #b8d2c7; font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.hero-eyebrow > span { width: 28px; height: 1px; background: #8eb7a6; }
.hero h1 { max-width: 1020px; margin: 0; color: #f8faf8; font-family: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Arial, sans-serif; font-size: clamp(44px, 4vw, 58px); font-weight: 700; letter-spacing: -.045em; line-height: .98; }
.hero h1 em { color: #b5d1c5; font-style: normal; }
.hero-description { max-width: 672px; margin: 20px auto 0; color: #dce7e2; font-size: 17px; line-height: 1.5; }
.hero-proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 22px; color: #e4ece8; font-size: 14px; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { color: #9fc4b5; }
.hero-actions { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.hero-signature, .hero-notice { margin-top: auto; }
.hero-signature { padding: 2px 12px; border-left: 2px solid rgba(255,255,255,.6); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .12em; line-height: 1.4; text-align: left; text-transform: uppercase; }
.hero-notice {
	display: flex; max-width: min(100%, 900px); align-items: center; gap: 9px; padding: 7px 12px;
	border-left: 2px solid #b5d1c5; background: rgba(6,31,23,.55); color: #eff6f3;
	font-size: 12px; line-height: 1.35; text-align: left; backdrop-filter: blur(9px);
}
.hero-notice-label { color: #b5d1c5; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-notice strong { white-space: nowrap; }
.hero-notice-message { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-notice a { margin-left: auto; white-space: nowrap; color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Shared sections */
.section-header { max-width: 640px; margin-bottom: 52px; }
.section-header.centered { margin-inline: auto; text-align: center; }
.section-header h2, .about-summary h2 { margin-bottom: 12px; font-size: clamp(27px, 3vw, 36px); font-weight: 650; letter-spacing: -.025em; }
.section-header p, .about-summary p { margin-bottom: 0; color: var(--muted-foreground); }
.section-label { margin-bottom: 10px; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section-label.centered { text-align: center; }
.tag { display: inline-flex; padding: 3px 8px; border-radius: 999px; background: var(--muted); color: var(--primary); font-size: 11px; font-weight: 700; }

.partner-strip { padding-block: 64px; border-block: 1px solid rgba(212,224,219,.65); background: var(--background); }
.partner-strip .section-label { margin-bottom: 36px; color: var(--muted-foreground); }
.partner-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 38px 48px; }
.partner-list img { width: auto; max-width: 104px; height: 38px; object-fit: contain; filter: none; opacity: 1; transition: transform .3s; }
.partner-list a:hover img { transform: translateY(-2px); }
.partner-note { margin: 34px 0 0; color: var(--muted-foreground); font-size: 12px; text-align: center; }

.certifications { background: #fff; }
.cert-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.cert-card { min-width: 0; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; text-align: center; box-shadow: var(--shadow-sm); }
.cert-card > img { width: auto; max-width: 150px; height: 96px; margin: 0 auto 20px; object-fit: contain; }
.cert-card .tag { margin-bottom: 12px; }
.cert-card h3 { margin-bottom: 8px; font-size: 17px; }
.cert-card p { margin-bottom: 0; color: var(--muted-foreground); font-size: 14px; }

.services-section { padding-bottom: 112px; background: rgba(240,245,243,.38); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 76px; }
.service-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; transition: border-color .2s, box-shadow .2s, transform .2s; }
.service-card:hover { transform: translateY(-2px); border-color: rgba(10,71,48,.25); box-shadow: var(--shadow-sm); }
.service-title { display: flex; align-items: center; gap: 12px; }
.service-title h3 { margin: 0; font-size: 16px; font-weight: 650; }
.service-icon { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border-radius: 4px; background: rgba(10,71,48,.1); color: var(--primary); }
.service-copy { margin-top: 13px; color: var(--muted-foreground); font-size: 14px; line-height: 1.65; }
.service-copy p { margin-bottom: 0; }
.service-partner { margin: 9px 0 0; color: rgba(10,71,48,.8); font-size: 12px; font-weight: 700; }
.secondary-services { padding-top: 48px; border-top: 1px solid rgba(212,224,219,.7); }
.secondary-services > h3 { margin-bottom: 32px; font-size: 16px; font-weight: 600; text-align: center; }
.secondary-service-grid { display: grid; max-width: 880px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; margin-inline: auto; }
.secondary-service { display: flex; gap: 12px; align-items: flex-start; }
.secondary-service > span { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border-radius: 4px; background: var(--muted); color: rgba(24,24,27,.7); }
.secondary-service h4 { margin-bottom: 4px; font-size: 14px; }
.secondary-service p { margin: 0; color: var(--muted-foreground); font-size: 14px; line-height: 1.55; }

.about-summary { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start; }
.about-summary .about-note { margin-top: 20px; color: var(--primary); font-size: 14px; font-weight: 700; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.badge-row span { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; background: var(--muted); color: var(--primary); font-size: 12px; font-weight: 700; }
.visit-card { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--muted); }
.visit-card h3 { margin-bottom: 14px; font-size: 17px; }
.visit-card > a, .visit-card > div { display: flex; gap: 13px; padding: 13px 0; border-top: 1px solid rgba(10,71,48,.11); color: var(--muted-foreground); font-size: 14px; }
.visit-card > a:hover { color: var(--primary); }
.visit-card svg { margin-top: 2px; color: var(--primary); }
.visit-card span { display: grid; }
.visit-card strong { color: var(--foreground); font-size: 12px; }
.press-block { margin-top: 72px; }
.press-card { display: grid; overflow: hidden; grid-template-columns: .95fr 1.05fr; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.press-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.press-photo { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.press-card > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 34px; }
.press-logo { width: 195px; margin-bottom: 23px; }
.press-card h3 { margin-bottom: 10px; font-size: 20px; }
.press-card p { color: var(--muted-foreground); font-size: 14px; }
.press-card span { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-size: 13px; font-weight: 700; }

.reviews-section { background: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.review-card { display: flex; min-height: 290px; flex-direction: column; padding: 25px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.review-card > svg { color: rgba(10,71,48,.22); }
.stars { color: #b37d00; letter-spacing: .08em; }
.review-card .stars { margin: 11px 0 9px; font-size: 14px; }
.review-copy { color: var(--muted-foreground); font-size: 14px; line-height: 1.65; }
.review-copy p { margin-bottom: 0; }
.review-card footer { display: flex; align-items: end; justify-content: space-between; gap: 10px; padding-top: 22px; margin-top: auto; }
.review-card footer div { display: grid; }
.review-card footer strong { font-size: 14px; }
.review-card footer span:not(.tag) { color: var(--muted-foreground); font-size: 12px; }
.google-rating { display: flex; width: fit-content; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 13px; margin: 30px auto 0; color: var(--muted-foreground); font-size: 13px; }
.google-rating strong { color: var(--foreground); }

.areas-section { background: #fff; }
.area-groups { display: grid; gap: 28px; }
.area-groups h3 { margin-bottom: 12px; font-size: 15px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.area-tags span { padding: 6px 10px; border: 1px solid var(--border); border-radius: 3px; background: #fff; color: var(--muted-foreground); font-size: 13px; }
.area-note { padding: 17px 20px; margin: 32px 0 0; border-left: 3px solid var(--primary); background: var(--muted); color: var(--muted-foreground); font-size: 14px; }
.area-note strong { color: var(--foreground); }

.faq-section { padding-top: 32px; background: #fff; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 2px; list-style: none; font-size: 16px; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { color: var(--primary); transition: transform .2s; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-answer { max-width: 760px; padding: 0 36px 20px 2px; color: var(--muted-foreground); font-size: 14px; }
.faq-answer > :last-child { margin-bottom: 0; }

.contact-section { background: rgba(240,245,243,.55); }
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 30px; align-items: start; }
.contact-cards { display: grid; gap: 10px; }
.contact-cards > a, .contact-cards > div { display: flex; align-items: center; gap: 13px; padding: 15px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.contact-cards > a:hover { border-color: rgba(10,71,48,.34); }
.contact-cards > a > span, .contact-cards > div > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 4px; background: var(--muted); color: var(--primary); }
.contact-cards div div { display: grid; min-width: 0; }
.contact-cards small { color: var(--muted-foreground); font-size: 11px; }
.contact-cards strong { overflow-wrap: anywhere; font-size: 13px; }
.contact-form { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.contact-form h3 { margin-bottom: 20px; font-size: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 6px; margin-bottom: 14px; color: var(--foreground); font-size: 12px; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
	width: 100%; padding: 11px 12px; border: 1px solid var(--border); border-radius: 3px; background: #fbfcfb; font-size: 14px; font-weight: 400; outline: 0;
}
.contact-form input:not([type="checkbox"]):focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,71,48,.1); }
.contact-form textarea { resize: vertical; }
.privacy-check { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 9px !important; color: var(--muted-foreground) !important; font-weight: 400 !important; line-height: 1.45; }
.privacy-check input { margin: 3px 0 0; accent-color: var(--primary); }
.privacy-check a { color: var(--primary); text-decoration: underline; }
.honeypot { position: absolute !important; left: -10000px; }
.form-status { padding: 10px 12px; border-radius: 3px; font-size: 13px; }
.form-status.is-success { background: #e5f6ed; color: #075a32; }
.form-status.is-error { background: #feeeee; color: #a41919; }
.downloads { padding-top: 48px; margin-top: 48px; border-top: 1px solid var(--border); }
.downloads > h3 { margin-bottom: 18px; font-size: 18px; }
.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.download-grid a { display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; color: var(--primary); }
.download-grid a:hover { border-color: rgba(10,71,48,.4); }
.download-grid span { display: grid; }
.download-grid strong { color: var(--foreground); font-size: 14px; }
.download-grid small { color: var(--muted-foreground); }

.final-cta { padding-block: 50px; background: var(--primary); color: #fff; }
.final-cta .container { display: flex; max-width: 1040px; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta h2 { margin-bottom: 6px; font-size: 28px; }
.final-cta p { max-width: 590px; margin-bottom: 0; color: rgba(255,255,255,.8); }
.final-cta .container > div:last-child { display: flex; flex: 0 0 auto; gap: 9px; }

/* About, jobs and generic pages */
.about-hero, .page-hero { padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 70px); padding-bottom: 76px; background: var(--muted); }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-hero h1, .page-hero h1, .not-found h1 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 58px); letter-spacing: -.04em; }
.about-hero p:not(.section-label), .page-hero p:not(.section-label) { color: var(--muted-foreground); font-size: 17px; }
.about-hero-grid > img { width: 100%; aspect-ratio: 3/2; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-lg); }
.history-section { background: #fff; }
.timeline { position: relative; max-width: 820px; margin-inline: auto; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--border); content: ""; }
.timeline-item { position: relative; display: flex; width: 50%; padding: 0 42px 34px 0; }
.timeline-item.is-right { margin-left: 50%; padding: 0 0 34px 42px; }
.timeline-card { width: 100%; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.timeline-card > strong { color: var(--primary); font-size: 12px; letter-spacing: .1em; }
.timeline-card h3 { margin: 5px 0 7px; font-size: 17px; }
.timeline-card p { margin: 0; color: var(--muted-foreground); font-size: 14px; }
.timeline-dot { position: absolute; top: 18px; right: -15px; display: grid; width: 30px; height: 30px; place-items: center; border: 5px solid #fff; border-radius: 50%; background: var(--primary); color: #fff; }
.timeline-item.is-right .timeline-dot { right: auto; left: -15px; }
.values-section { background: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.value-card { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.value-card > span { display: grid; width: 48px; height: 48px; margin-bottom: 18px; place-items: center; border-radius: 5px; background: var(--muted); color: var(--primary); }
.value-card h3 { margin-bottom: 8px; font-size: 17px; }
.value-card p { margin-bottom: 0; color: var(--muted-foreground); font-size: 14px; }
.jobs-section, .jobs-archive { background: #fff; }
.jobs-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.job-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.job-type { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 13px; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.job-card h3 { margin-bottom: 10px; font-size: 22px; }
.job-card h3 a:hover { color: var(--primary); }
.job-card > p:not(.job-type):not(.job-hours), .job-card > ul { color: var(--muted-foreground); font-size: 14px; }
.job-card > ul { display: grid; gap: 7px; padding: 0; margin: 10px 0 18px; list-style: none; }
.job-card li, .job-hours { display: flex; align-items: flex-start; gap: 8px; }
.job-card li svg, .job-hours svg { margin-top: 3px; color: var(--primary); }
.job-hours { margin: auto 0 18px; color: var(--muted-foreground); font-size: 13px; }
.job-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.single-job .page-hero { padding-bottom: 55px; }
.job-detail { padding-block: 58px 88px; }
.job-list { padding-top: 23px; margin-top: 24px; border-top: 1px solid var(--border); }
.job-list h3 { font-size: 19px; }
.job-list ul { display: grid; gap: 10px; padding: 0; list-style: none; }
.job-list li { display: flex; gap: 10px; color: var(--muted-foreground); }
.job-list li svg { margin-top: 5px; color: var(--primary); }
.job-detail > .job-hours { margin: 28px 0 22px; }
.entry-content { color: var(--foreground); }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2 { margin-top: 2em; font-size: 27px; }
.entry-content h3 { margin-top: 1.7em; font-size: 21px; }
.entry-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { padding-left: 1.25em; }
.legal-content { padding-block: 60px 90px; }
.samson-page { min-height: 70vh; padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 72px); padding-bottom: 90px; }
.entry-card > h1 { margin-bottom: 28px; font-size: clamp(36px, 5vw, 54px); letter-spacing: -.035em; }
.not-found { min-height: 70vh; padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 100px); padding-bottom: 100px; }

/* Footer and persistent controls */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.75); }
.footer-main { padding-top: 65px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(4, 1fr); gap: 38px; }
.footer-grid h2 { margin-bottom: 17px; color: #fff; font-size: 14px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand > a:first-child { display: block; width: 132px; height: 78px; margin-bottom: 12px; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand p { max-width: 220px; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-brand > a:not(:first-child) { display: flex; align-items: center; gap: 7px; margin-top: 6px; font-size: 13px; }
.footer-brand > a:hover, .footer-links a:hover, .footer-address:hover { color: #fff; }
.footer-links { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; font-size: 13px; }
.footer-links a { display: inline-flex; align-items: center; gap: 7px; }
.footer-address, .footer-hours { display: flex; gap: 8px; font-size: 13px; line-height: 1.55; }
.footer-address svg, .footer-hours svg { margin-top: 3px; }
.footer-hours { margin-top: 17px; color: rgba(255,255,255,.58); }
.footer-area { padding-block: 25px; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-area h2 { margin-bottom: 6px; color: #fff; font-size: 13px; }
.footer-area p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom a:hover { color: #fff; }
.footer-cookie-button { padding: 0; border: 0; background: transparent; color: inherit; }
.footer-cookie-button:hover { color: #fff; }
.floating-cta { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: flex; overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: 5px; background: var(--primary); color: #fff; box-shadow: var(--shadow-lg); }
.floating-cta[hidden] { display: none; }
.floating-cta a { display: flex; align-items: center; gap: 8px; padding: 11px 14px; font-size: 13px; font-weight: 700; }
.floating-cta a + a { border-left: 1px solid rgba(255,255,255,.2); }
.floating-cta a:hover { background: rgba(255,255,255,.1); }
.cookie-banner { position: fixed; inset: 0; z-index: 200; display: grid; padding: 20px; place-items: end center; background: rgba(3,18,13,.38); }
.cookie-banner[hidden] { display: none; }
.cookie-panel { width: min(100%, 720px); padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.cookie-panel h2 { margin-bottom: 8px; font-size: 20px; }
.cookie-panel p { color: var(--muted-foreground); font-size: 13px; }
.cookie-details { padding: 13px; margin-bottom: 14px; background: var(--muted); }
.cookie-details p:last-child { margin-bottom: 0; }
.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease var(--delay, 0ms), transform .5s ease var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
	.desktop-nav { display: none; }
	.desktop-contact { display: none; }
	.menu-toggle { display: block; }
	.brand-addon { display: block; }
	.footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
	.footer-grid > :nth-child(4), .footer-grid > :nth-child(5) { margin-top: 10px; }
}

@media (max-width: 782px) {
	body.admin-bar { --admin-bar-offset: 46px; }
}

@media (max-width: 800px) {
	:root { --header-height: 104px; }
	.container { width: min(100% - 34px, 1280px); }
	.section { padding-block: 72px; }
	.topbar-hours { display: none; }
	.nav-shell { height: 72px; }
	.site-brand { height: 48px; }
	.hero { min-height: 650px; }
	.hero-shell { align-items: flex-start; padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 42px); text-align: left; }
	.hero-copy { max-width: 630px; }
	.hero-description { margin-left: 0; }
	.hero-proof { justify-content: flex-start; }
	.hero-actions { justify-content: flex-start; }
	.hero-signature, .hero-notice { align-self: center; }
	.cert-grid, .review-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.secondary-service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.about-grid, .about-hero-grid { grid-template-columns: 1fr; gap: 38px; }
	.press-card { grid-template-columns: 1fr; }
	.press-photo { max-height: 340px; min-height: 0; aspect-ratio: 16/9; }
	.contact-layout { grid-template-columns: 1fr; }
	.final-cta .container { align-items: flex-start; flex-direction: column; }
	.timeline::before { left: 15px; }
	.timeline-item, .timeline-item.is-right { width: 100%; padding: 0 0 27px 48px; margin-left: 0; }
	.timeline-dot, .timeline-item.is-right .timeline-dot { right: auto; left: 0; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 639px) {
	:root { --header-height: 104px; }
	.container { width: min(100% - 32px, 1280px); }
	.section { padding-block: 60px; }
	.topbar-address { display: none; }
	.topbar-social { display: none; }
	.site-brand { height: 42px; }
	.brand-addon { max-width: 126px; font-size: 11px; }
	.hero { min-height: 640px; }
	.hero-image { inset: auto 0 0; height: 36%; object-fit: cover; object-position: 52% 42%; }
	.hero-overlay { background: linear-gradient(180deg,#061f17 0%,#061f17 54%,rgba(6,31,23,.88) 66%,rgba(4,24,18,.35) 83%,rgba(3,19,14,.78) 100%), linear-gradient(90deg,rgba(3,21,15,.22),transparent 25%,transparent 75%,rgba(3,21,15,.22)); }
	.hero-shell { padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 31px); padding-bottom: 20px; }
	.hero-eyebrow { margin-bottom: 13px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
	.hero h1 { max-width: 390px; font-size: clamp(36px, 10.5vw, 52px); }
	.hero-description { max-width: 34rem; margin-top: 17px; font-size: 15.5px; line-height: 1.5; }
	.hero-proof { display: grid; max-width: 496px; grid-template-columns: 1fr 1fr; gap: 11px 16px; padding-block: 13px; margin-top: 18px; border-block: 1px solid rgba(255,255,255,.15); font-size: 12px; }
	.hero-proof span:last-child { grid-column: 1 / -1; }
	.hero-actions { display: grid; width: 100%; max-width: 496px; gap: 8px; margin-top: 18px; }
	.hero-actions .button { width: 100%; min-height: 45px; }
	.hero-signature { align-self: flex-start; font-size: 10px; }
	.hero-notice { width: 100%; align-items: flex-start; flex-wrap: wrap; gap: 3px 8px; padding-block: 6px; }
	.hero-notice-message { display: -webkit-box; width: 100%; overflow: hidden; white-space: normal; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
	.hero-notice a { margin-left: 0; }
	.section-header { margin-bottom: 38px; }
	.partner-strip { padding-block: 50px; }
	.partner-list { gap: 28px; }
	.partner-list img { max-width: 88px; height: 31px; }
	.cert-grid, .service-grid, .review-grid, .values-grid, .jobs-grid { grid-template-columns: 1fr; }
	.cert-card { padding: 24px; }
	.service-grid { margin-bottom: 55px; }
	.secondary-service-grid { grid-template-columns: 1fr; gap: 23px; }
	.about-grid { gap: 30px; }
	.press-block { margin-top: 55px; }
	.press-card > div { padding: 25px; }
	.review-card { min-height: 0; }
	.contact-form { padding: 21px; }
	.form-grid, .download-grid { grid-template-columns: 1fr; gap: 0; }
	.download-grid { gap: 10px; }
	.final-cta .container > div:last-child { width: 100%; flex-direction: column; }
	.final-cta .button { width: 100%; }
	.about-hero, .page-hero { padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 52px); padding-bottom: 58px; }
	.about-hero h1, .page-hero h1, .not-found h1 { font-size: 38px; }
	.job-actions .button { width: 100%; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-brand { grid-column: auto; }
	.footer-bottom { align-items: flex-start; flex-direction: column; }
	.floating-cta { right: 10px; bottom: 10px; left: 10px; }
	.floating-cta a { flex: 1; justify-content: center; }
	.cookie-panel { padding: 19px; }
	.cookie-actions .button { width: 100%; }
}

@media (max-height: 720px) {
	.hero-shell { padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 18px); padding-bottom: 13px; }
	.hero-eyebrow { margin-bottom: 9px; }
	.hero-description { margin-top: 12px; }
	.hero-proof { margin-top: 12px; }
	.hero-actions { margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.reveal { opacity: 1; transform: none; }
}

@media print {
	.site-header, .floating-cta, .cookie-banner, .final-cta, .site-footer { display: none !important; }
	.hero, .about-hero, .page-hero { height: auto; min-height: 0; padding: 30px 0; background: #fff !important; color: #000; }
	.hero-image, .hero-overlay { display: none; }
	.hero-shell { height: auto; padding: 0; color: #000; }
	.hero h1, .hero-description, .hero-eyebrow, .hero-proof { color: #000; }
	.section { padding-block: 30px; }
}
