/* A&F — working stylesheet for the OD first pass (KWFY62).
   Tokens first, then components. Two registers of surface: ink and paper, with green as the third
   for the estimator and the service page's "what you get". Sand is an accent on dark only; on paper
   the accent word turns bottle green so it still clears contrast. */

:root {
	--ink: #040704;
	--ink-2: #0b110d;
	--ink-3: #151b17;
	--green: #0b3d2a;
	--green-deep: #072a1d;
	--green-mid: #4e5d54;
	--sage: #708576;
	--sage-2: #9aaa9f;
	--paper: #f9fafa;
	--paper-2: #eef1ef;
	--paper-3: #dfe4e1;
	--sand: #c9b48a;
	--sand-2: #e2d3b2;
	--text: #121614;
	--text-muted: #4e5d54;
	--logo-ink: #1d1d1b;

	--font-display: "Baskervville", Georgia, "Times New Roman", serif;
	--font-body: "Geist", system-ui, -apple-system, "Helvetica Neue", sans-serif;

	--r-card: 18px;
	--r-panel: 20px;
	--r-pill: 999px;

	--pad: clamp(20px, 4.5vw, 64px);
	--sec: clamp(80px, 10vw, 150px);
	--wrap: 1320px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--dur: 0.5s;

	--z-nav: 50;
	--z-menu: 60;
}

/* ---------- base ---------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--paper);
	font: 400 1.0625rem/1.6 var(--font-body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
}

h1,
h2,
h3 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 400;
	text-wrap: balance;
}

p {
	margin: 0;
	text-wrap: pretty;
}

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

.s--paper :focus-visible {
	outline-color: var(--green);
}

.wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 var(--pad);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* ---------- type ---------- */

.h1 {
	font-size: clamp(2.9rem, 6.4vw, 5.6rem);
	line-height: 1.02;
	letter-spacing: -0.005em;
}

.h2 {
	font-size: clamp(2.1rem, 3.8vw, 3.4rem);
	line-height: 1.06;
	letter-spacing: -0.005em;
}

.h3 {
	font-size: clamp(1.5rem, 2vw, 1.9rem);
	line-height: 1.15;
}

.lead {
	font-size: clamp(1.05rem, 1.3vw, 1.2rem);
	line-height: 1.55;
	max-width: 46ch;
}

.ac {
	font-style: italic;
	color: var(--sand);
}

.s--paper .ac {
	color: var(--green);
}

.kick {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sand);
}

.kick .kick__sep {
	color: var(--sage);
	margin: 0 0.5em;
}

.muted {
	color: rgba(249, 250, 250, 0.74);
}

.s--paper .muted {
	color: var(--text-muted);
}

/* ---------- surfaces ---------- */

.s {
	padding: var(--sec) 0;
}

.s--ink {
	background: var(--ink);
	color: var(--paper);
}

.s--paper {
	background: var(--paper);
	color: var(--text);
}

.s--green {
	background: var(--green);
	color: var(--paper);
}

.s--tight {
	padding: clamp(56px, 6vw, 96px) 0;
}

/* Section head: a ledger row. Label on the left, heading on the right, one hairline above.
   This is the section grammar on every section after the hero; the hero alone carries the
   tracked-caps kicker. */

.head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
	gap: 20px 48px;
	padding-top: 26px;
	border-top: 1px solid var(--paper-3);
	margin-bottom: clamp(40px, 5vw, 72px);
}

.s--ink .head,
.s--green .head {
	border-top-color: rgba(249, 250, 250, 0.16);
}

.head__label {
	font-size: 0.95rem;
	color: var(--text-muted);
	padding-top: 0.55em;
}

.s--ink .head__label,
.s--green .head__label {
	color: var(--sage-2);
}

.head__sub {
	margin-top: 20px;
	max-width: 52ch;
}

