/*
 * Fall Labs theme styles.
 *
 * Contents:
 *   1. Fonts
 *   2. Design tokens
 *   3. Reset and base
 *   4. Typography
 *   5. Layout primitives
 *   6. Buttons
 *   7. Site header and navigation
 *   8. Site footer
 *   9. Homepage hero
 *  10. Reduced motion
 */

/* 1. Fonts
   Self-hosted variable fonts, latin subset. Licenses in assets/fonts/. */
@font-face {
	font-family: 'Outfit';
	src: url('../fonts/outfit-var-latin.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-var-latin.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter-italic-var-latin.woff2') format('woff2');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

/* 2. Design tokens
   Values from Fall Labs Brand Guidelines V3 (Field Tan updated from
   V2's #E3C9A8 on 2026-07-31; the old value is retired). */
:root {
	--c-orange: #E53D00;
	/* Text-size orange on light backgrounds: darkened to clear WCAG AA
	   (4.9:1 on white). Graphic orange stays #E53D00 everywhere. */
	--c-orange-text: #D03700;
	--c-black: #1D1D1D;
	--c-iron: #4A4A4A;
	--c-alloy: #B3B3B3;
	/* Field Tan, single source. 7.56:1 on Lab Black (text-safe there);
	   only 2.23:1 on white, so never use it as TEXT on light surfaces. */
	--fl-field-tan: #C6AA76;
	--c-warm-white: #F5F5F3;
	--c-white: #FFFFFF;

	/* On-dark text tiers */
	--c-on-dark: rgba(255, 255, 255, 0.92);
	--c-on-dark-soft: rgba(255, 255, 255, 0.56);
	--c-on-dark-faint: rgba(255, 255, 255, 0.32);
	/* Footer legal row. The faint token is 2.9:1 on Lab Black, which fails
	   AA, and these are the links a visitor goes looking for (privacy,
	   cookies) plus the copyright line. 0.56 reads 6.1:1 and stays quiet. */
	--c-on-dark-legal: rgba(255, 255, 255, 0.56);

	--font-head: 'Outfit', 'Segoe UI', -apple-system, sans-serif;
	--font-body: 'Inter', 'Segoe UI', -apple-system, sans-serif;

	--content-width: 1200px;
	--gutter: clamp(20px, 4vw, 48px);

	--radius: 4px; /* hard edges: this is the maximum radius anywhere */

	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3. Reset and 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: 16px;
	line-height: 1.7;
	color: var(--c-black);
	background: var(--c-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}

/* Accessibility */
.screen-reader-text {
	position: absolute;
	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;
	top: -100px;
	left: 16px;
	z-index: 200;
	padding: 12px 20px;
	background: var(--c-orange);
	color: var(--c-white);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	border-radius: var(--radius);
	transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
	top: 16px;
}

:focus-visible {
	outline: 2px solid var(--c-orange);
	outline-offset: 3px;
}

/* 4. Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-head);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 0.5em;
}

h1 {
	font-size: clamp(38px, 5vw, 48px);
	font-weight: 800;
}

h2 {
	font-size: clamp(28px, 3.5vw, 36px);
	font-weight: 700;
}

h3 {
	font-size: clamp(20px, 2.2vw, 24px);
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

.overline {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-orange);
}

::selection {
	background: var(--c-orange);
	color: var(--c-white);
}

/* Scroll reveals: one quiet rise per block. Content is visible by
   default; the .js class (set in header.php) gates the hidden state
   so nothing disappears without JavaScript. */
/* The ORIGINAL motion system, restored verbatim from the 2026-07-05
   checkpoint per Judd. Do not retime, retune, or "improve" any value
   here or in the hero entrance blocks without his explicit ask. */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js [data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

.js [data-reveal-delay='1'] { transition-delay: 0.09s; }
.js [data-reveal-delay='2'] { transition-delay: 0.18s; }
.js [data-reveal-delay='3'] { transition-delay: 0.27s; }

/* Reduced motion: reveals lose their MOVEMENT but keep a soft fade,
   never a hard snap (the industry-standard reading of the preference:
   it targets vestibular motion, not opacity). The !important duration
   outranks the universal 0.01ms kill in section 10, which is exactly
   the intent. */
@media (prefers-reduced-motion: reduce) {
	.js [data-reveal] {
		transform: none;
		transition: opacity 0.7s ease !important;
	}
}

/* 5. Layout primitives */
.container {
	max-width: var(--content-width);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section {
	padding-block: clamp(72px, 10vw, 120px);
}

/* 6. Buttons */
.btn {
	display: inline-block;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	border-radius: var(--radius);
	padding: 16px 32px;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s var(--ease-out);
}

.btn:active {
	transform: translateY(1px);
}

/* The button holds its ground: color shifts only, no movement. */
.btn--primary {
	background: var(--c-orange);
	color: var(--c-white);
	border: 1.5px solid var(--c-orange);
}

.btn--primary:hover {
	background: #CC3500;
	border-color: #CC3500;
}

.btn--primary:active {
	background: #B32F00;
	border-color: #B32F00;
}

/* Double ring: white halo + black outline reads on any background. */
.btn--primary:focus-visible {
	outline: 2px solid var(--c-black);
	outline-offset: 4px;
	box-shadow: 0 0 0 3px var(--c-white);
}

.btn--ghost-dark {
	background: transparent;
	color: var(--c-on-dark);
	border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn--ghost-dark:hover {
	border-color: var(--c-white);
	color: var(--c-white);
}

.btn--ghost-light {
	background: transparent;
	color: var(--c-black);
	border: 1.5px solid var(--c-black);
}

.btn--ghost-light:hover {
	background: var(--c-black);
	color: var(--c-white);
}

/* 7. Site header and navigation */
.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	padding: 26px 0;
	background: transparent;
	transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
	padding: 16px 0;
	background: rgba(29, 29, 29, 0.96);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Interior pages: solid header, and the page content clears it. */
.site-header--solid {
	background: var(--c-black);
}

.site-header--solid + .site-main,
.site-header--solid ~ .site-main {
	padding-top: 80px;
}

/* Full-bleed hero templates (site-main--flush): no offset padding.
   The dark hero runs up under the solid header (both Lab Black) and
   carries its own large top padding (132-160px), so content always
   clears the header and no white strip can show. Standard templates
   above keep the white breathing room. */
.site-header--solid + .site-main--flush,
.site-header--solid ~ .site-main--flush {
	padding-top: 0;
}

/* No backdrop-filter on the scrolled header, deliberately. The bar sits
   at 96% opacity, so a blur of the 4% showing through is invisible,
   while backdrop-filter forces the compositor to re-blur a full-width
   strip of the page on every scroll frame. That cost is the classic
   source of scroll stutter and it bought nothing here. */

.site-header__inner {
	max-width: var(--content-width);
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.site-header__brand {
	display: block;
	flex-shrink: 0;
	position: relative;
	z-index: 115; /* stays visible above the mobile nav overlay */
}

.site-header__logo {
	width: 176px;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 36px;
	margin-left: auto; /* keeps the nav cluster right-aligned; the search button follows it */
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__link,
.site-nav__list a {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: var(--c-on-dark-soft);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__list a:hover {
	color: var(--c-white);
}

.site-nav__cta {
	font-size: 13px;
	padding: 10px 20px;
}

/* The header CTA defers to the brand: outlined at rest, orange only
   on interaction. The wordmark leads the header, not the button. */
.site-header .site-nav__cta {
	background: transparent;
	color: var(--c-white);
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.site-header .site-nav__cta:hover,
.site-header .site-nav__cta:focus-visible {
	background: var(--c-orange);
	border-color: var(--c-orange);
	color: var(--c-white);
}

/* Dropdowns: hover and focus-within, solid panel over any background. */
.site-nav__list li {
	position: relative;
}

.site-nav__list .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	vertical-align: 2px;
}

/* Top-level parents are dropdown toggles, not destinations (JS
   prevents navigation); keep the pointer honest. */
.site-nav__list > .menu-item-has-children > a {
	cursor: default;
}

.site-nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: -20px;
	min-width: 230px;
	margin: 14px 0 0;
	padding: 10px 0;
	list-style: none;
	background: #1A1A1A;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--radius);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s var(--ease-out), visibility 0.2s;
}

/* Invisible bridge so the pointer can travel into the panel. */
.site-nav__list .sub-menu::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	height: 15px;
}

.site-nav__list li:focus-within > .sub-menu,
.site-nav__list li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Hover opens panels only where hover exists; touch relies on the
   click-managed .is-open, so nothing sticks open after a tap. */
@media (hover: hover) {
	.site-nav__list li:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

.site-nav__list .sub-menu a {
	display: block;
	padding: 9px 20px;
	font-size: 13px;
	white-space: nowrap;
}

/* Third level: flyout to the right of its parent panel. */
.site-nav__list .sub-menu .menu-item-has-children > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.site-nav__list .sub-menu .menu-item-has-children > a::after {
	transform: rotate(-45deg); /* chevron points into the flyout */
	margin-left: 0;
}

.site-nav__list .sub-menu .sub-menu {
	top: -11px;
	left: 100%;
	margin: 0 0 0 6px;
}

/* Bridge sideways instead of downward for the flyout. */
.site-nav__list .sub-menu .sub-menu::before {
	top: 0;
	bottom: 0;
	left: -12px;
	right: auto;
	width: 12px;
	height: auto;
}

.site-header__toggle {
	display: none;
	appearance: none;
	background: transparent;
	border: 0;
	padding: 10px;
	margin: -10px;
	cursor: pointer;
}

.site-header__toggle-box {
	display: block;
	width: 24px;
}

.site-header__toggle-box span {
	display: block;
	height: 2px;
	background: var(--c-white);
	margin: 6px 0;
	transition: transform 0.25s var(--ease-out), opacity 0.25s ease;
}

@media (max-width: 860px) {
	.site-header__toggle {
		display: block;
		position: relative;
		z-index: 120;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		z-index: 110;
		flex-direction: column;
		justify-content: center;
		gap: 40px;
		background: var(--c-black);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.site-nav__list {
		flex-direction: column;
		gap: 24px;
		text-align: center;
		max-height: calc(100vh - 180px);
		overflow-y: auto;
		padding-inline: 24px;
	}

	.site-nav__link,
	.site-nav__list a {
		font-family: var(--font-head);
		font-size: 22px;
		font-weight: 600;
		color: var(--c-on-dark);
	}

	/* Sub-menus render inline in the overlay. Top-level parents are
	   accordion toggles (JS adds .is-open); their chevron stays as the
	   affordance and flips when open. Nested sub-menus stay inline. */
	.site-nav__list .menu-item-has-children > a::after {
		display: none;
	}

	.site-nav__list > .menu-item-has-children > a::after {
		display: inline-block;
		transition: transform 0.2s var(--ease-out);
	}

	.site-nav__list > .menu-item-has-children.is-open > a::after {
		transform: rotate(225deg);
		vertical-align: -2px;
	}

	.site-nav__list > .menu-item-has-children > .sub-menu {
		display: none;
	}

	.site-nav__list > .menu-item-has-children.is-open > .sub-menu {
		display: block;
	}

	.site-nav__list .sub-menu {
		position: static;
		min-width: 0;
		margin: 14px 0 0;
		padding: 0;
		background: none;
		border: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: none;
	}

	.site-nav__list .sub-menu::before {
		display: none;
	}

	.site-nav__list .sub-menu a {
		font-family: var(--font-body);
		font-size: 15px;
		font-weight: 500;
		color: var(--c-on-dark-soft);
		padding: 6px 0;
		white-space: normal;
		justify-content: center;
	}

	/* Third level inline in the overlay, slightly quieter. */
	.site-nav__list .sub-menu .sub-menu {
		margin: 4px 0 8px;
	}

	.site-nav__list .sub-menu .sub-menu a {
		font-size: 14px;
		color: var(--c-on-dark-faint);
	}

	.site-nav__list .sub-menu .menu-item-has-children > a::after {
		display: none;
	}

	body.nav-open .site-nav {
		opacity: 1;
		visibility: visible;
	}

	body.nav-open {
		overflow: hidden;
	}

	body.nav-open .site-header__toggle-box span:first-child {
		transform: translateY(4px) rotate(45deg);
	}

	body.nav-open .site-header__toggle-box span:last-child {
		transform: translateY(-4px) rotate(-45deg);
	}
}

/* 8. Site footer */
.site-footer {
	background: var(--c-black);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: clamp(56px, 7vw, 88px);
}

.site-footer__inner {
	max-width: var(--content-width);
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 48px;
	padding-bottom: clamp(48px, 6vw, 72px);
}

/* Footer lockup (per Judd): the original tagline treatment, with the
   stacked mark 15% larger than the original 110px and centered above
   the gray tagline. The logo PNG carries 7.8% transparent padding on
   its left only, so the image shifts left slightly to center the
   VISIBLE mark, not the padded box. */
.site-footer__lockup {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
	margin-bottom: 24px;
}

.site-footer__logo {
	display: block;
	width: 155px;
	height: auto;
	margin: 0 0 4px; /* brand guide lockup: gap under LABS is ~8% of the wordmark height */
	/* No offset: measured in the rendered footer, the letter run and the tagline center within 1px with the box centered (2026-09-05). */
}

.site-footer__tagline {
	margin: 0;
	font-family: var(--font-body);
	font-size: 11.5px; /* brand guide lockup: caps ~10% of the wordmark height, spanning its width */
	font-weight: 600;
	letter-spacing: 0.055em;
	margin-right: -0.055em; /* cancel the trailing letter-space so the glyph run centers */
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--c-on-dark-soft);
}

.site-footer__contact {
	font-style: normal;
	font-size: 13px;
	line-height: 2;
	color: var(--c-alloy);
}

.site-footer__contact span,
.site-footer__contact a {
	display: block;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__contact a:hover {
	color: var(--c-white);
}

/* Portal entry points (placeholder routes to the future Lab Access). */
.site-footer__account {
	display: flex;
	gap: 20px;
	margin: 14px 0 0;
}

.site-footer__account a {
	font-size: 13px;
	font-weight: 600;
	color: var(--c-alloy);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__account a:hover {
	color: var(--c-white);
}

/* Social channels: quiet alloy glyphs, white on interaction. The row
   sits under the portal links in the brand column. */
.site-footer__social {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 24px 0 0 -9px; /* left pull re-aligns the first glyph with the text column */
	padding: 0;
}

.site-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px; /* 18px glyph in a 36px touch target */
	height: 36px;
	color: var(--c-alloy);
	transition: color 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
	color: var(--c-white);
}

.site-footer__social svg {
	display: block;
}

.site-footer__cols {
	display: contents;
}

.site-footer__heading {
	font-size: 18px;
	font-weight: 700;
	color: var(--c-white);
	margin-bottom: 18px;
}

/* Heading links to the section hub (the hubs' persistent path now
   that header parents open dropdowns instead of navigating). */
.site-footer__heading a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__heading a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__links li {
	margin-bottom: 10px;
}

.site-footer__links a {
	font-size: 13px;
	color: var(--c-alloy);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__links a:hover {
	color: var(--c-white);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 22px 0;
}

.site-footer__bottom-inner {
	max-width: var(--content-width);
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.site-footer__legal {
	font-size: 12px;
	color: var(--c-on-dark-legal);
	margin: 0;
}

.site-footer__legal-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.site-footer__legal-links a {
	font-size: 12px;
	color: var(--c-on-dark-legal);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__legal-links a:hover {
	color: var(--c-alloy);
}

@media (max-width: 1024px) {
	.site-footer__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* 8b. Homepage sections
   Rhythm: hero (black), principles (white), who we are (split),
   families (white), designed for life (black), lab access (black). */

/* Principles */
.principles {
	background: var(--c-white);
}

.principles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(40px, 5vw, 64px);
	text-align: center;
}

.principles__item h2 {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 14px;
}

.principles__item p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--c-iron);
	margin: 0;
}

.principles__footer {
	text-align: center;
	margin-top: clamp(48px, 6vw, 72px);
}

.principles__rule {
	display: block;
	width: 56px;
	height: 1px;
	background: var(--c-black);
	margin: 0 auto 32px;
}

.principles__claim {
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--c-black);
	margin: 0;
}

@media (max-width: 860px) {
	.principles__grid {
		grid-template-columns: 1fr;
	}
}

/* Light sections use the AA-compliant text orange for small type. */
.who .overline,
.families .overline {
	color: var(--c-orange-text);
}

/* Who We Are */
.who {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--c-warm-white);
}

.who__media {
	position: relative;
	background: var(--c-black);
	min-height: 480px;
}

.who__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Duotone recipe: photography reads as material, not decoration. */
	filter: grayscale(1) contrast(1.08) brightness(0.82);
}

.who__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(29, 29, 29, 0.25) 0%, rgba(29, 29, 29, 0) 30%),
		linear-gradient(270deg, rgba(29, 29, 29, 0.35) 0%, rgba(29, 29, 29, 0) 35%);
}

.who__content {
	padding: clamp(64px, 8vw, 120px) clamp(28px, 6vw, 96px);
	max-width: 640px;
}

.who__content .overline {
	display: block;
	margin-bottom: 20px;
}

.who__heading {
	margin-bottom: 28px;
}

.who__content p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-iron);
	margin-bottom: 1.2em;
	max-width: 52ch;
}

.who__content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 860px) {
	.who {
		grid-template-columns: 1fr;
	}

	.who__media {
		min-height: 320px;
	}
}

/* Product Families */
.families {
	background: var(--c-white);
}

.families__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(44px, 5vw, 64px);
}

