/* Shepherd and Stone — custom theme */

:root {
	--ink: #152028;
	--ink-soft: #3a4750;
	--paper: #eef2f0;
	--paper-deep: #e2e8e5;
	--slate: #134359;
	--timber: #e76817;
	--timber-deep: #c45510;
	--white: #ffffff;
	--line: rgba(21, 32, 40, 0.12);

	--font-display: "Bricolage Grotesque", system-ui, sans-serif;
	--font-body: "Source Sans 3", system-ui, sans-serif;

	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2.5rem;
	--space-5: 4rem;
	--space-6: 6.5rem;
	--space-7: 9rem;

	--shell: min(1120px, calc(100% - 2.5rem));
	--shell-wide: min(1280px, calc(100% - 2.5rem));
	--radius: 2px;

	--header-h: 4.25rem;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--focus: 0 0 0 3px rgba(231, 104, 23, 0.45);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1rem);
}

html.has-nav-open {
	overflow: hidden;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--timber-deep);
}

:focus-visible {
	outline: 2px solid var(--timber);
	outline-offset: 3px;
	border-radius: 2px;
}

h1,
h2,
h3,
.site-brand__name,
.hero__brand,
.cta-band__brand {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.05;
	text-wrap: balance;
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--ink);
	color: var(--white);
	padding: 0.75rem 1rem;
	z-index: 1000;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

.shell {
	width: var(--shell-wide);
	margin-inline: auto;
}

.shell--narrow {
	width: var(--shell);
	max-width: 42rem;
}

/* Header */

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	height: var(--header-h);
	background: rgba(238, 242, 240, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
	transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

/* Only pages that open on a full-bleed hero get the transparent treatment. */
body.ss-has-hero .site-header:not(.is-scrolled):not(.is-open) {
	background: transparent;
	backdrop-filter: none;
	border-bottom-color: transparent;
}

body.ss-has-hero .site-header:not(.is-scrolled):not(.is-open) .site-brand__name,
body.ss-has-hero .site-header:not(.is-scrolled):not(.is-open) .nav-list a,
body.ss-has-hero .site-header:not(.is-scrolled):not(.is-open) .nav-toggle {
	color: var(--white);
}

body.ss-has-hero .site-header:not(.is-scrolled):not(.is-open) .site-nav__cta {
	background: var(--white);
	color: var(--ink);
}

.site-header__inner {
	width: var(--shell-wide);
	height: 100%;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-brand {
	text-decoration: none;
	position: relative;
	z-index: 2;
}

.site-brand__name {
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 800;
	letter-spacing: -0.04em;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	display: inline-block;
	padding: 0.15rem 0;
	border-bottom: 2px solid transparent;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.nav-list a:hover {
	color: var(--timber-deep);
}

/* Marked with a rule as well as weight, so the current page isn't signalled by colour alone. */
.nav-list [aria-current="page"],
.nav-list .current-menu-item > a {
	border-bottom-color: var(--timber);
	font-weight: 700;
}

.nav-toggle {
	display: none;
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0.4rem;
	cursor: pointer;
	color: var(--ink);
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 1.4rem;
	height: 2px;
	background: currentColor;
	position: relative;
	transition: transform 0.3s var(--ease), opacity 0.2s linear;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before {
	top: -6px;
}

.nav-toggle__bars::after {
	top: 6px;
}

.site-header.is-open .nav-toggle__bars {
	background: transparent;
}

.site-header.is-open .nav-toggle__bars::before {
	transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle__bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3rem;
	padding: 0.85rem 1.4rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease),
		transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
	transform: translateY(-1px);
	color: inherit;
}

.btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

.btn--small {
	min-height: 2.4rem;
	padding: 0.55rem 1rem;
	font-size: 0.88rem;
}

.btn--primary {
	background: var(--timber);
	color: var(--white);
}

.btn--primary:hover:not(:disabled) {
	background: var(--timber-deep);
	color: var(--white);
}

.btn--ghost {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--white);
	background: transparent;
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
}

.btn--ghost-dark {
	border-color: rgba(21, 32, 40, 0.25);
	color: var(--ink);
	background: transparent;
}

.btn--ghost-dark:hover:not(:disabled) {
	border-color: var(--ink);
	color: var(--ink);
}

.site-nav__cta {
	background: var(--timber);
	color: var(--white);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

/* Hero */

.hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	align-items: end;
	color: var(--white);
	overflow: hidden;
	background: #101c24;
}

.hero__media {
	position: absolute;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scaleX(-1) scale(1.04);
	animation: hero-zoom 18s var(--ease) forwards;
}

.hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(15, 24, 30, 0.4) 0%, rgba(15, 24, 30, 0.18) 35%, rgba(15, 24, 30, 0.74) 100%),
		linear-gradient(90deg, rgba(19, 67, 89, 0.3), transparent 55%);
}

