/**
 * gtb-steel - custom styles
 *
 * All custom CSS for the theme lives in this one file. Kept as plain CSS
 * (outside the Sass build) so edits take effect without running `npm run css`.
 *
 * Bootstrap 5 itself is compiled into css/child-theme.min.css and loads before
 * this file, so anything here overrides it.
 *
 * Contents:
 *   1. Design tokens
 *   2. Lenis smooth scroll
 *   3. Header shell
 *   4. Header - three column layout
 *   5. Header - branding, menu, CTA
 *   6. Header - transparent state
 *   7. Header - mobile panel
 *   8. Home banner
 *   9. Ribbon
 *  10. About - "why choose us"
 *  11. Product range - horizontal scroll
 *  12. Process - intro and step cards
 *  13. Projects - hero image swapped by the cards below
 *  14. Sustainability
 *  15. Testimonials
 *  16. Journal
 *  17. CTA
 *  18. Footer
 */

/* =========================================================================
 * 1. Design tokens
 * ====================================================================== */

:root {
	/* Typefaces. Montserrat carries the display type - headings, big numbers
	   and the uppercase UI labels; Roboto carries running body copy. */
	--gtb-font-display: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
	--gtb-font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Brand - orange sampled from the logo SVG. */
	--gtb-accent: #f47927;
	--gtb-accent-hover: #d4631c;

	/* Rendered height of the header logo. */
	--gtb-logo-height: 64px;

	/* Width of .custom-container - see the wide container block below. */
	--gtb-container-max: 1720px;

	/* Gap between the product cards; also feeds their width calculation. */
	--gtb-card-gap: 1.5rem;

	--gtb-header-height: 80px;
	--gtb-header-bg: #fff;
	--gtb-header-link: #212529;
	--gtb-header-link-hover: var(--gtb-accent);
	--gtb-header-link-transparent: #fff;
	--gtb-header-transition: 0.3s ease;

	/* Flat base tint under the banner gradients. */
	--gtb-banner-overlay: 0.3;

	/* Long thin arrow used on buttons and the scroll cue. */
	--gtb-arrow-right: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16' fill='none' stroke='black' stroke-width='1.5'%3e%3cpath d='M0 8h21M15 2l6 6-6 6'/%3e%3c/svg%3e");
	--gtb-arrow-down: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24' fill='none' stroke='black' stroke-width='1.5'%3e%3cpath d='M8 0v21M2 15l6 6 6-6'/%3e%3c/svg%3e");
	--gtb-pin: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3e%3cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3e%3c/svg%3e");
}

/* -------------------------------------------------------------------------
 * Typography
 *
 * Roboto is the default for everything, so any unstyled text inherits it.
 * Montserrat is applied to the display type: headings, the large figures, and
 * the uppercase labels (nav, buttons, eyebrows, card meta) that read as UI
 * rather than as running copy.
 * ---------------------------------------------------------------------- */

body {
	font-family: var(--gtb-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-navbar .navbar-nav .nav-link,
.site-navbar .navbar-cta,
.site-navbar .site-title,
.btn,
.home-ribbon__item,
.home-about__eyebrow,
.home-about__stat-value,
.home-about__link,
.home-about__play-label,
.home-products__eyebrow,
.home-products__hint,
.home-products__card-code,
.home-products__card-title,
.home-products__card-desc,
.home-products__card-meta,
.home-products__link,
.home-banner__counter,
.footer-menu .nav-link,
.widget-title {
	font-family: var(--gtb-font-display);
}

/* -------------------------------------------------------------------------
 * Wide container
 *
 * Bootstrap's .container tops out at 1320px, which leaves large gutters on
 * wide screens. Add .custom-container alongside it wherever a section should
 * stretch closer to the viewport edges:
 *
 *   <div class="container custom-container">
 *
 * It also works on .container-fluid, where it caps a full-bleed row instead.
 * Change the width in one place with --gtb-container-max.
 * ---------------------------------------------------------------------- */

.custom-container {
	max-width: var(--gtb-container-max);
	padding-inline: clamp(1.25rem, 3.5vw, 4rem);
}

/* Retheme Bootstrap's primary to the brand orange. Bootstrap 5.2 drives
   buttons from CSS variables, so no Sass rebuild is needed. */
.btn-primary {
	--bs-btn-bg: var(--gtb-accent);
	--bs-btn-border-color: var(--gtb-accent);
	--bs-btn-hover-bg: var(--gtb-accent-hover);
	--bs-btn-hover-border-color: var(--gtb-accent-hover);
	--bs-btn-active-bg: var(--gtb-accent-hover);
	--bs-btn-active-border-color: var(--gtb-accent-hover);
	--bs-btn-disabled-bg: var(--gtb-accent);
	--bs-btn-disabled-border-color: var(--gtb-accent);
	--bs-btn-focus-shadow-rgb: 244, 121, 39;
}

.btn-outline-primary {
	--bs-btn-color: var(--gtb-accent);
	--bs-btn-border-color: var(--gtb-accent);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--gtb-accent);
	--bs-btn-hover-border-color: var(--gtb-accent);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--gtb-accent-hover);
	--bs-btn-active-border-color: var(--gtb-accent-hover);
	--bs-btn-disabled-color: var(--gtb-accent);
	--bs-btn-disabled-border-color: var(--gtb-accent);
	--bs-btn-focus-shadow-rgb: 244, 121, 39;
}

/* Squared-off buttons with a trailing arrow. */
.btn-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	border-radius: 0;
	padding: 0.9rem 1.5rem;
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.btn-arrow::after {
	content: "";
	flex: none;
	width: 1.5rem;
	height: 1em;
	background-color: currentColor;
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.btn-arrow:hover::after,
.btn-arrow:focus-visible::after {
	transform: translateX(4px);
}

/* =========================================================================
 * 2. Lenis smooth scroll
 * ====================================================================== */

/* Native smooth scrolling fights Lenis; let Lenis own the scroll. */
html.lenis {
	scroll-behavior: auto;
}

/* =========================================================================
 * 3. Header shell
 * ====================================================================== */

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
	background-color: var(--gtb-header-bg);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
	transition: background-color var(--gtb-header-transition),
		box-shadow var(--gtb-header-transition);
}

.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

/* Pages without the overlay header need the content pushed below it. */
body:not(.has-transparent-header) .site {
	padding-top: var(--gtb-header-height, 80px);
}