.families__header .overline {
	display: block;
	margin-bottom: 16px;
}

.families__header h2 {
	margin: 0;
}

.families__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.family-card {
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	background: var(--c-white);
	overflow: hidden;
	transition: border-color 0.25s ease;
}

.family-card:hover {
	border-color: var(--c-alloy);
}

.family-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--c-black);
	overflow: hidden;
}

/* Card imagery is two stacked layers (see falllabs_card_media_img):
   duotone base + color layer cross-fading on the compositor. */
.family-card__media {
	position: relative;
}

.family-card__media .card-img--base {
	filter: grayscale(1) contrast(1.08) brightness(0.85);
}

.family-card__body {
	padding: 28px 28px 30px;
	text-align: center;
}

.family-card__body h3 {
	font-size: 21px;
	margin-bottom: 12px;
}

.family-card__body h3 a {
	color: var(--c-black);
	text-decoration: none;
}

.family-card__body > p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--c-iron);
	margin-bottom: 18px;
}

.family-card__link {
	font-size: 13px;
	font-weight: 600;
	color: var(--c-orange-text);
	text-decoration: none;
}

.family-card__arrow {
	display: inline-block;
	margin-left: 6px;
	transition: transform 0.2s var(--ease-out);
}

.family-card__link:hover .family-card__arrow {
	transform: translateX(3px);
}

@media (max-width: 960px) {
	.families__grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-inline: auto;
	}
}

/* Designed for Life */
.dfl {
	background: var(--c-black);
}

.dfl__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	align-items: center;
	gap: clamp(40px, 6vw, 80px);
}

.dfl__heading {
	color: var(--c-white);
	margin-bottom: 20px;
}

.dfl__copy {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-alloy);
	max-width: 52ch;
	margin-bottom: 32px;
}

.dfl__mark {
	text-align: center;
}

.dfl__mark img {
	width: 72px;
	height: auto;
	margin: 0 auto 18px;
}

.dfl__mark-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-alloy);
	margin: 0;
}

@media (max-width: 860px) {
	.dfl__inner {
		grid-template-columns: 1fr;
	}

	.dfl__mark {
		order: -1;
		text-align: left;
	}
}

/* Lab Access */
.lab-access {
	background: var(--c-black);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
}

.lab-access__heading {
	color: var(--c-white);
	margin-bottom: 18px;
}

.lab-access__sub {
	font-size: 17px;
	color: var(--c-alloy);
	margin-bottom: 24px;
}

.lab-access__lines {
	list-style: none;
	margin: 0 0 36px;
	padding: 0;
}

.lab-access__lines li {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	color: var(--c-on-dark);
}

.lab-access__cta {
	margin-bottom: 24px;
}

/* Secondary portal entry beside Request Access (placeholder route). */
.lab-access__login {
	margin-left: 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--c-on-dark-soft);
	text-decoration: none;
	transition: color 0.2s ease;
}

.lab-access__login:hover {
	color: var(--c-white);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.lab-access__note {
	font-size: 13px;
	color: var(--c-on-dark-faint);
	margin: 0;
}

/* 8c. Interior pages
   Shared system: photographic page hero (locked pattern: overline /
   SEO h1 small / brand headline large / subhead), alternating
   dark-warm-white sections, reveals, Lab Access close. */

.page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: max(560px, 82vh);
	background: var(--c-black);
	overflow: hidden;
}

/* Opt-in taller hero: room for a full standing figure with sky above
   and ground below. Used where the composition needs to breathe. */
.page-hero--tall {
	min-height: max(600px, 92vh);
}

.page-hero__media {
	position: absolute;
	inset: 0;
}

/* Hero photography ships pre-graded (mono, retouched masters in
   reference/Released Website Photography). CSS only dims for type;
   legibility comes from the scrims. */
.page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.74);
}

/* Mirror the photo so the subject sits opposite the text zone. */
.page-hero__media--flip img {
	transform: scaleX(-1);
}

/* Grain over the photo: dithers banding and blocking from
   compressed sources, and matches the homepage surface. */
.page-hero__grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	opacity: 0.05;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 128px;
}

/* Scrims: text zone left, header zone top. Legibility first. */
.page-hero__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(29, 29, 29, 0.88) 0%, rgba(29, 29, 29, 0.55) 42%, rgba(29, 29, 29, 0.18) 75%),
		linear-gradient(180deg, rgba(29, 29, 29, 0.6) 0%, rgba(29, 29, 29, 0) 30%),
		linear-gradient(0deg, rgba(29, 29, 29, 0.55) 0%, rgba(29, 29, 29, 0) 32%);
}

.page-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 160px;
	padding-bottom: clamp(56px, 8vh, 96px);
}

.page-hero__overline {
	margin-bottom: 18px;
}

.page-hero__title {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-alloy);
	margin: 0 0 12px;
}

.page-hero__headline {
	font-family: var(--font-head);
	font-size: clamp(40px, 6.5vw, 84px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--c-white);
	margin: 0 0 24px;
	max-width: 14ch;
}

.page-hero__sub {
	font-size: clamp(16px, 1.6vw, 18px);
	line-height: 1.75;
	color: var(--c-alloy);
	max-width: 54ch;
	margin: 0;
}

.page-hero__datum {
	position: absolute;
	inset: auto 0 0;
	height: 3px;
	background: var(--c-orange);
	z-index: 2;
}

/* Discovery pages: the title IS the statement. */
.page-hero__title--display {
	font-family: var(--font-head);
	font-size: clamp(40px, 6.5vw, 84px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: none;
	color: var(--c-white);
	margin: 0 0 20px;
}

.page-hero__note {
	display: flex;
	align-items: baseline;
	gap: 12px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--c-on-dark-soft);
	max-width: 54ch;
	margin: 18px 0 0;
}

.page-hero__note .hero__tick {
	flex-shrink: 0;
	margin: 0;
}

.page-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 32px 0 0;
}

/* Discovery groups: four doors into the same catalog. */
.discover {
	background: var(--c-white);
}

.discover__header {
	max-width: 640px;
	margin-bottom: clamp(44px, 5vw, 64px);
}

.discover__header .overline {
	display: block;
	margin-bottom: 16px;
}

.discover__header h2 {
	margin-bottom: 14px;
}

.discover__lede {
	font-size: 16px;
	line-height: 1.75;
	color: var(--c-iron);
	margin: 0;
}

.discover__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(28px, 3vw, 48px);
}

.discover__group {
	border-top: 2px solid var(--c-black);
	padding-top: 22px;
}

.discover__group-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 6px;
}

.discover__question {
	font-size: 13px;
	line-height: 1.6;
	color: var(--c-alloy);
	margin-bottom: 18px;
}

.discover__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.discover__list li {
	margin: 0;
	border-bottom: 1px solid #EDECE9;
}

.discover__list li:last-child {
	border-bottom: 0;
}

.discover__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 2px;
	font-size: 15px;
	font-weight: 500;
	color: var(--c-iron);
	text-decoration: none;
	transition: color 0.15s ease, padding-left 0.2s var(--ease-out);
}

.discover__arrow {
	font-size: 14px;
	color: var(--c-alloy);
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.2s ease, transform 0.2s var(--ease-out), color 0.2s ease;
}

.discover__link:hover,
.discover__link:focus-visible {
	color: var(--c-black);
	padding-left: 6px;
}

.discover__link:hover .discover__arrow,
.discover__link:focus-visible .discover__arrow {
	opacity: 1;
	transform: translateX(0);
	color: var(--c-orange-text);
}

@media (max-width: 1100px) {
	.discover__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.discover__grid {
		grid-template-columns: 1fr;
	}

	.page-hero__ctas .btn {
		width: 100%;
		text-align: center;
	}
}

/* Mission: the statement as plain text, set large. */
.mission {
	background: var(--c-warm-white);
}

.mission .overline {
	display: block;
	margin-bottom: 24px;
}

.mission__statement {
	font-family: var(--font-head);
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.015em;
	color: var(--c-black);
	max-width: 26ch;
	margin: 0;
}

.mission__lede {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-iron);
	max-width: 54ch;
	margin: 18px 0 0;
}

.mission__cta {
	margin: 28px 0 0;
}

/* Route cards: photographic doorways into the section. */
.routes {
	background: var(--c-white);
}

.routes__header {
	margin-bottom: clamp(40px, 5vw, 56px);
}

