
/* ── base--01-tokens.css ── */
/* ==========================================================================
   Design tokens
   Every colour, font and spacing step used anywhere in the theme is declared
   here once. Section stylesheets must reference these, never raw values.
   ========================================================================== */

:root {
	/* --- Brand colours ---------------------------------------------------- */
	--color-gold:            #CFAB6E; /* Primary brand gold. */
	--color-gold-light:      #F1CB90; /* Headline gold / button fill. */
	--color-green-deep:      #245243; /* Accent green. */
	--color-ink:             #1A211E; /* Near-black used for dark sections. */
	--color-ink-pure:        #000000;
	--color-charcoal:        #1B1B1B; /* Header utility bar. */
	--color-charcoal-soft:   #1A1A1A; /* Hero gradient endpoint. */
	--color-grey:            #5F6563; /* Body copy on light backgrounds. */
	--color-grey-light:      #E5E7EB; /* Muted panel headers. */
	--color-amber:           #F4A825; /* Comparison highlight. */
	--color-cream:           #F7F8F0; /* Light section background. */
	--color-page:            #EDEDED; /* Page background behind the sections. */
	--color-white:           #FFFFFF;

	/* --- Semantic aliases -------------------------------------------------- */
	--color-text-primary:        var(--color-ink-pure);
	--color-text-muted:          var(--color-grey);
	--color-text-inverse:        var(--color-white);
	--color-text-inverse-muted:  rgba(255, 255, 255, 0.6);
	--color-text-disabled:       #949494;
	--color-text-disabled-soft:  #8A8A8A;
	--color-surface-light:       var(--color-white);
	--color-surface-cream:       var(--color-cream);
	--color-surface-dark:        var(--color-ink);
	--color-border-subtle:       rgba(0, 0, 0, 0.08);
	--color-border-card:         #E4E4E4;
	--color-border-inverse:      rgba(255, 255, 255, 0.15);

	/* --- Typography -------------------------------------------------------- */
	--font-family-primary: "Manrope", "Segoe UI", system-ui, sans-serif;
	--font-family-display: "Space Grotesk", "Manrope", system-ui, sans-serif;

	--font-weight-regular:   400;
	--font-weight-medium:    500;
	--font-weight-semibold:  600;
	--font-weight-bold:      700;
	--font-weight-extrabold: 800;

	/* Fluid display scale — the numbers match the live site at 1440px and
	   collapse to the tablet/mobile values Elementor used at 1024px / 767px. */
	--font-size-display-xl: clamp(2.5rem, 1.35rem + 4.2vw, 5.75rem); /* 40 → 92px */
	--font-size-display-l:  clamp(2.5rem, 1.9rem + 2.1vw, 3.75rem);  /* 40 → 60px */
	--font-size-display-m:  clamp(2rem, 1.6rem + 1.4vw, 3rem);       /* 32 → 48px */
	--font-size-display-s:  clamp(1.75rem, 1.5rem + 0.9vw, 2.5rem);  /* 28 → 40px */
	--font-size-heading-l:  clamp(1.5rem, 1.35rem + 0.55vw, 1.875rem); /* 24 → 30px */
	--font-size-heading-m:  clamp(1.25rem, 1.15rem + 0.35vw, 1.375rem); /* 20 → 22px */
	--font-size-heading-s:  1.25rem;   /* 20px */
	--font-size-body-l:     1.375rem;  /* 22px */
	--font-size-body-m:     1.125rem;  /* 18px */
	--font-size-body-s:     1rem;      /* 16px */
	--font-size-body-xs:    0.875rem;  /* 14px */

	--line-height-tight:   1;
	--line-height-snug:    1.2;
	--line-height-normal:  1.5;

	--letter-spacing-display: -2px;
	--letter-spacing-heading: -1px;
	--letter-spacing-tight:   -0.5px;

	/* --- Layout ------------------------------------------------------------ */
	--layout-container-width:      1400px;
	--layout-container-width-wide: 1750px;
	--layout-gutter:               1.25rem;  /* 20px */
	--layout-gutter-large:         2.5rem;   /* 40px */

	/* --- Spacing scale ------------------------------------------------------ */
	--space-3xs: 0.25rem;  /*  4px */
	--space-2xs: 0.5rem;   /*  8px */
	--space-xs:  0.75rem;  /* 12px */
	--space-s:   1rem;     /* 16px */
	--space-m:   1.25rem;  /* 20px */
	--space-l:   2rem;     /* 32px */
	--space-xl:  3rem;     /* 48px */
	--space-2xl: 4rem;     /* 64px */
	--space-3xl: 6rem;     /* 96px */

	/* Vertical rhythm between full-width sections. */
	--section-padding-block: clamp(3rem, 1.6rem + 5vw, 6.25rem); /* 48 → 100px */

	/* --- Radii, shadows, motion --------------------------------------------- */
	--radius-s:    8px;
	--radius-m:    16px;
	--radius-l:    24px;
	--radius-pill: 100px;

	--shadow-card:  0 4px 24px rgba(0, 0, 0, 0.08);
	--shadow-badge: 0 4px 20px rgba(255, 102, 32, 0.2);

	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;

	--z-header: 100;
	--z-sticky-cta: 90;
	--z-overlay: 200;
}


/* ── base--02-fonts.css ── */
/* ==========================================================================
   Self-hosted webfonts
   Both families are variable fonts, so one file per subset covers every weight
   the design uses. Paths are relative to assets/css/, where the bundle also
   lives, so they resolve identically before and after bundling.
   ========================================================================== */

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("../fonts/manrope-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
		U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
		U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
		U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
		U+A720-A7FF;
}

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: "Space Grotesk";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
		U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ── base--03-reset.css ── */
/* ==========================================================================
   Reset
   Minimal and opinionated: only the defaults this theme actually fights.
   ========================================================================== */

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

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

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol {
	margin: 0;
}

/*
 * A list that carries a class is a component, not prose, so it loses its
 * bullets and its indent. Wrapped in :where() because the attribute selector
 * would otherwise outrank the component's own class and quietly win: that is
 * what stripped the padding off the header dropdown and the related-articles
 * track. Nothing changes for a list that sets nothing; a list that sets its
 * own padding now keeps it.
 */
:where(ul[class], ol[class]) {
	padding: 0;
	list-style: none;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

button {
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

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

/* An element hidden by script stays hidden, whatever display its own rule sets. */
[hidden] {
	display: none !important;
}

table {
	border-collapse: collapse;
	width: 100%;
}

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

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


/* ── base--04-typography.css ── */
/* ==========================================================================
   Typography
   ========================================================================== */

body {
	font-family: var(--font-family-primary);
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-regular);
	line-height: var(--line-height-normal);
	color: var(--color-text-primary);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: balance;
}

h1 { font-size: var(--font-size-display-l); }
h2 { font-size: var(--font-size-display-m); }
h3 { font-size: var(--font-size-heading-l); letter-spacing: var(--letter-spacing-heading); }
h4 { font-size: var(--font-size-heading-m); letter-spacing: var(--letter-spacing-heading); }
h5 { font-size: var(--font-size-heading-s); letter-spacing: var(--letter-spacing-tight); }
h6 { font-size: var(--font-size-body-s); letter-spacing: var(--letter-spacing-tight); }

p {
	text-wrap: pretty;
}

strong, b {
	font-weight: var(--font-weight-bold);
}

:where(a):focus-visible,
:where(button):focus-visible,
:where(input, textarea, select):focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 3px;
}

/* Visually hidden but still announced by screen readers. */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -100%;
	left: var(--space-s);
	z-index: var(--z-overlay);
	padding: var(--space-2xs) var(--space-s);
	background-color: var(--color-white);
	color: var(--color-text-primary);
	border-radius: var(--radius-s);
}

.skip-link:focus {
	top: var(--space-s);
}


/* ── base--05-layout.css ── */
/* ==========================================================================
   Layout primitives
   ========================================================================== */

/* Horizontal container used by every section's inner wrapper. */
.container {
	width: 100%;
	max-width: calc(var(--layout-container-width) + var(--layout-gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--layout-gutter);
}

.container--wide {
	max-width: calc(var(--layout-container-width-wide) + var(--layout-gutter) * 2);
}

.container--narrow {
	max-width: calc(900px + var(--layout-gutter) * 2);
}

/*
 * Panel geometry: a hard 1400px cap with the gutter expressed as a width inset
 * rather than padding, so a section can run its own background and radius all
 * the way to the panel edge. 12.5px each side on desktop, 20px below 1024px.
 */
.container--panel {
	width: calc(100% - 25px);
	max-width: var(--layout-container-width);
	padding-inline: 0;
}

@media (max-width: 1024px) {
	.container--panel {
		width: calc(100% - 40px);
	}
}

/* The page canvas the sections sit on. */
.site__main {
	background-color: var(--color-page);
}

/* Every full-width band on the page. */
.section {
	position: relative;
	padding-block: var(--section-padding-block);
}

.section--flush {
	padding-block: 0;
}

.section--dark {
	background-color: var(--color-surface-dark);
	color: var(--color-text-inverse);
}

.section--cream {
	background-color: var(--color-surface-cream);
}

/* Shared stack used by most section headers. */
.section__header {
	display: flex;
	flex-direction: column;
	gap: var(--space-s);
	margin-bottom: var(--space-xl);
}

.section__header--centred {
	align-items: center;
	text-align: center;
}

.section__title {
	font-size: var(--font-size-display-m);
	letter-spacing: var(--letter-spacing-display);
}

.section__description {
	max-width: 65ch;
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
	color: var(--color-text-muted);
}

.section--dark .section__description {
	color: var(--color-text-inverse-muted);
}

/* Responsive auto-fitting card grid, used by several sections. */
.grid {
	display: grid;
	gap: var(--layout-gutter);
}

.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
	.grid--3,
	.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
	.grid--2,
	.grid--3,
	.grid--4 { grid-template-columns: minmax(0, 1fr); }
}


/* ── base--06-rich-text.css ── */
/* ==========================================================================
   Rich text
   Styles whatever a WYSIWYG field emits. Every selector here targets bare
   elements inside .rich-text, never classes — the editor writes plain <p>,
   <h3>, <ul> and so on, and nothing may depend on markup the template does
   not control.

   A section adds .rich-text to its copy container and sets its own colour and
   spacing around it; the internals come from here.
   ========================================================================== */

.rich-text {
	font-size: var(--font-size-body-s);
	line-height: 1.8;
}

.rich-text > * + * {
	margin-top: 20px;
}

.rich-text h2,
.rich-text h3,
.rich-text h4 {
	font-size: var(--font-size-heading-s);
	font-weight: var(--font-weight-bold);
	line-height: 1.3;
	letter-spacing: var(--letter-spacing-tight);
}

.rich-text strong,
.rich-text b {
	font-weight: var(--font-weight-bold);
}

.rich-text ul,
.rich-text ol {
	padding-left: 1.25em;
}

.rich-text ul { list-style: disc; }
.rich-text ol { list-style: decimal; }

/* Lists run tighter than prose, matching the live leading of 24px on 16px. */
.rich-text li {
	line-height: var(--line-height-normal);
}

.rich-text li + li {
	margin-top: 10px;
}

.rich-text a {
	color: var(--color-green-deep);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rich-text a:hover {
	text-decoration-thickness: 2px;
}

.rich-text img {
	border-radius: var(--radius-m);
}

/* --- Tables ----------------------------------------------------------------
   Editors paste wide tables that no narrow column can hold, so each one gets
   its own horizontal scroller rather than pushing the page sideways.
   -------------------------------------------------------------------------- */

.rich-text table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	font-size: var(--font-size-body-xs);
	line-height: var(--line-height-normal);
	white-space: nowrap;
}

.rich-text th,
.rich-text td {
	padding: 10px 14px;
	text-align: left;
	border-bottom: 1px solid var(--color-border-subtle);
}

.rich-text th {
	font-weight: var(--font-weight-bold);
	background-color: rgba(26, 26, 26, 0.04);
}

.rich-text tbody tr:last-child td {
	border-bottom: 0;
}

/* Dense reference copy — stacks of short question-and-answer pairs and the
   like, where a long list reads better tight than airy. Same sizes and
   colours as the default; only the leading and the rhythm close up. */

.rich-text--tight {
	line-height: var(--line-height-normal);
}

.rich-text--tight > * + * {
	margin-top: 10px;
}

/* On dark panels the link colour has to lift off the background. */
.rich-text--inverse a {
	color: var(--color-gold-light);
}


/* ── element--accordion-item.css ── */
/* ==========================================================================
   Accordion item
   Native <details>/<summary>: open state, keyboard support and the toggle
   itself all come from the browser.
   ========================================================================== */

.accordion-item {
	margin-bottom: 15px;
}

.accordion-item:last-child {
	margin-bottom: 0;
}

.accordion-item__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 20px 30px;
	background-color: var(--color-gold);
	border: 0.8px solid #E9E9E9;
	border-radius: 15px;
	cursor: pointer;
	list-style: none;
	transition: background-color var(--transition-fast);
}

/* Hides the default disclosure triangle in WebKit. */
.accordion-item__summary::-webkit-details-marker {
	display: none;
}

.accordion-item__summary:hover {
	background-color: var(--color-gold-light);
}

.accordion-item__title {
	font-size: var(--font-size-heading-m);
	font-weight: var(--font-weight-bold);
	line-height: 1;
	letter-spacing: var(--letter-spacing-heading);
	color: var(--color-ink-pure);
}

.accordion-item__icon {
	flex-shrink: 0;
	width: 16px;
	height: 15px;
	color: var(--color-ink-pure);
	transition: transform var(--transition-base);
}

.accordion-item[open] .accordion-item__icon {
	transform: rotate(180deg);
}

/* --- Body ------------------------------------------------------------------ */

/* Internals come from .rich-text; only the padding is set here. */
.accordion-item__body {
	padding: 30px;
}

@media (max-width: 767px) {
	.accordion-item__summary {
		padding: 16px 20px;
	}

	.accordion-item__title {
		font-size: var(--font-size-body-m);
	}

	.accordion-item__body {
		padding: 20px;
	}
}


/* ── element--article-body.css ── */
/* ==========================================================================
   Article body
   Long-form text — a blog post, a policy — whatever wrote it. The basics
   (paragraph rhythm, lists, links, the scrolling table) come from
   base--06-rich-text.css; what a long read needs on top is a heading scale,
   because rich text sizes h2, h3 and h4 alike. That is right for a section of
   a page and wrong here, where the levels have to be told apart.

   Everything is a bare element selector, because an editor writes bare
   elements and no template controls them.
   ========================================================================== */

.article-body {
	font-size: var(--font-size-body-m);
	line-height: 1.75;
}

.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
	font-weight: var(--font-weight-bold);
	line-height: 1.25;
	letter-spacing: var(--letter-spacing-tight);
}

.article-body h2 { font-size: 32px; }
.article-body h3 { font-size: 26px; }
.article-body h4 { font-size: 22px; }
.article-body h5 { font-size: 18px; }

/* The sixth level has no size left below the body copy, so it separates itself
   by weight and case instead. */
.article-body h6 {
	font-size: var(--font-size-body-s);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-text-muted);
}

/* A heading belongs to what follows it: air above, close below. */
.article-body > * + h2,
.article-body > * + h3,
.article-body > * + h4,
.article-body > * + h5,
.article-body > * + h6 {
	margin-top: 40px;
}