.site-navbar {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

/* =========================================================================
 * 4. Header - three column layout
 *    logo left, menu centred, CTA right
 * ====================================================================== */

@media (min-width: 992px) {

	/* Equal-width outer columns keep the menu optically centred. */
	.site-navbar .navbar-branding,
	.site-navbar .navbar-actions {
		flex: 1 1 0;
		min-width: 0;
	}

	.site-navbar .navbar-actions {
		justify-content: flex-end;
	}

	/* Let the menu size to its content so it sits dead centre. */
	.site-navbar .navbar-collapse {
		flex-grow: 0;
		flex-basis: auto;
	}

	.site-navbar .navbar-nav {
		gap: 0.25rem;
	}
}

/* =========================================================================
 * 5. Header - branding, menu, CTA
 * ====================================================================== */

.site-navbar .navbar-brand {
	display: inline-flex;
	align-items: center;
	padding-top: 0;
	padding-bottom: 0;
	margin-right: 0;
}

.site-navbar .site-logo {
	display: block;
	width: auto;
	height: auto;
	max-height: var(--gtb-logo-height);
}

/* An inlined SVG logo is recoloured rather than swapped for a second file.
   Paths the file paints white follow the header's text colour; brand colours
   inside the file are untouched. */
.site-navbar .site-logo--inline {
	width: auto;
	height: var(--gtb-logo-height);
	max-height: none;
	color: var(--gtb-header-link);
	transition: color var(--gtb-header-transition);
}

.site-navbar .site-logo--inline [fill="white"],
.site-navbar .site-logo--inline [fill="#fff"],
.site-navbar .site-logo--inline [fill="#FFF"],
.site-navbar .site-logo--inline [fill="#ffffff"],
.site-navbar .site-logo--inline [fill="#FFFFFF"] {
	fill: currentColor;
	transition: fill var(--gtb-header-transition);
}

.site-navbar .site-title {
	font-weight: 700;
	color: var(--gtb-header-link);
	transition: color var(--gtb-header-transition);
}

/* The light logo only exists when an alternate logo has been set. */
.site-navbar .site-logo--light {
	display: none;
}

.site-navbar .navbar-nav .nav-link {
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gtb-header-link);
	transition: color var(--gtb-header-transition);
}

@media (min-width: 992px) {
	.site-navbar .navbar-nav .nav-link {
		padding-inline: 1rem;
	}
}

.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link:focus,
.site-navbar .navbar-nav .current-menu-item > .nav-link,
.site-navbar .navbar-nav .active > .nav-link {
	color: var(--gtb-header-link-hover);
}

.site-navbar .navbar-toggler {
	border-color: rgba(0, 0, 0, 0.15);
}

.site-navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdowns keep a solid panel in every header state. */
.site-navbar .dropdown-menu {
	border: 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.site-navbar .navbar-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	white-space: nowrap;
	border-radius: 0;
	padding: 0.7rem 1.25rem;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color var(--gtb-header-transition),
		background-color var(--gtb-header-transition),
		border-color var(--gtb-header-transition);
}

.site-navbar .navbar-cta::after {
	content: "";
	flex: none;
	width: 1.25rem;
	height: 1em;
	background-color: currentColor;
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.site-navbar .navbar-cta:hover::after {
	transform: translateX(4px);
}

@media (max-width: 575.98px) {
	.site-navbar .navbar-cta {
		padding: 0.375rem 0.75rem;
		font-size: 0.875rem;
	}
}

/* =========================================================================
 * 6. Header - transparent state
 *
 *    Active on pages with .has-transparent-header, until the visitor scrolls
 *    (.is-scrolled) or opens the mobile menu (.is-menu-open).
 * ====================================================================== */

.has-transparent-header .site-header {
	background-color: transparent;
	box-shadow: none;
}

.has-transparent-header .site-header.is-scrolled,
.has-transparent-header .site-header.is-menu-open {
	background-color: var(--gtb-header-bg);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-nav .nav-link,
.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .site-title,
.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .site-logo--inline {
	color: var(--gtb-header-link-transparent);
}

.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-nav .nav-link:hover,
.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-nav .nav-link:focus {
	color: rgba(255, 255, 255, 0.7);
}

.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-toggler {
	border-color: rgba(255, 255, 255, 0.4);
}

.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Swap in the light logo while transparent. */
.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-brand.has-alt-logo .site-logo--default {
	display: none;
}

.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-brand.has-alt-logo .site-logo--light {
	display: block;
}

/* The CTA takes a light outline treatment while the header is transparent,
   whichever style was picked in the Customizer for the white state. */
.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-cta {
	color: #fff;
	background-color: transparent;
	border-color: var(--gtb-accent);
}

.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-cta:hover,
.has-transparent-header .site-header:not(.is-scrolled):not(.is-menu-open) .navbar-cta:focus {
	color: #212529;
	background-color: #fff;
	border-color: #fff;
}

/* =========================================================================
 * 7. Header - mobile panel
 * ====================================================================== */

@media (max-width: 991.98px) {
	.site-navbar .navbar-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}

	.site-navbar .navbar-nav .nav-link {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}

	/* Inside the open panel the background is always white. */
	.has-transparent-header .site-header.is-menu-open .navbar-nav .nav-link,
	.has-transparent-header .site-header.is-menu-open .site-title {
		color: var(--gtb-header-link);
	}
}

/* =========================================================================
 * 8. Home banner
 *
 *    Sits under the transparent header, so the copy is offset by
 *    --gtb-header-height.
 * ====================================================================== */

.home-banner {
	position: relative;
	background-color: #111;
}

.home-banner__carousel,
.home-banner .carousel-inner,
.home-banner .carousel-item {
	height: 100vh;
	min-height: 560px;
}

/* Use the small viewport unit where supported so mobile browser chrome
   does not crop the banner. */
@supports (height: 100svh) {
	.home-banner__carousel,
	.home-banner .carousel-inner,
	.home-banner .carousel-item {
		height: 100svh;
	}
}

/* Cap the height on short landscape screens. */
@media (max-height: 560px) {
	.home-banner__carousel,
	.home-banner .carousel-inner,
	.home-banner .carousel-item {
		height: auto;
		min-height: 480px;
	}
}

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

.home-banner__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.home-banner__image,
.home-banner__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Darkest at the lower left, where the copy sits; clears towards the right so
   the image still reads. --gtb-banner-overlay tunes the flat base layer. */
.home-banner__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-color: rgba(0, 0, 0, var(--gtb-banner-overlay, 0.3));
	background-image:
		linear-gradient(100deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0) 100%),
		linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 45%);
}