.routes__header .overline {
	display: block;
	margin-bottom: 16px;
}

.routes__header h2 {
	margin: 0;
}

.routes__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.route-card {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--c-black);
	text-decoration: none;
}

.route-card__media {
	position: absolute;
	inset: 0;
}

.route-card__media .card-img--base {
	filter: grayscale(1) contrast(1.08) brightness(0.62);
}

.route-card__media .card-img--color {
	filter: contrast(1.02) brightness(0.72);
}

.route-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(29, 29, 29, 0.85) 0%, rgba(29, 29, 29, 0.1) 55%);
}

.route-card__body {
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	padding: 26px 28px 28px;
}

.route-card__title {
	display: block;
	font-family: var(--font-head);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--c-white);
	margin-bottom: 8px;
}

.route-card__line {
	display: block;
	font-size: 14px;
	line-height: 1.6;
	color: var(--c-on-dark-soft);
	margin-bottom: 16px;
}

.route-card__arrow {
	display: inline-block;
	font-size: 16px;
	color: var(--c-orange);
	transition: transform 0.2s var(--ease-out);
}

.route-card:hover .route-card__arrow {
	transform: translateX(4px);
}

/* Story blocks: heading column + copy column. */
.story-block {
	background: var(--c-white);
}

.story-block--warm {
	background: var(--c-warm-white);
}

.story-block__inner {
	display: grid;
	grid-template-columns: 5fr 6fr;
	gap: clamp(32px, 5vw, 80px);
	align-items: start;
}

.story-block__head .overline {
	display: block;
	margin-bottom: 16px;
}

.story-block__head h2 {
	margin: 0;
}

.story-block__copy p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-iron);
	max-width: 56ch;
}

.story-block__copy p:last-child {
	margin-bottom: 0;
}

/* Prose links: the site's inline-link convention (AA-safe orange +
   underline), so links in body copy are distinguishable from text by
   more than color alone. Matches .legal-body a. */
.story-block__copy a {
	color: var(--c-orange-text);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s ease;
}

.story-block__copy a:hover {
	color: var(--c-orange);
}

/* Statement bands: dark, typographic. */
.statement {
	background: var(--c-black);
}

.statement .overline {
	display: block;
	margin-bottom: 24px;
}

.statement__headline {
	font-size: clamp(30px, 4.2vw, 52px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: var(--c-white);
	margin: 0;
	max-width: 22ch;
}

.statement__copy {
	margin-top: 28px;
}

.statement__copy p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-alloy);
	max-width: 56ch;
}

.statement__copy p:last-child {
	margin-bottom: 0;
}

.statement__tagline {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-orange);
	margin: 32px 0 0;
}

/* Numbered pillars. */
.pillars-num {
	list-style: none;
	margin: clamp(48px, 6vw, 72px) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(28px, 3vw, 48px);
}

.pillars-num__digit {
	display: block;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
	color: var(--c-orange);
	margin-bottom: 14px;
}

.pillars-num__item h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.pillars-num__item p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--c-iron);
	margin: 0;
}

/* Differentiator tiles. */
.diff--warm {
	background: var(--c-warm-white);
}

.diff__header {
	margin-bottom: clamp(40px, 5vw, 56px);
}

.diff__header .overline {
	display: block;
	margin-bottom: 16px;
}

.diff__header h2 {
	margin: 0;
}

.diff__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.diff__item {
	background: var(--c-white);
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	padding: 30px 28px;
}

.diff__item h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.diff__item p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--c-iron);
	margin: 0;
}

/* Values: editorial numbered rows with ghost digits. */
.values {
	background: var(--c-white);
}

.values__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.values__item {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: clamp(24px, 4vw, 64px);
	align-items: start;
	padding: clamp(36px, 4vw, 56px) 0;
	border-bottom: 1px solid #EDECE9;
}

.values__item:first-child {
	padding-top: 0;
}

.values__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.values__digit {
	font-family: var(--font-head);
	font-size: clamp(64px, 8vw, 112px);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: #F1F0ED;
}

.values__body h2 {
	font-size: clamp(22px, 2.4vw, 30px);
	margin-bottom: 12px;
}

.values__body p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-iron);
	max-width: 56ch;
	margin: 0;
}

/* The Promise (Designed for Life). */
.promise--warm {
	background: var(--c-warm-white);
}

.promise__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	align-items: center;
	gap: clamp(40px, 6vw, 80px);
}

.promise__content .overline {
	display: block;
	margin-bottom: 16px;
}

.promise__content h2 {
	margin-bottom: 20px;
}

.promise__content p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-iron);
	max-width: 54ch;
}

.promise__content p:last-child {
	margin-bottom: 0;
}

.promise__mark {
	text-align: center;
}

.promise__mark img {
	width: 72px;
	height: auto;
	margin: 0 auto 18px;
}

.promise__mark-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-iron);
	margin: 0;
}

/* Numbered steps. */
.steps {
	background: var(--c-white);
}

.steps__header {
	margin-bottom: clamp(40px, 5vw, 56px);
}

.steps__header .overline {
	display: block;
	margin-bottom: 16px;
}

.steps__header h2 {
	margin: 0;
}

.steps__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.steps__item {
	border-top: 2px solid var(--c-black);
	padding-top: 24px;
}

.steps__digit {
	display: block;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
	color: var(--c-orange);
	margin-bottom: 14px;
}

.steps__item h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.steps__item p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--c-iron);
	margin: 0;
}

/* Comparison: our promise beside the usual fine print. */
.compare {
	background: var(--c-black);
}

.compare__header {
	margin-bottom: clamp(40px, 5vw, 56px);
}

.compare__header .overline {
	display: block;
	margin-bottom: 16px;
}

.compare__header h2 {
	color: var(--c-white);
	margin: 0;
}

.compare__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 900px;
}

.compare__col {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 30px 32px;
}

.compare__col--fl {
	border-color: var(--c-orange);
}

.compare__label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-on-dark-soft);
	margin-bottom: 20px;
}

.compare__col--fl .compare__label {
	color: var(--c-orange);
}

.compare__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.compare__col li {
	font-size: 15px;
	line-height: 1.6;
	color: var(--c-alloy);
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.compare__col--fl li {
	color: var(--c-on-dark);
}

.compare__col li:last-child {
	border-bottom: 0;
}

.compare__cta {
	margin: clamp(40px, 5vw, 56px) 0 0;
}

/* Interior pages: responsive. */
@media (max-width: 960px) {
	.routes__grid,
	.diff__grid,
	.steps__grid {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.story-block__inner,
	.promise__inner,
	.compare__grid {
		grid-template-columns: 1fr;
	}

	.pillars-num {
		grid-template-columns: repeat(2, 1fr);
	}

	.promise__mark {
		order: -1;
		text-align: left;
	}

	.values__item {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.values__digit {
		font-size: 48px;
	}
}

@media (max-width: 560px) {
	.pillars-num {
		grid-template-columns: 1fr;
	}
}

/* 8d. Legal pages: document layout with on-page navigation. */
.legal-hero {
	position: relative;
	background: var(--c-black);
	padding: 150px 0 48px;
}

.legal-hero .overline {
	display: block;
	margin-bottom: 14px;
}

.legal-hero__title {
	color: var(--c-white);
	font-size: clamp(32px, 4vw, 48px);
	margin: 0;
}

.legal-hero__sub {
	font-size: 16px;
	line-height: 1.7;
	color: var(--c-alloy);
	max-width: 54ch;
	margin: 14px 0 0;
}

.legal-layout {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}

.legal-toc {
	position: sticky;
	top: 92px;
}

.legal-toc__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-black);
}

.legal-toc__summary::-webkit-details-marker {
	display: none;
}

.legal-toc__list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	border-left: 1px solid #E8E7E4;
}

.legal-toc__list li {
	margin: 0;
}

.legal-toc__list a {
	display: block;
	padding: 7px 0 7px 16px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--c-iron);
	text-decoration: none;
	border-left: 2px solid transparent;
	margin-left: -1px;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.legal-toc__list a:hover {
	color: var(--c-black);
	border-left-color: var(--c-alloy);
}

/* Document typography: quiet, readable, precise. */
.legal-body {
	max-width: 72ch;
}

.legal-body > p:first-child {
	font-size: 17px;
	line-height: 1.8;
	color: var(--c-iron);
}

.legal-body p,
.legal-body li {
	font-size: 15px;
	line-height: 1.85;
	color: var(--c-iron);
}

.legal-body h2 {
	font-size: 24px;
	margin: 2.2em 0 0.7em;
	scroll-margin-top: 100px;
}

.legal-body h2:first-child {
	margin-top: 0;
}

.legal-body h3 {
	font-size: 18px;
	margin: 1.8em 0 0.6em;
	scroll-margin-top: 100px;
}

.legal-body ul,
.legal-body ol {
	padding-left: 22px;
	margin: 0 0 1.4em;
}

.legal-body li {
	margin-bottom: 8px;
}

.legal-body a {
	color: var(--c-orange-text);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.4em 0 2em;
	font-size: 13.5px;
}

.legal-body th,
.legal-body td {
	text-align: left;
	padding: 10px 14px;
	border: 1px solid #E8E7E4;
	color: var(--c-iron);
	line-height: 1.6;
	vertical-align: middle; /* a short cell sits level with a two-line neighbour (Judd, 2026-09-07) */
}

.legal-body th {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-black);
	background: var(--c-warm-white);
}

/* Narrow widths: a wide table scrolls inside itself, never the page. */
@media (max-width: 640px) {
	.legal-body table {
		display: block;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

/* The effective-date line under the intro. */
.legal-body .legal-effective {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--c-alloy);
}

/* Placeholders and attorney flags: impossible to miss, impossible
   to ship by accident. Remove every one of these before launch. */
mark.legal-todo {
	background: var(--c-orange);
	color: var(--c-white);
	font-weight: 600;
	padding: 2px 8px;
	border-radius: var(--radius);
	/* Long flags wrap; cloned decoration keeps each line padded. */
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.legal-body .legal-draft-banner {
	background: var(--c-black);
	color: var(--c-white);
	border-left: 4px solid var(--c-orange);
	border-radius: var(--radius);
	padding: 16px 20px;
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 2em;
}

@media (max-width: 960px) {
	.legal-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.legal-toc {
		position: static;
	}

	.legal-toc__summary {
		padding: 13px 18px;
		border: 1px solid #E8E7E4;
		border-radius: var(--radius);
	}

	.legal-toc__summary::after {
		content: '';
		width: 7px;
		height: 7px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg);
	}

	.legal-toc__list {
		border-left: 0;
		padding: 8px 18px 4px;
	}
}

/* 8d2. Category drill-down tiles (McMaster-style). Shared by the
   WooCommerce category archive and hand-built landing pages. */
.cat-tiles {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 20px;
}

.cat-tiles__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	height: 100%;
	padding: 32px 20px 28px;
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	background: var(--c-white);
	text-align: center;
	text-decoration: none;
	transition: border-color 0.25s ease;
}

.cat-tiles__link:hover {
	border-color: var(--c-black);
}

.cat-tiles__media {
	width: 96px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.cat-tiles__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.cat-tiles__name {
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--c-black);
}

.cat-tiles__count {
	font-size: 12px;
	line-height: 1.5;
	color: var(--c-alloy);
	max-width: 24ch;
}

@media (max-width: 560px) {
	.cat-tiles {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 12px;
	}

	.cat-tiles__media {
		width: 72px;
		height: 72px;
	}
}

/* Blueprint line-icon placeholder inside a category tile. */
.cat-tiles__icon {
	width: 60px;
	height: 60px;
	color: var(--c-iron);
	transition: color 0.25s ease;
}

.cat-tiles__link:hover .cat-tiles__icon {
	color: var(--c-orange);
}

/* Non-linked preview card (a category still in development). */
.cat-tiles__link--static {
	cursor: default;
}

.cat-tiles__link--static:hover {
	border-color: #E8E7E4;
}

.cat-tiles__link--static:hover .cat-tiles__icon {
	color: var(--c-iron);
}

/* One-line blurb under the tile name. */
.cat-tiles__desc {
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--c-iron);
	max-width: 28ch;
}

.cat-tiles__count--soon {
	margin-top: 2px;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-alloy);
}

/* Orienting blurb at the top of an Explore category page. */
.cat-intro {
	padding-top: clamp(40px, 6vw, 72px);
	padding-bottom: 0;
}

.cat-intro__inner {
	max-width: 820px;
}

.cat-intro__text {
	font-size: clamp(18px, 2.2vw, 22px);
	line-height: 1.55;
	color: var(--c-iron);
	margin: 0;
}

.cat-drill__all {
	margin: 28px 0 0;
	text-align: center;
}

/* Inline arrow link used on Explore pages. */
.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
	color: var(--c-black);
	text-decoration: none;
	transition: gap 0.25s ease, color 0.25s ease;
}

.link-arrow:hover {
	color: var(--c-orange);
	gap: 12px;
}

