/* ClearFire — theme adjustments layered on top of the extracted design system.
   Keep design-system.css verbatim; put bespoke overrides here. */

/* Missing brand token: the homepage hardcoded rgb(28,60,159) for card hover;
   the service page references var(--blue). Define it once here. */
:root { --blue: #1C3C9F; }

/* ---------- INNER-PAGE HERO + BREADCRUMB (reusable primitive) ----------
   Built from existing tokens so inner pages share the homepage aesthetic:
   ember-deep + blueprint grid, amber eyebrow, white headline. */
.page-hero {
	position: relative;
	color: #fff;
	padding: 190px 0 90px;
	overflow: hidden;
	background:
		linear-gradient(rgba(255,255,255,.085) 1px, transparent 1px) 0 0 / 100% 160px,
		linear-gradient(90deg, rgba(255,255,255,.085) 1px, transparent 1px) 0 0 / 160px 100%,
		linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 100% 40px,
		linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 40px 100%,
		var(--ember-deep);
}
.page-hero::after {
	content: ""; position: absolute; pointer-events: none;
	width: 760px; height: 760px; border-radius: 50%;
	right: -260px; bottom: -300px;
	background: rgba(217,52,43,.5);
}
.page-hero .wrap { position: relative; z-index: 2; }
.breadcrumbs {
	font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
	margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.breadcrumbs a { color: rgba(255,255,255,.7); transition: color .15s; }
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs .sep { color: var(--amber); opacity: .7; }
.breadcrumbs [aria-current="page"] { color: #fff; }
.page-hero .eyebrow { color: var(--amber); margin-bottom: 16px; }
.page-hero h1 {
	font-size: 60px; line-height: 1.05; letter-spacing: -.025em;
	font-weight: 700; margin: 0; max-width: 14ch;
}
.page-hero .lede {
	font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.85);
	max-width: 620px; margin: 24px 0 0;
}
@media (max-width: 880px) {
	.page-hero { padding: 150px 0 64px; }
	.page-hero h1 { font-size: 40px; max-width: none; }
}

/* ---------- REUSABLE CTA BAND (block-cta-band) ---------- */
.sec-cta { background: var(--ember); color: #fff; padding: 80px 0; }
.sec-cta .cta-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 48px; flex-wrap: wrap;
}
.sec-cta .eyebrow { color: var(--amber); margin-bottom: 12px; }
.sec-cta h2 { font-size: 36px; line-height: 1.1; letter-spacing: -.02em; font-weight: 700; margin: 0 0 10px; max-width: 18ch; }
.sec-cta p { margin: 0; font-size: 16px; color: rgba(255,255,255,.9); max-width: 52ch; }
.sec-cta .btn-light { flex-shrink: 0; }

/* ---------- ABOUT: two-company cards ---------- */
.about-companies { background: #fff; padding: 96px 0; }
.about-co-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px;
}
.about-co {
	border: 1px solid var(--line); border-radius: 8px; padding: 36px 34px;
	background: var(--cream); transition: transform .25s ease, box-shadow .25s ease;
}
.about-co:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(20,17,15,.16); }
.about-co .co-tag {
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	font-weight: 700; color: var(--ember); margin-bottom: 14px;
}
.about-co h3 { font-size: 24px; letter-spacing: -.01em; font-weight: 700; margin: 0 0 6px; }
.about-co .co-owner { font-size: 14px; color: var(--ink-soft); font-weight: 600; margin: 0 0 18px; }
.about-co p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
@media (max-width: 880px) {
	.about-co-grid { grid-template-columns: 1fr; }
	.sec-cta h2 { font-size: 28px; }
}

/* ---------- ABOUT: principles ---------- */
.about-principles { background: var(--cream); padding: 96px 0; }
.principle-grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
	background: var(--line); border: 1px solid var(--line);
	margin-top: 44px; border-radius: 8px; overflow: hidden;
}
.principle {
	background: #fff; padding: 34px 32px;
}
.principle .num {
	font-size: 13px; font-weight: 800; color: var(--ember);
	letter-spacing: .14em; margin-bottom: 12px;
}
.principle h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 8px; }
.principle p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
@media (max-width: 880px) { .principle-grid { grid-template-columns: 1fr; } }

/* ---------- GRAVITY FORM inside the booking drawer ----------
   Match the dark drawer design (blue panel, translucent fields, amber CTA). */