/* ---------- buttons + links ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.65em;
	height: 52px;
	padding: 0 26px;
	border-radius: var(--r-pill);
	border: 1px solid transparent;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition:
		background-color var(--dur) var(--ease),
		color var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		transform var(--dur) var(--ease);
}

.btn svg {
	width: 16px;
	height: 16px;
	flex: none;
	transition: transform var(--dur) var(--ease);
}

.btn:hover svg {
	transform: translateX(3px);
}

.btn--paper {
	background: var(--paper);
	color: var(--ink);
}

.btn--paper:hover {
	background: var(--sand-2);
}

.btn--green {
	background: var(--green);
	color: var(--paper);
}

.btn--green:hover {
	background: var(--green-deep);
}

.btn--ghost {
	border-color: rgba(249, 250, 250, 0.38);
	color: var(--paper);
}

.btn--ghost:hover {
	border-color: var(--paper);
	background: rgba(249, 250, 250, 0.06);
}

.btn--sand {
	border-color: var(--sand);
	color: var(--sand);
}

.btn--sand:hover {
	background: var(--sand);
	color: var(--ink);
}

.btn--sm {
	height: 44px;
	padding: 0 20px;
	font-size: 0.9rem;
}

.link {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
}

.link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0.28);
	transform-origin: left;
	transition: transform var(--dur) var(--ease);
}

.link:hover::after {
	transform: scaleX(1);
}

.link svg {
	width: 14px;
	height: 14px;
}

/* ---------- nav ---------- */

.nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: var(--z-nav);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 20px var(--pad);
	color: var(--paper);
	transition:
		background-color 0.45s var(--ease),
		padding 0.45s var(--ease),
		border-color 0.45s var(--ease);
	border-bottom: 1px solid transparent;
}

.nav.is-solid {
	background: rgba(4, 7, 4, 0.86);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 12px var(--pad);
	border-bottom-color: rgba(249, 250, 250, 0.08);
}

.logo {
	display: inline-block;
	color: var(--paper);
	line-height: 0;
}

.logo svg {
	display: block;
	height: 36px;
	width: auto;
}

.logo path {
	fill: currentColor;
}

.logo--v svg {
	height: auto;
	width: 40px;
}

.nav__pill {
	justify-self: center;
	display: flex;
	gap: 2px;
	padding: 4px;
	border: 1px solid rgba(249, 250, 250, 0.2);
	border-radius: var(--r-pill);
}

.nav__pill a {
	display: block;
	padding: 9px 16px;
	border-radius: var(--r-pill);
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(249, 250, 250, 0.82);
	transition:
		background-color var(--dur) var(--ease),
		color var(--dur) var(--ease);
}

.nav__pill a:hover {
	background: rgba(249, 250, 250, 0.08);
	color: var(--paper);
}

.nav__pill a[aria-current="page"] {
	background: rgba(249, 250, 250, 0.12);
	color: var(--paper);
}

.nav__end {
	justify-self: end;
	display: flex;
	gap: 10px;
	align-items: center;
}

.nav__menu {
	display: none;
	height: 44px;
	padding: 0 18px;
	border: 1px solid rgba(249, 250, 250, 0.3);
	border-radius: var(--r-pill);
	background: transparent;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
}

.menu {
	position: fixed;
	inset: 0;
	z-index: var(--z-menu);
	background: var(--ink);
	color: var(--paper);
	padding: 110px var(--pad) 40px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
}

.menu.is-open {
	display: flex;
}

.menu__close {
	position: absolute;
	top: 20px;
	right: var(--pad);
	height: 44px;
	padding: 0 18px;
	border: 1px solid rgba(249, 250, 250, 0.3);
	border-radius: var(--r-pill);
	background: transparent;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
}

.menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
}

.menu__list a {
	display: block;
	padding: 18px 0;
	border-top: 1px solid rgba(249, 250, 250, 0.14);
	font: 400 2rem/1.1 var(--font-display);
}

.menu__list li:last-child a {
	border-bottom: 1px solid rgba(249, 250, 250, 0.14);
}

/* ---------- hero ---------- */

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

.hero--svc {
	min-height: 84svh;
}

.hero--svc .hero__img {
	object-position: 78% 60%;
	filter: saturate(0.9) brightness(1.05);
}

.hero--svc .hero__veil {
	background:
		linear-gradient(90deg, rgba(4, 7, 4, 0.94) 0%, rgba(4, 7, 4, 0.72) 34%, rgba(4, 7, 4, 0.12) 62%, rgba(4, 7, 4, 0.05) 100%),
		linear-gradient(180deg, rgba(4, 7, 4, 0.5) 0%, rgba(4, 7, 4, 0) 30%, rgba(4, 7, 4, 0) 55%, rgba(4, 7, 4, 0.94) 100%);
}

.hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 68% 42%;
	filter: saturate(0.82) brightness(0.86);
	animation: heroIn 2.4s var(--ease) both;
}

.hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 7, 4, 0.94) 0%, rgba(4, 7, 4, 0.74) 36%, rgba(4, 7, 4, 0.28) 68%, rgba(4, 7, 4, 0.2) 100%),
		linear-gradient(180deg, rgba(4, 7, 4, 0.42) 0%, rgba(4, 7, 4, 0) 28%, rgba(4, 7, 4, 0) 52%, rgba(4, 7, 4, 0.96) 100%);
}

.hero__body {
	position: relative;
	width: 100%;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 170px var(--pad) 72px;
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: 48px;
	align-items: end;
}

.hero__copy {
	display: grid;
	gap: 26px;
}

.hero__copy .h1 {
	max-width: 15ch;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.hero__aside {
	font-size: 0.85rem;
	color: rgba(249, 250, 250, 0.7);
}

.hero__aside a {
	color: var(--paper);
	border-bottom: 1px solid rgba(249, 250, 250, 0.4);
	transition: border-color var(--dur) var(--ease);
}

.hero__aside a:hover {
	border-color: var(--paper);
}

.ledger {
	justify-self: end;
	width: min(100%, 360px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ledger__label {
	font-size: 0.8rem;
	color: var(--sage-2);
	margin-bottom: 8px;
}

.ledger a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 13px 0;
	border-top: 1px solid rgba(249, 250, 250, 0.2);
	font-size: 0.95rem;
	color: rgba(249, 250, 250, 0.86);
	transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.ledger li:last-child a {
	border-bottom: 1px solid rgba(249, 250, 250, 0.2);
}

.ledger a:hover {
	color: var(--paper);
	transform: translateX(6px);
}

.ledger svg {
	width: 14px;
	height: 14px;
	flex: none;
	color: var(--sand);
}

.rise {
	animation: rise 1.1s var(--ease) both;
}

.rise:nth-child(1) { animation-delay: 0.15s; }
.rise:nth-child(2) { animation-delay: 0.28s; }
.rise:nth-child(3) { animation-delay: 0.42s; }
.rise:nth-child(4) { animation-delay: 0.56s; }
.rise:nth-child(5) { animation-delay: 0.7s; }

.hero__body > .ledger {
	animation: rise 1.1s var(--ease) 0.85s both;
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes heroIn {
	from {
		transform: scale(1.06);
		opacity: 0.6;
	}
	to {
		transform: none;
		opacity: 1;
	}
}

/* ---------- route cards (home) ---------- */

.routes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(20px, 3vw, 40px);
}

.route {
	display: block;
	color: inherit;
}

.route__media {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--r-card);
	overflow: hidden;
	background: var(--ink);
}

.route__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.85);
	transition: transform 1.4s var(--ease), filter 0.8s var(--ease);
}

.route:hover .route__media img {
	transform: scale(1.035);
}

.route__cap {
	position: absolute;
	inset: auto 0 0 0;
	padding: clamp(22px, 2.6vw, 34px);
	padding-top: 96px;
	background: linear-gradient(180deg, rgba(4, 7, 4, 0) 0%, rgba(4, 7, 4, 0.55) 40%, rgba(4, 7, 4, 0.9) 100%);
	color: var(--paper);
	display: grid;
	gap: 12px;
}

.route__cap .h3 {
	max-width: 18ch;
}

.route__body {
	padding: 22px 4px 0;
	max-width: 48ch;
	display: grid;
	gap: 14px;
}

.rule-row {
	margin-top: clamp(40px, 5vw, 64px);
	padding: 22px 0;
	border-top: 1px solid var(--paper-3);
	border-bottom: 1px solid var(--paper-3);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.rule-row p {
	max-width: 62ch;
	color: var(--text-muted);
}

.rule-row strong {
	color: var(--text);
	font-weight: 500;
}

/* ---------- service cards ---------- */

.svc {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
}

.svc > :nth-child(1) { grid-column: span 8; }
.svc > :nth-child(2) { grid-column: span 4; }
.svc > :nth-child(3) { grid-column: span 5; }
.svc > :nth-child(4) { grid-column: span 7; }

.svc--three {
	grid-template-columns: repeat(3, 1fr);
}

.svc--three > * {
	grid-column: auto;
}

.card {
	position: relative;
	display: block;
	border-radius: var(--r-card);
	overflow: hidden;
	background: var(--ink-3);
	aspect-ratio: 16 / 10;
	color: var(--paper);
	isolation: isolate;
}

.card--lead {
	aspect-ratio: 16 / 9;
}

.card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.7) brightness(0.82);
	transition: transform 1.4s var(--ease), filter 0.8s var(--ease);
}