/* Honest empty state on a product archive with no products yet. */
.shop-empty {
	max-width: 620px;
	padding: clamp(28px, 5vw, 56px) 0;
}

.shop-empty__title {
	font-family: var(--font-head);
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.2;
	margin: 0 0 14px;
}

.shop-empty__text {
	color: var(--c-iron);
	line-height: 1.6;
	margin: 0 0 24px;
	max-width: 52ch;
}

.shop-empty__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

/* 8e. Guided selector (Help Me Choose) */
.choose {
	background: var(--c-white);
}

.choose__container {
	max-width: 760px;
}

.choose__progress {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-orange-text);
	margin-bottom: 22px;
	min-height: 1em;
}

.choose__step {
	border: 0;
	padding: 0;
	margin: 0 0 40px;
}

.choose__question {
	font-family: var(--font-head);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--c-black);
	padding: 0;
	margin-bottom: 24px;
}

.choose__options {
	display: grid;
	gap: 10px;
}

.choose__option {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.choose__option:hover {
	border-color: var(--c-alloy);
}

.choose__option:has(input:checked) {
	border-color: var(--c-black);
	background: var(--c-warm-white);
}

.choose__option:has(input:focus-visible) {
	outline: 2px solid var(--c-orange);
	outline-offset: 2px;
}

.choose__option input {
	accent-color: var(--c-orange);
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin: 0;
}

.choose__option-text {
	font-size: 15px;
	font-weight: 500;
	color: var(--c-black);
}

.choose__option-maps {
	margin-left: auto;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-alloy);
}

.choose__nav {
	display: none; /* stepped mode only */
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.choose__back {
	appearance: none;
	background: none;
	border: 0;
	padding: 0;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--c-iron);
	cursor: pointer;
}

.choose__back:hover {
	color: var(--c-black);
}

.choose__summary {
	border: 1px solid var(--c-orange);
	border-radius: var(--radius);
	padding: 32px;
	margin-bottom: 32px;
}

.choose__summary-title {
	font-size: 22px;
	margin-bottom: 20px;
}

.choose__profile {
	margin: 0 0 28px;
}

.choose__profile-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 11px 0;
	border-bottom: 1px solid #EDECE9;
}

.choose__profile-row:last-child {
	border-bottom: 0;
}

.choose__profile dt {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-alloy);
}

.choose__profile dd {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--c-black);
}

/* Stepped mode (JS): one question at a time. */
.choose__form.is-stepped .choose__step {
	display: none;
}

.choose__form.is-stepped .choose__step.is-current {
	display: block;
}

.choose__form.is-stepped .choose__summary {
	display: none;
}

.choose__form.is-stepped .choose__summary.is-visible {
	display: block;
}

.choose__form.is-stepped .choose__nav {
	display: flex;
}

/* 8f. Browse placeholder (PLP empty state) */
.browse__columns {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: start;
}

.browse__filters-title {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.browse__filter-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.browse__filter-list li {
	font-size: 14px;
	font-weight: 500;
	color: var(--c-alloy);
	padding: 10px 0;
	border-bottom: 1px solid #EDECE9;
}

.browse__filter-list li:last-child {
	border-bottom: 0;
}

.browse__filters-note {
	font-size: 12px;
	line-height: 1.6;
	color: var(--c-alloy);
	margin: 0;
}

.browse__active {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.browse__active-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--c-iron);
}

.browse__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--c-black);
	border-radius: var(--radius);
	padding: 7px 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-black);
}

.browse__chip-group {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-orange-text);
}

.browse__clear {
	font-size: 13px;
	font-weight: 600;
	color: var(--c-iron);
}

.browse__empty {
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	padding: clamp(36px, 5vw, 64px);
	max-width: 640px;
}

.browse__empty h2 {
	font-size: clamp(22px, 2.6vw, 30px);
	margin-bottom: 14px;
}

.browse__empty p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--c-iron);
}

.browse__empty-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0 0;
}

/* 8g. Guide CTAs (Harness Guide) */
.guide-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin: 0 0 1.6em;
}

.guide-cta {
	font-size: 14px;
	font-weight: 600;
	color: var(--c-orange-text) !important;
	text-decoration: none !important;
}

.guide-cta:hover {
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

@media (max-width: 960px) {
	.browse__columns {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* 8h. Surface system: sections are materials, not hex fills.
   Dark sections get machined grain (plus a faint texture photograph
   on the two anchor sections); warm sections get paper tooth; pure
   white sections stay surgically clean. Content always sits above. */
.dfl,
.lab-access,
.statement,
.compare {
	position: relative;
}

.dfl::before,
.lab-access::before,
.statement::before,
.compare::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 128px;
	opacity: 0.04;
}

/* Paper tooth on warm sections: half the strength of the dark grain. */
.mission,
.story-block--warm,
.promise--warm,
.diff--warm {
	position: relative;
}

.mission::before,
.story-block--warm::before,
.promise--warm::before,
.diff--warm::before,
.support-shortcuts::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 128px;
	opacity: 0.02;
}

/* Texture photographs on the two anchor sections only. */
.dfl::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url('../img/fall-labs-texture-tower-lattice-shadows.webp') center / cover no-repeat;
	opacity: 0.05;
}

.lab-access::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url('../img/fall-labs-texture-glass-tower.webp') center / cover no-repeat;
	opacity: 0.05;
}

/* Content rides above the surfaces. */
.dfl > .container,
.lab-access > .container,
.statement > .container,
.compare > .container,
.mission > .container,
.story-block--warm > .container,
.promise--warm > .container,
.diff--warm > .container,
.support-cta > .container,
.support-shortcuts > .container {
	position: relative;
	z-index: 1;
}

/* Photo-as-texture: a statement band backed by near-transparent
   photography. Applied per-page via this modifier. */
.statement--textured::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url('../img/fall-labs-ironworker-crew-silhouettes.webp') center / cover no-repeat;
	opacity: 0.09;
}

/* One ghost per surface: the Lab Access facade photo IS its texture,
   so nothing else layers on top of it (no marks, no second image). */

/* 8i. Photography bands: full-bleed visual breaths between sections. */
.photo-band {
	position: relative;
	height: clamp(300px, 52vh, 560px);
	overflow: hidden;
	background: var(--c-black);
}

.photo-band img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.9);
}

/* 8j. Support hub */
.support-hero {
	padding-bottom: 64px;
}

.support-search {
	display: flex;
	gap: 12px;
	max-width: 640px;
	margin-top: 32px;
}

.support-search__input {
	flex: 1;
	min-width: 0;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--c-white);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	padding: 14px 18px;
	transition: border-color 0.2s ease;
}

.support-search__input::placeholder {
	color: var(--c-on-dark-soft);
}

.support-search__input:focus {
	outline: none;
	border-color: var(--c-orange);
}

.support-tiles__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.support-tile {
	display: block;
	height: 100%;
	padding: 28px 26px;
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	background: var(--c-white);
	text-decoration: none;
	transition: border-color 0.25s ease;
}

.support-tile:hover {
	border-color: var(--c-black);
}

.support-tile__icon {
	display: block;
	width: 30px;
	height: 30px;
	color: var(--c-iron);
	margin-bottom: 18px;
	transition: color 0.25s ease;
}

.support-tile__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.support-tile:hover .support-tile__icon {
	color: var(--c-orange-text);
}

.support-tile__title {
	display: block;
	font-family: var(--font-head);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--c-black);
	margin-bottom: 8px;
}

.support-tile__line {
	display: block;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--c-iron);
}

/* Self-serve shortcuts */
.support-shortcuts {
	background: var(--c-warm-white);
	position: relative;
}

.support-shortcuts .overline {
	display: block;
	margin-bottom: 20px;
}

.support-shortcuts__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.support-shortcuts__row--single {
	grid-template-columns: minmax(0, 1fr);
}

.support-shortcut {
	position: relative;
	display: block;
	padding: 26px 60px 26px 28px;
	background: var(--c-white);
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	text-decoration: none;
	transition: border-color 0.25s ease;
}

.support-shortcut:hover {
	border-color: var(--c-black);
}

.support-shortcut__title {
	display: block;
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 600;
	color: var(--c-black);
	margin-bottom: 6px;
}

.support-shortcut__line {
	display: block;
	font-size: 14px;
	line-height: 1.6;
	color: var(--c-iron);
}

.support-shortcut__arrow {
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	font-size: 18px;
	color: var(--c-orange-text);
	transition: transform 0.2s var(--ease-out);
}

.support-shortcut:hover .support-shortcut__arrow {
	transform: translateY(-50%) translateX(4px);
}

/* Still need help */
.support-cta {
	position: relative;
	background: var(--c-black);
	text-align: center;
}

.support-cta__heading {
	color: var(--c-white);
	margin-bottom: 14px;
}

.support-cta__line {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-alloy);
	max-width: 54ch;
	margin: 0 auto 28px;
}

.support-cta__action {
	margin: 0;
}

@media (max-width: 720px) {
	.support-search {
		flex-direction: column;
	}

	.support-shortcuts__row {
		grid-template-columns: 1fr;
	}
}

/* 8k. Form system: clean on-brand markup, wired to WPForms later.
   One language for every form on the site. */
.fl-form {
	max-width: 720px;
}

.fl-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.fl-form__field {
	margin-bottom: 18px;
}

.fl-form__label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--c-black);
	margin-bottom: 8px;
}

.fl-form__label .fl-form__optional {
	font-weight: 500;
	color: var(--c-alloy);
}

.fl-form__input,
.fl-form__select,
.fl-form__textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--c-black);
	background: var(--c-white);
	border: 1px solid #DDDCD8;
	border-radius: var(--radius);
	padding: 13px 16px;
	transition: border-color 0.2s ease;
}

.fl-form__input:focus,
.fl-form__select:focus,
.fl-form__textarea:focus {
	outline: none;
	border-color: var(--c-black);
}

.fl-form__input:focus-visible,
.fl-form__select:focus-visible,
.fl-form__textarea:focus-visible {
	outline: 2px solid var(--c-orange);
	outline-offset: 1px;
}

.fl-form__textarea {
	min-height: 180px;
	resize: vertical;
	line-height: 1.7;
}

.fl-form__hint {
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--c-iron);
	margin: 6px 0 0;
}

.fl-form__submit-row {
	margin-top: 28px;
}

.fl-form__note {
	font-size: 12.5px;
	color: var(--c-alloy);
	margin: 14px 0 0;
}

/* Conditional groups driven by forms.js; everything visible without JS. */
.js .fl-form__conditional[hidden] {
	display: none;
}

/* Response-time commitment chip */
.fl-commit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-on-dark);
	margin-top: 24px;
}

.fl-commit::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--c-orange);
	flex-shrink: 0;
}

@media (max-width: 640px) {
	.fl-form__row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* 8l. Contact-style layouts (Contact, Ask an Expert, Partner) */
.contact__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: clamp(40px, 6vw, 88px);
	align-items: start;
}

.contact__side {
	border-left: 1px solid #EDECE9;
	padding-left: clamp(24px, 3vw, 40px);
}

.contact__channel {
	margin-bottom: 32px;
}

.contact__channel h2 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 8px;
}

.contact__channel p {
	margin: 0 0 4px;
	font-size: 14.5px;
}

.contact__channel a {
	color: var(--c-orange-text);
	text-decoration: none;
	font-weight: 600;
}

.contact__channel a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact__channel-line {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--c-iron);
}

.contact__channel-address {
	font-style: normal;
	font-size: 14.5px;
	line-height: 1.7;
}

.contact__channel--soon h2 {
	color: var(--c-alloy);
}

.fl-form__textarea--tall {
	min-height: 240px;
}

/* Warranty page forms */
.warranty-forms--warm {
	background: var(--c-warm-white);
	position: relative;
}

.warranty-form {
	max-width: 760px;
	scroll-margin-top: 96px;
}

.warranty-form + .warranty-form {
	margin-top: clamp(56px, 8vw, 96px);
	padding-top: clamp(48px, 6vw, 72px);
	border-top: 1px solid #E3E1DC;
}

.warranty-form .overline {
	display: block;
	margin-bottom: 14px;
}

.warranty-form h2 {
	margin-bottom: 12px;
}

.warranty-form__lede {
	font-size: 16px;
	line-height: 1.75;
	color: var(--c-iron);
	max-width: 56ch;
	margin-bottom: 30px;
}

.warranty-form__header {
	margin-bottom: 30px;
}

.compare__col--light {
	border: 1px solid #E8E7E4;
}

.compare__col--light .compare__label {
	color: var(--c-iron);
}

.compare__col--light li {
	color: var(--c-iron);
	border-bottom-color: #EDECE9;
}

.compare__col--light:last-child .compare__label {
	color: var(--c-orange-text);
}

/* FAQ */
.faq__container {
	max-width: 800px;
}

.faq__group {
	font-size: 20px;
	margin: 44px 0 16px;
}

.faq__group:first-child {
	margin-top: 0;
}

.faq__item {
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	margin-bottom: 10px;
}