.drawer .gform_wrapper { margin: 0; }
.drawer .gform_wrapper form { margin: 0; }
.drawer .gform_wrapper .gform_fields {
	display: grid; grid-template-columns: 1fr; gap: 18px;
}
.drawer .gform_wrapper .gfield_label,
.drawer .gform_wrapper legend.gfield_label {
	display: block; font-size: 12px; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase;
	color: rgba(255,255,255,.7); margin-bottom: 7px;
}
.drawer .gform_wrapper .gfield_required { color: var(--amber); }
.drawer .gform_wrapper input[type=text],
.drawer .gform_wrapper input[type=email],
.drawer .gform_wrapper input[type=tel],
.drawer .gform_wrapper input[type=number],
.drawer .gform_wrapper textarea,
.drawer .gform_wrapper select {
	width: 100%; padding: 13px 14px;
	border: 1px solid rgba(255,255,255,.25); border-radius: 4px;
	font-family: inherit; font-size: 14px; color: #fff;
	background: rgba(255,255,255,.12); outline: none;
	box-shadow: none; appearance: none;
}
/* Solid background so the drawer's patterned panel can't bleed through and
   make the text unreadable; explicit chevron (appearance is removed above)
   and dark-on-white options for the native dropdown list. */
.drawer .gform_wrapper select {
	color-scheme: dark;
	background-color: #14110F;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F4D000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 38px;
	cursor: pointer;
}
.drawer .gform_wrapper select option { color: #14110F; background: #fff; }
.drawer .gform_wrapper select:invalid,
.drawer .gform_wrapper select option[disabled] { color: rgba(255,255,255,.75); }
.drawer .gform_wrapper input::placeholder,
.drawer .gform_wrapper textarea::placeholder { color: rgba(255,255,255,.75); }
.drawer .gform_wrapper input:focus,
.drawer .gform_wrapper textarea:focus,
.drawer .gform_wrapper select:focus {
	border-color: var(--amber);
	box-shadow: 0 0 0 3px rgba(244,208,0,.2);
}
.drawer .gform_wrapper .gform_footer { margin: 22px 0 0; padding: 0; }
.drawer .gform_wrapper .gform_footer input[type=submit],
.drawer .gform_wrapper .gform_footer button {
	width: 100%; padding: 16px; background: var(--amber); color: var(--ink);
	border: none; border-radius: 4px; font-family: inherit;
	font-size: 15px; font-weight: 700; cursor: pointer;
	transition: background .2s, color .2s, transform .15s;
}
.drawer .gform_wrapper .gform_footer input[type=submit]:hover,
.drawer .gform_wrapper .gform_footer button:hover {
	background: var(--ink); color: var(--amber); transform: translateY(-1px);
}
.drawer .gform_wrapper .gfield_description,
.drawer .gform_wrapper .gform_required_legend { color: rgba(255,255,255,.6); font-size: 12px; }
.drawer .gform_wrapper .gfield_validation_message,
.drawer .gform_wrapper .validation_message {
	color: #ffd9d4; background: rgba(217,52,43,.25);
	border: 1px solid rgba(255,255,255,.2); border-radius: 3px;
	font-size: 12px; padding: 6px 10px; margin-top: 6px;
}
.drawer .gform_wrapper .gform_validation_errors {
	background: rgba(217,52,43,.25); border: 1px solid rgba(255,255,255,.2);
	color: #fff; border-radius: 4px; padding: 12px 14px; margin-bottom: 16px; font-size: 13px;
}
.drawer .gform_confirmation_message {
	color: #fff; font-size: 15px; line-height: 1.6;
	background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
	border-radius: 6px; padding: 22px 24px;
}
.drawer .gform_wrapper .gform_ajax_spinner { filter: brightness(3); margin-left: 10px; }

/* Header logo (replaces the text mark). Works on the ember hero and the
   dark scrolled nav — the bundled SVG is white wordmark + amber tile. */
.nav .nav-logo {
	height: 42px;
	width: auto;
	display: block;
	transition: height .3s ease;
}
.nav.scrolled .nav-logo {
	height: 34px;
}

/* Accreditation strip: logo chips (logos are dark/coloured, the strip is dark). */
.sec-certs .cert.has-logo {
	border-left: none;
	padding-left: 0;
	opacity: 1;
}
.sec-certs .cert-logo {
	background: #fff;
	border-radius: 8px;
	height: 64px;
	padding: 0 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px -10px rgba(0, 0, 0, .5);
}
.sec-certs .cert-logo img {
	height: 40px;
	width: auto;
	max-width: 180px;
	display: block;
	object-fit: contain;
}

/* Hero headline — force exactly 2 lines:
   "Buildings safer." / "Compliance handled." (no in-line word wrap).
   Font-size clamps so it doesn't overflow on narrower viewports. */
.hero h1 { max-width: none; font-size: clamp(44px, 5.5vw, 80px); }
.hero h1 .ln { display: block; white-space: nowrap; }

/* ---------- V2 SECTOR GRID (site-wide) ---------- */
/* Used by the V2 FRA pillar AND the single-service "other sectors" block.
   Same selectors as V2's page-scoped sheet — duplicated here so Office &
   future sub-services can render the photo-card grid without loading V2 CSS. */
.sec-who { padding: 100px 0; background: var(--cream); }
/* V2 sectored its grid inside a tighter 1280px wrap — gives the cards
   real breathing room from the viewport edges on wide screens. */
.sec-who .wrap { max-width: 1280px; }
.who-head { margin-bottom: 52px; }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.who-card {
	border-radius: 8px; overflow: hidden;
	display: block; text-decoration: none;
	position: relative; aspect-ratio: 3/4;
	background: #2a2522;
}
.who-card-bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.who-card::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(20,17,15,.05) 0%, rgba(20,17,15,.72) 100%);
	transition: opacity .3s ease;
}
.who-card:hover .who-card-bg { transform: scale(1.06); }
.who-card:hover::after { opacity: .9; }
.who-card-body {
	position: absolute; bottom: 0; left: 0; right: 0;
	padding: 18px 20px 20px; z-index: 2;
}
.who-card h3 { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -.01em; margin-bottom: 0; line-height: 1.25; }
.who-card p {
	font-size: 12px; color: rgba(255,255,255,0); line-height: 1.5;
	margin: 0; max-height: 0; overflow: hidden;
	transition: max-height .35s ease, color .3s ease, margin .3s ease;
}
.who-card:hover p { color: rgba(255,255,255,.82); max-height: 80px; margin-top: 6px; font-size: 13px; }
.who-card .card-link {
	font-size: 12px; font-weight: 700; color: var(--amber);
	display: inline-flex; align-items: center; gap: 5px;
	opacity: 0; transform: translateY(6px); margin-top: 0;
	transition: opacity .3s ease, transform .3s ease, gap .2s, margin .3s ease;
}
.who-card .card-link::after { content: "→"; }
.who-card:hover .card-link { opacity: 1; transform: translateY(0); gap: 9px; margin-top: 10px; }
.section-h { font-size: 42px; line-height: 1.08; letter-spacing: -.02em; font-weight: 700; margin: 0 0 16px; }
.section-sub { font-size: 16px; color: var(--ink-soft); max-width: 560px; }
@media (max-width: 880px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .who-grid { grid-template-columns: 1fr; } }