.hero__content {
	position: relative;
	z-index: 1;
	width: var(--shell-wide);
	margin: 0 auto;
	padding: calc(var(--header-h) + 2rem) 0 4.5rem;
}

.hero__brand {
	margin: 0 0 1rem;
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.045em;
}

.hero__title {
	margin: 0 0 1rem;
	max-width: 14ch;
	font-size: clamp(2.6rem, 7vw, 5.4rem);
	font-weight: 800;
}

.hero__lede {
	margin: 0 0 1.75rem;
	max-width: 32rem;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

@keyframes hero-zoom {
	from {
		transform: scaleX(-1) scale(1.06);
	}
	to {
		transform: scaleX(-1) scale(1);
	}
}

/* Sections */

.section {
	padding: var(--space-6) 0;
}

.section--intro {
	padding-top: var(--space-7);
	padding-bottom: var(--space-5);
}

.eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--slate);
}

.section-title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	max-width: 16ch;
}

.section-title--tight {
	max-width: 13ch;
}

.section-title--wide {
	max-width: 20ch;
}

.section-copy {
	color: var(--ink-soft);
	font-size: 1.15rem;
	max-width: 42rem;
}

/* Materials */

.materials__head {
	margin-bottom: var(--space-4);
}

.materials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.material {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.material__image {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--paper-deep);
}

.material__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}

.material:hover .material__image img {
	transform: scale(1.04);
}

.material h3 {
	margin: 0;
	font-size: 1.35rem;
}

.material p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 1.02rem;
}

/* Purpose split */

.section--purpose {
	padding: 0;
}

.purpose {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	min-height: 70vh;
}

.purpose__media {
	min-height: 420px;
	overflow: hidden;
}

.purpose__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.purpose__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	padding: clamp(2rem, 6vw, 5rem);
	background: var(--slate);
	color: var(--white);
}

.purpose__copy .eyebrow {
	color: rgba(255, 255, 255, 0.7);
}

.purpose__copy .section-title {
	color: var(--white);
	max-width: 12ch;
}

.purpose__copy p {
	color: rgba(255, 255, 255, 0.88);
	max-width: 34rem;
}

.purpose__copy .btn--primary {
	align-self: flex-start;
	margin-top: 0.5rem;
}

/* Quotes */

.section--quotes {
	background: var(--paper-deep);
}

.quotes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: var(--space-4);
}

.quote {
	margin: 0;
	padding: 1.5rem 0 0;
	border-top: 1px solid rgba(21, 32, 40, 0.18);
}

.quote blockquote {
	margin: 0 0 1.25rem;
}

.quote p {
	font-size: 1.12rem;
	line-height: 1.5;
	letter-spacing: -0.01em;
}

.quote figcaption {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--slate);
}

/* Final CTA */

.section--cta {
	padding-top: var(--space-5);
	padding-bottom: var(--space-6);
}