/* ---- Copy ---- */

.home-banner__content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	height: 100%;
	color: #fff;

	/* Clear the fixed header above and the slide UI below. */
	padding-top: calc(var(--gtb-header-height, 80px) + 2rem);
	padding-bottom: 9rem;
}

.home-banner__copy {
	max-width: 900px;
}

.home-banner__heading {
	margin-bottom: 1.5rem;
	font-size: clamp(2.25rem, 5.5vw, 4.5rem);
	font-weight: 300;
	line-height: 1.05;
	text-transform: uppercase;
	color: #fff;
	text-wrap: balance;
}

/* Wrap the emphasised half of the headline in <strong> in the ACF field:
   PURE <strong>STRENGTH</strong> */
.home-banner__heading strong,
.home-banner__heading b {
	font-weight: 800;
}

.home-banner__subheading {
	max-width: 34rem;
	margin-bottom: 2.25rem;
	font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
}

.home-banner__subheading p:last-child {
	margin-bottom: 0;
}

.home-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ---- Slide counter and arrows ---- */

.home-banner__ui {
	position: absolute;
	right: 0;
	bottom: 2.5rem;
	left: 0;
	z-index: 3;
}

.home-banner__ui-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.home-banner__counter {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.55);
}

.home-banner__counter-current {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

.home-banner__progress {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: 1rem;
}

.home-banner__progress span {
	display: block;
	width: 28px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.3);
	transition: background-color 0.3s ease, width 0.3s ease;
}

.home-banner__progress span.is-active {
	width: 44px;
	background-color: var(--gtb-accent);
}

.home-banner__nav {
	display: flex;
	gap: 0.75rem;
}

.home-banner__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	background-color: transparent;
	transition: background-color 0.25s ease, border-color 0.25s ease;
}

.home-banner__arrow::before {
	content: "";
	width: 20px;
	height: 14px;
	background-color: #fff;
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
}

.home-banner__arrow--prev::before {
	transform: rotate(180deg);
}

.home-banner__arrow:hover,
.home-banner__arrow:focus-visible {
	background-color: var(--gtb-accent);
	border-color: var(--gtb-accent);
}

/* ---- Scroll cue ---- */

.home-banner__scroll {
	position: absolute;
	right: 2rem;
	bottom: 22%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color 0.25s ease;
}

.home-banner__scroll:hover {
	color: #fff;
}

.home-banner__scroll-arrow {
	width: 14px;
	height: 24px;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-down) no-repeat center / contain;
	mask: var(--gtb-arrow-down) no-repeat center / contain;
}

.home-banner__scroll-label {
	writing-mode: vertical-rl;
	padding-left: 0.75rem;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 0.75rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
}

/* ---- Motion and small screens ---- */

@media (prefers-reduced-motion: reduce) {
	.home-banner .carousel-item {
		transition: none;
	}
}

@media (max-width: 1199.98px) {
	.home-banner__scroll {
		display: none;
	}
}

@media (max-width: 767.98px) {
	.home-banner__content {
		padding-bottom: 7.5rem;
	}

	.home-banner__ui {
		bottom: 1.75rem;
	}

	.home-banner__arrow {
		width: 44px;
		height: 44px;
	}

	.home-banner__arrow::before {
		width: 16px;
	}

	.home-banner__progress span {
		width: 18px;
	}

	.home-banner__progress span.is-active {
		width: 28px;
	}
}

@media (max-width: 575.98px) {
	.home-banner__progress {
		display: none;
	}

	.home-banner__actions .btn-arrow {
		padding-inline: 1.1rem;
		font-size: 0.8125rem;
	}
}

/* =========================================================================
 * 9. Ribbon
 *
 * Credentials strip under the banner. Items are separated by an orange dot
 * drawn as a ::before, so the separators come from CSS rather than content.
 * ====================================================================== */

.home-ribbon {
	background-color: #e9e9e9;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.home-ribbon__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
	margin: 0;
	padding: 1.125rem 0;
	list-style: none;
}

.home-ribbon__item {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
	color: #6c6c6c;
}

/* The orange dot that precedes every item. */
.home-ribbon__item::before {
	content: "";
	flex: none;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--gtb-accent);
}

/* Below the desktop layout the row scrolls sideways instead of wrapping,
   which keeps it reading as one continuous strip. */