/* ---------- V2 PILL NAV (site-wide) ----------
   Re-skins the existing .nav / .nav-links to V2's pill pattern: a rounded
   blue container holding the menu links, sat between the logo and the CTA.
   Keeps the existing fixed-position + .scrolled dark-bg behaviour. */
.nav .nav-links {
	background: var(--blue);
	border-radius: 8px;
	padding: 10px 24px;
	gap: 24px;
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0 6px 16px -10px rgba(0,0,0,.45);
}
.nav .nav-links a { color: #fff; opacity: .85; padding: 4px 0; }
.nav .nav-links a:hover { opacity: 1; color: var(--amber); }
/* Kill the original amber underline-on-hover — clashes with the pill. */
.nav .nav-links a::after { display: none !important; content: none !important; }
/* On the dark scrolled state the pill stays visible (blue on ink is fine). */
.nav.scrolled .nav-links { box-shadow: 0 6px 18px -10px rgba(0,0,0,.6); }
@media (max-width: 880px) {
	.nav .nav-links { padding: 8px 16px; gap: 14px; font-size: 13px; }
}

/* ---------- V2 NAV DROPDOWN (site-wide) ----------
   Targets BOTH WordPress's wp_nav_menu UL/LI .sub-menu structure AND the
   theme fallback markup. The pill itself was styled earlier; this layers
   the V2 dropdown panel on parent items (.menu-item-has-children). */
.nav .nav-links { list-style: none; padding: 10px 22px; margin: 0; display: flex; align-items: center; }
.nav .nav-links li { list-style: none; position: relative; }
.nav .nav-links li > a { display: block; padding: 4px 0; }
.nav .nav-links .menu-item-has-children > a::after {
	content: " ▾"; font-size: .65em; vertical-align: middle; opacity: .8;
}
/* Invisible hover bridge so the dropdown doesn't snap shut crossing the gap. */
.nav .nav-links .menu-item-has-children::after {
	content: ""; position: absolute;
	left: -20px; right: -20px;
	top: 100%; height: 20px;
}
.nav .nav-links .sub-menu {
	list-style: none; margin: 0; padding: 8px;
	position: absolute; top: calc(100% + 20px); left: 50%;
	transform: translateX(-50%) translateY(-4px);
	min-width: 320px;
	background: #fff; border-radius: 8px;
	box-shadow: 0 16px 40px -8px rgba(20,17,15,.16), 0 0 0 1px rgba(20,17,15,.07);
	opacity: 0; pointer-events: none;
	transition: opacity .22s ease, transform .22s ease;
	z-index: 200;
}
.nav .nav-links .menu-item-has-children:hover > .sub-menu,
.nav .nav-links .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1; pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
.nav .nav-links .sub-menu li { display: block; }
.nav .nav-links .sub-menu a {
	display: block; padding: 14px 18px;
	font-size: 15px; font-weight: 500; color: var(--ink);
	border-radius: 5px; text-decoration: none;
	border-bottom: 1px solid rgba(20,17,15,.06);
	position: relative;
	transition: color .15s ease, padding-left .15s ease;
	opacity: 1;
}
.nav .nav-links .sub-menu a::after { display: none !important; content: none !important; }
.nav .nav-links .sub-menu li:last-child a { border-bottom: none; }
.nav .nav-links .sub-menu a::before {
	content: "—"; position: absolute; left: 16px;
	color: var(--ember); font-weight: 700;
	opacity: 0; transition: opacity .15s ease;
}
.nav .nav-links .sub-menu a:hover { color: var(--ember); padding-left: 34px; }
.nav .nav-links .sub-menu a:hover::before { opacity: 1; }
@media (max-width: 880px) {
	.nav .nav-links .sub-menu { min-width: 240px; }
}

/* ---------- V2 HOW IT WORKS / MID CTA / FAQ-ASIDE (site-wide) ----------
   Promoted from service-v2.css so single-service.php can reuse them. */
.sec-how { padding: 100px 0; background: #fff; }
.sec-how .wrap { max-width: 1280px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; }
.step { display: flex; flex-direction: column; gap: 0; padding: 36px 28px 36px 0; }
.step-stat { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.step-stat .stat-val { font-size: 40px; font-weight: 900; letter-spacing: -.04em; line-height: 1; color: var(--ember); }
.step-stat .stat-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); margin-top: 4px; }
.step-body h3 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; line-height: 1.2; }
.step-body p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