.article-body > h2 + *,
.article-body > h3 + *,
.article-body > h4 + *,
.article-body > h5 + *,
.article-body > h6 + * {
	margin-top: 12px;
}

/* --- Lists -------------------------------------------------------------------- */

.article-body ul,
.article-body ol {
	padding-left: 1.5em;
}

.article-body li {
	line-height: 1.7;
}

.article-body li::marker {
	color: var(--color-gold);
}

/* A nested list is part of its parent item, not a new block. */
.article-body li > ul,
.article-body li > ol {
	margin-top: 10px;
}

/* --- Quotes --------------------------------------------------------------------- */

.article-body blockquote {
	margin: 0;
	padding: 4px 0 4px 24px;
	font-size: var(--font-size-body-l);
	line-height: var(--line-height-normal);
	color: var(--color-text-muted);
	border-left: 3px solid var(--color-gold);
}

.article-body blockquote > * + * {
	margin-top: 12px;
}

.article-body blockquote cite {
	display: block;
	font-size: var(--font-size-body-s);
	font-style: normal;
	color: var(--color-text-primary);
}

/* --- Tables ----------------------------------------------------------------------
 *
 * The scroller itself comes from rich text: the table is its own block-level
 * scroll container, so a wide one slides sideways instead of widening the page
 * — no wrapper element, no data attributes, nothing for the editor to do.
 * Below is only how it looks, plus a rule that keeps the scroll obvious.
 * ------------------------------------------------------------------------------ */

.article-body table {
	font-size: var(--font-size-body-s);
	scrollbar-width: thin;
	scrollbar-color: var(--color-gold) transparent;
}

.article-body th,
.article-body td {
	border: 1px solid var(--color-border-card);
}

.article-body thead th {
	background-color: var(--color-cream);
}

.article-body tbody tr:nth-child(even) {
	background-color: rgba(26, 26, 26, 0.02);
}

.article-body tbody tr:last-child td {
	border-bottom: 1px solid var(--color-border-card);
}

/* --- Mobile ---------------------------------------------------------------------- */

@media (max-width: 767px) {
	.article-body {
		font-size: var(--font-size-body-s);
	}

	.article-body h2 { font-size: 26px; }
	.article-body h3 { font-size: 22px; }
	.article-body h4 { font-size: 19px; }
	.article-body h5 { font-size: 17px; }

	.article-body > * + h2,
	.article-body > * + h3,
	.article-body > * + h4,
	.article-body > * + h5,
	.article-body > * + h6 {
		margin-top: 30px;
	}

	.article-body blockquote {
		padding-left: 18px;
		font-size: var(--font-size-body-m);
	}
}


/* ── element--author-box.css ── */
/* ==========================================================================
   Author box
   Sits at the foot of an article, inside the reading column, separated from
   the last block by a rule rather than a panel — it belongs to the article,
   it is not a card beside it.
   ========================================================================== */

.author-box {
	display: flex;
	gap: var(--space-m);
	align-items: flex-start;
	margin-top: var(--space-xl);
	padding-top: var(--space-l);
	border-top: 1px solid var(--color-border-card);
}

.author-box__media {
	flex: 0 0 auto;
}

.author-box__avatar {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: var(--radius-pill);
	object-fit: cover;
}

.author-box__name {
	margin: 0 0 var(--space-2xs);
	font-family: var(--font-family-display);
	font-size: var(--font-size-heading-m);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-tight);
	color: var(--color-text-primary);
}

.author-box__bio {
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
	color: var(--color-text-muted);
}

.author-box__bio p {
	margin: 0;
}

.author-box__bio p + p {
	margin-top: var(--space-2xs);
}

/* --- Mobile ----------------------------------------------------------------- */

@media (max-width: 767px) {
	.author-box {
		gap: var(--space-s);
		margin-top: var(--space-l);
		padding-top: var(--space-m);
	}

	.author-box__avatar {
		width: 64px;
		height: 64px;
	}
}


/* ── element--button.css ── */
/* ==========================================================================
   Button
   ========================================================================== */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-family: var(--font-family-primary);
	font-weight: var(--font-weight-medium);
	letter-spacing: var(--letter-spacing-tight);
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color var(--transition-base), color var(--transition-base),
		box-shadow var(--transition-base), transform var(--transition-fast);
}

.button__arrow {
	flex-shrink: 0;
	width: 18px;
	height: 12px;
	transition: transform var(--transition-base);
}

.button:hover .button__arrow {
	transform: translateX(3px);
}

/* --- Sizes ---------------------------------------------------------------- */

.button--medium {
	padding: 17px 40px;
	font-size: var(--font-size-body-m);
	line-height: 1.22;
}

.button--large {
	padding: 21px 48px;
	font-size: var(--font-size-heading-s);
	line-height: 1;
}

/* --- Variants ------------------------------------------------------------- */

/* Primary CTA: solid light gold pill, dark label. */
.button--gold-pill {
	background-color: var(--color-gold-light);
	color: var(--color-ink-pure);
	border-radius: var(--radius-pill);
}

.button--gold-pill:hover {
	background-color: var(--color-gold);
}

/* Header CTA: full-height gradient block, no radius. */
.button--gold-gradient {
	padding: 0 20px;
	height: 55px;
	background-image: linear-gradient(94.09deg, #F3CE92 -1.6%, #CDA86C 100%);
	color: #252525;
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-regular);
	letter-spacing: normal;
	text-transform: uppercase;
	border-radius: 0;
}

.button--gold-gradient:hover {
	background-image: linear-gradient(94.09deg, #CDA86C -1.6%, #F3CE92 100%);
}

/* On dark backgrounds, next to a filled primary button. */
.button--outline-light {
	background-color: transparent;
	color: var(--color-white);
	border: 1px solid var(--color-border-inverse);
	border-radius: var(--radius-pill);
}

.button--outline-light:hover {
	background-color: var(--color-white);
	color: var(--color-ink-pure);
}

.button--outline-dark {
	background-color: transparent;
	color: var(--color-ink-pure);
	border: 1px solid var(--color-border-subtle);
	border-radius: var(--radius-pill);
}

.button--outline-dark:hover {
	background-color: var(--color-ink-pure);
	color: var(--color-white);
}

.button--dark-pill {
	background-color: var(--color-ink);
	color: var(--color-white);
	border-radius: var(--radius-pill);
}

.button--dark-pill:hover {
	background-color: var(--color-green-deep);
}

/* Full-bleed variant for narrow viewports and form submits. */
.button--block {
	display: flex;
	width: 100%;
}


/* ── element--card--comparison.css ── */
/* ==========================================================================
   Comparison card
   ========================================================================== */

.comparison-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 30px;
	background-color: var(--color-white);
	border-radius: 60px;
	box-shadow: 0 0 36px -15px rgba(0, 0, 0, 0.5);
}

/* --- Badge ----------------------------------------------------------------- */

/* Straddles the top edge of the header, so it sits outside the flow. */
.comparison-card__badge {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	padding: 6px 10px;
	font-family: var(--font-family-display);
	font-size: var(--font-size-heading-s);
	font-weight: var(--font-weight-bold);
	line-height: 22px;
	letter-spacing: var(--letter-spacing-tight);
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--color-white);
	background-color: var(--color-amber);
	border-radius: 30px;
	box-shadow: var(--shadow-badge);
}

/* --- Header ---------------------------------------------------------------- */

/* Clips its own top corners to the card's radius; the card itself cannot use
   overflow:hidden because the badge deliberately hangs above it. */
.comparison-card__header {
	padding-block: 30px;
	border-radius: 60px 60px 0 0;
	font-size: 24px;
	font-weight: var(--font-weight-medium);
	line-height: 44px;
	text-align: center;
	text-transform: capitalize;
}

.comparison-card--highlighted {
	border: 0.8px solid var(--color-amber);
}

.comparison-card--highlighted .comparison-card__header {
	background-image: linear-gradient(349deg, var(--color-gold-light) 0%, var(--color-ink-pure) 70%);
	color: var(--color-white);
}

.comparison-card--muted .comparison-card__header {
	background-color: var(--color-grey-light);
	color: var(--color-ink-pure);
}

/* --- Rows ------------------------------------------------------------------ */

.comparison-card__rows {
	margin-top: 20px;
}

.comparison-card__row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-inline: 20px;
}

/* The rule sits midway between two rows, spanning the full card width. */
.comparison-card__row + .comparison-card__row {
	margin-top: 22.5px;
	padding-top: 22.5px;
	border-top: 0.8px solid var(--color-ink-pure);
}

.comparison-card__icon {
	flex-shrink: 0;
	width: 27px;
	height: 27px;
}

/* The icon is the only part of a row that still changes with the variant:
   gold for us, a neutral black cross for the competitor. */
.comparison-card--highlighted .comparison-card__icon {
	color: var(--color-amber);
}

.comparison-card--muted .comparison-card__icon {
	color: var(--color-ink-pure);
}

/* Row copy is black in both columns, so the reader compares the wording
   rather than the colour it is set in. */
.comparison-card__row-title {
	margin-bottom: 6px;
	font-size: var(--font-size-heading-m);
	font-weight: var(--font-weight-bold);
	line-height: 1;
	letter-spacing: var(--letter-spacing-heading);
	color: var(--color-ink-pure);
}

.comparison-card__row-description {
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
	color: var(--color-ink-pure);
}

@media (max-width: 767px) {
	.comparison-card__badge {
		font-size: 15px;
	}

	.comparison-card__header {
		font-size: 22px;
		line-height: 34px;
	}

	/* Descriptions wrap on one column, so the icon pins to the first line
	   instead of centring against the whole block. */
	.comparison-card__row {
		align-items: flex-start;
	}
}


/* ── element--card--icon.css ── */
/* ==========================================================================
   Icon card
   ========================================================================== */

.icon-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px;
	border-radius: 18px;
}

.icon-card--dark {
	background-color: var(--color-ink-pure);
	border: 0.8px solid var(--color-gold-light);
}

.icon-card--light {
	background-color: var(--color-white);
	border: 1px solid var(--color-border-card);
	border-radius: 20px;
}

.icon-card__icon {
	width: 60px;
	height: 60px;
	color: var(--color-gold);
}

.icon-card__title {
	margin-top: 15px;
	font-size: var(--font-size-heading-m);
	font-weight: var(--font-weight-bold);
	line-height: 1;
	letter-spacing: var(--letter-spacing-heading);
	text-wrap: wrap;
}

.icon-card__body {
	margin-top: 11px;
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
}

.icon-card--dark .icon-card__title,
.icon-card--dark .icon-card__body {
	color: var(--color-white);
}

.icon-card--light .icon-card__title,
.icon-card--light .icon-card__body {
	color: var(--color-ink-pure);
}


/* ── element--card--post.css ── */
/* ==========================================================================
   Post card
   ========================================================================== */

.post-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: var(--color-white);
	text-align: center;
}

/* --- Media ----------------------------------------------------------------- */

.post-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
}

.post-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-base);
}

.post-card:hover .post-card__image {
	transform: scale(1.05);
}

.post-card__date {
	position: absolute;
	top: 0;
	right: 0;
	padding: 12px 18px;
	font-size: var(--font-size-body-s);
	line-height: 1;
	color: var(--color-white);
	background-color: #111111;
}

/* --- Body ------------------------------------------------------------------ */

.post-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
	padding: 20px 10px 30px;
}

.post-card__title {
	font-size: var(--font-size-heading-s);
	font-weight: var(--font-weight-bold);
	line-height: 1.25;
	letter-spacing: var(--letter-spacing-heading);
	text-wrap: balance;
}

/* Pushed to the foot of the card, so buttons line up across a row whatever
   the length of the titles above them. */
.post-card__link {
	margin-top: auto;
	padding: 14px 28px;
	font-size: var(--font-size-body-s);
	line-height: 1;
	color: var(--color-ink-pure);
	background-color: var(--color-gold);
	transition: background-color var(--transition-base), color var(--transition-base);
}

.post-card__link::after {
	content: "";
	position: absolute;
	inset: 0;
}

.post-card:hover .post-card__link {
	background-color: #111111;
	color: var(--color-white);
}

.post-card__title + .post-card__link {
	margin-top: 20px;
}


/* ── element--card--pricing-tier.css ── */
/* ==========================================================================
   Pricing tier card
   ========================================================================== */

.pricing-tier {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding: 30px;
	background-color: var(--color-ink-pure);
	border-radius: 18px;
	color: var(--color-text-inverse);
}

/* --- Tier badge ------------------------------------------------------------ */

.pricing-tier__badge {
	padding: 6px 10px;
	font-family: var(--font-family-display);
	font-size: var(--font-size-heading-s);
	font-weight: var(--font-weight-bold);
	line-height: 22px;
	letter-spacing: var(--letter-spacing-tight);
	text-transform: uppercase;
	color: var(--color-white);
	border: 0.8px solid var(--color-gold);
	border-radius: 30px;
}

/* The recommended tier reads as filled rather than outlined. */
.pricing-tier__badge--featured {
	color: var(--color-ink-pure);
	background-color: var(--color-white);
	border-color: var(--color-white);
}

/* --- Discount -------------------------------------------------------------- */

.pricing-tier__discount {
	font-size: 52px;
	font-weight: var(--font-weight-bold);
	line-height: 1.5;
	letter-spacing: -1.6px;
	color: var(--color-gold);
}

/* Second line of the figure, e.g. "Everything" under "20% off". */
.pricing-tier__discount-suffix {
	display: block;
	color: var(--color-white);
}

/* --- Title and benefits ---------------------------------------------------- */

.pricing-tier__title {
	font-size: var(--font-size-heading-m);
	font-weight: var(--font-weight-bold);
	line-height: 1;
	letter-spacing: var(--letter-spacing-heading);
}

.pricing-tier__benefits {
	display: flex;
	flex-direction: column;
	gap: 3px;
	width: 100%;
}

.pricing-tier__benefit {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
}

.pricing-tier__benefit-icon {
	flex-shrink: 0;
	width: 15px;
	height: 15px;
	color: var(--color-gold);
}

/* --- Example --------------------------------------------------------------- */

/* Pushed to the foot of the card so the examples line up across the row.
   Its type comes from .rich-text — the example is editor HTML. */
.pricing-tier__example {
	width: 100%;
	margin-top: auto;
	/* The extra 21px at the foot is the trailing space the live paragraph
	   carries; it is what sets the card height. */
	padding: 20px 20px 41px;
	background-color: #161616;
	border-radius: 30px;
}

/* The editor bolds the tail of the example; that is what turns it gold. */
.pricing-tier__example strong {
	color: #F2CB8F;
}

@media (max-width: 767px) {
	.pricing-tier {
		padding: 25px;
	}

	.pricing-tier__discount {
		font-size: 40px;
	}
}


/* ── element--card--service.css ── */
/* ==========================================================================
   Service card
   ========================================================================== */

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
}

.service-card__image {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.service-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-grow: 1;
	padding: 24px 26px;
	background-color: var(--color-white);
	border: 1px solid rgba(206, 206, 206, 0.69);
	border-top: 0;
	border-radius: 0 0 20px 20px;
}