@media (max-width: 1199.98px) {
	.home-ribbon__list {
		justify-content: flex-start;
		gap: 2rem;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.home-ribbon__list::-webkit-scrollbar {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.home-ribbon__item {
		font-size: 0.75rem;
		letter-spacing: 0.1em;
	}
}

/* =========================================================================
 * 10. About - "why choose us"
 * ====================================================================== */

.home-about {
	background-color: #f0f0f0;
	padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

/* <em> marks brand-orange words in the ACF fields; it is not italic here. */
.home-about em,
.home-about i {
	font-style: normal;
	color: var(--gtb-accent);
}

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

.home-about__media {
	position: relative;
	overflow: hidden;
}

.home-about__image {
	display: block;
	width: 100%;
	min-height: 800px;
}

.home-about__play {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border: 0;
	background: linear-gradient(to top left, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
	color: #fff;
	text-align: right;
	cursor: pointer;
}

.home-about__play-label {
	max-width: 7em;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Solid triangle, drawn with borders so there is no image to load. */
.home-about__play-icon {
	flex: none;
	width: 0;
	height: 0;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
	border-left: 36px solid #fff;
	transition: transform 0.25s ease, border-left-color 0.25s ease;
}

.home-about__play:hover .home-about__play-icon,
.home-about__play:focus-visible .home-about__play-icon {
	transform: scale(1.08);
	border-left-color: var(--gtb-accent);
}

/* ---- Copy ---- */

.home-about__eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1c1c1c;
}

.home-about__rule {
	width: 34px;
	height: 2px;
	background-color: var(--gtb-accent);
}

.home-about__index {
	color: #8a8a8a;
}

.home-about__heading {
	margin-bottom: 1.5rem;
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 300;
	line-height: 1.06;
	text-transform: uppercase;
	color: #111;
}

.home-about__heading strong,
.home-about__heading b {
	font-weight: 800;
}

.home-about__text {
	margin-bottom: 2rem;
	font-size: 1rem;
	line-height: 1.75;
	color: #4a4a4a;
}

.home-about__text p:last-child {
	margin-bottom: 0;
}

/* ---- Stats grid ---- */

.home-about__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
	border-top: 1px solid #d5d5d5;
}

.home-about__stat {
	padding-block: 1.75rem;
	border-bottom: 1px solid #d5d5d5;
}

/* Warm inner dividers, neutral outer ones. */
.home-about__stat:nth-child(odd) {
	padding-right: 2rem;
	border-right: 1px solid rgba(244, 121, 39, 0.35);
}

.home-about__stat:nth-child(even) {
	padding-left: 2rem;
}

.home-about__stat:nth-child(-n + 2) {
	border-bottom-color: rgba(244, 121, 39, 0.35);
}

.home-about__stat-value {
	margin-bottom: 0.35rem;
	font-size: clamp(2rem, 3.2vw, 2.75rem);
	font-weight: 800;
	line-height: 1;
	color: #111;
}

/* The unit is written inline as <em> in the Value field - 500<em>MPa</em> -
   so it renders smaller than the number. The orange comes from the section
   level <em> rule above. */
.home-about__stat-value em,
.home-about__stat-value i {
	font-size: 0.62em;
}

.home-about__stat-label {
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #6c6c6c;
}

/* ---- Explore link ---- */

.home-about__more {
	margin-bottom: 0;
	text-align: right;
}

.home-about__link {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}

.home-about__link::after {
	content: "";
	flex: none;
	width: 1.35rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-about__link:hover::after,
.home-about__link:focus-visible::after {
	transform: translateX(4px);
}

/* ---- Video modal ---- */

.home-about__modal .modal-content {
	position: relative;
	border: 0;
	border-radius: 0;
	background-color: #000;
}

.home-about__modal .btn-close {
	position: absolute;
	top: -2.5rem;
	right: 0;
	z-index: 1;
	filter: invert(1) grayscale(100%) brightness(200%);
}

.home-about__modal-video {
	display: block;
	width: 100%;
	height: auto;
}

/* ---- Small screens ---- */

@media (max-width: 575.98px) {
	.home-about__stats {
		grid-template-columns: 1fr;
	}

	.home-about__stat:nth-child(odd) {
		padding-right: 0;
		border-right: 0;
	}

	.home-about__stat:nth-child(even) {
		padding-left: 0;
	}

	.home-about__stat:nth-child(-n + 3) {
		border-bottom-color: rgba(244, 121, 39, 0.35);
	}

	.home-about__more {
		text-align: left;
	}
}

/* =========================================================================
 * 11. Product range - horizontal scroll
 *
 * Three states:
 *   below 992px          the cards stack vertically, no animation
 *   992px+ with GSAP     .is-pinned, the track slides sideways on scroll
 *   992px+ without GSAP  falls back to a plain overflow-x row
 * ====================================================================== */

.home-products {
	background-color: #fff;
}

.home-products em,
.home-products i {
	font-style: normal;
	color: var(--gtb-accent);
}

.home-products__inner {
	width: 100%;
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

/* ---- Head ---- */

.home-products__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem 2.5rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-products__eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1c1c1c;
}

.home-products__rule {
	width: 34px;
	height: 2px;
	background-color: var(--gtb-accent);
}

.home-products__index {
	color: #8a8a8a;
}

.home-products__heading {
	margin-bottom: 0;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1.06;
	text-transform: uppercase;
	color: #111;
}

.home-products__heading strong,
.home-products__heading b {
	font-weight: 800;
}

.home-products__hint {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--gtb-accent);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6c6c6c;
}

.home-products__hint::before {
	content: "";
	flex: none;
	width: 1.1rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
}

/* ---- Track ---- */

.home-products__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.home-products__viewport::-webkit-scrollbar {
	display: none;
}

/* GSAP drives the movement, so the native scrollbar steps aside. */
.home-products.is-pinned .home-products__viewport {
	overflow: hidden;
}

/* The track runs the full viewport width so cards can bleed off the right
   edge, but its padding reproduces .custom-container's gutter exactly, so the
   first card lines up with the heading above it.
   Percentages resolve against the containing block, which is the viewport's
   content width - no 100vw, so a classic scrollbar cannot cause overflow. */
.home-products__track {
	display: flex;
	gap: var(--gtb-card-gap);
	margin: 0;
	padding-inline: calc(
		max(0px, (100% - var(--gtb-container-max)) / 2) + clamp(1.25rem, 3.5vw, 4rem)
	);
	list-style: none;
}

.home-products.is-pinned .home-products__track {
	will-change: transform;
}

/* ---- Card ---- */

/* Four across, matching col-lg-3. The percentage resolves against the track's
   content box - the gutter-to-gutter width - so four cards plus three gaps
   land exactly on the container edges. */
.home-products__card {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	width: calc((100% - 3 * var(--gtb-card-gap)) / 4);
	min-height: clamp(340px, 24vw, 460px);
	padding: 1.5rem 1.5rem 1.75rem;
	background-color: #dcdcdc;
	color: #111;
}

/* The lead card carries the brand colour. Change :first-child to another
   :nth-child() to highlight a different one. */
.home-products__card:first-child {
	background-color: var(--gtb-accent);
}

.home-products__card-code {
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.45);
}

.home-products__card-media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(130px, 10vw, 210px);
	margin-bottom: 1.5rem;
}

/* The rebar is a wide, short bar, so it is sized by width - letting it fill
   the card is what makes it read, not a taller box around it. */
.home-products__card-media img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* Pins the meta row to the bottom whatever the image height. */
.home-products__card-body {
	margin-top: auto;
}

.home-products__card-title {
	margin-bottom: 0.45rem;
	font-size: clamp(2.25rem, 2.6vw, 3.25rem);
	font-weight: 800;
	line-height: 1;
}

/* Wrap the unit in <small> in the Title field: 6<small>MM</small> */
.home-products__card-title small {
	margin-left: 0.15em;
	font-size: 0.42em;
	font-weight: 700;
}

.home-products__card-desc {
	margin-bottom: 0.85rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.18);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-products__card-meta {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin: 0;
	font-size: 0.6875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.7);
}

/* ---- Explore link ---- */

.home-products__more {
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	text-align: center;
}

.home-products__link {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}