.card:hover img {
	transform: scale(1.04);
	filter: saturate(0.8) brightness(0.9);
}

/* The pitch-room frame carries a third party's deck on the projector, so the lead card holds
   a tight crop on the listener at the right-hand edge. Swap the photo and drop this class. */
.card__img--tight {
	object-position: 100% 45%;
	transform: scale(2.7);
	transform-origin: 100% 45%;
}

.card:hover .card__img--tight {
	transform: scale(2.78);
}

.card__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(4, 7, 4, 0.1) 0%, rgba(4, 7, 4, 0) 35%, rgba(4, 7, 4, 0.5) 65%, rgba(4, 7, 4, 0.92) 100%);
}

.card__cap {
	position: absolute;
	inset: auto 0 0 0;
	padding: clamp(20px, 2.4vw, 32px);
	display: grid;
	gap: 8px;
}

.card__cap .h3 {
	font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.card--lead .card__cap .h3 {
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.card__cap p {
	font-size: 0.95rem;
	color: rgba(249, 250, 250, 0.8);
	max-width: 40ch;
}

.card__go {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(249, 250, 250, 0.4);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--paper);
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.card__go svg {
	width: 16px;
	height: 16px;
}

.card:hover .card__go {
	opacity: 1;
	transform: none;
}

/* ---------- steps (home) ---------- */

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 4vw, 56px);
}

.step {
	border-top: 1px solid var(--paper-3);
	padding-top: 24px;
	display: grid;
	gap: 14px;
	align-content: start;
}

.step__n {
	font: 400 clamp(3.4rem, 5vw, 4.8rem) / 1 var(--font-display);
	color: var(--sage);
}

.step h3 {
	font: 500 1.2rem/1.3 var(--font-body);
	margin-top: 10px;
}

.step p {
	color: var(--text-muted);
	max-width: 32ch;
}

/* ---------- estimator ---------- */

.est {
	background: var(--green);
	color: var(--paper);
	border-radius: var(--r-panel);
	padding: clamp(28px, 4vw, 56px);
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(32px, 4vw, 64px);
}

.est__sub {
	margin-top: 18px;
	max-width: 44ch;
	color: rgba(249, 250, 250, 0.78);
}

.est__qs {
	margin-top: 36px;
	display: grid;
	gap: 26px;
}

.est__label {
	font-size: 0.9rem;
	color: rgba(249, 250, 250, 0.72);
	margin-bottom: 10px;
}

.seg {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.seg button {
	height: 42px;
	padding: 0 18px;
	border-radius: var(--r-pill);
	border: 1px solid rgba(249, 250, 250, 0.32);
	background: transparent;
	color: var(--paper);
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition:
		background-color 0.3s var(--ease),
		color 0.3s var(--ease),
		border-color 0.3s var(--ease);
}

.seg button:hover {
	border-color: var(--paper);
}

.seg button[aria-pressed="true"] {
	background: var(--paper);
	color: var(--green);
	border-color: var(--paper);
}

.est__out {
	position: relative;
	background: var(--green-deep);
	border-radius: 16px;
	padding: clamp(24px, 3vw, 40px);
	padding-top: clamp(56px, 5vw, 72px);
	display: grid;
	align-content: end;
	gap: 22px;
}

.est__tag {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sand);
	border: 1px dashed rgba(201, 180, 138, 0.6);
	padding: 7px 11px;
	border-radius: var(--r-pill);
}