.service-card__title {
	margin-bottom: 18px;
	font-size: 24px;
	font-weight: var(--font-weight-bold);
	line-height: 1.15;
	letter-spacing: -0.8px;
	color: var(--color-ink-pure);
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: auto;
	padding: 12px 24px;
	font-size: var(--font-size-body-s);
	line-height: 1;
	white-space: nowrap;
	color: var(--color-ink-pure);
	background-color: var(--color-gold-light);
	border-radius: var(--radius-pill);
	transition: background-color var(--transition-base), color var(--transition-base);
}

/* Stretches the link over the whole card without adding a second one. */
.service-card__link::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
}

.service-card__link-arrow {
	width: 18px;
	height: 12px;
	transition: transform var(--transition-base);
}

.service-card:hover .service-card__link {
	background-color: var(--color-gold);
	color: var(--color-white);
}

.service-card:hover .service-card__link-arrow {
	transform: translateX(3px);
}

@media (max-width: 1024px) {
	.service-card__body {
		padding: 20px;
	}

	.service-card__title {
		font-size: 22px;
	}

	.service-card__image {
		height: 260px;
	}
}

@media (max-width: 767px) {
	.service-card__image {
		height: 240px;
	}
}


/* ── element--carousel-dots.css ── */
/* ==========================================================================
   Carousel dots
   Shared pagination for any [data-carousel] that carries a [data-carousel-dots]
   container. The buttons are built by assets/js/element--carousel.js, so this
   file only dresses them; the container is hidden by the script whenever the
   track has nothing to scroll.
   ========================================================================== */

.carousel-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 20px;
}

.carousel-dots__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	background-color: currentColor;
	border: 0;
	border-radius: 50%;
	opacity: 0.3;
	cursor: pointer;
	transition: opacity var(--transition-fast), width var(--transition-fast);
}

/* The active dot stretches into a pill rather than changing colour, so it
   stays legible on the gold, white and near-black sections alike. */
.carousel-dots__dot.is-active {
	width: 24px;
	border-radius: 4px;
	opacity: 1;
}

.carousel-dots__dot:hover {
	opacity: 0.6;
}

.carousel-dots__dot.is-active:hover {
	opacity: 1;
}

/* Touch targets stay finger-sized even though the dot itself is 8px. */
@media (pointer: coarse) {
	.carousel-dots {
		gap: 0;
	}

	.carousel-dots__dot {
		background-clip: content-box;
		box-sizing: content-box;
		padding: 16px 8px;
	}

	.carousel-dots__dot.is-active {
		padding-inline: 8px;
	}
}


/* ── element--expander.css ── */
/* ==========================================================================
   Expander
   Long copy clamped to a fixed height with a Read More toggle.

   Nothing here fires until the script decides the copy really overflows:
   without .is-clamped the body is at its natural height and the toggle stays
   hidden, which is also what a visitor without JavaScript gets.
   ========================================================================== */

.expander {
	--expander-collapsed-height: 200px;
	--expander-fade-colour: var(--color-white);
}

.expander__body {
	position: relative;
}

.expander.is-clamped .expander__body {
	height: var(--expander-collapsed-height);
	overflow: hidden;
}

/* The fade spans the whole clamped area rather than a strip at the bottom, so
   the copy dims gradually from the first line instead of ending in a hard
   band. Not painted when expanded, where there is nothing left to hide. */
.expander.is-clamped .expander__body::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0), var(--expander-fade-colour));
	pointer-events: none;
}

.expander__toggle {
	display: block;
	margin-top: 35px;
	padding: 20px;
	border: 0;
	border-bottom: 0.8px solid var(--color-ink-pure);
	background-color: transparent;
	color: var(--color-ink-pure);
	font-family: var(--font-family-primary);
	font-size: var(--font-size-body-xs);
	font-weight: var(--font-weight-medium);
	line-height: 17px;
	letter-spacing: var(--letter-spacing-tight);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.expander__toggle:hover {
	background-color: var(--color-gold-light);
}


/* ── element--eyebrow.css ── */
/* ==========================================================================
   Eyebrow
   ========================================================================== */

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-family-display);
	font-size: var(--font-size-heading-s);
	font-weight: var(--font-weight-bold);
	/* Flat 22px, so the pill keeps its 34px height at every font size. */
	line-height: 22px;
	letter-spacing: var(--letter-spacing-tight);
	text-transform: uppercase;
}

/* Sized in em so the icon tracks the label at every breakpoint. */
.eyebrow__icon {
	flex-shrink: 0;
	width: 1em;
	height: 1em;
}

.eyebrow--pill {
	padding: 6px 10px;
	background-color: var(--color-white);
	color: var(--color-ink-pure);
	border-radius: 30px;
	box-shadow: var(--shadow-badge);
}

.eyebrow--gold {
	color: var(--color-gold);
}

.eyebrow--plain {
	font-family: var(--font-family-primary);
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.05em;
}

@media (max-width: 767px) {
	.eyebrow {
		font-size: 15px;
	}

	.eyebrow--pill {
		padding: 6px 10px;
	}
}


/* ── element--footer.css ── */
/* ==========================================================================
   Site footer
   ========================================================================== */

.site-footer {
	background-color: #161616;
	color: var(--color-text-disabled-soft);
}

.site-footer__main {
	padding-block: 80px;
	/* Clears the estimate panel that overlaps the footer by 50px. */
	padding-top: 130px;
}

.site-footer__grid {
	display: grid;
	/* auto-fit, not fixed tracks: the blog column is skipped when no posts are
	   published and the remaining columns should close the gap. */
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
}

/* --- Brand ----------------------------------------------------------------- */

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}

.site-footer__logo img {
	width: auto;
	max-height: 70px;
}

.site-footer__tagline {
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
}

.site-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	background-color: var(--color-charcoal);
	transition: background-color var(--transition-fast);
}

.site-footer__social:hover {
	background-color: var(--color-gold);
}

.site-footer__social-icon {
	width: 22px;
	height: 22px;
}

/* --- Columns --------------------------------------------------------------- */

.site-footer__column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.site-footer__column-title {
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-bold);
	line-height: 1;
	text-transform: uppercase;
	color: #EAC589;
}

.site-footer__post-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: var(--font-size-body-s);
	line-height: 1.3;
}

.site-footer__post-list a:hover {
	color: var(--color-white);
}

/* --- Contact --------------------------------------------------------------- */

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: var(--font-size-body-s);
	font-style: normal;
	line-height: var(--line-height-normal);
}

.site-footer__phone,
.site-footer__address {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.site-footer__phone:hover,
.site-footer__address:hover {
	color: var(--color-white);
}

.site-footer__contact-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--color-gold);
}

.site-footer__column--contact .button {
	align-self: flex-start;
}

.site-footer__badges {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 4px;
}

.site-footer__badges img {
	width: auto;
	max-height: 80px;
}

/* --- Bottom bar ------------------------------------------------------------ */

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 24px;
	font-size: 15px;
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 30px;
	}

	.site-footer__brand {
		align-items: flex-start;
		text-align: left;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.site-footer__main {
		padding-block: 110px 50px;
	}

	.site-footer__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 35px;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* ── element--form--contact.css ── */
/* ==========================================================================
   Contact form

   Contact Form 7 builds the markup from a template kept in the admin, so this
   styles what CF7 outputs rather than a shape the theme controls: element
   selectors over plugin class names wherever possible, so rebuilding the form
   with different fields needs no CSS.

   Scoped to .wpcf7-form rather than to one place on the page — the same form
   appears in the estimate CTA and in the popup, and both should look alike.
   ========================================================================== */

.wpcf7-form p {
	margin: 0 0 12px;
}

.wpcf7-form p:last-of-type {
	margin-bottom: 0;
}

.wpcf7-form label {
	display: block;
	font-size: var(--font-size-body-s);
}

/* CF7's default template breaks the line after the label text; the wrap below
   is already a block, so the break would only add a stray empty line. */
.wpcf7-form label br {
	display: none;
}

.wpcf7-form-control-wrap {
	display: block;
	margin-top: 4px;
}

/* --- Required fields ---------------------------------------------------------
 *
 * CF7 marks a required field on the control, not on the label, and the label
 * text is whatever was typed into the form template — so the asterisk is added
 * here rather than by editing every label in the admin.
 *
 * The label becomes a wrapping flex row so the marker can be ordered after the
 * text but before the control, which then takes a line of its own.
 * -------------------------------------------------------------------------- */

.wpcf7-form label:has([aria-required="true"]) {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 3px;
}

.wpcf7-form label:has([aria-required="true"])::after {
	content: "*";
	order: 1;
	font-size: var(--font-size-body-m);
	line-height: 1;
	color: #B32D2E;
}

.wpcf7-form label:has([aria-required="true"]) .wpcf7-form-control-wrap {
	order: 2;
	flex: 0 0 100%;
}

/* --- Controls ----------------------------------------------------------------- */

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	height: 40px;
	padding: 0 12px;
	font-family: inherit;
	font-size: var(--font-size-body-s);
	color: var(--color-ink-pure);
	background-color: var(--color-white);
	border: 0.8px solid #69727D;
	border-radius: 3px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

/* Grows with the message instead of starting as a tall empty box. */
.wpcf7-form textarea {
	height: auto;
	min-height: 40px;
	padding: 8px 14px;
	line-height: var(--line-height-normal);
	resize: vertical;
	field-sizing: content;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
	color: var(--color-text-muted);
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	border-color: var(--color-gold);
	outline: 0;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(207, 171, 110, 0.25);
}

/* Checkboxes and radios keep their own size; only text fields get the box. */
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
	width: auto;
	height: auto;
	margin-right: 8px;
}

.wpcf7-list-item {
	margin: 0 20px 0 0;
}

.wpcf7-form input[type="submit"],
.wpcf7-submit {
	width: 100%;
	height: auto;
	padding: 20px 30px;
	font-size: var(--font-size-body-m);
	font-weight: var(--font-weight-medium);
	line-height: 1;
	letter-spacing: var(--letter-spacing-tight);
	color: var(--color-ink-pure);
	background-color: var(--color-gold);
	border: 0;
	border-radius: 3px;
	box-shadow: none;
	cursor: pointer;
	transition: background-color var(--transition-base), color var(--transition-base);
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
	background-color: var(--color-ink-pure);
	color: var(--color-white);
}

/* --- Feedback ------------------------------------------------------------------
 *
 * A sent form is answered by the thank-you popup, so the only messages that
 * ever show here are the ones that keep the form on screen: validation errors
 * and delivery failures.
 * ---------------------------------------------------------------------------- */

.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: var(--font-size-body-xs);
	color: #B32D2E;
}

.wpcf7-response-output {
	margin: 20px 0 0;
	padding: 12px 16px;
	font-size: var(--font-size-body-xs);
	line-height: var(--line-height-normal);
	border: 1px solid currentColor;
	border-radius: 3px;
}

/* Success is announced by the thank-you popup, so CF7's own note would say the
   same thing twice — invisible behind the popup in one place, and stacked
   under the form in the other. Errors keep their message. */
.wpcf7-form.sent .wpcf7-response-output {
	display: none;
}

.wpcf7-spinner {
	margin: 0 0 0 12px;
}


/* ── element--header.css ── */
/* ==========================================================================
   Site header
   Grid: 200px logo column + a content column split into two 55px rows.
   The logo spans both rows, which is what centres it across the full 110px
   header rather than inside one row.
   ========================================================================== */

.site-header {
	position: relative;
	z-index: var(--z-header);
	background-color: var(--color-charcoal);
	color: var(--color-white);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr);
	grid-template-rows: 55px 55px;
	column-gap: 30px;
	width: 100%;
	max-width: calc(var(--layout-container-width-wide) + 30px);
	margin-inline: auto;
	padding-inline: 15px;
}

/* --- Logo ----------------------------------------------------------------- */

.site-logo {
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: center;
	display: block;
}

.site-logo__image {
	width: auto;
	max-height: 51px;
}

/* --- Utility row ---------------------------------------------------------- */

.site-header__utility-row {
	/* Spans the logo column too: the links are right-aligned and the logo is
	   only 200px wide, so they never collide and the row gets the full width
	   it needs to stay on one line. */
	grid-column: 1 / -1;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
	padding-right: 5px;
}

.site-header__utility-link,
.site-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: var(--font-size-body-s);
	line-height: 1;
	transition: color var(--transition-fast);
}

.site-header__utility-link {
	color: var(--color-text-inverse-muted);
}

.site-header__utility-link:hover {
	color: var(--color-white);
}

.site-header__utility-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.site-header__phone {
	gap: 10px;
	color: var(--color-white);
	font-weight: var(--font-weight-bold);
}

.site-header__phone:hover {
	color: var(--color-gold-light);
}

.site-header__phone-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
}

/* --- Navigation row -------------------------------------------------------- */

.site-header__nav-row {
	grid-column: 2;
	grid-row: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

/* The CTA is flush with the viewport edge, so it cancels the header padding. */
.site-header__cta {
	flex-shrink: 0;
	margin-right: -15px;
}

/* --- Mobile toggle -------------------------------------------------------- */

.site-header__menu-toggle {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
}

.site-header__menu-toggle-bars,
.site-header__menu-toggle-bars::before,
.site-header__menu-toggle-bars::after {
	display: block;
	width: 24px;
	height: 2px;
	background-color: currentColor;
	transition: transform var(--transition-base), opacity var(--transition-fast);
}

.site-header__menu-toggle-bars::before,
.site-header__menu-toggle-bars::after {
	content: "";
	position: absolute;
}

.site-header__menu-toggle-bars::before { transform: translateY(-7px); }
.site-header__menu-toggle-bars::after  { transform: translateY(7px); }

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-bars {
	background-color: transparent;
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-bars::before {
	transform: rotate(45deg);
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-toggle-bars::after {
	transform: rotate(-45deg);
}

/* --- Mobile panel --------------------------------------------------------- */

.site-header__mobile-panel {
	padding: var(--space-m) 15px var(--space-l);
	background-color: var(--color-charcoal);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__mobile-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: var(--space-m);
	font-weight: var(--font-weight-bold);
	color: var(--color-white);
}

/* --- Breakpoints ---------------------------------------------------------- */

/*
 * Below 1200px the header collapses to a single 70px row: utility links,
 * primary navigation and the CTA all give way to the burger, and the logo
 * grows to fill its 200px column — the same switch the live site makes.
 */
@media (max-width: 1199px) {
	.site-header__inner {
		grid-template-columns: 200px minmax(0, 1fr);
		grid-template-rows: 70px;
	}

	.site-logo {
		grid-row: 1;
	}

	.site-logo__image {
		max-height: 59px;
	}

	.site-header__utility-row,
	.site-header__navigation,
	.site-header__cta {
		display: none;
	}

	.site-header__nav-row {
		grid-row: 1;
	}

	.site-header__menu-toggle {
		display: inline-flex;
	}
}

@media (max-width: 400px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}
}


/* ── element--lightbox.css ── */
/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
	width: min(92vw, 1400px);
	max-width: none;
	height: min(90vh, 900px);
	max-height: none;
	padding: 0;
	background-color: transparent;
	border: 0;
	overflow: visible;
}

.lightbox::backdrop {
	background-color: rgba(0, 0, 0, 0.88);
}

.lightbox__figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-s);
	width: 100%;
	height: 100%;
	margin: 0;
}

.lightbox__image {
	max-width: 100%;
	max-height: calc(100% - 3rem);
	object-fit: contain;
	border-radius: var(--radius-m);
}