.home-products__link::after {
	content: "";
	flex: none;
	width: 1.35rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-products__link:hover::after,
.home-products__link:focus-visible::after {
	transform: translateX(4px);
}

/* ---- Pinned state ---- */

@media (min-width: 992px) {
	.home-products.is-pinned {
		display: flex;
		align-items: center;
		min-height: 100vh;
	}

	/* While pinned the section sits at the top of the viewport, so it has to
	   clear the fixed header itself. */
	.home-products.is-pinned .home-products__inner {
		padding-top: calc(var(--gtb-header-height, 80px) + 2rem);
	}
}

/* ---- Below the pin breakpoint: a plain vertical stack ---- */

@media (max-width: 991.98px) {
	.home-products__viewport {
		overflow: visible;
	}

	.home-products__track {
		flex-direction: column;
		gap: 1rem;
	}

	/* Column flex stretches the cards to the full container width, so the
	   width-based sizing above is dropped and the card takes its content
	   height instead. */
	.home-products__card {
		width: auto;
		flex: 0 0 auto;
		min-height: 0;
	}

	.home-products__card-media {
		min-height: 0;
	}

	/* A full-width bar would be huge on a stacked card. */
	.home-products__card-media img {
		max-width: 420px;
	}
}

/* =========================================================================
 * 12. Process - intro and hover-expanding step cards
 * ====================================================================== */

.home-process {
	--gtb-step-height: 220px;

	/* The strip is always the full card height; only its width animates. */
	--gtb-step-media-w: clamp(120px, 11vw, 210px);
	--gtb-step-media-w-open: clamp(280px, 27vw, 470px);

	/* Horizontal offset of the slanted edges. The card height is fixed, so a
	   fixed offset keeps the angle constant as the strip widens. */
	--gtb-step-slant: 28px;

	background-color: #f0f0f0;
	padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.home-process em,
.home-process i {
	font-style: normal;
	color: var(--gtb-accent);
}

/* ---- Intro ---- */

.home-process__intro {
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.home-process__eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1c1c1c;
}

.home-process__rule {
	width: 34px;
	height: 2px;
	background-color: var(--gtb-accent);
}

.home-process__index {
	color: #8a8a8a;
}

.home-process__heading {
	margin-bottom: 1.5rem;
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 300;
	line-height: 1.06;
	text-transform: uppercase;
	color: #111;
}

.home-process__heading strong,
.home-process__heading b {
	font-weight: 800;
}

.home-process__text {
	max-width: 34rem;
	margin-bottom: 1.75rem;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #4a4a4a;
}

.home-process__text p:last-child {
	margin-bottom: 0;
}

.home-process__more {
	margin-bottom: 0;
}

.home-process__link {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}

.home-process__link::after {
	content: "";
	flex: none;
	width: 1.35rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-process__link:hover::after,
.home-process__link:focus-visible::after {
	transform: translateX(4px);
}

.home-process__intro-media img {
	display: block;
	width: 100%;
	height: auto;
}

/* ---- Step cards ---- */

.home-process__steps {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-process__step {
	display: flex;
	align-items: stretch;
	min-height: var(--gtb-step-height);
	background-color: #d9d9d9;
	overflow: hidden;
}

.home-process__step-index {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: clamp(38px, 3vw, 52px);
	background-color: var(--gtb-accent);
	color: #fff;
	writing-mode: vertical-rl;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.home-process__step-head {
	display: flex;
	flex: none;
	flex-direction: column;
	justify-content: center;
	/* Wide enough to keep a title like "Billet Selection" on one line at the
	   larger type size. */
	width: clamp(240px, 24vw, 420px);
	padding: 1.25rem 1.5rem;
}

.home-process__step-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.75rem, 2.2vw, 2.375rem);
	font-weight: 800;
	line-height: 1.05;
	text-transform: uppercase;
	color: #111;
}

.home-process__step-subtitle {
	margin: 0;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6c6c6c;
}

/* The slanted strip: full card height at all times, growing rightwards on
   hover into space that is already reserved for it.

   The wrapper's width is fixed at the *expanded* size, so the description
   column never changes width. That matters: if the description were narrowed
   on hover its text would rewrap onto more lines and drag the card taller -
   which reads as the card growing vertically. Only the image inside the
   wrapper animates, so the card's height is untouched.

   clip-path rather than a skew transform: it clips inside the element's own
   box, so the shape cannot overlap its neighbours, and the photo needs no
   counter-transform to stay upright. The card height is fixed, so a fixed
   horizontal offset holds the slant angle constant at any width. */
.home-process__step-media {
	position: relative;
	flex: 0 0 auto;
	align-self: stretch;
	width: var(--gtb-step-media-w-open);
	overflow: hidden;
}

/* Positioned absolutely so height:100% resolves against the wrapper's used
   height. As an in-flow child of a stretched flex item that height is not a
   definite length, so height:100% falls back to auto - and an auto height with
   an animating width means the aspect ratio drives it, which is what made the
   image grow taller as it widened. */
.home-process__step-media img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: var(--gtb-step-media-w);
	height: 100%;
	object-fit: cover;
	clip-path: polygon(
		var(--gtb-step-slant) 0,
		100% 0,
		calc(100% - var(--gtb-step-slant)) 100%,
		0 100%
	);
	transition: width 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* :focus-within keeps the reveal reachable from the keyboard. */
.home-process__step:hover .home-process__step-media img,
.home-process__step:focus-within .home-process__step-media img {
	width: 100%;
}

.home-process__step-desc {
	display: flex;
	flex: 1 1 0;
	align-items: center;
	min-width: 0;
	padding: 1.25rem 1.75rem;
	font-size: clamp(0.9375rem, 1.05vw, 1.125rem);
	line-height: 1.6;
	color: #4a4a4a;
}

.home-process__step-desc p:last-child {
	margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
	.home-process__step-media img {
		transition: none;
	}
}

/* ---- Small screens: stacked, and the image is open by default ---- */

@media (max-width: 991.98px) {
	.home-process__step {
		flex-wrap: wrap;
	}

	.home-process__step-index {
		justify-content: flex-start;
		width: 100%;
		padding: 0.5rem 1.25rem;
		writing-mode: horizontal-tb;
	}

	.home-process__step-head,
	.home-process__step-desc {
		width: 100%;
		flex: 0 0 100%;
	}

	/* There is no hover on touch, so the strip starts open and square. */
	.home-process__step-media {
		width: 100%;
		height: 200px;
	}

	.home-process__step-media img {
		width: 100%;
		clip-path: none;
	}
}

/* =========================================================================
 * 13. Projects - hero image swapped by the cards below
 * ====================================================================== */

.home-projects {
	background-color: var(--gtb-accent);
}

.home-projects em,
.home-projects i {
	font-style: normal;
	color: var(--gtb-accent);
}

/* ---- Hero ---- */

.home-projects__hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(520px, 60vw, 780px);
	background-color: #10202c;
	overflow: hidden;
}

.home-projects__hero-media {
	position: absolute;
	inset: 0;
}

/* Every project image is rendered up front and cross-faded by class, so a
   hover never waits on a network request. */
.home-projects__hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.home-projects__hero-image.is-active {
	opacity: 1;
}

.home-projects__hero-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(100deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0) 100%),
		linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 40%);
}