.faq__q {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 600;
	color: var(--c-black);
}

.faq__q::-webkit-details-marker {
	display: none;
}

.faq__q::after {
	content: '';
	flex-shrink: 0;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s var(--ease-out);
}

.faq__item[open] .faq__q::after {
	transform: rotate(-135deg);
}

.faq__a {
	padding: 0 20px 18px;
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: var(--c-iron);
	max-width: 68ch;
}

/* Single-column legal layout (no TOC) */
.legal-layout--single {
	grid-template-columns: minmax(0, 1fr);
}

/* Backstop: if the auto-TOC never un-hides (script absent, or the page has
   no headings to build from), collapse to one full-width column so the body
   fills the page instead of auto-placing into the empty sidebar track. */
.legal-layout:has(> .legal-toc[hidden]) {
	grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 960px) {
	.contact__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.contact__side {
		border-left: 0;
		padding-left: 0;
		border-top: 1px solid #EDECE9;
		padding-top: 32px;
	}
}

/* 8m. Resources: hubs, knowledge cards, Field Notes, library, training */

/* Resources hub / KC hub tile grids */
.support-tiles__grid--wide {
	grid-template-columns: repeat(2, 1fr);
}

.support-tiles__grid--wide .support-tile {
	padding: 34px 32px;
}

.support-tiles__grid--wide .support-tile__title {
	font-size: 20px;
}

.support-tiles__grid--wide .support-tile__line {
	font-size: 14.5px;
}

@media (max-width: 960px) {
	.support-tiles__grid--wide {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.support-tiles__grid--wide {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Knowledge topic cards (also training modules) */
.kc-cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.kc-cards--two {
	grid-template-columns: repeat(2, 1fr);
	max-width: 900px;
}

.kc-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 28px 26px;
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	background: var(--c-white);
}

.kc-card__num {
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	color: var(--c-orange-text);
	margin-bottom: 16px;
}

.kc-card__title {
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 10px;
}

.kc-card__line {
	font-size: 14px;
	line-height: 1.7;
	color: var(--c-iron);
	margin: 0 0 18px;
}

.kc-card__meta {
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--c-iron);
	margin: 0 0 18px;
}

.kc-card__soon {
	margin-top: auto;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-alloy);
	border: 1px solid #E8E7E4;
	border-radius: 999px;
	padding: 6px 14px;
}

.kc-note {
	max-width: 72ch;
	font-size: 14px;
	line-height: 1.7;
	margin: 0 0 28px;
}

.kc-cards + .kc-note,
.training-modules .kc-note {
	margin: 28px 0 0;
}


@media (max-width: 960px) {
	.kc-cards {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.kc-cards,
	.kc-cards--two {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Field Notes: category chips + article cards */
.note-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}

.note-filters__chip {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--c-iron);
	text-decoration: none;
	border: 1px solid #E0DED9;
	border-radius: 999px;
	padding: 8px 18px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.note-filters__chip:hover {
	color: var(--c-black);
	border-color: var(--c-black);
}

.note-filters__chip.is-active {
	color: var(--c-white);
	background: var(--c-black);
	border-color: var(--c-black);
}

.note-cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.note-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 28px 26px;
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	background: var(--c-white);
	transition: border-color 0.25s ease;
}

.note-card:hover {
	border-color: var(--c-black);
}

.note-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-alloy);
	margin: 0 0 14px;
}

.note-card__cat {
	color: var(--c-orange-text);
}

.note-card__title {
	font-size: 19px;
	line-height: 1.3;
	margin: 0 0 10px;
}

.note-card__title a {
	color: var(--c-black);
	text-decoration: none;
}

/* Card-wide click target via the title link. */
.note-card__title a::after {
	content: '';
	position: absolute;
	inset: 0;
}

.note-card__excerpt {
	font-size: 14px;
	line-height: 1.7;
	color: var(--c-iron);
	margin-bottom: 18px;
}

.note-card__excerpt p {
	margin: 0;
}

.note-card__more {
	margin-top: auto;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-orange-text);
}

@media (max-width: 960px) {
	.note-cards {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.note-cards {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Posts pagination (Field Notes) */
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
}

.pagination .page-numbers {
	font-size: 14px;
	font-weight: 600;
	color: var(--c-iron);
	text-decoration: none;
	border: 1px solid #E0DED9;
	border-radius: var(--radius);
	padding: 8px 14px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.pagination a.page-numbers:hover {
	color: var(--c-black);
	border-color: var(--c-black);
}

.pagination .page-numbers.current {
	color: var(--c-white);
	background: var(--c-black);
	border-color: var(--c-black);
}

/* Standards Decoded: reference callout inside legal-body */
.legal-body .legal-callout {
	border: 1px solid #E8E7E4;
	border-left: 3px solid var(--c-orange);
	border-radius: var(--radius);
	background: var(--c-warm-white);
	padding: 20px 24px;
	margin: 28px 0;
}

.legal-body .legal-callout p {
	margin: 0;
	font-size: 15px;
}

/* Standards Decoded hub: the compliance-stack diagram. Blueprint line-art
   translated to the light document ground: iron linework, warm-white bands,
   the OSHA floor called out in Signal Orange because it is the one line that
   is legally binding. */
.std-map {
	margin: 1.8em 0 2.2em;
	padding: 26px 26px 20px;
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	background: var(--c-warm-white);
}

.std-map svg {
	display: block;
	width: 100%;
	height: auto;
}

.std-map figcaption {
	margin-top: 16px;
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--c-alloy);
}

.std-map .sd-band {
	fill: var(--c-white);
	stroke: #D8D6D2;
	stroke-width: 1;
}

.std-map .sd-axis,
.std-map .sd-hatch {
	stroke: #C9C7C3;
	stroke-width: 1;
	fill: none;
}

.std-map .sd-axis-head {
	fill: #C9C7C3;
}

.std-map .sd-floor {
	stroke: var(--c-orange);
	stroke-width: 2.5;
}

.std-map .sd-label {
	fill: var(--c-black);
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 600;
}

.std-map .sd-label--floor {
	font-size: 17px;
	letter-spacing: 0.02em;
}

.std-map .sd-sub {
	fill: var(--c-iron);
	font-family: var(--font-body);
	font-size: 11px;
}

.std-map .sd-sub--warn {
	fill: var(--c-alloy);
	font-style: italic;
}

.std-map .sd-tag,
.std-map .sd-axis-label {
	fill: var(--c-alloy);
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.std-map .sd-tag--floor {
	fill: var(--c-orange-text);
}

/* Schematic figures (ABCD anatomy, fall-distance chain, swing fall): iron
   linework, orange nodes, dashed leader lines to the callout letters. */
.std-map .sd-fig {
	stroke: var(--c-iron);
	stroke-width: 1.5;
	fill: none;
	stroke-linejoin: round;
	stroke-linecap: round;
}

.std-map .sd-node {
	fill: var(--c-orange);
	stroke: none;
}

.std-map .sd-lead {
	stroke: #C9C7C3;
	stroke-width: 1;
	stroke-dasharray: 3 3;
	fill: none;
}

.std-map .sd-abcd {
	fill: var(--c-orange-text);
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
}

.std-map .sd-dim {
	stroke: var(--c-alloy);
	stroke-width: 1;
	fill: none;
}

.std-map .sd-dim-label {
	fill: var(--c-black);
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 600;
}

/* Standards Decoded hub: the recurring-number callouts. Big data set in
   Outfit, the unit in orange, the citation quiet underneath. */
.std-figures {
	list-style: none;
	margin: 1.4em 0 1.2em;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: #E8E7E4;
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	overflow: hidden;
}

.std-figures li {
	margin: 0;
	padding: 22px 24px;
	background: var(--c-white);
}

.std-figures__num {
	display: block;
	font-family: var(--font-head);
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.01em;
	color: var(--c-black);
	font-variant-numeric: tabular-nums;
}

.std-figures__num span {
	font-size: 18px;
	font-weight: 500;
	color: var(--c-orange-text);
}

.std-figures__label {
	display: block;
	margin-top: 10px;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--c-iron);
}

.std-figures__cite {
	display: block;
	margin-top: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--c-alloy);
	line-height: 1.5;
}

@media (max-width: 560px) {
	.std-figures {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Standards Decoded hub: the seven guide cards. Numbered, quiet by default,
   border warms on hover. Overrides the legal-body link underline. */
.std-guides {
	list-style: none;
	margin: 1.4em 0 1em;
	padding: 0;
	display: grid;
	gap: 12px;
}

.std-guides li {
	margin: 0;
}

.legal-body a.std-guide {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: start;
	gap: 18px;
	padding: 20px 22px;
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	background: var(--c-white);
	text-decoration: none;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.legal-body a.std-guide:hover {
	border-color: var(--c-alloy);
	background: var(--c-warm-white);
}

.std-guide__idx {
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	color: var(--c-orange-text);
	padding-top: 2px;
	font-variant-numeric: tabular-nums;
}

.std-guide__title {
	display: block;
	font-family: var(--font-head);
	font-size: 17px;
	font-weight: 600;
	color: var(--c-black);
	margin-bottom: 4px;
}

.std-guide__line {
	display: block;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--c-iron);
}

.std-guide__arrow {
	align-self: center;
	color: var(--c-alloy);
	font-size: 18px;
	transition: transform 0.15s ease, color 0.15s ease;
}

.legal-body a.std-guide:hover .std-guide__arrow {
	color: var(--c-orange-text);
	transform: translateX(3px);
}

@media (max-width: 520px) {
	.legal-body a.std-guide {
		gap: 14px;
		padding: 16px 18px;
	}

	.std-guide__arrow {
		display: none;
	}
}

/* Standards Decoded guides: prev/next series navigation at the foot of
   every guide. Keeps the seven-part sequence walkable in both directions. */
.std-seriesnav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 3em 0 0.5em;
	padding-top: 1.8em;
	border-top: 1px solid #E8E7E4;
}

.legal-body a.std-seriesnav__link {
	display: block;
	padding: 16px 18px;
	border: 1px solid #E8E7E4;
	border-radius: var(--radius);
	background: var(--c-white);
	text-decoration: none;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.legal-body a.std-seriesnav__link:hover {
	border-color: var(--c-alloy);
	background: var(--c-warm-white);
}

.std-seriesnav__link--next {
	text-align: right;
}

.std-seriesnav__dir {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-alloy);
}

.std-seriesnav__title {
	display: block;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--c-black);
}

@media (max-width: 520px) {
	.std-seriesnav {
		grid-template-columns: minmax(0, 1fr);
	}

	.std-seriesnav__link--next {
		text-align: left;
	}
}

/* Standards Decoded guides: the ABCD anatomy list and small definition
   rows shared by several guides. */
.std-deflist {
	list-style: none;
	margin: 1.4em 0 1.6em;
	padding: 0;
	display: grid;
	gap: 12px;
}

.std-deflist li {
	margin: 0;
	padding: 18px 20px;
	border: 1px solid #E8E7E4;
	border-left: 3px solid var(--c-orange);
	border-radius: var(--radius);
	background: var(--c-white);
}

.std-deflist__term {
	display: block;
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 600;
	color: var(--c-black);
	margin-bottom: 4px;
}

.std-deflist__term b {
	color: var(--c-orange-text);
	font-weight: 700;
}

.std-deflist__def {
	display: block;
	font-size: 14px;
	line-height: 1.6;
	color: var(--c-iron);
}

/* Build a System: curated system cards */
.sys-cards {
	grid-template-columns: repeat(2, 1fr);
}

.sys-card__parts {
	width: 100%;
	margin: 4px 0 0;
}

.sys-card__row {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid #EDECE9;
}

.sys-card__row dt {
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-iron);
	padding-top: 2px;
}

.sys-card__row dd {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--c-iron);
}

.sys-card__link {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-orange-text);
	text-decoration: none;
}

.sys-card__link:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sys-disclaimer {
	background: var(--c-warm-white);
	position: relative;
}

.sys-disclaimer__box {
	max-width: 760px;
	border: 1px solid #E8E7E4;
	border-left: 3px solid var(--c-orange);
	border-radius: var(--radius);
	background: var(--c-white);
	padding: 28px 32px;
}

.sys-disclaimer__title {
	font-size: 18px;
	margin-bottom: 12px;
}

.sys-disclaimer__box p {
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--c-iron);
	margin: 0 0 12px;
}

.sys-disclaimer__box p:last-child {
	margin-bottom: 0;
}

.sys-disclaimer__box a {
	color: var(--c-orange-text);
	font-weight: 600;
	text-decoration: none;
}

.sys-disclaimer__box a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 960px) {
	.sys-cards {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.sys-card__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 4px;
	}
}

/* Training */
.training-modules {
	background: var(--c-warm-white);
	position: relative;
}

.training-future {
	margin: 24px 0 0;
	font-size: 15px;
	color: var(--c-iron);
}

.training-future a {
	color: var(--c-orange-text);
	font-weight: 600;
	text-decoration: none;
}