.lightbox__caption {
	font-size: var(--font-size-body-s);
	color: var(--color-text-inverse-muted);
	text-align: center;
}

.lightbox__caption:empty {
	display: none;
}

/* --- Controls -------------------------------------------------------------- */

.lightbox__control {
	position: absolute;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	color: var(--color-ink-pure);
	background-color: var(--color-white);
	border-radius: 50%;
	transform: translateY(-50%);
	transition: background-color var(--transition-fast);
}

.lightbox__control:hover {
	background-color: var(--color-gold-light);
}

.lightbox__control--previous { left: -26px; }
.lightbox__control--next     { right: -26px; }

.lightbox__control--previous .lightbox__control-icon {
	transform: rotate(180deg);
}

.lightbox__control-icon {
	width: 20px;
	height: 14px;
}

.lightbox__close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 44px;
	height: 44px;
	color: var(--color-ink-pure);
	background-color: var(--color-white);
	border-radius: 50%;
}

.lightbox__close::before,
.lightbox__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background-color: currentColor;
}

.lightbox__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox__close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.lightbox__close:hover {
	background-color: var(--color-gold-light);
}

.lightbox__counter {
	position: absolute;
	bottom: -32px;
	left: 50%;
	font-size: var(--font-size-body-xs);
	color: var(--color-text-inverse-muted);
	transform: translateX(-50%);
}

/* Locks the page behind the dialog. */
body:has(.lightbox[open]) {
	overflow: hidden;
}

@media (max-width: 767px) {
	.lightbox {
		width: 94vw;
	}

	.lightbox__control {
		width: 42px;
		height: 42px;
	}

	.lightbox__control--previous { left: 4px; }
	.lightbox__control--next     { right: 4px; }

	.lightbox__close {
		top: -14px;
		right: 0;
	}
}


/* ── element--nav-menu.css ── */
/* ==========================================================================
   Navigation menus
   One base component; the modifier decides orientation and type scale.
   ========================================================================== */

.nav-menu {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu__item {
	position: relative;
}

.nav-menu__link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-3xs);
	line-height: 1;
	transition: color var(--transition-fast);
}

/* --- Utility bar variant --------------------------------------------------- */

.nav-menu--utility {
	gap: 30px;
	justify-content: flex-end;
}

.nav-menu--utility .nav-menu__link {
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-regular);
	color: var(--color-text-inverse-muted);
}

.nav-menu--utility .nav-menu__link:hover,
.nav-menu--utility .nav-menu__item--current > .nav-menu__link {
	color: var(--color-white);
}

/* --- Primary variant ------------------------------------------------------- */

.nav-menu--primary {
	gap: 20px;
}

.nav-menu--primary .nav-menu__link {
	padding-block: 10px;
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-medium);
	line-height: 34px;
	text-transform: uppercase;
	color: var(--color-white);
}

.nav-menu--primary .nav-menu__link:hover,
.nav-menu--primary .nav-menu__item--current > .nav-menu__link {
	color: var(--color-gold-light);
}

/* Caret on items that own a submenu. */
.nav-menu--primary .nav-menu__item--has-submenu > .nav-menu__link::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 3px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

/* --- Desktop dropdown ------------------------------------------------------ */

.nav-menu__submenu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: var(--z-header);
	min-width: 240px;
	padding: var(--space-m);
	margin: 0;
	list-style: none;
	background-color: var(--color-white);
	border-bottom: 2px solid var(--color-gold);
	box-shadow: var(--shadow-card);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.nav-menu__item--has-submenu:hover > .nav-menu__submenu,
.nav-menu__item--has-submenu:focus-within > .nav-menu__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu__sublink {
	display: block;
	padding: var(--space-2xs) 0;
	font-size: var(--font-size-body-s);
	color: rgba(102, 102, 102, 0.85);
	transition: color var(--transition-fast);
}

.nav-menu__sublink:hover {
	color: var(--color-ink-pure);
}

/* The toggle only exists for the mobile panel. */
.nav-menu__submenu-toggle {
	display: none;
}

/* --- Footer variants -------------------------------------------------------- */

.nav-menu--footer {
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.nav-menu--footer-legal {
	gap: 20px;
}

.nav-menu--footer .nav-menu__link,
.nav-menu--footer-legal .nav-menu__link {
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-regular);
	line-height: 1.3;
	text-transform: none;
	color: inherit;
}

.nav-menu--footer .nav-menu__link:hover,
.nav-menu--footer-legal .nav-menu__link:hover {
	color: var(--color-white);
}

/* --- Mobile variant -------------------------------------------------------- */

.nav-menu--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.nav-menu--mobile .nav-menu__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-menu--mobile .nav-menu__link {
	flex: 1;
	padding-block: var(--space-s);
	font-size: var(--font-size-body-m);
	font-weight: var(--font-weight-medium);
	text-transform: uppercase;
	color: var(--color-white);
}

.nav-menu--mobile .nav-menu__item--has-submenu > .nav-menu__link::after {
	content: none;
}

.nav-menu--mobile .nav-menu__submenu-toggle {
	display: block;
	position: relative;
	width: 44px;
	height: 44px;
	color: var(--color-white);
}

.nav-menu--mobile .nav-menu__submenu-toggle::before,
.nav-menu--mobile .nav-menu__submenu-toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background-color: currentColor;
	transform: translate(-50%, -50%);
	transition: transform var(--transition-base);
}

.nav-menu--mobile .nav-menu__submenu-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.nav-menu--mobile .nav-menu__submenu-toggle[aria-expanded="true"]::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.nav-menu--mobile .nav-menu__submenu {
	position: static;
	width: 100%;
	padding: 0 0 var(--space-2xs) var(--space-s);
	background-color: transparent;
	border: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	display: none;
}

.nav-menu--mobile .nav-menu__item--has-submenu.is-open > .nav-menu__submenu {
	display: block;
}

.nav-menu--mobile .nav-menu__sublink {
	color: var(--color-text-inverse-muted);
}

.nav-menu--mobile .nav-menu__sublink:hover {
	color: var(--color-white);
}

.nav-menu--mobile-secondary .nav-menu__link {
	font-size: var(--font-size-body-s);
	text-transform: none;
	color: var(--color-text-inverse-muted);
}


/* ── element--popup--offer.css ── */
/* ==========================================================================
   Offer popup
   Layered on element--popup.css: the dialog, card, close button and backdrop
   all come from there. This file only adds the banner shape — photograph
   across the top, copy beneath it.
   ========================================================================== */

.popup--offer {
	width: min(92vw, 560px);
}

/* The photograph runs to the card edge, so the card's own padding moves onto
   the body below it. */
.popup-offer__card {
	padding: 0;
	overflow: hidden;
}

.popup-offer__image {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

/* The close button sits over the photograph, where the card's grey circle
   would disappear into it. */
.popup--offer .popup__close {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.popup-offer__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px 32px 32px;
	text-align: center;
}

.popup-offer__eyebrow {
	margin-bottom: 10px;
	padding: 6px 14px;
	font-family: var(--font-family-display);
	font-size: var(--font-size-body-xs);
	font-weight: var(--font-weight-bold);
	letter-spacing: var(--letter-spacing-tight);
	text-transform: uppercase;
	color: var(--color-ink-pure);
	background-color: var(--color-gold-light);
	border-radius: var(--radius-pill);
}

/* No close button to clear on this one: it is over the photograph. */
.popup-offer__title {
	padding-right: 0;
}

.popup-offer__text {
	margin: 10px 0 22px;
}

/* --- Short viewports -------------------------------------------------------- */

/*
 * The photograph is the first thing that can go: it is decoration, and the
 * offer still reads without it. Below this the card would otherwise scroll
 * before the button came into view.
 */
@media (max-height: 640px) {
	.popup-offer__image {
		height: 140px;
	}

	.popup-offer__body {
		padding: 20px 24px 24px;
	}
}

/* --- Mobile ----------------------------------------------------------------- */

@media (max-width: 767px) {
	.popup-offer__card {
		padding: 0;
	}

	.popup-offer__image {
		height: 170px;
	}

	.popup-offer__body {
		padding: 22px 20px 24px;
	}

	.popup--offer .popup__close {
		top: 12px;
		right: 12px;
	}
}


/* ── element--popup.css ── */
/* ==========================================================================
   Popups
   ========================================================================== */

.popup {
	width: min(92vw, 620px);
	max-width: none;
	max-height: 90dvh;
	padding: 0;
	color: var(--color-ink-pure);
	background-color: transparent;
	border: 0;
	overflow: visible;
}

.popup::backdrop {
	background-color: rgba(0, 0, 0, 0.78);
}

/* Locks the page behind the dialog, the same way the lightbox does. */
body:has(.popup[open]) {
	overflow: hidden;
}

/*
 * The card, not the dialog, carries the surface: a long form has to scroll
 * inside the popup rather than run off the bottom of the screen.
 */
.popup__card {
	position: relative;
	max-height: 90dvh;
	outline: 0; /* Focused on open to move the ring off the close button. */
	padding: 32px;
	overflow-y: auto;
	background-color: #FAFAFA;
	border-radius: 40px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);

	/* A short window still scrolls; a thin bar reads better against the radius. */
	scrollbar-width: thin;
	scrollbar-color: var(--color-gold) transparent;
}

/*
 * Deliberately smaller than the section headings it echoes: the card has to
 * hold five fields and a button inside the viewport, and a display-sized title
 * is what pushes the submit button out of sight on a laptop screen.
 */
.popup__title {
	padding-right: 40px; /* Clears the close button. */
	font-size: var(--font-size-heading-l);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
	text-align: center;
}

.popup__lede {
	margin: 8px 0 20px;
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
	text-align: center;
}

.popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	color: var(--color-ink-pure);
	background-color: var(--color-grey-light);
	border-radius: 50%;
	transition: background-color var(--transition-fast);
}

.popup__close::before,
.popup__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background-color: currentColor;
}

.popup__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.popup__close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.popup__close:hover {
	background-color: var(--color-gold-light);
}

/* --- Thank you -------------------------------------------------------------- */

.popup--thank-you .popup__card {
	text-align: center;
}

/* The reset makes every svg a block, so centring takes a margin, not text-align. */
.popup__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	color: var(--color-gold);
}

.popup__dismiss {
	min-width: 180px;
}

/* --- Short viewports ----------------------------------------------------------
 *
 * A laptop with a deep browser chrome leaves under 700px, and the submit button
 * is the first thing to fall off the bottom. Everything gives a few pixels so
 * the whole form stays in view before scrolling has to start.
 * -------------------------------------------------------------------------- */

@media (max-height: 760px) {
	.popup,
	.popup__card {
		max-height: 94dvh;
	}

	.popup__card {
		padding: 24px 24px 20px;
	}

	.popup__title {
		font-size: var(--font-size-heading-m);
	}

	.popup__lede {
		margin: 6px 0 14px;
	}

	.popup .wpcf7-form p {
		margin-bottom: 10px;
	}

	.popup input[type="submit"],
	.popup .wpcf7-submit {
		padding: 14px 30px;
	}
}

/* --- Mobile ------------------------------------------------------------------ */

@media (max-width: 767px) {
	.popup {
		width: 94vw;
	}

	/* Phones are short viewports too, so this keeps the tighter padding above. */
	.popup__card {
		padding: 24px 20px 20px;
		border-radius: 24px;
	}

	.popup__close {
		top: 12px;
		right: 12px;
		width: 36px;
		height: 36px;
	}

	.popup__title {
		padding-right: 32px;
	}
}


/* ── element--stat-counter.css ── */
/* ==========================================================================
   Stat counter
   ========================================================================== */

.stat-counter {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.stat-counter__value {
	font-size: 92px;
	font-weight: var(--font-weight-extrabold);
	line-height: 1;
	letter-spacing: var(--letter-spacing-display);
	/* Fallback for engines without text stroke: a solid gold number. */
	color: var(--color-gold);
}

/*
 * The number is drawn as a 2px gold outline with a hollow centre. The fill is
 * only cleared where the stroke actually renders, so a browser without it
 * shows the solid number above rather than nothing at all.
 */
@supports (-webkit-text-stroke: 2px currentColor) {
	.stat-counter__value {
		color: transparent;
		-webkit-text-stroke: 2px var(--color-gold);
	}
}

.stat-counter__label {
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-regular);
	line-height: 1;
	color: var(--color-ink);
}

@media (max-width: 1024px) {
	.stat-counter__value {
		font-size: 55px;
	}
}

@media (max-width: 767px) {
	.stat-counter__value {
		font-size: 40px;
	}
}


/* ── section--consultation-cta.css ── */
/* ==========================================================================
   Consultation CTA
   ========================================================================== */

.consultation-cta {
	padding-block: 0;
	background-image: linear-gradient(120deg, var(--color-ink-pure) 0%, var(--color-charcoal-soft) 100%);
	color: var(--color-text-inverse);
}

/*
 * Rides the bottom of the viewport on desktop, then settles into the flow when
 * the page scrolls down to it. position:sticky does this on its own — the live
 * site needed a fixed bar, a script and a spacer element to fake the same
 * thing.
 */
@media (min-width: 1025px) {
	.consultation-cta {
		position: sticky;
		bottom: 0;
		z-index: var(--z-sticky-cta);
	}
}

.consultation-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-m);
	max-width: calc(1300px + var(--layout-gutter) * 2);
	padding-block: 20px;
}

.consultation-cta__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.consultation-cta__title {
	font-size: 40px;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	letter-spacing: var(--letter-spacing-heading);
}

.consultation-cta__lede {
	font-size: var(--font-size-body-s);
	line-height: 1.8;
}

.consultation-cta .button {
	flex-shrink: 0;
	padding-block: 17px;
}

/* --- Tablet --------------------------------------------------------------- */

@media (max-width: 1024px) {
	.consultation-cta__title {
		font-size: 30px;
	}
}

/* --- Mobile --------------------------------------------------------------- */

@media (max-width: 767px) {
	.consultation-cta__inner {
		flex-direction: column;
		align-items: flex-start;
		padding-block: 30px;
	}

	.consultation-cta__title {
		font-size: 25px;
	}
}


/* ── section--design-build-method.css ── */
/* ==========================================================================
   Design-Build Method
   ========================================================================== */

.design-build-method {
	padding-block: 0;
	background-color: var(--color-white);
}

.design-build-method__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	max-width: calc(1300px + var(--layout-gutter) * 2);
	padding-block: 100px;
}

/* --- Pitch (sticky) -------------------------------------------------------- */

/*
 * Follows the cards while they scroll past. align-items:start on the grid is
 * what lets it stick — a stretched grid item is already as tall as its row and
 * would have nothing to travel through.
 */
.design-build-method__pitch {
	position: sticky;
	top: 50px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding: 10px;
}

.design-build-method__pitch-icon {
	width: 70px;
	height: 70px;
	color: var(--color-ink-pure);
}

.design-build-method__title {
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

.design-build-method__lede {
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
}

/* --- Cards ----------------------------------------------------------------- */

.design-build-method__cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
}

.method-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 40px;
	color: var(--color-text-inverse);
	background-color: var(--color-ink-pure);
	border: 0.8px solid rgba(247, 248, 240, 0.24);
	border-radius: 20px;
	box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.1);
}

/* The first card leads the stack, so it carries no outline. */
.method-card:first-child {
	border-color: transparent;
}

.method-card__icon {
	width: 50px;
	height: 50px;
	color: var(--color-gold);
}