.est__fig {
	font: 400 clamp(2.4rem, 4.4vw, 4rem) / 1.05 var(--font-display);
	letter-spacing: -0.01em;
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.est__fig.is-swapping {
	opacity: 0;
	transform: translateY(6px);
}

.est__fig--quote {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.est__note {
	font-size: 0.9rem;
	color: rgba(249, 250, 250, 0.72);
	max-width: 36ch;
}

/* ---------- principles strip ---------- */

.pr {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(249, 250, 250, 0.16);
	border-bottom: 1px solid rgba(249, 250, 250, 0.16);
}

.pr__i {
	padding: clamp(24px, 2.6vw, 36px) clamp(20px, 2.4vw, 36px);
	border-left: 1px solid rgba(249, 250, 250, 0.16);
	font: 400 clamp(1.15rem, 1.5vw, 1.4rem) / 1.3 var(--font-display);
	color: rgba(249, 250, 250, 0.92);
	position: relative;
}

.pr__i:first-child {
	border-left: 0;
	padding-left: 0;
}

.tag {
	display: inline-block;
	margin-top: 12px;
	font: 500 0.66rem/1 var(--font-body);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sand);
	border: 1px dashed rgba(201, 180, 138, 0.6);
	padding: 6px 9px;
	border-radius: var(--r-pill);
}

/* ---------- enquiry ---------- */

.enq {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: clamp(32px, 5vw, 88px);
	align-items: start;
}

.enq__media {
	position: sticky;
	top: 110px;
	border-radius: var(--r-card);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--ink);
}

.enq__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.85);
}

.enq__intro {
	display: grid;
	gap: 16px;
}

.f {
	margin-top: 44px;
}

.f__fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 28px;
}

.f__field {
	display: grid;
	gap: 8px;
}

.f__field--full {
	grid-column: 1 / -1;
}

.f__field label {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.f__field label span {
	color: var(--sage);
}

.f__field input,
.f__field select,
.f__field textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid var(--paper-3);
	border-radius: 0;
	background: transparent;
	padding: 10px 0;
	font: 400 1.05rem/1.4 var(--font-body);
	color: var(--text);
	transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.f__field input::placeholder,
.f__field textarea::placeholder {
	color: var(--text-muted);
	opacity: 1;
}

.f__field input:focus,
.f__field select:focus,
.f__field textarea:focus {
	outline: none;
	border-bottom-color: var(--green);
	box-shadow: 0 1px 0 var(--green);
}

.f__field select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 28px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234e5d54' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0 center;
	cursor: pointer;
}

.f__field textarea {
	resize: vertical;
	min-height: 96px;
}

.f__consent {
	grid-column: 1 / -1;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 0.9rem;
	color: var(--text-muted);
	max-width: 60ch;
}

.f__consent input {
	flex: none;
	width: 18px;
	height: 18px;
	margin: 3px 0 0;
	accent-color: var(--green);
}

.f__consent a {
	color: var(--text);
	border-bottom: 1px solid var(--paper-3);
}

.f__submit {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.f__submit small {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.f__done {
	display: none;
	border-top: 1px solid var(--paper-3);
	padding-top: 32px;
	gap: 14px;
}

.f.is-sent .f__fields {
	display: none;
}

.f.is-sent .f__done {
	display: grid;
	animation: rise 0.8s var(--ease) both;
}

.f__done p {
	color: var(--text-muted);
	max-width: 48ch;
}

/* ---------- footer ---------- */

.foot {
	background: var(--ink);
	color: var(--paper);
	padding: clamp(64px, 7vw, 96px) 0 32px;
}

.foot__grid {
	display: grid;
	grid-template-columns: minmax(0, 4fr) minmax(0, 2.5fr) minmax(0, 2.5fr) minmax(0, 3fr);
	gap: 40px;
}

.foot__brand {
	display: grid;
	gap: 22px;
	align-content: start;
}

.foot__brand p {
	max-width: 30ch;
	color: rgba(249, 250, 250, 0.7);
	font-size: 0.95rem;
}

.foot h4 {
	margin: 0 0 16px;
	font: 500 0.72rem/1 var(--font-body);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sage-2);
}

.foot ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.foot li a,
.foot address {
	font-style: normal;
	font-size: 0.95rem;
	color: rgba(249, 250, 250, 0.82);
	transition: color var(--dur) var(--ease);
}

.foot li a:hover {
	color: var(--paper);
}

.foot address {
	display: grid;
	gap: 8px;
}

.foot address strong {
	font-weight: 500;
	color: var(--paper);
}

.foot__bottom {
	margin-top: clamp(48px, 6vw, 80px);
	padding-top: 24px;
	border-top: 1px solid rgba(249, 250, 250, 0.12);
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	font-size: 0.85rem;
	color: rgba(249, 250, 250, 0.6);
}

.foot__bottom a:hover {
	color: var(--paper);
}

.logo--v {
	display: none;
}

/* ---------- service page: who it's for ---------- */

.two {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
	gap: clamp(32px, 5vw, 80px);
}

.two__rule {
	background: var(--paper-3);
}

.two__col {
	display: grid;
	gap: 16px;
	align-content: start;
}

.two__col p {
	color: var(--text-muted);
	max-width: 42ch;
}

/* ---------- service page: what you get ---------- */

.gets {
	display: grid;
}

.get {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.6fr);
	gap: 24px 32px;
	padding: 30px 0;
	border-top: 1px solid rgba(249, 250, 250, 0.16);
	align-items: start;
}