.cta-band {
	width: var(--shell-wide);
	margin-inline: auto;
	padding: clamp(2.5rem, 6vw, 4.5rem);
	background:
		radial-gradient(120% 120% at 0% 0%, rgba(231, 104, 23, 0.18), transparent 50%),
		linear-gradient(145deg, #102833 0%, #1a3f52 55%, #0f242e 100%);
	color: var(--white);
}

.cta-band__brand {
	margin: 0 0 0.75rem;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
}

.cta-band__title {
	margin: 0 0 0.85rem;
	max-width: 14ch;
	font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.cta-band__copy {
	margin: 0 0 1.5rem;
	max-width: 34rem;
	color: rgba(255, 255, 255, 0.86);
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.cta-band .btn--ghost-dark {
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--white);
}

.cta-band .btn--ghost-dark:hover {
	border-color: var(--white);
	color: var(--white);
}

/* Interior pages */

.page-hero {
	padding: calc(var(--header-h) + 4rem) 0 2.5rem;
	background:
		radial-gradient(90% 120% at 100% 0%, rgba(231, 104, 23, 0.12), transparent 50%),
		linear-gradient(180deg, #e7ece9 0%, var(--paper) 100%);
}

.page-hero__title {
	margin: 0 0 0.85rem;
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	max-width: 16ch;
}

.page-hero__title:last-child {
	margin-bottom: 0;
}

.page-hero__lede {
	margin: 0;
	max-width: 38rem;
	color: var(--ink-soft);
	font-size: 1.12rem;
}

.section--thanks {
	min-height: 68vh;
	display: flex;
	align-items: center;
	padding-top: calc(var(--header-h) + 3rem);
}

/* Long-form content */

.prose {
	max-width: 46rem;
	color: var(--ink-soft);
}

.prose > *:first-child {
	margin-top: 0;
}

/* The lead table needs the full column, not the reading measure. */
.prose:has(.lead-board) {
	max-width: none;
}

.prose h2 {
	margin: 2.5rem 0 0.85rem;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	color: var(--ink);
}

.prose h3 {
	margin: 2rem 0 0.65rem;
	font-size: 1.3rem;
	color: var(--ink);
}

.prose ul,
.prose ol {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
}

.prose li {
	margin-bottom: 0.4rem;
}

.prose a {
	color: var(--timber-deep);
	font-weight: 600;
}

.prose blockquote {
	margin: 1.75rem 0;
	padding-left: 1.25rem;
	border-left: 3px solid var(--timber);
	font-size: 1.2rem;
	color: var(--ink);
}

.prose img {
	margin: 1.75rem 0;
}

.prose table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
}

.prose th,
.prose td {
	padding: 0.65rem 0.75rem;
	border-bottom: 1px solid var(--line);
	text-align: left;
}

/* Post list */

.post-list {
	display: grid;
	gap: 2rem;
	max-width: 46rem;
}

.post-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.6rem;
}

.post-card__title a {
	text-decoration: none;
}

.post-card__excerpt {
	margin: 0;
	color: var(--ink-soft);
}

.pagination,
.page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2.5rem;
}

.pagination .page-numbers,
.page-links a,
.page-links > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0 0.5rem;
	border: 1px solid var(--line);
	text-decoration: none;
	font-size: 0.95rem;
}

.pagination .page-numbers.current {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--white);
}

/* FAQ */

.section--faq {
	padding-top: 0;
}

.faq {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.75rem 2.5rem;
	margin-top: var(--space-3);
}

.faq__item h3 {
	margin: 0 0 0.4rem;
	font-size: 1.15rem;
}

.faq__item p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 1.02rem;
}

/* Contact */

.shell--calc {
	max-width: 920px;
}

.section--calculator {
	padding-top: var(--space-5);
}

.calc-intro {
	margin-bottom: var(--space-4);
}

.contact-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.contact-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.contact-list li {
	display: grid;
	gap: 0.25rem;
}

.contact-list > li > span:first-child {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--slate);
}

.contact-list__plain {
	color: var(--ink-soft);
}

.contact-list a {
	font-weight: 600;
	text-decoration: none;
	word-break: break-word;
}

.contact-form,
.contact-form-wrap {
	display: grid;
	gap: 1rem;
}

.contact-form label {
	display: grid;
	gap: 0.45rem;
	font-weight: 600;
}

.contact-form label em {
	font-weight: 400;
	font-style: normal;
	color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(21, 32, 40, 0.18);
	border-radius: var(--radius);
	background: #f7faf8;
	font: inherit;
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-form textarea {
	resize: vertical;
	min-height: 8rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--timber);
	box-shadow: var(--focus);
	background: var(--white);
}

.contact-form__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__note {
	margin: 0;
	font-size: 0.9rem;
	color: var(--ink-soft);
}

.contact-form .btn {
	justify-self: start;
}