.method-card__title {
	font-size: var(--font-size-heading-l);
	font-weight: var(--font-weight-bold);
	line-height: 1;
	letter-spacing: var(--letter-spacing-heading);
}

/* Internals come from .rich-text; only the colour is set here. */
.method-card__body {
	color: var(--color-text-inverse);
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.design-build-method__inner {
		grid-template-columns: minmax(0, 1fr);
		padding-block: 70px;
	}

	/* One column leaves nothing to scroll past, so the pitch stops sticking. */
	.design-build-method__pitch {
		position: static;
	}

	.design-build-method__title {
		font-size: 40px;
	}

	.design-build-method__cards {
		padding-inline: 10px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.design-build-method__inner {
		padding-block: 50px;
	}

	.design-build-method__title {
		font-size: 30px;
	}

	.method-card {
		padding: 25px;
	}

	.method-card__title {
		font-size: 25px;
	}
}


/* ── section--detailed-quote.css ── */
/* ==========================================================================
   Detailed quote
   ========================================================================== */

.detailed-quote {
	display: grid;
	grid-template-columns: 40% minmax(0, 1fr);
	/* Not stretch: the photo would otherwise grow with the panel every time a
	   reader expands it, and scale itself along the way. */
	align-items: start;
	padding-block: 0;
}

/* The frame carries the height, never the <img> — an image in a grid cell
   contributes its own intrinsic height and would set the row. */
.detailed-quote__photo-frame {
	position: sticky;
	top: 0;
	overflow: hidden;
	aspect-ratio: 2 / 3;
	max-height: 100vh;
}

.detailed-quote__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.detailed-quote__content {
	padding: 60px 40px;
}

.detailed-quote__title {
	font-size: 50px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

/* The live layout puts a 19px spacer between the heading and the panel, with a
   20px flex gap on each side of it. */
.detailed-quote__panel {
	margin-top: 39px;
	padding: 43px 50px 50px;
	border-radius: 20px;
	background-color: var(--color-white);
}

.detailed-quote__panel .expander {
	--expander-collapsed-height: 200px;
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.detailed-quote {
		grid-template-columns: minmax(0, 1fr);
	}

	/* One column: the photo becomes a banner and stops following. It stays
	   relative — static would release the absolutely positioned image inside
	   it to the nearest positioned ancestor and cover the whole section. */
	.detailed-quote__photo-frame {
		position: relative;
		aspect-ratio: 16 / 7;
	}

	.detailed-quote__title {
		font-size: 40px;
	}

	.detailed-quote__content {
		padding: 40px 20px;
	}

	.detailed-quote__panel {
		padding: 30px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.detailed-quote__photo-frame {
		aspect-ratio: 3 / 2;
	}

	.detailed-quote__title {
		font-size: 30px;
	}

	.detailed-quote__content {
		padding: 20px 10px;
	}

	.detailed-quote__panel {
		margin-top: 20px;
		padding: 20px;
	}
}


/* ── section--estimate-cta.css ── */
/* ==========================================================================
   Estimate CTA
   ========================================================================== */

.estimate-cta {
	padding-block: 0;
}

.estimate-cta__inner {
	padding-block: 10px;
}

/*
 * Pulled 50px into the footer below it, which is what makes the panel look
 * like it sits over the join.
 */
.estimate-cta__panel {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 721fr) minmax(0, 604fr);
	align-items: center;
	margin-bottom: -50px;
	padding: 40px 40px 80px;
	background-image: linear-gradient(127deg, var(--color-ink-pure) 44%, var(--color-gold) 100%);
	border-radius: 60px;
	color: var(--color-text-inverse);
}

/* --- Pitch ----------------------------------------------------------------- */

.estimate-cta__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding-right: 60px;
}

.estimate-cta__title {
	font-size: 40px;
	font-weight: var(--font-weight-medium);
	line-height: 1.1;
	letter-spacing: var(--letter-spacing-display);
	text-transform: capitalize;
	text-wrap: wrap;
}

.estimate-cta__lede {
	font-size: var(--font-size-body-m);
	line-height: var(--line-height-normal);
}

.estimate-cta__assurances {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.estimate-cta__assurance {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: var(--font-size-heading-m);
	font-weight: var(--font-weight-medium);
	line-height: 1;
	letter-spacing: var(--letter-spacing-heading);
}

.estimate-cta__assurance-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	color: var(--color-gold-light);
}

/* --- Form card ------------------------------------------------------------- */

.estimate-cta__form-card {
	padding: 40px;
	color: var(--color-ink-pure);
	background-color: #FAFAFA;
	border-radius: 60px;
	box-shadow: 0 0 35px rgba(85, 107, 47, 0.74);
}

.estimate-cta__form-title {
	font-size: 42px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-align: center;
}

.estimate-cta__form-lede {
	margin: 10px 0 25px;
	font-size: var(--font-size-body-m);
	line-height: var(--line-height-normal);
	text-align: center;
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.estimate-cta__panel {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
		padding: 40px 30px 70px;
	}

	.estimate-cta__content {
		padding-right: 0;
	}

	.estimate-cta__title {
		font-size: 34px;
	}

	.estimate-cta__form-title {
		font-size: 34px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.estimate-cta__panel {
		padding: 30px 20px 60px;
		border-radius: 30px;
	}

	.estimate-cta__title,
	.estimate-cta__form-title {
		font-size: 28px;
	}

	.estimate-cta__assurance {
		gap: 12px;
		font-size: var(--font-size-body-m);
	}

	.estimate-cta__assurance-icon {
		width: 36px;
		height: 36px;
	}

	.estimate-cta__form-card {
		padding: 25px 20px;
		border-radius: 30px;
	}
}


/* ── section--faq.css ── */
/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
	padding-block: 0;
	background-color: var(--color-white);
	background-image: url("../images/bg--faq.webp");
	background-position: bottom right;
	background-repeat: no-repeat;
}

.faq__inner {
	display: grid;
	grid-template-columns: minmax(0, 490fr) minmax(0, 840fr);
	align-items: start;
	gap: 70px;
	padding-block: 70px 100px;
}

.faq__header {
	padding: 10px;
}

.faq__title {
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
}

.faq__answers {
	padding: 10px;
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.faq__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
		padding-block: 50px 70px;
	}

	.faq__title {
		font-size: 40px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.faq__inner {
		padding-block: 40px 50px;
	}

	.faq__title {
		font-size: 30px;
	}

	.faq__header,
	.faq__answers {
		padding: 0;
	}
}


/* ── section--featured-at.css ── */
/* ==========================================================================
   Featured at
   ========================================================================== */

.featured-at {
	padding-block: 30px 30px;
	background-color: var(--color-white);
}

.featured-at__title {
	margin-bottom: 30px;
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-align: center;
}

/*
 * Ten fixed 122px cells on desktop, matching the live row. auto-fit lets the
 * row reflow to fewer columns as the panel narrows instead of squashing the
 * logos, which vary a lot in aspect ratio.
 */
.featured-at__logos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(122px, 1fr));
	gap: 20px;
	align-items: center;
	justify-items: center;
}

.featured-at__logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 122px;
}

.featured-at__logo {
	width: 100%;
	max-height: 122px;
	object-fit: contain;
}

/* --- Tablet --------------------------------------------------------------- */

@media (max-width: 1024px) {
	.featured-at__title {
		font-size: 40px;
	}
}

/* --- Mobile --------------------------------------------------------------- */

@media (max-width: 767px) {
	.featured-at {
		padding-block: 30px 30px;
	}

	.featured-at__title {
		margin-bottom: 20px;
		font-size: 30px;
	}

	.featured-at__logos {
		grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
		gap: 16px;
	}

	.featured-at__logo-item {
		height: 80px;
	}

	.featured-at__logo {
		max-height: 80px;
	}
}


/* ── section--foundation-of-trust.css ── */
/* ==========================================================================
   Foundation of Trust
   Two halves: an image mosaic on the left, the pitch on the right.
   ========================================================================== */

.foundation-of-trust {
	padding-block: 0;
	background-color: var(--color-white);
}

.foundation-of-trust__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* --- Image mosaic ---------------------------------------------------------- */

.foundation-of-trust__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	padding: 20px;
}

.foundation-of-trust__gallery-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.foundation-of-trust__image {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.foundation-of-trust__image--tall  { height: 390px; }
.foundation-of-trust__image--wide  { height: 200px; }
.foundation-of-trust__image--aside { height: 450px; }

/* --- Highlight card -------------------------------------------------------- */

.foundation-of-trust__highlight-card {
	padding: 25px;
	background-color: var(--color-ink-pure);
	border-radius: 20px;
}

.foundation-of-trust__highlight-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 13px;
	color: var(--color-gold-light);
}

.foundation-of-trust__highlight-title {
	font-size: var(--font-size-heading-s);
	line-height: 1.5;
	color: var(--color-white);
}

/* --- Content --------------------------------------------------------------- */

.foundation-of-trust__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 20px;
	padding: 20px;
}

.foundation-of-trust__title {
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

/* Internals come from .rich-text; only the paragraph rhythm is set here. */
.foundation-of-trust__body > * + * {
	margin-top: 29px;
}

/* --- Comparison lists ------------------------------------------------------ */

.foundation-of-trust__comparison {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
	padding: 20px;
	background-color: rgba(26, 26, 26, 0.05);
	border-radius: 30px;
}

.foundation-of-trust__comparison-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.foundation-of-trust__comparison-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: var(--font-size-body-m);
	line-height: 27px;
}

.foundation-of-trust__comparison-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.foundation-of-trust__comparison-list--drawbacks .foundation-of-trust__comparison-icon {
	color: var(--color-ink-pure);
}

.foundation-of-trust__comparison-list--benefits .foundation-of-trust__comparison-icon {
	color: var(--color-gold);
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.foundation-of-trust__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.foundation-of-trust__title {
		font-size: 40px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	/* The gutter comes from the blocks' own 20px padding here, so the panel
	   inset is dropped to avoid doubling it. */
	.foundation-of-trust__inner {
		width: 100%;
	}

	.foundation-of-trust__title {
		font-size: 30px;
	}

	/* On one column the pitch leads and the photos follow it. */
	.foundation-of-trust__content {
		order: -1;
	}

	/* The two mosaic columns dissolve so their photos stack in source order. */
	.foundation-of-trust__gallery {
		grid-template-columns: minmax(0, 1fr);
	}

	.foundation-of-trust__gallery-column {
		display: contents;
	}

	/*
	 * Only the wide crop survives on one column. The tall lead photo is 390px
	 * of scrolling between the pitch and everything under it, and the third
	 * photo was already dropped here on the live site.
	 */
	.foundation-of-trust__image--tall,
	.foundation-of-trust__image--aside {
		display: none;
	}

	.foundation-of-trust__comparison {
		grid-template-columns: minmax(0, 1fr);
		padding: 10px;
	}
}


/* ── section--gallery--projects.css ── */
/* ==========================================================================
   Gallery : Projects
   The portfolio grid. Square tiles so photographs of very different shapes
   still read as one wall, with the full image kept for the lightbox.
   ========================================================================== */

.projects-gallery__heading {
	margin-bottom: 40px;
	text-align: center;
}

.projects-gallery__title {
	margin-top: 16px;
	font-size: var(--font-size-display-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
}

.projects-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.projects-gallery__tile {
	overflow: hidden;
	border-radius: var(--radius-m);
}

.projects-gallery__link {
	display: block;
	height: 100%;
}

.projects-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	transition: transform var(--transition-base);
}

.projects-gallery__link:hover .projects-gallery__image,
.projects-gallery__link:focus-visible .projects-gallery__image {
	transform: scale(1.04);
}

/* --- Mobile ------------------------------------------------------------------- */

@media (max-width: 767px) {
	.projects-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
}


/* ── section--gallery.css ── */
/* ==========================================================================
   Gallery
   Full-bleed carousel. The track is a native scroller with snap points, so
   touch, trackpad and keyboard scrolling all work before any script runs.
   ========================================================================== */

.project-gallery {
	padding-block: 0 0;
	background-color: var(--color-white);
}

.project-gallery__title {
	margin-bottom: 50px;
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-align: center;
}

.project-gallery__carousel {
	position: relative;
	padding-bottom: 50px;
}

.project-gallery__track {
	display: flex;
	gap: 5px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.project-gallery__track::-webkit-scrollbar {
	display: none;
}

.project-gallery__slide {
	flex: 0 0 calc((100% - 10px) / 3);
	scroll-snap-align: center;
}

.project-gallery__link {
	display: block;
	height: 500px;
	cursor: zoom-in;
}

.project-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-base);
}

.project-gallery__link:hover .project-gallery__image {
	transform: scale(1.03);
}

/* The slide clips the zoom instead of the image spilling over its neighbour. */
.project-gallery__slide {
	overflow: hidden;
}

/* --- Controls -------------------------------------------------------------- */

.project-gallery__control {
	position: absolute;
	top: 50%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	color: var(--color-ink-pure);
	background-color: var(--color-white);
	border-radius: 50%;
	box-shadow: var(--shadow-card);
	opacity: 0;
	transform: translateY(-50%);
	transition: opacity var(--transition-base), background-color var(--transition-fast);
}

.project-gallery__carousel:hover .project-gallery__control,
.project-gallery__control:focus-visible {
	opacity: 1;
}

.project-gallery__control:hover {
	background-color: var(--color-gold-light);
}

.project-gallery__control--previous { left: 20px; }
.project-gallery__control--next     { right: 20px; }

.project-gallery__control--previous .project-gallery__control-icon {
	transform: rotate(180deg);
}

.project-gallery__control-icon {
	width: 20px;
	height: 14px;
}

/*
 * The arrows only appear on hover, which a touch screen has no way to do, so
 * they are dropped there — the dots below are the affordance instead.
 */
@media (hover: none) {
	.project-gallery__control {
		display: none;
	}
}

/* --- Dots ------------------------------------------------------------------ */

/* Dressed by element--carousel-dots.css; only the placing is set here. */
.project-gallery__dots {
	margin-top: 30px;
	color: var(--color-ink-pure);
}

/* --- Tablet --------------------------------------------------------------- */

@media (max-width: 1024px) {
	.project-gallery__title {
		margin-bottom: 30px;
		font-size: 40px;
	}

	.project-gallery__track {
		gap: 30px;
		padding-inline: 20px;
	}

	.project-gallery__slide {
		flex-basis: calc((100% - 30px) / 2);
	}

	.project-gallery__link {
		height: 400px;
	}
}

/* --- Mobile --------------------------------------------------------------- */

@media (max-width: 767px) {
	.project-gallery__title {
		margin-bottom: 24px;
		font-size: 30px;
	}

	.project-gallery__carousel {
		padding-bottom: 40px;
	}

	.project-gallery__slide {
		flex-basis: 80%;
	}

	.project-gallery__link {
		height: 320px;
	}

	.project-gallery__dots {
		margin-top: 20px;
	}
}


/* ── section--gold-standard.css ── */
/* ==========================================================================
   Gold Standard
   ========================================================================== */

.gold-standard {
	/* Overlaps the tail of the hero so the two dark areas read as one band. */
	margin-top: -120px;
	padding-block: 0;
	background-color: var(--color-charcoal-soft);
	color: var(--color-white);
}

.gold-standard__inner {
	/* Geometry comes from .container--panel; only the vertical rhythm is set here. */
}