.training-future a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* 8n. Orphan and widow control. Balance on display text, pretty on
   running text; no layout, width, or box changes. Older browsers
   ignore both safely. */
p,
li,
dd,
figcaption {
	text-wrap: pretty;
}

h1,
h2,
h3,
h4,
legend,
.page-hero__headline,
.page-hero__sub,
.legal-hero__sub,
.mission__statement,
.mission__lede,
.statement__headline,
.support-cta__line,
.warranty-form__lede,
.discover__lede {
	text-wrap: balance;
}

/* 8o. Section break: a deliberate solid beat between two atmospheric
   (ghosted/textured) sections, per the layout rule. */
.section-break {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: clamp(36px, 5vw, 56px) 0;
	background: var(--c-warm-white);
}

.section-break__tick {
	width: 24px;
	height: 2px;
	background: var(--c-orange);
}

/* 9. Homepage hero: "Load Bearing"
   Type as structure. Six parallax planes, one orange budget:
   overline + tick, CTA, datum rule. Nothing else gets the accent. */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100vh;
	min-height: max(100svh, 640px);
	background: var(--c-black);
	overflow: hidden;
}

/* L1: the blueprint stage, the hero's single background motif.
   One drawing active at a time (hero.js); always fully in frame.
   Placeholder SVGs live in template-parts/home/hero.php. */
.hero__blueprints {
	position: absolute;
	top: 50%;
	right: clamp(24px, 5vw, 84px);
	transform: translateY(-50%);
	width: min(36vw, 74vh, 560px);
	aspect-ratio: 1 / 1;
	pointer-events: none;
}

.blueprint {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.blueprint.is-active {
	opacity: 1;
	transition: opacity 1.2s ease;
}

.blueprint.is-leaving {
	opacity: 0 !important;
	transition: opacity 2.1s ease;
}

.blueprint svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Linework palette: iron-dark and barely-there. The headline is the
   star; the drawing is second-look detail. */
.blueprint .bp-main {
	stroke: rgba(179, 179, 179, 0.26);
	stroke-width: 1.25;
	fill: none;
}

.blueprint .bp-secondary {
	stroke: rgba(179, 179, 179, 0.16);
	stroke-width: 1;
	fill: none;
}

.blueprint .bp-center {
	stroke: rgba(179, 179, 179, 0.09);
	stroke-width: 1;
	stroke-dasharray: 4 5;
	fill: none;
}

.blueprint .bp-dim {
	stroke: rgba(179, 179, 179, 0.18);
	stroke-width: 1;
	fill: none;
	transition: stroke 0.5s ease;
}

.blueprint .bp-node {
	fill: rgba(229, 61, 0, 0.5);
	stroke: none;
}

.blueprint text {
	fill: rgba(179, 179, 179, 0.3);
	font-family: var(--font-body);
	font-size: 8.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: fill 0.5s ease;
}

/* The plotter draw: slow and deliberate. Every stroke carries
   pathLength="1" and a style="--i:n" order. Centerlines, labels,
   and nodes fade in after the linework. */
.js .blueprint :is(.bp-main, .bp-secondary, .bp-dim) {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}

.js .blueprint.is-active :is(.bp-main, .bp-secondary, .bp-dim) {
	animation: bp-draw 2.2s ease-in-out forwards;
	animation-delay: calc(var(--i, 0) * 0.6s);
}

.js .blueprint :is(.bp-center, text, .bp-node) {
	opacity: 0;
	transition: opacity 1.5s ease;
}

.js .blueprint.is-active :is(.bp-center, text, .bp-node) {
	opacity: 1;
	transition-delay: 6s;
}

@keyframes bp-draw {
	to {
		stroke-dashoffset: 0;
	}
}

/* Inspection: the reticle near the drawing ignites its hero dimension.
   Restrained even then. */
.blueprint.is-inspected .bp-dim-hero {
	stroke: rgba(229, 61, 0, 0.55);
}

.blueprint.is-inspected .bp-dim-hero-label {
	fill: rgba(229, 61, 0, 0.7);
}

/* Without JS the first drawing renders static and fully drawn. */
html:not(.js) .blueprint:first-child {
	opacity: 1;
}

/* CAD reticle: crosshair, aperture, coordinate readout. */
.hero.has-reticle {
	cursor: none;
}

.hero.has-reticle a,
.hero.has-reticle button {
	cursor: pointer;
}

.hero__reticle {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.hero.is-reticle-visible .hero__reticle {
	opacity: 1;
}

.hero__reticle-x {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background: rgba(179, 179, 179, 0.16);
	will-change: transform;
}

.hero__reticle-y {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: rgba(179, 179, 179, 0.16);
	will-change: transform;
}

.hero__reticle-center {
	position: absolute;
	top: -14px;
	left: -14px;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(179, 179, 179, 0.35);
	will-change: transform;
}

/* Aperture tick marks. */
.hero__reticle-center::before,
.hero__reticle-center::after {
	content: '';
	position: absolute;
	background: rgba(179, 179, 179, 0.45);
}

.hero__reticle-center::before {
	left: 50%;
	top: -5px;
	bottom: -5px;
	width: 1px;
	background: linear-gradient(
		rgba(179, 179, 179, 0.45) 5px, transparent 5px,
		transparent calc(100% - 5px), rgba(179, 179, 179, 0.45) calc(100% - 5px)
	);
}

.hero__reticle-center::after {
	top: 50%;
	left: -5px;
	right: -5px;
	height: 1px;
	background: linear-gradient(
		90deg,
		rgba(179, 179, 179, 0.45) 5px, transparent 5px,
		transparent calc(100% - 5px), rgba(179, 179, 179, 0.45) calc(100% - 5px)
	);
}

.hero__reticle-readout {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	font-variant-numeric: tabular-nums;
	color: rgba(179, 179, 179, 0.7);
	white-space: nowrap;
	will-change: transform;
}

/* L3: static grain. Gives the black a machined-surface tooth. */
.hero__grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 128px;
}

.hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-block: 140px 120px;
}

.hero__overline {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1;
	color: var(--c-orange);
	margin: 0 0 28px;
	opacity: 0;
	animation: hero-rise 0.7s var(--ease-out) 0.1s both;
}

.hero__tick {
	display: inline-block;
	width: 24px;
	height: 2px;
	background: var(--c-orange);
	vertical-align: middle;
	margin-right: 12px;
	margin-top: -2px;
}

.hero__h1 {
	font-family: var(--font-head);
	font-size: clamp(48px, 10vw, 128px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.035em;
	color: var(--c-white);
	margin: 0 0 36px;
	animation: hero-rise 0.7s var(--ease-out) 0.22s both;
}

.hero__br-mobile {
	display: none;
}

.hero__support {
	list-style: none;
	margin: 0 0 44px;
	padding: 0;
	max-width: 460px;
}

.hero__support li {
	font-size: clamp(16px, 1.4vw, 19px);
	font-weight: 500;
	line-height: 1.6;
	color: var(--c-alloy);
	opacity: 0;
	animation: hero-rise 0.7s var(--ease-out) both;
}

.hero__support li:nth-child(1) { animation-delay: 0.5s; }
.hero__support li:nth-child(2) { animation-delay: 0.59s; }
.hero__support li:nth-child(3) { animation-delay: 0.68s; }

.hero__cta {
	margin: 0;
	opacity: 0;
	animation: hero-rise 0.7s var(--ease-out) 0.82s both;
}

/* L6: scroll hint. Alloy sweep: the datum rule keeps the orange. */
.hero__scroll-hint {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	animation: hero-fade 0.8s ease 1.4s forwards;
}

.hero__scroll-track {
	display: block;
	position: relative;
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.25);
	overflow: hidden;
}

.hero__scroll-sweep {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 20px;
	background: var(--c-alloy);
	animation: hero-scroll-sweep 2.4s ease-in-out infinite;
}

/* L5: datum rule. The ground line the type stands on. */
.hero__datum {
	position: absolute;
	inset: auto 0 0;
	height: 3px;
	background: var(--c-orange);
}

@keyframes hero-rise {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes hero-scroll-sweep {
	0% { transform: translateY(-22px); }
	100% { transform: translateY(44px); }
}

/* Short laptop viewports: keep air around the stack. */
@media (max-height: 700px) {
	.hero__h1 {
		font-size: clamp(44px, 9vw, 96px);
		margin-bottom: 28px;
	}

	.hero__overline { margin-bottom: 22px; }
	.hero__support { margin-bottom: 36px; }
	.hero__content { padding-block: 120px 100px; }
}

/* Below 960px: blueprints sit centered behind the type at reduced
   strength, with all labels and dimensions dropped so nothing
   collides with the headline. */
@media (max-width: 960px) {
	.hero__blueprints {
		right: auto;
		left: 50%;
		transform: translate(-50%, -50%);
		width: min(74vw, 420px);
		opacity: 0.55;
	}

	.blueprint text,
	.blueprint .bp-dim {
		display: none;
	}
}

@media (max-width: 640px) {
	.hero__br-mobile {
		display: inline;
	}
}

/* 10. Reduced motion: the hero rests fully composed. */
@media (prefers-reduced-motion: reduce) {
	.hero__scroll-sweep {
		animation: none;
		transform: translateY(10px);
	}
}

/* 10. Reduced motion */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	/* Durations AND delays: staggered elements would otherwise sit
	   invisible waiting out their delay. */
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		animation-delay: 0s !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0s !important;
	}
}

/* ------------------------------------------------------------------ */
/* Beaker-A fill indicator (micro-loader)                              */
/* The boot overlay carries its own inline copy of these internals so  */
/* the first-load moment never depends on this file's timing.          */
/* ------------------------------------------------------------------ */

.fl-beaker {
	display: inline-block;
	line-height: 0;
	color: var(--c-iron);
}

.fl-beaker svg {
	display: block;
}

.fl-beaker__vessel {
	fill: currentColor;
	opacity: 0.28;
}

.fl-beaker__wave {
	fill: var(--c-orange);
	animation: fl-ripple 3.6s linear infinite;
}

.fl-beaker__liquid {
	transform: translateY(calc((1 - var(--fl-p, 0)) * 59px));
	transition: transform 0.3s ease-out;
	will-change: transform;
}

/* Gentle indeterminate loop: the level breathes, it never sloshes. */
.fl-beaker--breathe .fl-beaker__liquid {
	animation: fl-breathe 2.8s ease-in-out infinite alternate;
	transition: none;
}

.fl-beaker.is-done .fl-beaker__wave {
	animation: none;
}

/* Threshold appearance: pending() mounts the beaker invisible and fades
   it in only once an operation has proven slow. */
.fl-beaker--fade {
	opacity: 0;
	transition: opacity 0.22s ease;
}

.fl-beaker--fade.fl-beaker--in {
	opacity: 1;
}

@keyframes fl-ripple {
	to {
		transform: translateX(-25.4px);
	}
}

@keyframes fl-breathe {
	from {
		transform: translateY(38px);
	}

	to {
		transform: translateY(15px);
	}
}

/* Inside a button: sits beside the label, inherits the button's color. */
.btn .fl-beaker {
	color: currentColor;
	margin-left: 10px;
	vertical-align: -3px;
}

.btn .fl-beaker svg {
	width: 16px;
	height: 18px;
}

@media (prefers-reduced-motion: reduce) {
	.fl-beaker__wave {
		animation: none !important;
	}

	.fl-beaker__liquid,
	.fl-beaker--breathe .fl-beaker__liquid {
		animation: none !important;
		transition: none !important;
		transform: none !important; /* static, filled mark */
	}
}

/* ------------------------------------------------------------------ */
/* Search and 404                                                      */
/* ------------------------------------------------------------------ */

.search-form {
	max-width: 560px;
	margin-bottom: 40px;
}

.search-form__row {
	display: flex;
	gap: 10px;
}

.search-form__row .fl-form__input {
	flex: 1;
}

.notfound-routes__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 32px;
}

.entry-teaser {
	padding: 22px 0;
	border-bottom: 1px solid #E8E7E4;
	max-width: 760px;
}

.entry-teaser .entry-title {
	margin: 4px 0 8px;
	font-size: 20px;
}

.entry-teaser .entry-title a {
	color: var(--c-black);
	text-decoration: none;
}

.entry-teaser .entry-title a:hover {
	color: var(--c-orange-text);
}

.entry-teaser .entry-summary {
	color: var(--c-iron);
	font-size: 15px;
}

/* ------------------------------------------------------------------ */
/* Editor block patterns: the branded CTA button renders as the brand  */
/* button front and back.                                              */
/* ------------------------------------------------------------------ */

.falllabs-cta .wp-block-button__link {
	background: var(--c-orange);
	color: var(--c-white);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
	border-radius: var(--radius);
	padding: 13px 26px;
	transition: background 0.2s ease;
}

.falllabs-cta .wp-block-button__link:hover {
	background: #C63500;
}

/* Keyboard focus restore where :focus removes the outline. */
.support-search__input:focus-visible {
	outline: 2px solid var(--c-orange);
	outline-offset: 1px;
}