.alert {
	margin: 0;
	padding: 0.9rem 1.1rem;
	border-left: 3px solid var(--timber);
	background: #fde8d8;
	font-size: 1rem;
}

.alert--warning {
	border-left-color: var(--timber);
}

/* Lead dashboard */

.lead-board__stats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.lead-stat {
	display: grid;
	gap: 0.1rem;
}

.lead-stat__value {
	font-family: var(--font-display);
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1;
}

.lead-stat--hot .lead-stat__value {
	color: var(--timber);
}

.lead-stat__label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--slate);
}

.lead-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	background: var(--white);
}

.lead-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.lead-table th,
.lead-table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}

.lead-table thead th {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--slate);
	background: var(--paper-deep);
}

.lead-table tr.is-hot {
	background: rgba(231, 104, 23, 0.06);
}

.lead-table__muted {
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.lead-pill {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	white-space: nowrap;
}

.lead-pill--hot {
	background: var(--timber);
	border-color: var(--timber);
	color: var(--white);
}

/* Footer */

.site-footer {
	border-top: 1px solid var(--line);
	background: #e7ece9;
}

.site-footer__inner {
	width: var(--shell-wide);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 2rem;
	align-items: start;
	padding: 3rem 0;
}

.site-footer__name {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.site-footer__tag {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.98rem;
	max-width: 28rem;
}

.site-footer__label {
	margin: 0 0 0.6rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--slate);
}

.site-footer__col {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-size: 0.98rem;
	color: var(--ink-soft);
}

.site-footer__col a {
	text-decoration: none;
	font-weight: 600;
	color: var(--ink);
	word-break: break-word;
}

.site-footer__col a:hover {
	color: var(--timber-deep);
}

.site-footer__col p {
	margin: 0;
}

.site-footer__base {
	border-top: 1px solid var(--line);
}

.site-footer__inner--base {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	padding: 1.25rem 0;
	font-size: 0.9rem;
	color: var(--ink-soft);
}

.site-footer__inner--base p {
	margin: 0;
}

/* Reveal motion — gated on .js so content is never hidden without a script to reveal it */

.js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js [data-reveal].is-in {
	opacity: 1;
	transform: none;
}

[data-reveal-delay="1"] {
	transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
	transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
	transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.js [data-reveal] {
		opacity: 1 !important;
		transform: none !important;
	}

	.hero__media img {
		transform: scaleX(-1) !important;
	}
}

/* Responsive */

@media (max-width: 960px) {
	.materials__grid,
	.quotes,
	.purpose,
	.faq,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.purpose__media {
		min-height: 52vw;
	}

	.section {
		padding: var(--space-5) 0;
	}

	.section--intro {
		padding-top: var(--space-6);
	}

	.site-footer__inner {
		gap: 1.75rem;
	}
}

@media (max-width: 860px) {
	.contact-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 800px) {
	:root {
		--shell: min(100% - 1.5rem, 1120px);
		--shell-wide: min(100% - 1.5rem, 1280px);
	}

	body {
		font-size: 1.0625rem;
	}

	.nav-toggle {
		display: inline-flex;
		align-items: center;
		z-index: 2;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
		background: var(--paper);
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
	}

	.site-header.is-open .site-nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.site-header.is-open {
		background: var(--paper);
		border-bottom-color: transparent;
	}

	.nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.nav-list a {
		font-size: 1.4rem;
		font-family: var(--font-display);
		font-weight: 700;
	}

	.hero__content {
		padding-bottom: 3rem;
	}

	.hero__actions {
		width: 100%;
	}

	.hero__actions .btn {
		flex: 1 1 auto;
	}

	.page-hero {
		padding-top: calc(var(--header-h) + 2.5rem);
	}

	.lead-table thead {
		display: none;
	}

	.lead-table tr {
		display: block;
		border-bottom: 1px solid var(--line);
		padding: 0.5rem 0;
	}

	.lead-table td {
		display: grid;
		grid-template-columns: 7rem 1fr;
		gap: 1rem;
		border: 0;
		padding: 0.35rem 1rem;
	}

	.lead-table td::before {
		content: attr(data-label);
		font-size: 0.75rem;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--slate);
	}
}