/* --- Heading --------------------------------------------------------------- */

/*
 * 60px of leading padding = the panel's 50px gutter plus the heading column's
 * own 10px; the trailing 31px keeps the block at the height the live panel has.
 */
.gold-standard__heading {
	max-width: 848px;
	padding: 10px 10px 31px 60px;
}

.gold-standard__title {
	font-size: 48px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
}

.gold-standard__lede {
	margin-top: 20px;
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
}

/* --- Cards ---------------------------------------------------------------- */

.gold-standard__cards {
	padding: 20px 50px 60px;
	border-radius: 0 0 60px 60px;
}

/*
 * Native scroll container with snap points, driven by the shared carousel
 * script. See assets/js/element--carousel.js. Four slides fill the desktop
 * row exactly, so nothing scrolls there and the script hides the arrows;
 * narrower screens, or a fifth card, turn it into a slider.
 */
.gold-standard__track {
	display: flex;
	align-items: stretch;
	gap: 20px;
	overflow-x: auto;
	list-style: none;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.gold-standard__track::-webkit-scrollbar {
	display: none;
}

.gold-standard__slide {
	display: flex;
	flex: 0 0 calc((100% - 60px) / 4);
	scroll-snap-align: start;
}

/* The card fills whatever width the slide was given. */
.gold-standard__slide .icon-card {
	width: 100%;
}

/* Matches the row height the live grid settles on, so all four cards line up
   whatever the length of their copy. */
.gold-standard__cards .icon-card {
	min-height: 276px;
}

/* Reserves two lines for every title so the bodies below share one baseline,
   whether a title wraps or not. */
.gold-standard__cards .icon-card__title {
	min-height: 44px;
}

/* --- Controls -------------------------------------------------------------- */

.gold-standard__controls {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
}

.gold-standard__control {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	color: var(--color-white);
	border: 1.6px solid var(--color-gold);
	border-radius: 50%;
	transition: background-color var(--transition-fast), color var(--transition-fast);
}

.gold-standard__control:hover {
	color: var(--color-ink-pure);
	background-color: var(--color-gold);
}

.gold-standard__control:first-child .gold-standard__control-icon {
	transform: rotate(180deg);
}

.gold-standard__control-icon {
	width: 20px;
	height: 14px;
}

/* --- Tablet --------------------------------------------------------------- */

@media (max-width: 1024px) {
	.gold-standard__inner {
		padding-block: 40px;
	}

	.gold-standard__heading {
		max-width: 46.1%;
		padding: 0 0 21px 50px;
	}

	.gold-standard__title {
		font-size: 40px;
	}

	.gold-standard__slide {
		flex-basis: calc((100% - 20px) / 2);
	}

	.gold-standard__cards .icon-card,
	.gold-standard__cards .icon-card__title {
		min-height: 0;
	}
}

/* --- Mobile --------------------------------------------------------------- */

@media (max-width: 767px) {
	.gold-standard {
		/* No overlap: the hero ends flush on small screens. */
		margin-top: 0;
	}

	.gold-standard__inner {
		width: 100%;
		max-width: none;
		padding-block: 0 50px;
	}

	.gold-standard__heading {
		max-width: none;
		padding: 60px 20px 61px;
	}

	.gold-standard__title {
		font-size: 30px;
	}

	.gold-standard__cards {
		padding: 20px;
	}

	/* A sliver of the next card, so the track reads as scrollable. */
	.gold-standard__slide {
		flex-basis: 85%;
	}

	.gold-standard__control {
		width: 44px;
		height: 44px;
	}
}


/* ── section--hero.css ── */
/* ==========================================================================
   Hero
   Slideshow background under a dark vertical gradient, centred content stack.

   Type and spacing are set per breakpoint rather than fluidly: the live site
   steps between three fixed scales (>1024 / <=1024 / <=767) and interpolating
   between them would not reproduce its line breaks.
   ========================================================================== */

.hero {
	position: relative;
	padding-block: 0;
	overflow: hidden;
	background-color: var(--color-charcoal-soft);
	color: var(--color-white);
	isolation: isolate;
}

/* --- Background ----------------------------------------------------------- */

.hero__background {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__background-slide {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 500ms ease;
}

.hero__background-slide.is-active {
	opacity: 1;
	/* Ken Burns, matching the slow zoom of the original slideshow. */
	animation: hero-ken-burns 12s ease-out forwards;
}

@keyframes hero-ken-burns {
	from { transform: scale(1); }
	to   { transform: scale(1.08); }
}

/* Dark gradient that keeps the headline readable over any frame. */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: linear-gradient(rgba(2, 8, 20, 0.3) 0%, var(--color-charcoal-soft) 79%);
}

/* --- Content -------------------------------------------------------------- */

/*
 * Vertical rhythm uses explicit margins rather than a flex gap: the headline,
 * tagline and description overlap each other's line boxes on the live site,
 * which a uniform gap cannot reproduce.
 */
.hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-block: 200px 320px;
	text-align: center;
}

.hero__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.hero__headline {
	max-width: 1360px;
	margin-top: 22px;
	font-size: 60px;
	font-weight: var(--font-weight-regular);
	line-height: 1.2;
	letter-spacing: var(--letter-spacing-heading);
	color: var(--color-gold-light);
	/* Natural wrapping, not balanced: it reproduces the live line breaks. */
	text-wrap: wrap;
}

.hero__tagline {
	margin-top: -20px;
	font-size: 60px;
	font-weight: var(--font-weight-extrabold);
	line-height: var(--line-height-normal);
	letter-spacing: var(--letter-spacing-display);
	color: var(--color-white);
	text-wrap: balance;
}

.hero__description {
	max-width: 900px;
	margin-top: -10px;
	font-size: var(--font-size-body-l);
	line-height: var(--line-height-normal);
	color: var(--color-white);
}

.hero .button {
	margin-top: 58px;
}

/* --- Feature list --------------------------------------------------------- */

.hero__feature-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--space-2xs) 35px;
	margin-top: 20px;
}

.hero__feature-list-item {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-size: var(--font-size-body-m);
	line-height: 27px;
}

.hero__feature-list-icon {
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	color: var(--color-gold);
}

/* --- Tablet --------------------------------------------------------------- */

@media (max-width: 1024px) {
	.hero__inner {
		padding-block: 190px 310px;
	}

	.hero__headline {
		font-size: 50px;
	}

	.hero__tagline {
		font-size: 55px;
	}

	.hero__feature-list-item {
		gap: 10px;
	}

	.hero__feature-list-icon {
		width: 18px;
		height: 18px;
	}
}

/* --- Mobile --------------------------------------------------------------- */

@media (max-width: 767px) {
	.hero__inner {
		padding-block: 70px 30px;
		padding-inline: 10px;
	}

	.hero__headline {
		margin-top: 30px;
		font-size: 34px;
	}

	.hero__tagline {
		margin-top: 0;
		font-size: 23px;
		letter-spacing: var(--letter-spacing-tight);
	}

	.hero__description {
		margin-top: 20px;
		font-size: var(--font-size-body-s);
	}

	.hero .button {
		margin-top: 40px;
	}

	/*
	 * The list becomes a single column. The block itself stays centred while
	 * the rows inside it align left, so the icons form one vertical edge.
	 */
	.hero__feature-list {
		flex-direction: column;
		align-items: flex-start;
		width: fit-content;
		margin-inline: auto;
		gap: 0;
	}

	.hero__feature-list-item {
		gap: 10px;
	}

	.hero__feature-list-icon {
		width: 18px;
		height: 18px;
	}
}


/* ── section--latest-posts.css ── */
/* ==========================================================================
   Blog
   ========================================================================== */

.latest-posts {
	padding-block: 0;
	background-color: var(--color-white);
}

.latest-posts__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: calc(1300px + var(--layout-gutter) * 2);
	padding-block: 70px;
}

/* --- Header ---------------------------------------------------------------- */

.latest-posts__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 10px;
}

.latest-posts__title {
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
}

.latest-posts__controls {
	display: flex;
	gap: 10px;
}

.latest-posts__control {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	color: var(--color-ink-pure);
	border: 1.6px solid var(--color-gold);
	border-radius: 50%;
	transition: background-color var(--transition-fast), color var(--transition-fast);
}

.latest-posts__control:hover {
	background-color: var(--color-gold);
}

.latest-posts__control:first-child .latest-posts__control-icon {
	transform: rotate(180deg);
}

.latest-posts__control-icon {
	width: 20px;
	height: 14px;
}

/* --- Carousel -------------------------------------------------------------- */

/*
 * Native scroll container with snap points, driven by the shared carousel
 * script. See assets/js/element--carousel.js.
 */
.latest-posts__track {
	display: flex;
	align-items: stretch;
	gap: 30px;
	padding: 10px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.latest-posts__track::-webkit-scrollbar {
	display: none;
}

.latest-posts__slide {
	flex: 0 0 calc((100% - 60px) / 3);
	scroll-snap-align: start;
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.latest-posts__title {
		font-size: 40px;
	}

	.latest-posts__slide {
		flex-basis: calc((100% - 30px) / 2);
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.latest-posts__inner {
		padding-block: 50px;
	}

	.latest-posts__title {
		font-size: 30px;
	}

	.latest-posts__slide {
		flex-basis: 85%;
	}
}


/* ── section--multi-room-savings.css ── */
/* ==========================================================================
   Multi-room savings
   ========================================================================== */

.multi-room-savings {
	padding-block: 0;
	background-color: var(--color-charcoal-soft);
	color: var(--color-text-inverse);
}

/* The heavier bottom padding is room for the CTA hanging off the panel. */
.multi-room-savings__inner {
	padding-block: 50px 80px;
}

/* --- Heading --------------------------------------------------------------- */

.multi-room-savings__heading {
	max-width: 848px;
	padding: 10px 10px 10px 60px;
}

.multi-room-savings__title {
	font-size: 48px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

.multi-room-savings__lede {
	margin-top: 20px;
	font-size: var(--font-size-body-s);
	line-height: 1.8;
}

/* --- Tiers ----------------------------------------------------------------- */

.multi-room-savings__tiers {
	--panel-border-width: 2.4px;

	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	padding: 50px 50px 60px;
	border: var(--panel-border-width) solid var(--color-gold);
	border-radius: 60px;
}

/*
 * The CTA sits astride the panel: the gold outline runs through the middle of
 * the pill rather than closing underneath it. Taking it out of the grid flow
 * is what lets it hang past the edge, and the half-border offset lands it on
 * the line itself rather than on the inner edge of it — an absolute child is
 * positioned against the padding box, which stops short of the border.
 *
 * The overhang is half a button tall, and .multi-room-savings__inner carries
 * the padding that keeps it clear of whatever section follows.
 */
.multi-room-savings__cta {
	position: absolute;
	bottom: calc(var(--panel-border-width) / -2);
	left: 50%;
	transform: translate(-50%, 50%);
}

/*
 * Subgrid: every card shares one set of rows — badge, discount, title,
 * benefits, example — so each part starts on the same line across all three,
 * however long the copy above it runs. The benefits row takes the slack, which
 * is what lines the EXAMPLE boxes up with each other.
 *
 * Without subgrid support the cards stay flex columns and the example boxes
 * are pinned to the bottom of each card instead, which is the next best thing.
 */
@supports (grid-template-rows: subgrid) {
	.multi-room-savings__tiers {
		grid-template-rows: auto auto auto 1fr auto;
	}

	.multi-room-savings__tiers .pricing-tier {
		display: grid;
		grid-row: span 5;
		grid-template-rows: subgrid;
		/*
		 * The 20px gap from .pricing-tier carries over — setting gap:0 here
		 * would also zero the gutters the subgrid inherits from its parent.
		 * Text blocks sit at the top of their row; stretching them would
		 * swallow the gap between a heading and the list under it.
		 */
		align-items: start;
	}

	/* The badge is the one part that should hug its text. */
	.multi-room-savings__tiers .pricing-tier__badge {
		justify-self: start;
	}

	/*
	 * The panel fills its row so all three end up the same height, and the
	 * flex-era auto margin goes — the row places it now, and an auto margin
	 * would push it to the foot of that row and break the alignment.
	 */
	.multi-room-savings__tiers .pricing-tier__example {
		align-self: stretch;
		margin-top: 0;
	}
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.multi-room-savings__heading {
		max-width: none;
		padding: 10px 10px 20px;
	}

	.multi-room-savings__title {
		font-size: 36px;
	}

	.multi-room-savings__tiers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 30px 30px 40px;
		border-radius: 40px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.multi-room-savings__inner {
		padding-block: 40px;
	}

	.multi-room-savings__title {
		font-size: 28px;
	}

	.multi-room-savings__tiers {
		grid-template-columns: minmax(0, 1fr);
		padding: 20px;
		border-radius: 30px;
	}

	/*
	 * A pill long enough for this label is wider than the panel itself once
	 * the screen is this narrow, and straddling the edge would leave it
	 * hanging over both rounded corners. It comes back inside instead.
	 */
	.multi-room-savings__cta {
		position: static;
		display: flex;
		transform: none;
	}

	.multi-room-savings__cta .button {
		width: 100%;
	}
}


/* ── section--process.css ── */
/* ==========================================================================
   Process
   ========================================================================== */

.process {
	position: relative;
	padding-block: 0;
	background-image: linear-gradient(120deg, var(--color-ink-pure) 76%, var(--color-gold) 100%);
	color: var(--color-text-inverse);
	isolation: isolate;
}

/* Thin line pattern anchored to the bottom-left corner. */
.process::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: url("../images/bg--process-corner.png");
	background-position: bottom left;
	background-repeat: no-repeat;
}

.process__inner {
	max-width: calc(1300px + var(--layout-gutter) * 2);
	padding-block: 100px;
}

/* --- Header ---------------------------------------------------------------- */

.process__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px;
}

.process__title {
	max-width: 788px;
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

.process__flourish {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	border: 1.6px solid var(--color-white);
	border-radius: 50%;
}

.process__flourish-icon {
	width: 60px;
	height: 40px;
}

/* --- Steps ----------------------------------------------------------------- */

/*
 * A vertical list here, so the carousel track never overflows and the script
 * keeps the dots hidden. The mobile rule below is what makes it a slider.
 */
.process__steps {
	display: flex;
	flex-direction: column;
	gap: 25px;
	padding: 10px;
	list-style: none;
}

/*
 * Three fixed columns: the number, the stage name, and the explanation. The
 * copy column is capped rather than fluid — letting it take the leftover width
 * would rewrap the text shorter and collapse the row height.
 */
.process-step {
	display: grid;
	grid-template-columns: 96px minmax(0, 419px) minmax(0, 562px);
	align-items: center;
	gap: 20px;
	padding: 30px;
	color: var(--color-ink-pure);
	background-color: var(--color-gold);
	border: 1.6px solid rgba(255, 255, 255, 0.15);
	border-radius: 25px;
	box-shadow: 0 30px 35px rgba(0, 0, 0, 0.08);
}

.process-step__number {
	padding: 10px;
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: 1.5;
	letter-spacing: var(--letter-spacing-display);
}

.process-step__title {
	padding: 10px;
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-normal);
	letter-spacing: normal;
}

/* The extra 21px at the foot is the trailing space the live paragraph carries;
   it is what sets the row height, since this is the tallest column. */
.process-step__body {
	padding: 10px 10px 31px;
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.process__inner {
		padding-block: 70px;
	}

	.process__title {
		font-size: 40px;
	}

	.process__flourish {
		width: 90px;
		height: 90px;
	}

	.process__flourish-icon {
		width: 40px;
		height: 28px;
	}

	.process-step {
		grid-template-columns: 96px minmax(0, 1fr);
		align-items: start;
	}

	/* The number keeps its own column; name and copy stack in the second. */
	.process-step__body {
		grid-column: 2;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.process__inner {
		padding-block: 50px;
	}

	.process__header {
		padding: 10px;
	}

	.process__title {
		font-size: 30px;
	}

	.process__flourish {
		display: none;
	}

	/*
	 * Five stacked steps were most of the page on a phone. Turned on its side
	 * the section is one screen with a swipe, and the dots say how far in you
	 * are — which the vertical stack never told you.
	 */
	.process__steps {
		flex-direction: row;
		align-items: stretch;
		gap: 15px;
		padding: 10px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: 10px;
		scroll-behavior: smooth;
		scrollbar-width: none;
	}

	.process__steps::-webkit-scrollbar {
		display: none;
	}

	/* 88% leaves the next step showing at the edge. */
	.process-step {
		flex: 0 0 88%;
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
		padding: 20px;
		scroll-snap-align: start;
	}

	.process-step__body {
		grid-column: 1;
	}

	.process-step__number {
		font-size: 40px;
		line-height: 1.2;
	}

	/* The dots sit on the near-black band, so they inherit the light text. */
	.process__dots {
		color: var(--color-white);
	}
}


/* ── section--protection-comparison.css ── */
/* ==========================================================================
   Protection comparison
   ========================================================================== */

.protection-comparison {
	position: relative;
	padding-block: 0;
	background-image: linear-gradient(var(--color-white) 0%, #F7F7F5 100%);
	isolation: isolate;
}

/* Decorative gold arcs, pinned to the top-left at their natural size. */
.protection-comparison::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: url("../images/bg--arc-lines.webp");
	background-position: 0 0;
	background-repeat: no-repeat;
}

.protection-comparison__inner {
	/* Side gutters so the cards never sit against the viewport edge. */
	padding-inline: 50px;
	padding-bottom: 80px;
}

/* --- Heading --------------------------------------------------------------- */

/* 93px below the lede: 70px of block padding plus the 23px of trailing space
   the paragraph carries on the live site. */
.protection-comparison__heading {
	padding-block: 30px 93px;
	text-align: center;
}

.protection-comparison__title {
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

.protection-comparison__lede {
	margin-top: 20px;
	font-size: var(--font-size-body-m);
	line-height: 27px;
}

/* --- Cards ----------------------------------------------------------------- */

/* The 686:672 ratio of the original, kept proportional at every width. */
.protection-comparison__cards {
	display: grid;
	grid-template-columns: minmax(0, 686fr) minmax(0, 672fr);
	gap: 30px;
}

/* --- Controls -------------------------------------------------------------- */

/*
 * Mobile only. Both cards are side by side above that, so there is nothing to
 * page through; the script also sets [hidden] on them whenever the track is
 * not scrollable, and the rule below keeps that authoritative.
 */
.protection-comparison__controls {
	display: none;
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.protection-comparison__inner {
		padding-inline: 30px;
	}

	.protection-comparison__title {
		font-size: 40px;
	}

	.protection-comparison__cards {
		gap: 20px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.protection-comparison__inner {
		padding-inline: 0;
		padding-bottom: 50px;
	}

	.protection-comparison__title {
		font-size: 30px;
	}

	.protection-comparison__controls {
		display: flex;
		gap: 12px;
		justify-content: center;
		/* Sits in the gap the heading already leaves above the cards. */
		margin-bottom: 20px;
	}

	.protection-comparison__controls[hidden] {
		display: none;
	}

	.protection-comparison__control {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		color: var(--color-ink-pure);
		background-color: var(--color-white);
		border: 1.6px solid var(--color-gold);
		border-radius: 50%;
		box-shadow: var(--shadow-card);
	}

	.protection-comparison__control:first-child .protection-comparison__control-icon {
		transform: rotate(180deg);
	}

	.protection-comparison__control-icon {
		width: 18px;
		height: 12px;
	}

	/*
	 * One card per screen, swiped, with the arrows above saying so.
	 *
	 * The negative inline margin is what makes the card exactly as wide as the
	 * section: .container--panel already insets this block by 20px a side via
	 * its width, so the track is pushed back out to the full viewport and its
	 * own padding recreates that same 20px inside the scroller. Padding rather
	 * than plain width, because a scroll container clips at its padding box —
	 * without it the card's shadow and rounded corners would be shaved off at
	 * the left and right edges.
	 *
	 * The block padding is there for the same reason: the badge hangs 20px
	 * above the card and the shadow spreads ~21px below it, and a horizontal
	 * scroller clips vertically too.
	 */
	.protection-comparison__cards {
		display: flex;
		gap: 20px;
		margin-inline: -20px;
		padding-block: 30px 25px;
		padding-inline: 20px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: 20px;
		scroll-behavior: smooth;
		scrollbar-width: none;
	}

	.protection-comparison__cards::-webkit-scrollbar {
		display: none;
	}

	.protection-comparison__cards > .comparison-card {
		flex: 0 0 100%;
		scroll-snap-align: start;
	}
}


/* ── section--quote-cta.css ── */
/* ==========================================================================
   Quote CTA
   ========================================================================== */

.quote-cta {
	padding-block: 0;
}

/*
 * The photograph is set inline by the template, from the section field or the
 * media library. It is deliberately not declared here: the url() this file
 * used to carry pointed at a theme file that was never shipped, so the band
 * rendered as flat grey with no way to tell from the CSS that it was broken.
 *
 * The ink background is the floor under it — with no photo the section is a
 * dark band rather than a washed-out nothing.
 */
.quote-cta__band {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 650px;
	padding: 10px;
	background-color: var(--color-ink);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--color-text-inverse);
}

/* Dark wash so the headline holds against the photo. Only over a photo: on the
   plain ink fallback it would just muddy the band. */
.quote-cta__band--has-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--color-ink-pure);
	opacity: 0.47;
}

.quote-cta__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	max-width: calc(910px + var(--layout-gutter) * 2);
	padding-block: 20px;
	text-align: center;
}