/* Sitewide search: header trigger and command-palette overlay.
   The trigger sits at the header's right edge on desktop and beside
   the hamburger on mobile; the overlay is a top-anchored panel on
   desktop and full-screen on small viewports. */

.site-header__search {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: -10px -10px -10px 0; /* right pull aligns the glyph, not the touch box, with the content edge */
	padding: 0;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: var(--radius);
	color: var(--c-on-dark-soft);
	cursor: pointer;
	transition: color 0.2s ease;
}

.site-header__search:hover,
.site-header__search:focus-visible {
	color: var(--c-white);
}

@media (max-width: 860px) {
	.site-header__search {
		margin-left: auto;
		margin-right: -6px;
	}
}

.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	opacity: 0;
	transition: opacity 0.18s ease;
}

.search-overlay[hidden] {
	display: none;
}

.search-overlay.is-open {
	opacity: 1;
}

.search-overlay__scrim {
	position: absolute;
	inset: 0;
	background: rgba(29, 29, 29, 0.72);
}

@supports (backdrop-filter: blur(6px)) {
	.search-overlay__scrim {
		background: rgba(29, 29, 29, 0.6);
		backdrop-filter: blur(6px);
	}
}

.search-overlay__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(640px, calc(100% - 2 * var(--gutter)));
	max-height: 68vh;
	margin: 14vh auto 0;
	background: #1A1A1A;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
	transform: translateY(8px);
	transition: transform 0.22s var(--ease-out);
}

.search-overlay.is-open .search-overlay__panel {
	transform: none;
}

.search-overlay__form {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: border-color 0.2s ease;
}

.search-overlay__form:focus-within {
	border-bottom-color: rgba(229, 61, 0, 0.55);
}

.search-overlay__glyph {
	flex-shrink: 0;
	color: var(--c-on-dark-soft);
}

.search-overlay__input {
	flex: 1;
	min-width: 0;
	padding: 6px 0;
	background: transparent;
	border: 0;
	outline: 0; /* the form's focus-within border carries the focus state */
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 500;
	color: var(--c-on-dark);
	caret-color: var(--c-orange);
}

.search-overlay__input::placeholder {
	color: var(--c-on-dark-faint);
}

.search-overlay__input::-webkit-search-cancel-button,
.search-overlay__input::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance: none;
}

.search-overlay__spinner {
	position: relative;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.search-overlay__close {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	margin: -8px -10px -8px 0;
	padding: 0;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: var(--radius);
	color: var(--c-on-dark-soft);
	cursor: pointer;
	transition: color 0.2s ease;
}

.search-overlay__close:hover,
.search-overlay__close:focus-visible {
	color: var(--c-white);
}

.search-overlay__close:focus-visible {
	outline: 2px solid var(--c-orange);
	outline-offset: -2px;
}

.search-overlay__body {
	overflow-y: auto;
	padding: 8px;
}

.search-overlay__status {
	min-height: 1em;
	margin: 6px 12px;
	font-size: 12.5px;
	color: var(--c-on-dark-faint);
}

.search-overlay__results {
	list-style: none;
	margin: 0;
	padding: 0;
}

.search-overlay__result {
	display: flex;
	align-items: baseline;
	gap: 14px;
	padding: 11px 12px;
	border-radius: var(--radius);
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.search-overlay__result:hover,
.search-overlay__result:focus-visible {
	background: rgba(255, 255, 255, 0.05);
}

.search-overlay__result:focus-visible {
	outline: 2px solid var(--c-orange);
	outline-offset: -2px;
}

.search-overlay__type {
	flex-shrink: 0;
	width: 84px;
	font-family: var(--font-body);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-on-dark-faint);
}

.search-overlay__title {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	color: var(--c-on-dark);
}

.search-overlay__result:hover .search-overlay__title {
	color: var(--c-white);
}

.search-overlay__all {
	display: block;
	margin: 4px 4px 6px;
	padding: 10px 12px 12px;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--c-on-dark);
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.search-overlay__all span {
	color: var(--c-orange);
}

.search-overlay__all:hover,
.search-overlay__all:focus-visible {
	background: rgba(255, 255, 255, 0.05);
}

.search-overlay__all:focus-visible {
	outline: 2px solid var(--c-orange);
	outline-offset: -2px;
}

.search-overlay__hints {
	display: flex;
	gap: 18px;
	padding: 10px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 11.5px;
	color: var(--c-on-dark-faint);
}

.search-overlay__hints kbd {
	margin-right: 4px;
	padding: 2px 5px;
	font-family: var(--font-body);
	font-size: 10.5px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 3px;
}

body.search-open {
	overflow: hidden;
}

@media (max-width: 640px) {
	.search-overlay__panel {
		width: 100%;
		max-height: none;
		height: 100dvh;
		margin: 0;
		border: 0;
		border-radius: 0;
	}

	.search-overlay__body {
		flex: 1;
	}

	.search-overlay__hints {
		display: none; /* keyboard hints mean nothing on touch */
	}

	.search-overlay__type {
		width: 72px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.search-overlay,
	.search-overlay__panel {
		transition: none;
		transform: none;
	}
}

/* Press & Brand Assets: the marks previewed on Lab Black. */
.press-marks {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.press-marks__tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-height: 220px;
	padding: 32px 24px;
	background: var(--c-black);
	border-radius: var(--radius);
}

.press-marks__tile img {
	max-width: min(70%, 260px);
	height: auto;
}

.press-marks__label {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-on-dark-soft);
}

.press-marks__download {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin: 0;
}

.press-marks__size {
	font-size: 13px;
	color: var(--c-iron);
}

@media (max-width: 760px) {
	.press-marks {
		grid-template-columns: 1fr;
	}

	.press-marks__tile {
		min-height: 170px;
	}
}

/* Founder section (Our Story): portrait, third-person credentials,
   first-person signed note. White ground between the warm diff grid
   and the dark closing statement. The portrait slot is a fixed 4:5
   frame so the real image drops in with no layout work; the --empty
   modifier carries the placeholder treatment only. */
.founder {
	background: var(--c-white);
}

.founder__inner {
	display: grid;
	grid-template-columns: minmax(260px, 340px) 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}

.founder__portrait {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius);
	overflow: hidden;
}

.founder__portrait img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.founder__portrait--empty {
	background: #ECEAE6;
	border: 1px dashed var(--c-alloy);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
}

.founder mark.legal-todo {
	background: var(--c-orange);
	color: var(--c-white);
	font-weight: 600;
	font-size: 13.5px;
	line-height: 1.8;
	padding: 2px 8px;
	border-radius: var(--radius);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.founder__body .overline {
	display: block;
	margin-bottom: 14px;
}

.founder__body h2 {
	margin: 0;
}

.founder__creds {
	margin-top: 20px;
}

.founder__creds p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-iron);
	max-width: 56ch;
	margin: 0 0 14px;
}

.founder__creds p:last-child {
	margin-bottom: 0;
}

.founder__note {
	margin-top: 28px;
	padding: 22px 26px;
	background: var(--c-warm-white);
	border-left: 2px solid var(--c-orange);
	border-radius: var(--radius);
	max-width: 60ch;
}

.founder__note p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--c-iron);
	margin: 0 0 12px;
}

.founder__signoff {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 17px;
	color: var(--c-black);
	margin-bottom: 0;
}

@media (max-width: 960px) {
	.founder__inner {
		grid-template-columns: 1fr;
	}

	.founder__media {
		max-width: 320px;
	}
}

/* Review fixes (2026-09-02). */

/* Hub grids with six tiles read as 3+3, not 4+2. */
.support-tiles__grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
	.support-tiles__grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.support-tiles__grid--three {
		grid-template-columns: 1fr;
	}
}

/* Category tile blurbs clamp on phones so a two-up grid stays even. */
@media (max-width: 640px) {
	.cat-tiles__desc {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
}

/* An overline that links (hero back-links) keeps the overline look. */
.overline a {
	color: inherit;
	text-decoration: none;
}

.overline a:hover,
.overline a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Mid-size desktops: the blueprint stage sat under the headline's
   right end at ~1280px; a narrower stage there keeps the FIG label
   clear of the type. Motion untouched. */
@media (min-width: 961px) and (max-width: 1366px) {
	.hero__blueprints {
		width: min(31vw, 74vh, 500px);
	}
}

/* Category tiles: three across on desktop so six reads 3+3 and five
   reads 3+2, never 4+1; phones keep the two-up auto grid. */
@media (min-width: 961px) {
	.cat-tiles {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ------------------------------------------------------------------
   Motion polish (2026-09-02): every interaction below animates only
   opacity and transform (compositor-only), hover effects exist only
   where hover exists, and the locked reveal/hero timings are untouched.
   ------------------------------------------------------------------ */

/* Card image layers. */
.card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease-out), opacity 0.45s ease;
}

.card-img--color {
	opacity: 0;
}

.family-card:focus-within .card-img--color,
.route-card:focus-visible .card-img--color {
	opacity: 1;
}

@media (hover: hover) {
	.family-card:hover .card-img--color,
	.route-card:hover .card-img--color {
		opacity: 1;
	}

	.family-card:hover .card-img,
	.route-card:hover .card-img {
		transform: scale(1.03);
	}
}

/* Tiles lift a hair under the pointer; the border darkens with them. */
.support-tile,
.cat-tiles__link,
.family-card {
	transition: border-color 0.25s ease, transform 0.3s var(--ease-out);
}

@media (hover: hover) {
	.support-tile:hover,
	.cat-tiles__link:not(.cat-tiles__link--static):hover,
	.family-card:hover {
		transform: translateY(-3px);
	}
}

/* Desktop nav: a hairline in Signal Orange grows in from the left
   under the active item; dropdown items settle in with a short
   stagger instead of the panel appearing whole. */
@media (min-width: 861px) {
	.site-nav__list > li > a {
		position: relative;
	}

	.site-nav__list > li > a::before {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: -6px;
		height: 1px;
		background: var(--c-orange);
		transform: scaleX(0);
		transform-origin: left center;
		transition: transform 0.3s var(--ease-out);
	}

	.site-nav__list > .menu-item-has-children > a::before {
		right: 14px; /* stop short of the chevron */
	}

	.site-nav__list > li > a:focus-visible::before,
	.site-nav__list > li.is-open > a::before,
	.site-nav__list > li:focus-within > a::before {
		transform: scaleX(1);
	}

	.site-nav__list > .menu-item-has-children > .sub-menu > li {
		opacity: 0;
		transform: translateY(-4px);
		transition: opacity 0.22s ease, transform 0.3s var(--ease-out);
	}

	.site-nav__list > .menu-item-has-children.is-open > .sub-menu > li,
	.site-nav__list > .menu-item-has-children:focus-within > .sub-menu > li {
		opacity: 1;
		transform: none;
	}

	.site-nav__list > .menu-item-has-children > .sub-menu > li:nth-child(1) { transition-delay: 0.03s; }
	.site-nav__list > .menu-item-has-children > .sub-menu > li:nth-child(2) { transition-delay: 0.06s; }
	.site-nav__list > .menu-item-has-children > .sub-menu > li:nth-child(3) { transition-delay: 0.09s; }
	.site-nav__list > .menu-item-has-children > .sub-menu > li:nth-child(4) { transition-delay: 0.12s; }
	.site-nav__list > .menu-item-has-children > .sub-menu > li:nth-child(5) { transition-delay: 0.15s; }
	.site-nav__list > .menu-item-has-children > .sub-menu > li:nth-child(6) { transition-delay: 0.18s; }
	.site-nav__list > .menu-item-has-children > .sub-menu > li:nth-child(7) { transition-delay: 0.21s; }
	.site-nav__list > .menu-item-has-children > .sub-menu > li:nth-child(8) { transition-delay: 0.24s; }
}

@media (min-width: 861px) and (hover: hover) {
	.site-nav__list > li:hover > a::before {
		transform: scaleX(1);
	}

	.site-nav__list > .menu-item-has-children:hover > .sub-menu > li {
		opacity: 1;
		transform: none;
	}
}

/* Mobile overlay: items settle in one after another as it opens. */
@media (max-width: 860px) {
	.site-nav__list > li {
		opacity: 0;
		transform: translateY(10px);
		transition: opacity 0.35s ease, transform 0.45s var(--ease-out);
	}

	body.nav-open .site-nav__list > li {
		opacity: 1;
		transform: none;
	}

	body.nav-open .site-nav__list > li:nth-child(1) { transition-delay: 0.05s; }
	body.nav-open .site-nav__list > li:nth-child(2) { transition-delay: 0.1s; }
	body.nav-open .site-nav__list > li:nth-child(3) { transition-delay: 0.15s; }
	body.nav-open .site-nav__list > li:nth-child(4) { transition-delay: 0.2s; }
	body.nav-open .site-nav__list > li:nth-child(5) { transition-delay: 0.25s; }
	body.nav-open .site-nav__list > li:nth-child(6) { transition-delay: 0.3s; }
}
/* Prelaunch landing (prelaunch.php): the real hero and bands with a
   wordmark-only header and a contact-only footer. */
.site-header--prelaunch .site-header__inner {
	justify-content: flex-start;
}

.prelaunch__mission .mission__lede {
	max-width: 56ch;
	margin: 24px 0 0;
}

.prelaunch__request .overline {
	display: block;
	margin-bottom: 14px;
}

.prelaunch__sub {
	max-width: 56ch;
	margin-left: auto;
	margin-right: auto;
}

.prelaunch__form {
	max-width: 520px;
	margin: 28px auto 0;
}

.fl-form--inline {
	display: flex;
	gap: 12px;
}

.fl-form--inline .fl-form__input {
	flex: 1 1 auto;
	min-width: 0;
}

.fl-form--inline .btn {
	flex: 0 0 auto;
	white-space: nowrap;
}

.prelaunch__todo {
	margin: 14px 0 0;
	font-size: 13.5px;
	line-height: 1.8;
	text-align: left;
}

.site-footer--prelaunch .site-footer__inner {
	display: block;
}

@media (max-width: 600px) {
	.fl-form--inline {
		flex-direction: column;
	}
}
/* Contact glyphs: a line icon leads each contact line in the footer
   and each channel on the Contact page (decorative; text carries it). */
/* Scoped under the block so it outranks the display:block rule above for span/a. */
.site-footer__contact .site-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--c-alloy);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__contact .site-footer__contact-item + .site-footer__contact-item {
	margin-top: 4px;
}