.home-projects__hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-block: clamp(3rem, 6vw, 5rem);
	color: #fff;
}

.home-projects__eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

.home-projects__rule {
	width: 34px;
	height: 2px;
	background-color: var(--gtb-accent);
}

.home-projects__index {
	color: rgba(255, 255, 255, 0.65);
}

.home-projects__eyebrow em,
.home-projects__heading em,
.home-projects__statement em,
.home-projects__eyebrow i,
.home-projects__heading i,
.home-projects__statement i {
	color: var(--gtb-accent);
}

.home-projects__heading {
	max-width: 18ch;
	margin-bottom: 2rem;
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 300;
	line-height: 1.12;
	text-transform: uppercase;
	color: #fff;
}

.home-projects__heading strong,
.home-projects__heading b {
	font-weight: 800;
}

.home-projects__statement {
	max-width: 22ch;
	margin-bottom: 2rem;
	font-family: var(--gtb-font-display);
	font-size: clamp(1.5rem, 2.6vw, 2.4rem);
	font-weight: 300;
	line-height: 1.22;
	text-transform: uppercase;
	color: #fff;
}

.home-projects__statement p:last-child {
	margin-bottom: 0;
}

.home-projects__more {
	margin-bottom: 0;
}

.home-projects__link {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}

.home-projects__link::after {
	content: "";
	flex: none;
	width: 1.25rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-projects__link:hover::after {
	transform: translateX(4px);
}

/* ---- Caption ---- */

.home-projects__caption {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
}

.home-projects__caption:empty,
.home-projects__caption-text:empty {
	display: none;
}

.home-projects__caption-pin {
	flex: none;
	width: 1.1em;
	height: 1.3em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-pin) no-repeat center / contain;
	mask: var(--gtb-pin) no-repeat center / contain;
}

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

.home-projects__foot {
	padding-block: clamp(1.75rem, 3vw, 2.5rem);
}

.home-projects__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(0.75rem, 1.2vw, 1.25rem);
	margin: 0 0 clamp(1rem, 2vw, 1.5rem);
	padding: 0;
	list-style: none;
}

.home-projects__card {
	position: relative;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background-color: #10202c;
}

.home-projects__card-link {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
}

/* Scoped to the card on purpose. WordPress puts .wp-post-image on every
   featured image, and Understrap ships `img.wp-post-image { height: auto }` -
   specificity (0,1,1), which beats a lone class. Without the extra class here
   the height falls back to auto and wide photos leave a gap under the card. */
.home-projects__card .home-projects__card-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, opacity 0.4s ease;
}

.home-projects__card-title {
	position: absolute;
	inset: auto 1rem 1.25rem;
	z-index: 2;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Scrim so the title stays legible over any photo. */
.home-projects__card-link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 55%);
	transition: background-color 0.4s ease;
}

.home-projects__card:hover .home-projects__card-image,
.home-projects__card:focus-within .home-projects__card-image {
	transform: scale(1.05);
}

/* The card whose image is showing above is dimmed, so it reads as the one
   currently on display rather than as another option. */
.home-projects__card.is-active .home-projects__card-image {
	opacity: 0.45;
}

/* ---- Wide button ---- */

.home-projects__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	padding: 0.9rem 1.5rem;
	background-color: #ececec;
	color: #111;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.25s ease;
}

.home-projects__button:hover,
.home-projects__button:focus-visible {
	background-color: #fff;
	color: #111;
}

.home-projects__button::after {
	content: "";
	flex: none;
	width: 1.25rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-projects__button:hover::after {
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.home-projects__hero-image,
	.home-projects__card-image {
		transition: none;
	}
}

@media (max-width: 767.98px) {
	.home-projects__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-projects__caption {
		position: static;
		margin-top: 1.5rem;
	}
}

/* =========================================================================
 * 14. Sustainability
 * ====================================================================== */

.home-esg {
	background-color: #f5f5f5;
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

.home-esg em,
.home-esg i {
	font-style: normal;
	color: var(--gtb-accent);
}

.home-esg__eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1c1c1c;
}

.home-esg__rule {
	width: 34px;
	height: 2px;
	background-color: var(--gtb-accent);
}

.home-esg__index {
	color: #8a8a8a;
}

.home-esg__heading {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1.06;
	text-transform: uppercase;
	color: #111;
}

.home-esg__heading strong,
.home-esg__heading b {
	font-weight: 800;
}

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

.home-esg__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 1.6vw, 1.75rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-esg__card {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background-color: #2b2b2b;
}

.home-esg__card-link {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
}

/* Scoped past Understrap's `img.wp-post-image { height: auto }`, which would
   otherwise let the photo keep its own ratio and leave a gap in the card. */
.home-esg__card .home-esg__card-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.home-esg__card:hover .home-esg__card-image,
.home-esg__card:focus-within .home-esg__card-image {
	transform: scale(1.05);
}

/* Warm brand wash plus a darkening foot, as two stacked translucent layers -
   no blend modes, so it renders identically everywhere. */
.home-esg__card-tint {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image:
		linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.1) 100%),
		linear-gradient(rgba(244, 121, 39, 0.45), rgba(244, 121, 39, 0.45));
}

.home-esg__card-body {
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	padding: clamp(1.25rem, 1.8vw, 1.75rem);
}