.quote-cta__title {
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

.quote-cta__lede {
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
}

.quote-cta .button {
	margin-top: 11px;
}

/*
 * Parallax on desktop only. A fixed background is ignored or janky on mobile
 * Safari and costs a full-viewport repaint on every scroll frame, so it stays
 * off where it would hurt — the same cut-off the live site uses.
 */
@media (min-width: 1025px) {
	.quote-cta__band--has-photo {
		background-attachment: fixed;
	}
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.quote-cta__title {
		font-size: 40px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.quote-cta__band {
		min-height: 400px;
	}

	.quote-cta__title {
		font-size: 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.quote-cta__band {
		background-attachment: scroll;
	}
}


/* ── section--related-articles.css ── */
/* ==========================================================================
   Related articles
   Post cards closing a page, three across and scrolled by the shared carousel
   script. The card brings its own design; this is the band around it.
   ========================================================================== */

.related-articles__title {
	margin-bottom: 30px;
	font-size: 48px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-align: center;
}

/*
 * Native scroll container with snap points, driven by the shared carousel
 * script. See assets/js/element--carousel.js. Without JavaScript the track is
 * still scrollable by touch, trackpad and keyboard.
 */
.related-articles__track {
	display: flex;
	align-items: stretch;
	gap: 30px;
	overflow-x: auto;
	list-style: none;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.related-articles__track::-webkit-scrollbar {
	display: none;
}

.related-articles__slide {
	flex: 0 0 calc((100% - 60px) / 3);
	scroll-snap-align: start;
}

/* --- Controls -------------------------------------------------------------- */

/* Under the track rather than beside the heading, which is centred. */
.related-articles__controls {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 20px;
}

.related-articles__control {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	color: var(--color-ink-pure);
	border: 1.6px solid var(--color-gold);
	border-radius: 50%;
	transition: background-color var(--transition-fast), color var(--transition-fast);
}

.related-articles__control:hover {
	background-color: var(--color-gold);
}

.related-articles__control:first-child .related-articles__control-icon {
	transform: rotate(180deg);
}

.related-articles__control-icon {
	width: 20px;
	height: 14px;
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.related-articles__title {
		font-size: 36px;
	}

	.related-articles__slide {
		flex-basis: calc((100% - 30px) / 2);
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.related-articles__title {
		margin-bottom: 20px;
		font-size: 28px;
	}

	.related-articles__track {
		gap: 20px;
	}

	.related-articles__slide {
		flex-basis: 85%;
	}

	.related-articles__control {
		width: 44px;
		height: 44px;
	}
}


/* ── section--reviews.css ── */
/* ==========================================================================
   Reviews
   The slider markup belongs to the reviews plugin; this only sets the band
   it sits in and keeps it inside the page's panel width.
   ========================================================================== */

.reviews {
	padding-block: 0;
	background-color: var(--color-white);
}

.reviews__inner {
	padding-block: 40px 0;
}

/* The slider is wider than its track on some viewports; clipping here stops
   it from adding horizontal page scroll. */
.reviews__inner > * {
	max-width: 100%;
}

/* The heading is optional; the band reads fine without one. Sized like the
   other panel titles so a review section does not shout louder than them. */
.reviews__title {
	margin-bottom: 30px;
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-align: center;
}

@media (max-width: 1024px) {
	.reviews__title {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.reviews__title {
		margin-bottom: 20px;
		font-size: 30px;
	}
}


/* ── section--service-locations.css ── */
/* ==========================================================================
   Service Locations
   ========================================================================== */

.service-locations {
	padding-block: 0;
}

.service-locations__inner {
	display: grid;
	grid-template-columns: minmax(0, 728fr) minmax(0, 616fr);
	gap: 4%;
	align-items: center;
	padding-block: 80px;
}

/* --- Content --------------------------------------------------------------- */

.service-locations__content {
	padding: 10px;
}

.service-locations__title {
	font-size: 42px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

.service-locations__lede {
	margin-top: 20px;
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-medium);
	line-height: var(--line-height-normal);
}

/* --- Locations ------------------------------------------------------------- */

/*
 * A column count the content decides. The list held six places when it was
 * written by hand and holds every city we have a page for now, so the columns
 * are sized to the longest label rather than counted out in advance.
 */
.service-locations__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 12px 20px;
	align-items: start;
	margin-top: 30px;
	padding: 10px;
}

.service-locations__link {
	display: inline-flex;
	align-items: flex-start;
	gap: 5px;
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
	transition: color var(--transition-fast);
}

.service-locations__link:hover {
	color: var(--color-gold);
}

.service-locations__icon {
	flex-shrink: 0;
	width: 18px;
	height: 14px;
	margin-top: 4px;
	color: var(--color-gold);
}

/* --- Map ------------------------------------------------------------------- */

.service-locations__map {
	padding: 10px;
}

/* Desaturated to sit quietly beside the copy, as on the live page. */
.service-locations__map iframe {
	display: block;
	width: 100%;
	height: 510px;
	border: 0;
	border-radius: var(--radius-m);
	filter: saturate(0);
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.service-locations__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
		padding-block: 60px;
	}

	.service-locations__title {
		font-size: 34px;
	}

	.service-locations__map iframe {
		height: 400px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.service-locations__inner {
		padding-block: 50px;
	}

	.service-locations__title {
		font-size: 28px;
	}

	.service-locations__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/* ── section--services-overview.css ── */
/* ==========================================================================
   Services Overview
   ========================================================================== */

.services-overview {
	padding-block: 0;
	background-color: var(--color-white);
}

.services-overview__inner {
	max-width: calc(1300px + var(--layout-gutter) * 2);
	padding-block: 100px;
}

/* --- Header ---------------------------------------------------------------- */

.services-overview__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
	padding: 10px;
}

.services-overview__title {
	max-width: 748px;
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

.services-overview__flourish {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	color: var(--color-gold);
	border: 1.6px solid var(--color-gold);
	border-radius: 50%;
}

.services-overview__flourish-icon {
	width: 60px;
	height: 40px;
}

/* --- Panels ---------------------------------------------------------------- */

/* No inset of its own: the panels line up with the header above them. */
.services-overview__cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-panel {
	display: grid;
	grid-template-columns: minmax(0, 660fr) minmax(0, 539fr);
	gap: 20px;
	padding: 30px;
	border-radius: 30px;
}

/* Warm and cool panels alternate down the stack. */
.service-panel--warm {
	background-color: #FFFDF7;
	border: 0.8px solid var(--color-gold-light);
}

.service-panel--cool {
	background-color: #F4F7F2;
	border: 0.8px solid rgba(36, 82, 67, 0.17);
}

/* The frame carries the height so the photo cannot drag the row to its own
   aspect ratio. */
.service-panel__photo-frame {
	position: relative;
	overflow: hidden;
	min-height: 400px;
	border-radius: 20px;
}

.service-panel__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*
 * A bare wrapper. It used to carry 10px of its own, which pushed the white
 * card 10px further in than the photo beside it — visible as a narrower text
 * block once the two stack on a phone. The panel's own padding is the inset.
 */
.service-panel__body {
	display: flex;
}

/* Title and copy sit in one white card inside the tinted panel, so the 40px
   inset is declared once rather than on each half. */
.service-panel__card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	padding: 40px;
	background-color: var(--color-white);
	border-radius: 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.service-panel__title {
	font-size: 40px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-heading);
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.services-overview__inner {
		padding-block: 70px;
	}

	.services-overview__title {
		font-size: 40px;
	}

	.services-overview__flourish {
		width: 90px;
		height: 90px;
	}

	.services-overview__flourish-icon {
		width: 40px;
		height: 28px;
	}

	.service-panel {
		grid-template-columns: minmax(0, 1fr);
	}

	.service-panel__photo-frame {
		min-height: 320px;
	}

	.service-panel__title {
		font-size: 30px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.services-overview__inner {
		padding-block: 50px;
	}

	.services-overview__title {
		font-size: 30px;
	}

	.services-overview__flourish {
		display: none;
	}

	.service-panel {
		padding: 15px;
	}

	.service-panel__photo-frame {
		min-height: 240px;
	}

	.service-panel__card {
		padding: 25px;
	}

	.service-panel__title {
		font-size: 25px;
	}
}


/* ── section--services.css ── */
/* ==========================================================================
   Services
   ========================================================================== */

.services {
	padding-block: 0;
	background-color: var(--color-white);
	padding-top: 40px;
}

.services__inner {
	padding-bottom: 60px;
}

.services__title {
	margin-bottom: 40px;
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-align: center;
}

/* No inset of its own: the row lines up with the heading above it and with
   every other section in the container, rather than sitting 10px inside. */
.services__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

/* --- Tablet --------------------------------------------------------------- */

@media (max-width: 1024px) {
	.services__title {
		margin-bottom: 30px;
		font-size: 40px;
	}

	.services__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* --- Mobile --------------------------------------------------------------- */

@media (max-width: 767px) {
	.services__inner {
		padding-bottom: 40px;
	}

	.services__title {
		margin-bottom: 24px;
		font-size: 30px;
	}

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


/* ── section--trust-logos.css ── */
/* ==========================================================================
   Trust logos
   ========================================================================== */

.trust-logos {
	padding-block: 0;
}

.trust-logos__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	place-items: center;
	padding-block: 30px;
}

.trust-logos__logo {
	width: auto;
	max-height: 60px;
}

/* The guarantee seal is taller than the two review logos by design. */
.trust-logos__logo:last-child {
	max-height: 90px;
}

@media (max-width: 767px) {
	.trust-logos__inner {
		gap: 30px;
	}

	.trust-logos__logo {
		max-height: 48px;
	}

	.trust-logos__logo:last-child {
		max-height: 72px;
	}
}


/* ── section--why-choose-us.css ── */
/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-choose-us {
	padding-block: 0;
	background-image: linear-gradient(180deg, var(--color-page) 0%, var(--color-white) 100%);
}

.why-choose-us__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-block: 70px 50px;
}

/* --- Pitch + benefits ------------------------------------------------------ */

.why-choose-us__main {
	display: grid;
	/* 756:604 of the original row, kept proportional at any width. */
	grid-template-columns: minmax(0, 756fr) minmax(0, 604fr);
	gap: 20px;
	padding: 10px;
}

.why-choose-us__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding: 10px;
}

.why-choose-us__title {
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
	text-wrap: wrap;
}

.why-choose-us__lede {
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
}

/* --- Photo and its stat badge ---------------------------------------------- */

.why-choose-us__photo-frame {
	position: relative;
	width: 100%;
	margin-top: 20px;
}

.why-choose-us__photo {
	width: 100%;
	height: 380px;
	object-fit: cover;
	object-position: center;
	border-radius: 20px;
}

/* Straddles the bottom-right corner of the photo, as on the live page. */
.why-choose-us__stat-badge {
	position: absolute;
	right: -10px;
	bottom: -10px;
	width: 220px;
	padding: 15px;
	background-color: var(--color-ink-pure);
	border: 8px solid var(--color-cream);
	border-radius: 22px;
	text-align: center;
}

.why-choose-us__stat-badge-value {
	margin-bottom: 5px;
	font-size: 50px;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	letter-spacing: var(--letter-spacing-tight);
	color: var(--color-white);
}

.why-choose-us__stat-badge-label {
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
	color: var(--color-white);
}

/* --- Benefit cards --------------------------------------------------------- */

.why-choose-us__benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 20px;
	padding: 10px;
}

/* --- Counters -------------------------------------------------------------- */

.why-choose-us__counters {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	padding: 30px 20px;
}

.why-choose-us__counters .stat-counter {
	align-items: center;
}

/* --- Tablet ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.why-choose-us__main {
		grid-template-columns: minmax(0, 1fr);
	}

	.why-choose-us__title {
		font-size: 40px;
	}

	.why-choose-us__stat-badge-value {
		font-size: 40px;
	}
}

/* --- Mobile ---------------------------------------------------------------- */

@media (max-width: 767px) {
	.why-choose-us__inner {
		padding-block: 50px;
	}

	.why-choose-us__title {
		font-size: 30px;
	}

	.why-choose-us__benefits {
		grid-template-columns: minmax(0, 1fr);
	}

	.why-choose-us__counters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 20px;
	}

	.why-choose-us__stat-badge {
		right: 0;
		bottom: -10px;
		width: 160px;
		padding: 12px;
		border-width: 6px;
	}

	.why-choose-us__stat-badge-value {
		font-size: 25px;
	}
}


/* ── page--about.css ── */
/* ==========================================================================
   About
   Four blocks written only for this page: the claims under the hero, the story
   beside its photographs, the promise cards, and the founder's long read.
   ========================================================================== */

/* --- Highlights -------------------------------------------------------------- */

.about-highlights {
	padding-block: 0;
}

.about-highlights__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	padding-block: var(--section-padding-block);
}

/* --- Story ------------------------------------------------------------------- */

.about-story__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 60px;
	align-items: center;
}

.about-story__title {
	margin-top: 16px;
	font-size: var(--font-size-display-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
}

.about-story__body {
	margin-top: 20px;
}

/*
 * Three photographs, the first one tall on the left and the other two stacked
 * beside it — the arrangement the page had before it was rebuilt.
 */
.about-story__photos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, 1fr);
	gap: 20px;
}