.site-footer__contact-item .contact-icon {
	flex: 0 0 16px;
	margin-top: 5px; /* optical center on a 26px line */
	color: var(--c-on-dark-faint);
	transition: color 0.2s ease;
}

.site-footer__contact-item .site-footer__contact-text {
	display: block;
}

.site-footer__contact a.site-footer__contact-item:hover,
.site-footer__contact a.site-footer__contact-item:hover .contact-icon {
	color: var(--c-white);
}

.contact__channel h2 {
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact__channel h2 .contact-icon {
	flex: 0 0 16px;
	color: var(--c-orange-text);
}

.contact__channel--soon h2 .contact-icon {
	color: var(--c-alloy);
}
/* Prelaunch hero photograph (hero--photo): a graded worker-at-height
   image replaces the blueprint stage. Directional darkening keeps the
   type readable on the left without crushing the picture on the right. */
.hero--photo .hero__photo {
	position: absolute;
	inset: 0;
	display: block;
}

.hero--photo .hero__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 100% 50%;
}

.hero--photo .hero__photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(29, 29, 29, 0.9) 0%, rgba(29, 29, 29, 0.78) 30%, rgba(29, 29, 29, 0.32) 58%, rgba(29, 29, 29, 0.08) 100%),
		linear-gradient(180deg, rgba(29, 29, 29, 0.42) 0%, rgba(29, 29, 29, 0) 34%, rgba(29, 29, 29, 0) 62%, rgba(29, 29, 29, 0.82) 100%);
}

.hero--photo .hero__grain {
	opacity: 0.04;
}

@media (min-width: 701px) and (max-width: 1100px) {
	/* Tablet: the visible window is about half the frame, so center it on the crew. */
	.hero--photo .hero__photo img {
		object-position: 70% 50%;
	}
}

@media (max-width: 700px) {
	/* Mobile: the crew stays in the top half; the type stands on the
	   structure's dark ground at the bottom. */
	.hero--photo {
		align-items: flex-end;
	}

	.hero--photo .hero__photo img {
		object-position: 50% 0%;
	}

	.hero--photo .hero__photo::after {
		background:
			linear-gradient(180deg, rgba(29, 29, 29, 0.5) 0%, rgba(29, 29, 29, 0.05) 24%, rgba(29, 29, 29, 0.45) 50%, rgba(29, 29, 29, 0.9) 74%, rgba(29, 29, 29, 0.96) 100%);
	}

	.hero--photo .hero__content {
		padding-block: 140px 88px;
	}
}

/* Prelaunch footer: one-page site, so the brand block runs as a compact
   two-column band (lockup left, contact and channels right). */
.site-footer--prelaunch {
	padding-top: clamp(36px, 4.5vw, 52px);
}

.site-footer--prelaunch .site-footer__inner {
	padding-bottom: clamp(28px, 3.5vw, 40px);
}

.site-footer--prelaunch .site-footer__brand {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: clamp(40px, 6vw, 88px);
	align-items: start;
}

.site-footer--prelaunch .site-footer__lockup {
	grid-row: 1 / 3;
	margin-bottom: 0;
}

.site-footer--prelaunch .site-footer__contact {
	padding-top: 6px;
}

.site-footer--prelaunch .site-footer__social {
	margin-top: 16px;
}

.site-footer--prelaunch .site-footer__bottom {
	padding: 16px 0;
}

@media (max-width: 600px) {
	.site-footer--prelaunch .site-footer__brand {
		display: block;
	}

	.site-footer--prelaunch .site-footer__lockup {
		margin-bottom: 20px;
	}
}
/* WPForms-rendered Request Access form (WPForms CSS is switched off; the
   theme styles it). The form_class lands on the .wpforms-container, so the
   inline row is the inner form: field container grows, button stays put. */
.fl-form--wpforms {
	display: block;
}

.fl-form--wpforms .wpforms-form {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	--fl-inline-h: 52px; /* field and button share one fixed height */
}

.fl-form--wpforms .wpforms-field-container {
	flex: 1 1 auto;
	min-width: 0;
}

.fl-form--wpforms .wpforms-field {
	margin: 0;
	padding: 0;
}

.fl-form--wpforms .wpforms-label-hide,
.fl-form--wpforms .wpforms-screen-reader-element {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.fl-form--wpforms .wpforms-field-email input {
	width: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--c-black);
	background: var(--c-white);
	border: 1px solid #DDDCD8;
	border-radius: var(--radius);
	height: var(--fl-inline-h);
	padding: 0 16px;
	transition: border-color 0.2s ease;
}

.fl-form--wpforms .wpforms-field-email input:focus {
	outline: none;
	border-color: var(--c-black);
}

.fl-form--wpforms .wpforms-field-email input:focus-visible {
	outline: 2px solid var(--c-orange);
	outline-offset: 1px;
}

.fl-form--wpforms .wpforms-submit-container {
	flex: 0 0 auto;
	display: flex; /* the button becomes a flex item: no inline-block baseline offset */
	margin: 0;
	padding: 0;
}

.fl-form--wpforms .wpforms-submit {
	display: inline-flex;
	align-items: center;
	height: var(--fl-inline-h);
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
	white-space: nowrap;
}

.fl-form--wpforms .wpforms-submit-spinner {
	display: none;
}

/* Validation and confirmation: quiet, left-aligned, in the band's type. */
.fl-form--wpforms .wpforms-error,
.fl-form--wpforms .wpforms-error-container {
	margin: 8px 0 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--c-orange-text, var(--c-orange));
	text-align: left;
}

.fl-form--wpforms .wpforms-confirmation-container-full {
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	color: var(--c-white);
	font-size: 15px;
	line-height: 1.6;
	text-align: left;
}

.fl-form--wpforms .wpforms-confirmation-container-full p {
	margin: 0;
}

@media (max-width: 600px) {
	.fl-form--wpforms .wpforms-form {
		flex-direction: column;
		align-items: stretch; /* stacked: field and button both full width */
	}

	.fl-form--wpforms .wpforms-submit {
		width: 100%;
		justify-content: center;
	}
}

/* Built-in Request Access form (inc/request-access.php): honeypot stays
   out of sight, and the result message sits above the field. */
.fl-form__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.prelaunch__notice {
	max-width: 40ch;
	margin: 0 auto;
	padding: 0;
	font-size: 17px;
	line-height: 1.6;
	color: var(--c-white);
	text-align: center;
}

/* An error still needs the form underneath it, so it keeps a little
   separation and takes the accent colour. */
.prelaunch__notice--error {
	margin-bottom: 20px;
	color: var(--c-orange-text, var(--c-orange));
}

/* Hero tagline placed under the headline (prelaunch landing): no bottom
   gap of its own, and it arrives after the headline rather than before. */
.hero__overline--below {
	margin: 0;
	animation-delay: 0.5s;
}

/* Request band: the approved line carries the section on its own, so it
   is set a step below the display headings and kept to a readable measure. */
.prelaunch__heading {
	max-width: 22ch;
	margin-inline: auto;
	font-size: clamp(28px, 3.4vw, 44px);
}
/* Line under the signup button (landing). Quiet, sits with the form. */
.prelaunch__follow {
	margin: 16px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--c-on-dark-faint);
	text-align: center;
}
/* Landing: a slightly tighter measure so the trade list breaks after
   "the tower climbers," and keeps "the linemen" together. */
.prelaunch__who .story-block__copy p {
	max-width: 53ch;
}

/* 20. Consent banner (CookieYes)
   The plugin's free tier fixes its colours as inline styles, so the theme
   overrides with !important. Same system as the rest of the site: Lab Black
   ground, Outfit for title and buttons, Inter body, Signal Orange on Accept
   and on a switched-on toggle, nowhere else. Toggles only render once a
   category holds a cookie. */
.cky-consent-container .cky-consent-bar,
.cky-modal .cky-preference-center {
	background-color: var(--c-black) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: var(--radius) !important;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
	font-family: var(--font-body);
}
.cky-consent-bar .cky-title,
.cky-preference-center .cky-preference-title,
.cky-preference-center .cky-accordion-btn {
	font-family: var(--font-head) !important;
	font-weight: 600 !important;
	color: var(--c-white) !important;
	letter-spacing: 0 !important;
}
.cky-consent-bar .cky-title {
	font-size: 18px !important;
	margin-bottom: 10px !important;
}
.cky-preference-center .cky-preference-title {
	font-size: 20px !important;
}
.cky-notice-des,
.cky-notice-des p,
.cky-preference-content-wrapper,
.cky-preference-content-wrapper p,
.cky-accordion-header-des,
.cky-accordion-header-des p,
.cky-audit-table,
.cky-empty-cookies-text {
	color: var(--c-on-dark-soft) !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
}
.cky-notice-des a.cky-policy,
.cky-preference-content-wrapper .cky-show-desc-btn,
.cky-footer-wrapper a {
	color: var(--c-white) !important;
	background: none !important;
	border: 0 !important;
	text-decoration: underline !important;
	text-underline-offset: 3px;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
}
.cky-btn {
	font-family: var(--font-head) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em !important;
	line-height: 1 !important;
	border-radius: var(--radius) !important;
	border-width: 1.5px !important;
	border-style: solid !important;
	padding: 13px 20px !important;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cky-btn.cky-btn-accept {
	background-color: var(--c-orange) !important;
	border-color: var(--c-orange) !important;
	color: var(--c-white) !important;
}
.cky-btn.cky-btn-accept:hover {
	background-color: #CC3500 !important;
	border-color: #CC3500 !important;
}
.cky-btn.cky-btn-reject,
.cky-btn.cky-btn-customize,
.cky-btn.cky-btn-preferences {
	background-color: transparent !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
	color: var(--c-white) !important;
}
.cky-btn.cky-btn-reject:hover,
.cky-btn.cky-btn-customize:hover,
.cky-btn.cky-btn-preferences:hover {
	border-color: var(--c-white) !important;
}
.cky-preference-center .cky-always-active {
	color: var(--c-alloy) !important;
	font-family: var(--font-head) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase;
}
.cky-preference-center .cky-accordion-item,
.cky-preference-center .cky-preference-header,
.cky-preference-center .cky-footer-wrapper {
	border-color: rgba(255, 255, 255, 0.12) !important;
}
.cky-preference-center .cky-audit-table {
	background-color: #2A2A2A !important;
	border-color: rgba(255, 255, 255, 0.12) !important;
}
.cky-preference-center .cky-footer-shadow {
	background: linear-gradient(rgba(29, 29, 29, 0) 0%, var(--c-black) 100%) !important;
}
.cky-preference-center .cky-btn-close img {
	opacity: 0.8;
}
/* The floating revisit button is off in the plugin; the footer Cookie
   Settings link is the control. Guard it here so a plugin update cannot
   bring the icon back. */
.cky-btn-revisit-wrapper {
	display: none !important;
}
.cky-switch input[type="checkbox"] {
	background: var(--c-iron) !important;
}
.cky-switch input[type="checkbox"]:checked {
	background: var(--c-orange) !important;
}
.cky-btn:focus-visible,
.cky-notice-des a.cky-policy:focus-visible,
.cky-preference-content-wrapper .cky-show-desc-btn:focus-visible,
.cky-accordion-header .cky-accordion-btn:focus-visible,
.cky-preference-header .cky-btn-close:focus-visible,
.cky-switch input[type="checkbox"]:focus-visible,
.cky-footer-wrapper a:focus-visible {
	outline: 2px solid var(--c-orange) !important;
	outline-offset: 3px !important;
}