.sec-mid-cta { background: var(--blue); color: #fff; padding: 72px 0; }
.sec-mid-cta .wrap { max-width: 1280px; }
.mid-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.mid-cta-inner h2 { font-size: 34px; font-weight: 700; letter-spacing: -.02em; line-height: 1.15; max-width: 560px; margin: 0; color: #fff; }
.mid-cta-inner h2 em { font-style: normal; color: var(--amber); }
.btn-white { background: #fff; color: var(--blue); padding: 16px 24px; border-radius: 4px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, color .2s, gap .2s; white-space: nowrap; }
.btn-white::after { content: "→"; }
.btn-white:hover { background: var(--amber); color: var(--ink); gap: 12px; }

/* FAQ V2 aside layout — pairs with the existing <details class="faq"> rules
   defined in service.css/service-sub.css (those keep working). */
.faq-grid { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; margin-top: 28px; }
.faq-aside { position: sticky; top: 100px; }
.faq-aside h3 { font-size: 22px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 12px; }
.faq-aside p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 24px; }
.faq-aside .cta-link {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 14px; font-weight: 700; color: var(--ember);
	border: 1px solid var(--ember); padding: 12px 18px; border-radius: 4px;
	transition: background .2s, color .2s, gap .2s;
}
.faq-aside .cta-link:hover { background: var(--ember); color: #fff; gap: 12px; }

/* What's covered — right-column photo (replaces the .versus card on single
   service pages). Reuses the V2 problem-image styling. */
.covered-image-wrap {
	position: relative; border-radius: 8px; overflow: hidden;
	min-height: 460px;
}
.covered-image {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
}

@media (max-width: 880px) {
	.how-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
	.mid-cta-inner { flex-direction: column; align-items: flex-start; }
	.faq-aside { position: static; }
	.covered-image-wrap { min-height: 320px; }
}

/* ---------- DUAL-NAV SCROLL (final Home.html design) ----------
   At top of page: .nav is visible (transparent over hero).
   Past scrollY > 80: top .nav fades out, .nav-bar slides in as a floating
   blue rounded pill. Replaces the previous "darken on scroll" behaviour. */
.nav { transition: opacity .3s ease, padding .3s ease; }
.nav.scrolled {
	opacity: 0;
	pointer-events: none;
	background: transparent !important;
	box-shadow: none !important;
}

.nav-bar {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 49;
	pointer-events: none;
	padding: 14px 40px;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity .3s ease, transform .3s ease;
}
.nav-bar.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-bar-inner {
	background: var(--blue);
	border-radius: 8px;
	padding: 12px 24px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px;
	box-shadow: 0 8px 32px -8px rgba(28,60,159,.45);
	max-width: 1480px; margin: 0 auto;
}
.nav-bar-logo { display: flex; align-items: center; line-height: 0; }
.nav-bar-logo img { height: 32px; width: auto; display: block; }
.nav-bar-cta {
	background: #fff; color: var(--ember);
	padding: 11px 20px; border-radius: 4px;
	font-weight: 700; font-size: 14px; font-family: inherit;
	border: none; cursor: pointer; white-space: nowrap;
	display: inline-flex; align-items: center; gap: 8px;
	transition: background .2s, color .2s, gap .2s;
}
.nav-bar-cta::after { content: "→"; }
.nav-bar-cta:hover { background: var(--amber); color: var(--ink); gap: 12px; }

/* nb-links menu — flat list inside the floating bar (no second pill). */
.nav-bar .nb-links {
	list-style: none; margin: 0; padding: 0;
	display: flex; align-items: center; gap: 24px;
	font-size: 15px; font-weight: 700;
	background: transparent; box-shadow: none; border-radius: 0;
}
.nav-bar .nb-links li { list-style: none; position: relative; }
.nav-bar .nb-links li > a {
	display: block; padding: 4px 0;
	color: #fff; opacity: .9; text-decoration: none;
	transition: opacity .2s, color .2s;
}
.nav-bar .nb-links li > a:hover { opacity: 1; color: var(--amber); }
.nav-bar .nb-links .menu-item-has-children > a::after {
	content: " ▾"; font-size: .65em; vertical-align: middle; opacity: .8;
}
/* Hover bridge so the dropdown doesn't snap shut crossing the gap. */
.nav-bar .nb-links .menu-item-has-children::after {
	content: ""; position: absolute;
	left: -20px; right: -20px;
	top: 100%; height: 20px;
}
.nav-bar .nb-links .sub-menu {
	list-style: none; margin: 0; padding: 8px;
	position: absolute; top: calc(100% + 16px); left: 50%;
	transform: translateX(-50%) translateY(-4px);
	min-width: 320px;
	background: #fff; border-radius: 8px;
	box-shadow: 0 16px 40px -8px rgba(20,17,15,.16), 0 0 0 1px rgba(20,17,15,.07);
	opacity: 0; pointer-events: none;
	transition: opacity .22s ease, transform .22s ease;
	z-index: 200;
}
.nav-bar .nb-links .menu-item-has-children:hover > .sub-menu,
.nav-bar .nb-links .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1; pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
.nav-bar .nb-links .sub-menu li { display: block; }
.nav-bar .nb-links .sub-menu a {
	display: block; padding: 14px 18px;
	font-size: 15px; font-weight: 500; color: var(--ink) !important;
	opacity: 1 !important; border-radius: 5px;
	border-bottom: 1px solid rgba(20,17,15,.06);
	position: relative;
	transition: color .15s ease, padding-left .15s ease;
}
.nav-bar .nb-links .sub-menu li:last-child a { border-bottom: none; }
.nav-bar .nb-links .sub-menu a::before {
	content: "—"; position: absolute; left: 16px;
	color: var(--ember); font-weight: 700;
	opacity: 0; transition: opacity .15s ease;
}
.nav-bar .nb-links .sub-menu a:hover { color: var(--ember) !important; padding-left: 34px; }
.nav-bar .nb-links .sub-menu a:hover::before { opacity: 1; }

@media (max-width: 880px) {
	.nav-bar { padding: 10px 16px; }
	.nav-bar-inner { padding: 10px 14px; gap: 12px; }
	.nav-bar .nb-links { gap: 14px; font-size: 13px; }
	.nav-bar .nb-links .sub-menu { min-width: 240px; }
}

/* ---------- "What is a fire risk assessment?" split (site-wide) ----------
   Promoted from service.css so V2 (and any future page) can reuse it.
   Left column = copy + key callout; right column = dark PAS 79-1 diagram. */
.what-grid {
	max-width: 1280px; margin: 0 auto; padding: 0 56px;
	display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: start;
}
.what-left .eyebrow { margin: 0 0 18px; }
.what-left h2 { margin: 0 0 22px; font-size: 48px; line-height: 1.05; letter-spacing: -.02em; font-weight: 700; }
.what-left p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 20px; max-width: 520px; }
.what-key {
	background: #fff; border: 1px solid var(--line);
	border-left: 4px solid var(--ember);
	padding: 28px 30px; margin-top: 28px;
	font-size: 16px; line-height: 1.65; color: var(--ink);
	max-width: 520px;
}
.what-key b { color: var(--ember); }
.what-diagram {
	background: var(--ink); color: #fff;
	border-radius: 8px; padding: 36px;
	position: relative; overflow: hidden;
	min-height: 460px;
}
.what-diagram::before {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 100% 60px,
		linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 60px 100%;
}
.what-diagram > * { position: relative; z-index: 1; }
.what-diagram h4 {
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--amber); margin: 0 0 24px; font-weight: 800;
}
.what-diagram h3 {
	font-size: 26px; letter-spacing: -.01em; font-weight: 700;
	margin: 0 0 28px; line-height: 1.2;
}
.what-step {
	display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start;
	padding: 16px 0;
	border-top: 1px solid rgba(255,255,255,.12);
}
.what-step:first-of-type { border-top: none; }
.what-step .num {
	width: 28px; height: 28px; border-radius: 50%;
	background: var(--ember); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: 13px;
}
.what-step .lbl { font-weight: 700; font-size: 16px; margin-bottom: 4px; letter-spacing: -.005em; }
.what-step .desc { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.5; }
.what-stamp {
	position: absolute; right: 30px; bottom: 30px;
	border: 2px solid var(--amber); color: var(--amber);
	font-size: 10px; font-weight: 800; letter-spacing: .14em;
	padding: 5px 8px; border-radius: 3px; transform: rotate(-6deg);
}
.sec-what { padding: 100px 0; background: #fff; }
@media (max-width: 880px) {
	.what-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
	.what-diagram { min-height: auto; }
}

/* ---------- REVIEW-FREQUENCY TABLE (site-wide) ----------
   Promoted from service.css so V2 (and other future pages) can use the
   "how often should you review your FRA?" component. */
.sec { padding: 110px 0; }
.sec.tight { padding: 90px 0; }
.sec.dark { background: var(--ink); color: #fff; }
.sec.cream { background: var(--cream); }
.sec.white { background: #fff; }
.review-band {
	max-width: 1280px; margin: 0 auto; padding: 0 56px;
	display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start;
}
.review-band h2 { font-size: 38px; letter-spacing: -.02em; line-height: 1.1; font-weight: 700; margin: 0 0 16px; }
.review-band .lede { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.review-table { background: #fff; border: 1px solid var(--line); }
.rev-row {
	display: grid; grid-template-columns: 1.3fr 1fr 1.5fr;
	padding: 22px 28px; gap: 28px;
	border-top: 1px solid var(--line);
	align-items: center;
}
.rev-row:first-of-type {
	border-top: none;
	background: var(--cream);
	font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
	font-weight: 800; color: var(--ink-soft);
	padding: 14px 28px;
}
.rev-row .building { font-weight: 700; font-size: 15px; }
.rev-row .frequency { font-weight: 800; font-size: 17px; color: var(--ember); letter-spacing: -.005em; }
.rev-row .frequency small { display: block; font-size: 11px; color: var(--ink-soft); font-weight: 600; margin-top: 2px; letter-spacing: 0; }
.rev-row .note { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 880px) {
	.review-band { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
	.rev-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
	.rev-row:first-of-type { display: none; }
}