.about-story__photo {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-m);
}

.about-story__photo:first-child {
	grid-row: span 2;
}

.about-story__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- Promise ----------------------------------------------------------------- */

.about-promise {
	background-color: var(--color-surface-cream);
}

.about-promise__heading {
	margin-bottom: 40px;
	text-align: center;
}

.about-promise__title {
	margin-top: 16px;
	font-size: var(--font-size-display-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
}

.about-promise__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

/* --- Founder ----------------------------------------------------------------- */

.about-founder__title {
	margin-top: 16px;
	font-size: var(--font-size-heading-l);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-tight);
}

.about-founder__body {
	margin-top: 24px;
}

.about-founder__quote {
	margin: 32px 0;
	padding-left: 24px;
	font-family: var(--font-family-display);
	font-size: var(--font-size-heading-m);
	line-height: var(--line-height-normal);
	border-left: 3px solid var(--color-gold);
}

.about-founder__quote p {
	margin: 0;
}

.about-founder__quote-source {
	display: block;
	margin-top: 12px;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-body-s);
	font-style: normal;
	color: var(--color-text-muted);
}

.about-founder__press {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border-card);
}

.about-founder__press-lede {
	font-size: var(--font-size-body-s);
	line-height: var(--line-height-normal);
	color: var(--color-text-muted);
}

.about-founder__press-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	margin-top: 20px;
	list-style: none;
}

.about-founder__press-item {
	padding: 6px 14px;
	font-size: var(--font-size-body-xs);
	font-weight: var(--font-weight-medium);
	letter-spacing: var(--letter-spacing-tight);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-pill);
}

/* --- Community ---------------------------------------------------------------- */

.about-community {
	padding-block: 0;
}

.about-community__inner {
	padding: 60px;
	color: var(--color-text-inverse);
	background-color: var(--color-surface-dark);
	border-radius: var(--radius-l);
}

.about-community__title {
	max-width: 20ch;
	margin-top: 16px;
	font-size: var(--font-size-display-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
}

.about-community__body {
	max-width: 70ch;
	margin-top: 20px;
	color: var(--color-text-inverse-muted);
}

/* --- Tablet ------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.about-story__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.about-community__inner {
		padding: 40px;
	}
}

/* --- Mobile ------------------------------------------------------------------- */

@media (max-width: 767px) {
	.about-story__photos {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: none;
	}

	.about-story__photo:first-child {
		grid-row: auto;
	}

	.about-founder__quote {
		padding-left: 16px;
	}

	.about-community__inner {
		padding: 28px 20px;
	}
}


/* ── page--blog-archive.css ── */
/* ==========================================================================
   Blog archive
   The card carries its own design; this only lays the cards out and styles
   the heading and pagination around them.
   ========================================================================== */

.blog-archive__header {
	margin-bottom: 40px;
	text-align: center;
}

.blog-archive__title {
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-display);
}

.blog-archive__lede {
	max-width: 720px;
	margin: 15px auto 0;
	font-size: var(--font-size-body-m);
	line-height: var(--line-height-normal);
	color: var(--color-text-muted);
}

/* Three across at full width, and as many as fit below that — the same 30px
   gutter the carousel on the front page uses. */
.blog-archive__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	list-style: none;
}

.blog-archive__empty {
	padding-block: 40px;
	font-size: var(--font-size-body-m);
	text-align: center;
	color: var(--color-text-muted);
}

/* --- Pagination ------------------------------------------------------------- */

.blog-archive__pagination {
	margin-top: 50px;
}

.blog-archive__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.blog-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding-inline: 14px;
	font-size: var(--font-size-body-s);
	line-height: 1;
	color: var(--color-ink-pure);
	background-color: var(--color-white);
	border-radius: var(--radius-pill);
	transition: background-color var(--transition-fast), color var(--transition-fast);
}

.blog-archive__pagination .page-numbers:hover {
	background-color: var(--color-gold-light);
}

.blog-archive__pagination .page-numbers.current {
	color: var(--color-white);
	background-color: var(--color-ink-pure);
}

.blog-archive__pagination .page-numbers.dots {
	min-width: 0;
	padding-inline: 4px;
	background-color: transparent;
}

/* --- Tablet ----------------------------------------------------------------- */

@media (max-width: 1024px) {
	.blog-archive__title {
		font-size: 40px;
	}
}

/* --- Mobile ----------------------------------------------------------------- */

@media (max-width: 767px) {
	.blog-archive__header {
		margin-bottom: 30px;
	}

	.blog-archive__title {
		font-size: 30px;
	}

	.blog-archive__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
	}

	.blog-archive__pagination {
		margin-top: 30px;
	}
}


/* ── page--blog-single.css ── */
/* ==========================================================================
   Blog post
   A single reading column. The text blocks are ordinary rich text, so their
   typography comes from base--06-rich-text.css; this sets the page around it.
   ========================================================================== */

.blog-post__header {
	margin-bottom: 30px;
	text-align: center;
}

.blog-post__date {
	display: block;
	margin-bottom: 12px;
	font-size: var(--font-size-body-s);
	letter-spacing: var(--letter-spacing-tight);
	color: var(--color-text-muted);
}

.blog-post__title {
	font-size: 48px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
}

.blog-post__media {
	margin: 0 0 40px;
}

.blog-post__image {
	width: 100%;
	height: auto;
	border-radius: var(--radius-m);
}

/* --- The flexible blocks ----------------------------------------------------
 *
 * Blocks are stacked with one rhythm whatever their order, so text after an
 * image sits the same distance away as text after text.
 * -------------------------------------------------------------------------- */

.blog-post__content > * + * {
	margin-top: 30px;
}

.blog-post__figure {
	margin: 0;
}

.blog-post__figure-image {
	width: 100%;
	height: auto;
	border-radius: var(--radius-m);
}

.blog-post__figure-caption {
	margin-top: 10px;
	font-size: var(--font-size-body-xs);
	line-height: var(--line-height-normal);
	text-align: center;
	color: var(--color-text-muted);
}

/* --- Tablet ----------------------------------------------------------------- */

@media (max-width: 1024px) {
	.blog-post__title {
		font-size: 36px;
	}
}

/* --- Mobile ----------------------------------------------------------------- */

@media (max-width: 767px) {
	.blog-post__title {
		font-size: 28px;
	}

	.blog-post__media {
		margin-bottom: 30px;
	}

	.blog-post__content > * + * {
		margin-top: 20px;
	}
}


/* ── page--contacts.css ── */
/* ==========================================================================
   Contacts
   Two blocks: how to reach us beside the map, and the quote form. The form
   itself is styled by element--form--contact.css wherever it appears.
   ========================================================================== */

.contact-details__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 60px;
	align-items: center;
}

.contact-details__title {
	margin-top: 16px;
	font-size: var(--font-size-display-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
}

.contact-details__body {
	margin-top: 20px;
	font-size: var(--font-size-body-m);
	line-height: var(--line-height-normal);
	color: var(--color-text-muted);
}

.contact-details__list {
	margin-top: 30px;
	list-style: none;
}

.contact-details__item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: var(--font-size-body-m);
	line-height: var(--line-height-normal);
}

.contact-details__item + .contact-details__item {
	margin-top: 16px;
}

.contact-details__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 4px;
	color: var(--color-gold);
}

.contact-details__link {
	transition: color var(--transition-fast);
}

.contact-details__link:hover {
	color: var(--color-gold);
}

.contact-details__map iframe {
	display: block;
	width: 100%;
	height: 460px;
	border: 0;
	border-radius: var(--radius-m);
}

/* --- Form --------------------------------------------------------------------- */

.contact-form {
	background-color: var(--color-surface-cream);
}

.contact-form__inner {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 60px;
	align-items: start;
}

.contact-form__title {
	margin-top: 16px;
	font-size: var(--font-size-display-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
}

.contact-form__body {
	margin-top: 20px;
	font-size: var(--font-size-body-m);
	line-height: var(--line-height-normal);
	color: var(--color-text-muted);
}

.contact-form__form {
	padding: 32px;
	background-color: var(--color-surface-light);
	border-radius: var(--radius-m);
	box-shadow: var(--shadow-card);
}

/* --- Tablet ------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.contact-details__inner,
	.contact-form__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.contact-details__map iframe {
		height: 360px;
	}
}

/* --- Mobile ------------------------------------------------------------------- */

@media (max-width: 767px) {
	.contact-form__form {
		padding: 20px;
	}

	.contact-details__map iframe {
		height: 300px;
	}
}


/* ── page--our-team.css ── */
/* ==========================================================================
   Our Team
   Two blocks written only for this page: the introduction beside its
   photographs, and the people themselves. The claims under the hero and the
   promise cards are the About page's, reused here.
   ========================================================================== */

/* --- Introduction ------------------------------------------------------------ */

.team-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 60px;
	align-items: center;
}

.team-intro__title {
	margin-top: 16px;
	font-size: var(--font-size-display-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
}

.team-intro__body {
	margin-top: 20px;
}

/* Two tall photographs side by side, the way the page was shot. */
.team-intro__photos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.team-intro__photo {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-m);
}

.team-intro__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 2 / 3;
}

/* --- The people --------------------------------------------------------------- */

.team {
	background-color: var(--color-surface-cream);
}

.team__title {
	margin-bottom: 40px;
	font-size: var(--font-size-display-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
	text-align: center;
}

.team__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-member {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: var(--color-surface-light);
	border-radius: var(--radius-m);
}

.team-member__portrait {
	margin: 0;
}

.team-member__image {
	display: block;
	width: 100%;
	height: 340px;
	object-fit: cover;
	object-position: center top;
}

.team-member__body {
	padding: 24px 26px 28px;
}

.team-member__name {
	font-size: var(--font-size-heading-s);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
}

.team-member__position {
	margin-top: 6px;
	font-size: var(--font-size-body-s);
	font-weight: var(--font-weight-medium);
	color: var(--color-gold);
	text-transform: uppercase;
}

.team-member__description {
	margin-top: 14px;
	color: var(--color-text-muted);
}

/* --- Tablet ------------------------------------------------------------------- */

@media (max-width: 1024px) {
	.team-intro__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.team-member__image {
		height: 300px;
	}
}

/* --- Mobile ------------------------------------------------------------------- */

@media (max-width: 767px) {
	.team__list {
		grid-template-columns: minmax(0, 1fr);
	}

	.team-member__body {
		padding: 20px 22px 24px;
	}
}


/* ── page--policy.css ── */
/* ==========================================================================
   Policy
   A document in the same reading column as a blog post. The body typography
   is element--article-body.css; this is the page around it.
   ========================================================================== */

.policy__header {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-border-card);
}

.policy__title {
	font-size: 48px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-snug);
	letter-spacing: var(--letter-spacing-heading);
}

.policy__updated {
	margin-top: 12px;
	font-size: var(--font-size-body-s);
	letter-spacing: var(--letter-spacing-tight);
	color: var(--color-text-muted);
}

/* --- Tablet ----------------------------------------------------------------- */

@media (max-width: 1024px) {
	.policy__title {
		font-size: 36px;
	}
}

/* --- Mobile ----------------------------------------------------------------- */

@media (max-width: 767px) {
	.policy__header {
		margin-bottom: 30px;
	}

	.policy__title {
		font-size: 28px;
	}
}