.get:last-child {
	border-bottom: 1px solid rgba(249, 250, 250, 0.16);
}

.get svg {
	width: 30px;
	height: 30px;
	color: var(--sand);
	margin-top: 2px;
}

.get h3 {
	font: 500 1.15rem/1.35 var(--font-body);
}

.get p {
	color: rgba(249, 250, 250, 0.78);
	max-width: 48ch;
}

/* ---------- service page: timeline ---------- */

.tl {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding: 40px 0 0;
}

.tl::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 6px;
	height: 1px;
	background: var(--paper-3);
}

.tl__s {
	position: relative;
	display: grid;
	gap: 12px;
	align-content: start;
}

.tl__s::before {
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--green);
}

.tl__s:first-child::before {
	background: var(--sand);
}

.tl__n {
	font: 400 1rem/1 var(--font-display);
	color: var(--sage);
}

.tl__s h3 {
	font-size: 1.7rem;
	line-height: 1.1;
}

.tl__s p {
	color: var(--text-muted);
	max-width: 28ch;
}

/* ---------- service page: deck spread ---------- */

.spread {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
	gap: clamp(32px, 5vw, 80px);
	align-items: center;
}

.spread__copy {
	display: grid;
	gap: 18px;
}

.spread__copy .cap {
	font-size: 0.85rem;
	color: var(--sage-2);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.spread__copy .cap::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--sand);
}

.fan {
	position: relative;
	aspect-ratio: 16 / 10.5;
	perspective: 1600px;
}

.slide {
	position: absolute;
	width: 60%;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	box-shadow: 0 34px 60px rgba(0, 0, 0, 0.55);
	padding: 6%;
	display: grid;
	transition: transform 1.2s var(--ease);
	overflow: hidden;
}

.slide--title {
	left: 0;
	top: 12%;
	z-index: 1;
	background: var(--paper);
	transform: rotate(-5deg);
	align-content: space-between;
}

.slide--chart {
	left: 21%;
	top: 0;
	z-index: 3;
	background: var(--ink-3);
	transform: rotate(2deg);
	grid-template-rows: auto minmax(0, 1fr);
	gap: 10%;
}

.slide--metrics {
	left: 40%;
	top: 24%;
	z-index: 2;
	background: var(--green);
	transform: rotate(6deg);
	align-content: space-between;
}

.fan:hover .slide--title { transform: rotate(-7deg) translateX(-2%); }
.fan:hover .slide--chart { transform: rotate(1deg) translateY(-2%); }
.fan:hover .slide--metrics { transform: rotate(8deg) translateX(2%); }

.sk {
	display: block;
	height: 6px;
	border-radius: 3px;
	background: currentColor;
	opacity: 0.22;
}

.sk--lg {
	height: 12px;
	border-radius: 4px;
	opacity: 0.55;
}

.sk--mark {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	border: 1.5px solid currentColor;
	background: transparent;
	opacity: 0.5;
}

.slide--title {
	color: var(--ink);
}

.slide--title .sk-group {
	display: grid;
	gap: 8px;
}

.slide--chart {
	color: var(--paper);
}

.bars {
	display: flex;
	align-items: flex-end;
	gap: 5%;
	height: 100%;
	min-height: 0;
	border-bottom: 1px solid rgba(249, 250, 250, 0.2);
	padding-bottom: 2px;
}

.bars i {
	flex: 1;
	background: var(--sage);
	border-radius: 2px 2px 0 0;
	opacity: 0.8;
}

.bars i:nth-child(1) { height: 32%; }
.bars i:nth-child(2) { height: 44%; }
.bars i:nth-child(3) { height: 38%; }
.bars i:nth-child(4) { height: 58%; }
.bars i:nth-child(5) { height: 66%; }
.bars i:nth-child(6) { height: 82%; background: var(--sand); opacity: 1; }
.bars i:nth-child(7) { height: 100%; background: var(--sand); opacity: 1; }