.home-esg__card-title {
	margin-bottom: 0.65rem;
	font-family: var(--gtb-font-display);
	font-size: clamp(1.125rem, 1.4vw, 1.5rem);
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

.home-esg__card-text {
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);

	/* The card is a fixed ratio and the body is anchored to its foot, so long
	   editor content would grow upward and out of the card. Cap it at a few
	   lines; the full text is on the single view behind "Read more". */
	display: -webkit-box;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-esg__card-text > :last-child {
	margin-bottom: 0;
}

.home-esg__card-more {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--gtb-font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

.home-esg__card-more::after {
	content: "";
	flex: none;
	width: 1.1rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-esg__card:hover .home-esg__card-more::after {
	transform: translateX(4px);
}

.home-esg__card:hover .home-esg__card-title,
.home-esg__card:focus-within .home-esg__card-title,
.home-esg__card:hover .home-esg__card-more,
.home-esg__card:focus-within .home-esg__card-more {
	color: var(--gtb-accent);
}

/* ---- Foot link ---- */

.home-esg__foot {
	margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
	padding-top: clamp(1rem, 2vw, 1.5rem);
	border-top: 1px solid rgba(244, 121, 39, 0.4);
	text-align: center;
}

.home-esg__link {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}

.home-esg__link::after {
	content: "";
	flex: none;
	width: 1.25rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-esg__link:hover::after,
.home-esg__link:focus-visible::after {
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.home-esg__card-image {
		transition: none;
	}
}

@media (max-width: 991.98px) {
	.home-esg__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575.98px) {
	.home-esg__cards {
		grid-template-columns: 1fr;
	}

	.home-esg__card {
		aspect-ratio: 4 / 3;
	}
}

/* =========================================================================
 * 15. Testimonials
 * ====================================================================== */

.home-quotes {
	background-color: #d4d4d4;
	padding-block: clamp(3.5rem, 7vw, 6rem);
	overflow: hidden;
}

.home-quotes em,
.home-quotes i {
	font-style: normal;
	color: var(--gtb-accent);
}

.home-quotes__inner {
	position: relative;
}

.home-quotes__content {
	position: relative;
	z-index: 2;

	/* Percentage-capped so it always leaves room for the quote mark pinned to
	   the right, whatever the container width. */
	max-width: min(52rem, 54%);
}

.home-quotes__eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1c1c1c;
}

.home-quotes__rule {
	width: 34px;
	height: 2px;
	background-color: var(--gtb-accent);
}

.home-quotes__index {
	color: #6f6f6f;
}

.home-quotes__heading {
	margin-bottom: 0;
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 300;
	line-height: 1.06;
	text-transform: uppercase;
	color: #111;
}

.home-quotes__heading strong,
.home-quotes__heading b {
	font-weight: 800;
}

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

.home-quotes__carousel {
	margin-top: clamp(2rem, 4vw, 3rem);
}

/* Quotes differ in length; a floor stops the block jumping between slides. */
.home-quotes__carousel .carousel-inner {
	min-height: clamp(260px, 23vw, 360px);
}

.home-quotes__quote {
	/* Measured in em, so the line length tracks the type size instead of
	   collapsing to a narrow column as the text grows. */
	max-width: 22em;
	margin: 0 0 clamp(2rem, 4vw, 3.25rem);
	font-size: clamp(1.375rem, 2.3vw, 2.1875rem);
	line-height: 1.5;
	color: #1c1c1c;
}

.home-quotes__quote p:last-child {
	margin-bottom: 0;
}

.home-quotes__name {
	margin: 0 0 0.25rem;
	font-family: var(--gtb-font-display);
	font-size: 0.9375rem;
	font-weight: 700;
	color: #111;
}

.home-quotes__role {
	margin: 0;
	font-size: 0.875rem;
	color: #4a4a4a;
}

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

/* Bootstrap pins indicators to the bottom of the carousel; returning them to
   normal flow puts them under the quote, aligned left with the copy. */
.home-quotes__dots {
	position: static;
	justify-content: flex-start;
	margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
	padding: 0;
}

.home-quotes__dots [data-bs-target] {
	width: 8px;
	height: 8px;
	margin-inline: 4px;
	border: 0;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.25);
	opacity: 1;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-quotes__dots [data-bs-target]:first-child {
	margin-left: 0;
}

.home-quotes__dots .active {
	background-color: var(--gtb-accent);
	transform: scale(1.2);
}

/* ---- Decorative quote mark ---- */

.home-quotes__mark {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	/* Sized by width against the container - paired with the 54% cap on the
	   copy, the two can never overlap. 682px is 540px tall at the artwork's
	   692x548 ratio. */
	width: clamp(180px, 43%, 682px);
	height: auto;

	/* Colour is left to the SVG's own fill attribute so the exported artwork
	   renders exactly as drawn. Nothing here sets fill or opacity - both would
	   silently override it. */
	pointer-events: none;
}

@media (max-width: 991.98px) {
	.home-quotes__content {
		max-width: none;
	}

	.home-quotes__mark {
		width: clamp(120px, 30vw, 200px);
	}
}

/* =========================================================================
 * 16. Journal
 * ====================================================================== */

.home-journal {
	background-color: #fafafa;
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

.home-journal em,
.home-journal i {
	font-style: normal;
	color: var(--gtb-accent);
}

.home-journal__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem 2.5rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-journal__eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1c1c1c;
}

.home-journal__rule {
	width: 34px;
	height: 2px;
	background-color: var(--gtb-accent);
}

.home-journal__index {
	color: #8a8a8a;
}

.home-journal__heading {
	margin-bottom: 0;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 300;
	line-height: 1.06;
	text-transform: uppercase;
	color: #111;
}

.home-journal__heading strong,
.home-journal__heading b {
	font-weight: 800;
}

.home-journal__link {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}

.home-journal__link::after {
	content: "";
	flex: none;
	width: 1.25rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-journal__link:hover::after,
.home-journal__link:focus-visible::after {
	transform: translateX(4px);
}

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

.home-journal__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 2.6vw, 2.75rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

/* position: relative anchors the stretched title link to the whole card. */
.home-journal__card {
	position: relative;
	display: flex;
	flex-direction: column;
}

.home-journal__media {
	overflow: hidden;
	margin-bottom: 1.25rem;
	aspect-ratio: 16 / 10;
	background-color: #e4e4e4;
}

/* Scoped past Understrap's `img.wp-post-image { height: auto }`. */
.home-journal__card .home-journal__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.home-journal__card:hover .home-journal__image,
.home-journal__card:focus-within .home-journal__image {
	transform: scale(1.04);
}

.home-journal__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.75rem;
	margin-bottom: 0.85rem;
	font-family: var(--gtb-font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.home-journal__cat {
	color: var(--gtb-accent);
}

.home-journal__cat::after {
	content: "\00b7";
	margin-left: 0.75rem;
	color: #b0b0b0;
}

.home-journal__date {
	color: #8a8a8a;
}

.home-journal__title {
	margin-bottom: 0.85rem;
	font-size: clamp(1.125rem, 1.35vw, 1.375rem);
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.home-journal__title a {
	color: #111;
	text-decoration: none;
	transition: color 0.25s ease;
}

.home-journal__card:hover .home-journal__title a {
	color: var(--gtb-accent);
}

.home-journal__excerpt {
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	line-height: 1.6;
	color: #5a5a5a;
}

/* Pushes the read link to the foot so the rules line up across the row. */
.home-journal__more {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: auto 0 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(244, 121, 39, 0.55);
	font-family: var(--gtb-font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #111;
}

.home-journal__more::after {
	content: "";
	flex: none;
	width: 1.1rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-journal__card:hover .home-journal__more::after {
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.home-journal__image {
		transition: none;
	}
}

@media (max-width: 991.98px) {
	.home-journal__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575.98px) {
	.home-journal__cards {
		grid-template-columns: 1fr;
	}
}

/* =========================================================================
 * 17. CTA
 * ====================================================================== */

.home-cta {
	background-color: #d9d9d9;
}

.home-cta em,
.home-cta i.gtb-accent {
	font-style: normal;
	color: var(--gtb-accent);
}

.home-cta__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem 3rem;
	padding-block: clamp(3rem, 6vw, 5rem);
}

.home-cta__copy {
	flex: 1 1 26rem;
}

.home-cta__eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #1c1c1c;
}

.home-cta__rule {
	width: 34px;
	height: 2px;
	background-color: var(--gtb-accent);
}

.home-cta__index {
	color: #7a7a7a;
}

.home-cta__heading {
	margin-bottom: 1.25rem;
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 300;
	line-height: 1.06;
	text-transform: uppercase;
	color: #111;
}

.home-cta__heading strong,
.home-cta__heading b {
	font-weight: 800;
}

.home-cta__text {
	max-width: 34rem;
	margin-bottom: 1.75rem;
	font-size: 1.25rem;
	line-height: 1.6;
	color: #4a4a4a;
}

.home-cta__text p:last-child {
	margin-bottom: 0;
}

.home-cta__link {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #111;
	text-decoration: none;
}

.home-cta__link::after {
	content: "";
	flex: none;
	width: 1.25rem;
	height: 1em;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-cta__link:hover::after {
	transform: translateX(4px);
}

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

.home-cta__contact {
	display: flex;
	flex: 0 1 26rem;
	flex-direction: column;
	gap: 1.25rem;
}

.home-cta__contact-item {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--gtb-accent);
	font-size: clamp(1.0625rem, 1.3vw, 1.375rem);
	color: #111;
	text-decoration: none;
	transition: color 0.25s ease;
}

.home-cta__contact-item i {
	flex: none;
	font-size: 1.125rem;
	color: var(--gtb-accent);
}

.home-cta__contact-item:hover {
	color: var(--gtb-accent);
}

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

.home-cta__bar {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	background-color: #dfdfdf;
}

.home-cta__bar-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2.5rem;
	padding-block: clamp(1.5rem, 2.6vw, 2rem);
}

.home-cta__news,
.home-cta__social {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.home-cta__news {
	flex: 1 1 24rem;
}

.home-cta__news-label,
.home-cta__social-label {
	flex: none;
	font-family: var(--gtb-font-display);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #333;
}

.home-cta__form {
	position: relative;
	flex: 1 1 auto;
	max-width: 22rem;
}

.home-cta__form input {
	width: 100%;
	padding: 0.85rem 3rem 0.85rem 1rem;
	border: 0;
	background-color: #fff;
	font-size: 0.875rem;
	color: #111;
}

.home-cta__form input::placeholder {
	color: #9a9a9a;
}

.home-cta__form input:focus {
	outline: 2px solid var(--gtb-accent);
	outline-offset: -2px;
}

.home-cta__form button {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 3rem;
	border: 0;
	background-color: transparent;
	cursor: pointer;
}

.home-cta__form button::after {
	content: "";
	display: block;
	width: 1.25rem;
	height: 1em;
	margin-inline: auto;
	background-color: var(--gtb-accent);
	-webkit-mask: var(--gtb-arrow-right) no-repeat center / contain;
	mask: var(--gtb-arrow-right) no-repeat center / contain;
	transition: transform 0.25s ease;
}

.home-cta__form button:hover::after {
	transform: translateX(3px);
}

/* ---- Socials ---- */

.home-cta__social-list {
	display: flex;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-cta__social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #333;
	color: #fff;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.home-cta__social-list a:hover,
.home-cta__social-list a:focus-visible {
	background-color: var(--gtb-accent);
	transform: translateY(-2px);
}

@media (max-width: 767.98px) {
	.home-cta__news,
	.home-cta__social {
		flex-wrap: wrap;
		gap: 0.85rem 1.25rem;
	}

	.home-cta__form {
		max-width: none;
	}
}

/* =========================================================================
 * 18. Footer
 * ====================================================================== */
.site-footer {
	background-color: #4d4d4d;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1rem;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--gtb-accent);
}

/* ---- Top: brand + menu columns ---- */

.site-footer__top {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem 3rem;
	padding-top: clamp(2.5rem, 5vw, 4rem);
}

.site-footer__brand {
	display: flex;
	flex: 1 1 20rem;
	max-width: 30rem;
	gap: 1.5rem;
	align-items: flex-start;
}

.site-footer__logo {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 150px;
	/* padding: 1rem; */
	background-color: #fff;
}

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

.site-footer__about {
	max-width: 22rem;
	line-height: 1.6;
}

.site-footer__about p:last-child {
	margin-bottom: 0;
}


.site-footer__nav {
	display: grid;
	flex: 3 1 40rem;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 2rem 1.5rem;
	align-content: start;
}

.site-footer__col {
	min-width: 0;
}

.site-footer__col-title {
	margin-bottom: 1.25rem;
	font-family: var(--gtb-font-display);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
}

.site-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu li + li {
	margin-top: 0.6rem;
}

.site-footer__menu a {
	line-height: 1.45;
}

/* ---- Offices ---- */

.site-footer__offices {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 4rem;
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.site-footer__office {
	flex: 1 1 18rem;
	max-width: 24rem;
}

.site-footer__office-title {
	margin-bottom: 0.85rem;
	font-family: var(--gtb-font-display);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
}

.site-footer__address {
	margin-bottom: 1.25rem;
	line-height: 1.6;
}

.site-footer__office-contact {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin: 0;
	line-height: 1.6;
}

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

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

.site-footer__bar-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 2rem;
	padding-block: 1.5rem;
}

.site-footer__copyright {
	margin: 0;
	font-size: 1rem;
}

.site-footer__legal-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1rem;
}

@media (max-width: 1199.98px) {
	.site-footer__nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.site-footer__brand {
		flex-direction: column;
	}

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