.slide--metrics {
	color: var(--paper);
}

.metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8%;
}

.metrics > div {
	display: grid;
	gap: 8px;
	align-content: end;
}

.metrics .sk--lg {
	height: 14px;
	background: var(--sand);
	opacity: 0.9;
}

/* ---------- faq ---------- */

.faq {
	display: grid;
}

.faq details {
	border-top: 1px solid var(--paper-3);
}

.faq details:last-child {
	border-bottom: 1px solid var(--paper-3);
}

.faq summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 26px 0;
	font: 400 clamp(1.25rem, 1.8vw, 1.6rem) / 1.25 var(--font-display);
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary svg {
	width: 22px;
	height: 22px;
	flex: none;
	color: var(--green-mid);
	transition: transform 0.45s var(--ease);
}

.faq details[open] summary svg {
	transform: rotate(45deg);
}

.faq__a {
	padding: 0 0 28px;
	max-width: 64ch;
	color: var(--text-muted);
	animation: rise 0.55s var(--ease) both;
}

/* ---------- compact band ---------- */

.band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px 48px;
}

.band__copy {
	display: grid;
	gap: 12px;
}

.band__copy p {
	color: rgba(249, 250, 250, 0.78);
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
	.svc > :nth-child(1),
	.svc > :nth-child(2),
	.svc > :nth-child(3),
	.svc > :nth-child(4) {
		grid-column: span 6;
	}

	.card,
	.card--lead {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 960px) {
	.nav {
		grid-template-columns: 1fr auto;
	}

	.nav__pill {
		display: none;
	}

	.nav__menu {
		display: inline-flex;
		align-items: center;
	}

	.nav__cta {
		display: none;
	}

	.hero__body {
		grid-template-columns: 1fr;
		padding-top: 140px;
	}

	.ledger {
		display: none;
	}

	.est {
		grid-template-columns: 1fr;
	}

	.est__out {
		padding-top: clamp(24px, 3vw, 40px);
	}

	.est__tag {
		position: static;
		justify-self: start;
		margin-bottom: 4px;
	}

	.enq {
		grid-template-columns: 1fr;
	}

	.enq__media {
		position: static;
		aspect-ratio: 16 / 10;
	}

	.spread {
		grid-template-columns: 1fr;
	}

	.get {
		grid-template-columns: 44px minmax(0, 1fr);
	}

	.get p {
		grid-column: 2;
	}

	.tl {
		grid-template-columns: 1fr 1fr;
		gap: 40px 32px;
	}

	.foot__grid {
		grid-template-columns: 1fr 1fr;
	}

	.foot__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.head {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.routes {
		grid-template-columns: 1fr;
	}

	.route__media {
		aspect-ratio: 4 / 4.4;
	}

	.svc > :nth-child(n) {
		grid-column: 1 / -1;
	}

	.svc--three {
		grid-template-columns: 1fr;
	}

	.steps {
		grid-template-columns: 1fr;
	}

	.pr {
		grid-template-columns: 1fr 1fr;
		border-bottom: 0;
	}

	.pr__i {
		border-bottom: 1px solid rgba(249, 250, 250, 0.16);
		padding-left: 0;
		padding-right: 20px;
		border-left: 0;
	}

	.pr__i:nth-child(even) {
		border-left: 1px solid rgba(249, 250, 250, 0.16);
		padding-left: 20px;
		padding-right: 0;
	}

	.f__fields {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.two {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.two__rule {
		height: 1px;
	}

	.tl {
		grid-template-columns: 1fr;
		padding-top: 0;
		padding-left: 28px;
		gap: 36px;
	}

	.tl::before {
		top: 0;
		bottom: 0;
		left: 6px;
		right: auto;
		width: 1px;
		height: auto;
	}

	.tl__s::before {
		top: 4px;
		left: -28px;
	}

	.band {
		grid-template-columns: 1fr;
	}

	.foot__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.logo--h {
		display: none;
	}

	.foot .logo--v {
		display: inline-block;
	}

	.slide {
		width: 66%;
	}

	.slide--metrics {
		left: 34%;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-delay: 0s !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}
}
