:root {
	--color-bg: #f6f3ed;
	--color-text: #1c1c1c;
	--color-muted: #6f6a63;
	--color-accent: #b28b54;
	--color-dark: #181817;
	--color-border: #ddd8cf;
	--color-white: #ffffff;
	--color-card: #fbf9f5;
	--header-bg: transparent;
	--header-text: #1c1c1c;
	--header-cta-bg: transparent;
	--header-cta-text: #1c1c1c;
	--footer-bg: #f6f3ed;
	--footer-text: #1c1c1c;
	--footer-accent: #b28b54;
	--font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-sans: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
	--container-wide: 1500px;
	--container-content: 1380px;
	--container: 1500px;
	--content: 1380px;
	--header-h: 5rem;
	--preview-bar-h: 2.15rem;
	--header-stack-h: calc(var(--preview-bar-h) + var(--header-h));
	--space-1: 0.5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2.25rem;
	--space-5: 3.5rem;
	--space-6: 5.5rem;
	--space-section: clamp(2.75rem, 5vw, 5.1rem);
	--pad-x: clamp(1.25rem, 3.2vw, 3.75rem);
	--page-gutter: max(var(--pad-x), calc((100vw - var(--container-wide)) / 2));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	max-width: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 1.05rem;
	line-height: 1.7;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

figure {
	margin: 0;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

a:hover {
	color: var(--color-accent);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-serif);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.025em;
	margin: 0 0 0.6em;
}

h1 { font-size: clamp(3rem, 6.2vw, 7.15rem); }
h2 { font-size: clamp(2.35rem, 4vw, 3.85rem); }
h3 { font-size: clamp(1.45rem, 2vw, 1.95rem); }

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0;
	padding: 0;
}

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	z-index: 200;
	background: var(--color-dark);
	color: var(--color-white);
	padding: 0.7rem 1rem;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	width: auto;
	height: auto;
	clip: auto;
	overflow: visible;
	white-space: normal;
}

.container {
	width: min(100% - (var(--pad-x) * 2), var(--container-content));
	margin-inline: auto;
}

.container--narrow {
	width: min(100% - (var(--pad-x) * 2), 46rem);
}

.section {
	padding-block: var(--space-section);
}

.eyebrow {
	font-family: var(--font-sans);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin: 0 0 var(--space-3);
	line-height: 1.55;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	min-height: 2.7rem;
	padding: 0.75rem 1.6rem;
	border: 1px solid var(--color-dark);
	border-radius: 0;
	font-family: var(--font-sans);
	font-size: 0.625rem;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button__arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}

.button:hover .button__arrow,
.header-cta:hover .button__arrow {
	transform: translateX(3px);
}

.button:hover,
.button:focus-visible {
	color: var(--color-white);
	background: var(--color-dark);
	border-color: var(--color-dark);
}

.button--solid {
	background: var(--color-dark);
	color: var(--color-white);
}

.button--solid:hover,
.button--solid:focus-visible {
	background: #2c2c2a;
	color: var(--color-white);
	border-color: #2c2c2a;
}

.button--outline {
	background: transparent;
	color: var(--color-text);
}

.ar-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-text);
	border-bottom: 1px solid currentColor;
	padding-bottom: 0.18rem;
	transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ar-text-link:hover {
	color: var(--color-accent);
	border-bottom-color: var(--color-accent);
}

/* Header stack + preview bar
-------------------------------------------------- */

.site-header-stack {
	position: sticky;
	top: 0;
	z-index: 9999;
	margin: 0;
	padding: 0;
}

/* Sit below the WP admin toolbar when sticky; html margin-top already
   reserves document space so the bar remains visible at rest. */
.admin-bar .site-header-stack {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header-stack {
		top: 46px;
	}
}

/* Keep the toolbar above the theme header stack. */
#wpadminbar {
	position: fixed;
	z-index: 100000;
}

.preview-bar {
	background: #e9674f;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	line-height: 1.2;
	margin: 0;
}

.preview-bar__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 0.75rem;
	min-height: var(--preview-bar-h);
	width: min(100% - (var(--pad-x) * 2), var(--container-wide));
	margin-inline: auto;
}

.preview-bar a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.preview-bar a:hover {
	color: #fff;
	opacity: 0.82;
}

.preview-bar a:focus-visible {
	color: #fff;
	opacity: 1;
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.preview-bar a.preview-bar__cta:hover,
.preview-bar a.preview-bar__cta:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #e9674f;
	opacity: 1;
}

.preview-bar a.preview-bar__cta:hover *,
.preview-bar a.preview-bar__cta:focus-visible * {
	color: inherit;
}

.preview-bar__back {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	opacity: 0.88;
}

.preview-bar__arrow {
	font-size: 0.85em;
	line-height: 1;
}

.preview-bar__credit {
	justify-self: center;
	text-align: center;
	white-space: nowrap;
	opacity: 0.92;
}

.preview-bar__brand {
	font-weight: 600;
	letter-spacing: 0.06em;
}

.preview-bar__cta {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	min-height: 1.55rem;
	padding: 0.2rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.64rem;
	white-space: nowrap;
}


.preview-bar__back-short,
.preview-bar__credit-short,
.preview-bar__cta-short {
	display: none;
}

/* Header
-------------------------------------------------- */

.site-header {
	position: relative;
	z-index: 2;
	color: var(--header-text);
	background: color-mix(in srgb, var(--color-bg) 93%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
	background: color-mix(in srgb, var(--color-bg) 98%, transparent);
	border-bottom-color: var(--color-border);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.site-header.is-open {
	background: var(--color-bg);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
	align-items: center;
	gap: 1.25rem;
	min-height: var(--header-h);
	width: min(100% - (var(--pad-x) * 2), var(--container-wide));
	margin-inline: auto;
	position: relative;
	z-index: 2;
}

.site-header__brand {
	justify-self: start;
}

.site-header__nav {
	justify-self: center;
}

.site-header__actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.custom-logo-link img,
.site-logo__image {
	max-height: 38px;
	width: auto;
}

.site-logo-text {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	line-height: 1;
}

.site-logo-text:hover {
	color: inherit;
}

.site-logo-text strong {
	display: block;
	font-family: var(--font-serif);
	font-size: 1.02rem;
	font-weight: 400;
	letter-spacing: 0.22em;
}

.site-logo-text span {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.52rem;
	font-weight: 400;
	letter-spacing: 0.32em;
	color: var(--color-muted);
}

.primary-menu {
	display: flex;
	gap: clamp(1.5rem, 2.4vw, 2.6rem);
	list-style: none;
}

.primary-menu a {
	font-size: 0.64rem;
	font-weight: 400;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--color-text);
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: var(--color-accent);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 2.35rem;
	padding: 0.45rem 1.2rem;
	border: 1px solid var(--header-cta-text);
	border-radius: 0;
	background: var(--header-cta-bg);
	color: var(--header-cta-text);
	font-size: 0.64rem;
	font-weight: 400;
	letter-spacing: 0.16em;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
	background: var(--color-dark);
	border-color: var(--color-dark);
	color: var(--color-white);
}

.nav-toggle {
	display: none;
	width: 2.6rem;
	height: 2.6rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 1.35rem;
	height: 1px;
	background: currentColor;
	position: relative;
	margin: 0 auto;
	transition: transform 0.25s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.site-header.is-open .nav-toggle__bars { background: transparent; }
.site-header.is-open .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.site-header.is-open .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.mobile-nav { display: none; }

html.nav-open,
body.nav-open {
	overflow: hidden;
}

/* Hero
-------------------------------------------------- */

.alignfull {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.site-main--front {
	padding: 0;
}

.wp-block-alder-rowe-hero,
.wp-block-alder-rowe-featured-developments,
.wp-block-alder-rowe-our-approach,
.wp-block-alder-rowe-values-strip {
	margin: 0;
}

.wp-block-alder-rowe-hero,
.wp-block-alder-rowe-hero.alignfull {
	width: 100%;
	max-width: none;
}

.ar-hero {
	position: relative;
	display: block;
	min-height: clamp(34rem, calc(100svh - var(--header-stack-h)), 46rem);
	background: var(--color-bg);
	overflow: hidden;
}

.ar-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 44%) minmax(0, 56%);
	align-items: stretch;
	width: 100%;
	max-width: none;
	margin: 0;
	min-height: inherit;
}

.ar-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: none;
	min-height: 100%;
	padding: clamp(2.5rem, 5.5vh, 4.25rem) clamp(1.25rem, 2.4vw, 2.75rem) 5.25rem var(--page-gutter);
}

.ar-hero__eyebrow {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35em;
	margin-bottom: 0;
	animation: ar-fade-up 0.8s ease both;
}

.ar-hero__eyebrow span {
	display: inline;
}

.ar-hero__eyebrow::after {
	content: "";
	display: block;
	width: 2.6rem;
	height: 1px;
	background: var(--color-accent);
	margin: 1.15rem 0 1.35rem;
	flex-basis: 100%;
}

.ar-hero__heading {
	margin: 0 0 1.45rem;
	max-width: 9.5ch;
	font-size: clamp(3.75rem, 5vw, 6.25rem);
	line-height: 0.95;
	letter-spacing: -0.035em;
	font-weight: 400;
	hyphens: none;
	overflow-wrap: normal;
	word-break: keep-all;
	animation: ar-fade-up 0.9s ease both;
}

.ar-hero__text {
	max-width: 26.25rem;
	color: var(--color-muted);
	margin-bottom: 2rem;
	font-size: 1.02rem;
	line-height: 1.7;
	animation: ar-fade-up 0.95s ease 0.08s both;
}

.ar-hero__copy .button {
	align-self: flex-start;
	animation: ar-fade-up 1s ease 0.16s both;
}

.ar-hero__nav {
	position: absolute;
	left: var(--page-gutter);
	bottom: 2.15rem;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
}

.ar-hero__nav-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 0;
	height: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: #c5bfb4;
	font-family: var(--font-sans);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	cursor: pointer;
}

.ar-hero__nav-btn.is-active,
.ar-hero__nav-btn:hover {
	color: var(--color-text);
	background: transparent;
}

.ar-hero__nav-line,
.ar-hero__nav-rule {
	display: block;
	width: 1.35rem;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
	transition: width 0.25s ease, opacity 0.25s ease;
}

.ar-hero__nav-btn.is-active .ar-hero__nav-line,
.ar-hero__nav-btn.is-active .ar-hero__nav-rule {
	width: 2.75rem;
	opacity: 1;
}

.ar-hero__media {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: #e7e1d6;
}

.ar-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		var(--color-bg) 0%,
		color-mix(in srgb, var(--color-bg) 72%, transparent) 9%,
		transparent 20%
	);
	pointer-events: none;
	z-index: 1;
}

.ar-hero__slides,
.ar-hero__slide,
.ar-hero__media img {
	width: 100%;
	height: 100%;
}

.ar-hero__slides {
	position: absolute;
	inset: 0;
}

.ar-hero__slide {
	margin: 0;
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.85s ease;
}

.ar-hero__slide.is-active {
	opacity: 1;
}

.ar-hero__media img {
	object-fit: cover;
	object-position: 62% center;
	animation: ar-image-in 1.7s ease both;
}

@keyframes ar-fade-up {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes ar-image-in {
	from { transform: scale(1.045); }
	to { transform: scale(1); }
}

/* Featured developments
-------------------------------------------------- */

.ar-developments {
	background: var(--color-bg);
}

.ar-section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2rem;
	margin-bottom: clamp(1.65rem, 3vw, 2.4rem);
}

.ar-section-header .eyebrow {
	margin-bottom: 0.85rem;
}

.ar-section-header__title {
	margin: 0;
	max-width: 14ch;
	line-height: 1.05;
}

.ar-section-header .ar-text-link {
	margin-bottom: 0.45rem;
	white-space: nowrap;
}

.ar-developments__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.15rem, 1.8vw, 1.75rem);
}

.ar-dev-card {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	background: var(--color-card);
	border: 0;
}

.ar-dev-card:hover {
	color: inherit;
}

.ar-dev-card__media {
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: #e7e1d6;
}

.ar-dev-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.8s ease;
}

.ar-dev-card:hover img {
	transform: scale(1.03);
}

.ar-dev-card__body {
	padding: 1.35rem 1.4rem 1.55rem;
}

.ar-dev-card__location {
	margin: 0 0 0.5rem;
	font-size: 0.64rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-accent);
	font-weight: 500;
}

.ar-dev-card__title {
	margin: 0 0 0.55rem;
	font-size: clamp(1.5rem, 1.7vw, 1.85rem);
	line-height: 1.15;
}

.ar-dev-card__title a {
	color: inherit;
	text-decoration: none;
}

.ar-dev-card__title a:hover,
.ar-dev-card__title a:focus-visible {
	color: var(--color-accent);
}

.ar-dev-card__media-link {
	display: block;
	height: 100%;
}

.ar-dev-card__text {
	color: var(--color-muted);
	margin-bottom: 1.15rem;
	font-size: 0.95rem;
	line-height: 1.6;
}

.ar-dev-card .ar-text-link {
	border-bottom-color: transparent;
}

.ar-dev-card:hover .ar-text-link {
	border-bottom-color: var(--color-accent);
}

/* Approach
-------------------------------------------------- */

.ar-approach {
	background: var(--color-bg);
}

.ar-approach__inner {
	display: grid;
	grid-template-columns: minmax(16rem, 0.82fr) 1.18fr;
	gap: clamp(2.25rem, 5vw, 5.5rem);
	align-items: center;
}

.ar-approach__heading {
	margin-bottom: 1.35rem;
	line-height: 1.08;
}

.ar-approach__text {
	max-width: 32rem;
	color: var(--color-muted);
	font-size: 1.05rem;
	line-height: 1.75;
	margin-bottom: 1.85rem;
}

.ar-approach__media {
	overflow: hidden;
	background: #e7e1d6;
	aspect-ratio: 16 / 11;
	min-height: 22rem;
}

.ar-approach__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Values
-------------------------------------------------- */

.ar-values {
	background: var(--color-bg);
	padding-top: 0;
}

.ar-values__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
}

.ar-value {
	padding: 0 1.4rem;
	border-left: 1px solid var(--color-border);
}

.ar-value:first-child {
	padding-left: 0;
	border-left: 0;
}

.ar-value:last-child {
	padding-right: 0;
}

.ar-value__visual {
	min-height: 2.6rem;
	margin-bottom: 1.05rem;
	color: var(--color-accent);
}

.ar-value__stat {
	margin: 0;
	font-family: var(--font-serif);
	font-size: 2.85rem;
	line-height: 0.9;
	font-weight: 500;
	color: var(--color-accent);
	letter-spacing: -0.03em;
}

.ar-value__title {
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.55rem;
	line-height: 1.3;
}

.ar-value__text {
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0;
}

.ar-icon {
	display: block;
}

.ar-value__icon-img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

/* Footer
-------------------------------------------------- */

.site-footer {
	background: var(--footer-bg);
	color: var(--footer-text);
	border-top: 1px solid var(--color-border);
}

.site-footer a:hover {
	color: var(--footer-accent);
}

.site-footer a:focus-visible {
	outline: 2px solid var(--footer-accent);
	outline-offset: 3px;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(16rem, 1.1fr) 1.9fr;
	gap: clamp(2.5rem, 5vw, 5.5rem);
	padding-block: clamp(2.5rem, 4.5vw, 3.85rem);
}

.site-footer__logo {
	margin-bottom: 1.5rem;
}

.site-footer__statement {
	font-family: var(--font-serif);
	font-size: clamp(1.7rem, 2.6vw, 2.45rem);
	line-height: 1.18;
	max-width: 16ch;
	margin-bottom: 1.25rem;
	letter-spacing: -0.02em;
}

.site-footer__company {
	color: var(--color-muted);
	max-width: 34rem;
	font-size: 0.95rem;
}

.site-footer__menus {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
	gap: 1.5rem;
}

.site-footer__col h2 {
	font-family: var(--font-sans);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 1.15rem;
}

.footer-menu,
.footer-contact {
	list-style: none;
}

.footer-menu a,
.footer-contact a {
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-menu a:hover,
.footer-contact a:hover {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.footer-menu li,
.footer-contact li {
	margin-bottom: 0.55rem;
	font-size: 0.92rem;
}

.site-footer__bar {
	border-top: 1px solid var(--color-border);
}

.site-footer__bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem 1.5rem;
	min-height: 3.85rem;
	font-size: 0.78rem;
	color: var(--color-muted);
	letter-spacing: 0.02em;
	flex-wrap: wrap;
	padding-block: 0.85rem;
}

.site-footer__copy {
	margin: 0;
}

.site-footer__bar-end {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.25rem 1.75rem;
	flex-wrap: wrap;
	margin-left: auto;
}

.site-footer__social {
	display: flex;
	gap: 1rem;
	list-style: none;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.6rem;
	height: 1.6rem;
	color: var(--footer-text);
	text-decoration: none;
}

.site-footer__social a:hover {
	color: var(--footer-accent);
}

.site-footer__preview {
	display: flex;
	align-items: center;
	gap: 0.85rem 1rem;
	flex-wrap: wrap;
}

.site-footer__preview-credit {
	display: inline-flex;
	align-items: baseline;
	gap: 0.3em;
	color: var(--color-muted);
	text-decoration: none;
	font-size: 0.72rem;
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.site-footer__preview-credit:hover,
.site-footer__preview-credit:focus-visible {
	color: var(--footer-accent);
	text-decoration: none;
}

.site-footer__preview-brand {
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--footer-text);
}

.site-footer__preview-credit:hover .site-footer__preview-brand,
.site-footer__preview-credit:focus-visible .site-footer__preview-brand {
	color: var(--footer-accent);
}

.site-footer__preview-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 1.55rem;
	padding: 0.2rem 0.7rem;
	border: 1px solid color-mix(in srgb, var(--footer-text) 28%, transparent);
	color: var(--footer-text);
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.64rem;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer__preview-cta:hover,
.site-footer__preview-cta:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #111;
	text-decoration: none;
}

.site-footer__preview-arrow {
	font-size: 0.85em;
	line-height: 1;
	transition: transform 0.2s ease;
}

.site-footer__preview-cta:hover .site-footer__preview-arrow,
.site-footer__preview-cta:focus-visible .site-footer__preview-arrow {
	transform: translateX(2px);
}

/* Content templates
-------------------------------------------------- */

.site-main--front .entry-content > *:not([class*="wp-block-alder-rowe"]) {
	width: min(100% - (var(--pad-x) * 2), 46rem);
	margin-inline: auto;
}

.page-hero {
	padding: 4.5rem 0 2.5rem;
}

.page-hero__title,
.archive-header__title {
	margin-bottom: 0.4rem;
}

.archive-header {
	margin-bottom: 3rem;
	max-width: 38rem;
}

.archive-header__intro,
.entry-content {
	color: var(--color-muted);
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.section-media img,
.single-entry__image {
	width: 100%;
	max-height: 42rem;
	object-fit: cover;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.post-list {
	display: grid;
	gap: 2.5rem;
}

.teaser__link {
	text-decoration: none;
	color: inherit;
}

.teaser__media {
	aspect-ratio: 16 / 11;
	overflow: hidden;
	margin-bottom: 1rem;
	background: #e7e1d6;
}

.teaser__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.teaser__more {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.error-404 {
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.error-404 h1 {
	max-width: 12ch;
}

.nav-links {
	display: flex;
	gap: 1rem;
	margin-top: 3rem;
}

/* Responsive
-------------------------------------------------- */

@media (max-width: 1400px) {
	.ar-hero__inner {
		grid-template-columns: minmax(0, 45%) minmax(0, 55%);
	}
}

@media (max-width: 1200px) {
	.ar-hero__inner {
		grid-template-columns: minmax(0, 48%) minmax(0, 52%);
	}

	.ar-values__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem 0;
	}

	.ar-value {
		padding: 0 1.2rem 1.5rem;
	}

	.ar-value:nth-child(3n + 1) {
		padding-left: 0;
		border-left: 0;
	}

	.site-footer__menus {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	.preview-bar__back-full,
	.preview-bar__credit-full,
	.preview-bar__cta-full {
		display: none;
	}

	.preview-bar__back-short,
	.preview-bar__credit-short,
	.preview-bar__cta-short {
		display: inline;
	}

	.preview-bar {
		font-size: 0.68rem;
	}

	.preview-bar__cta {
		padding: 0.18rem 0.55rem;
		font-size: 0.6rem;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.site-header__nav {
		display: none;
	}

	.header-cta:not(.header-cta--mobile) {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.mobile-nav {
		display: flex;
		flex-direction: column;
		position: fixed;
		z-index: 9998;
		top: 0;
		left: 0;
		right: 0;
		bottom: auto;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
		background: var(--color-bg);
		padding: calc(var(--header-stack-h) + 1.5rem) 1.5rem 2rem;
		transform: translateY(-110%);
		transition: transform 0.4s ease;
		overflow: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		visibility: hidden;
		pointer-events: none;
	}

	.admin-bar .mobile-nav {
		top: var(--wp-admin--admin-bar--height, 32px);
		height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
		height: calc(100dvh - var(--wp-admin--admin-bar--height, 32px));
		max-height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
		max-height: calc(100dvh - var(--wp-admin--admin-bar--height, 32px));
	}

	@media screen and (max-width: 782px) {
		.admin-bar .mobile-nav {
			top: var(--wp-admin--admin-bar--height, 46px);
			height: calc(100vh - var(--wp-admin--admin-bar--height, 46px));
			height: calc(100dvh - var(--wp-admin--admin-bar--height, 46px));
			max-height: calc(100vh - var(--wp-admin--admin-bar--height, 46px));
			max-height: calc(100dvh - var(--wp-admin--admin-bar--height, 46px));
		}
	}

	body.nav-open .mobile-nav {
		transform: none;
		visibility: visible;
		pointer-events: auto;
		z-index: 10000;
	}

	.mobile-nav__close {
		position: absolute;
		top: max(0.75rem, env(safe-area-inset-top, 0px));
		right: max(0.75rem, env(safe-area-inset-right, 0px));
		z-index: 2;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2.75rem;
		height: 2.75rem;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--color-text);
		font-family: var(--font-sans);
		font-size: 2rem;
		line-height: 1;
		cursor: pointer;
	}

	.mobile-nav__close:focus-visible {
		outline: 2px solid var(--color-accent);
		outline-offset: 3px;
	}

	.mobile-menu {
		list-style: none;
		margin-bottom: 2.5rem;
	}

	.mobile-menu a {
		display: block;
		font-family: var(--font-serif);
		font-size: clamp(2rem, 8vw, 3.4rem);
		text-decoration: none;
		padding: 0.25rem 0;
		line-height: 1.15;
	}

	.ar-hero {
		min-height: 0;
		height: auto;
	}

	.ar-hero__inner,
	.ar-approach__inner,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.ar-hero__inner {
		min-height: 0;
		width: 100%;
	}

	.ar-hero__copy {
		max-width: none;
		min-height: 0;
		padding: 2.75rem var(--pad-x) 3.25rem;
	}

	.ar-hero__heading {
		font-size: clamp(3.15rem, 11vw, 4.85rem);
		max-width: none;
		word-break: normal;
	}

	.ar-hero__nav {
		position: relative;
		left: auto;
		bottom: auto;
		margin-top: 2.25rem;
	}

	.ar-hero__media {
		position: relative;
		width: 100%;
		height: 52vh;
		min-height: 18rem;
	}

	.ar-hero__media::after {
		background: linear-gradient(180deg, var(--color-bg) 0%, transparent 18%);
	}

	.ar-developments__grid,
	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ar-approach__media {
		min-height: 20rem;
	}
}

@media (max-width: 768px) {
	.ar-section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.ar-section-header .ar-text-link {
		margin-bottom: 0;
	}

	.ar-developments__grid,
	.post-grid,
	.site-footer__menus {
		grid-template-columns: 1fr;
	}

	.ar-values__grid {
		grid-template-columns: 1fr;
	}

	.ar-value,
	.ar-value:nth-child(3n + 1),
	.ar-value:first-child {
		padding: 1.35rem 0;
		border-left: 0;
		border-top: 1px solid var(--color-border);
	}

	.ar-value:first-child {
		border-top: 0;
		padding-top: 0;
	}

	.site-footer__bar-inner {
		flex-direction: column;
		align-items: flex-start;
		padding-block: 1.15rem;
	}

	.site-footer__bar-end {
		margin-left: 0;
		width: 100%;
		justify-content: flex-start;
	}

	.site-footer__preview {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.65rem;
	}

	.ar-hero__copy {
		padding-left: var(--pad-x);
		padding-right: var(--pad-x);
	}

	.ar-dev-card__body {
		padding-inline: 1.15rem;
	}
}

@media (max-width: 480px) {
	.preview-bar__inner {
		gap: 0.4rem;
	}

	.preview-bar__back-short {
		display: none;
	}

	.ar-hero__media {
		height: 46vh;
	}

	.ar-approach__media {
		min-height: 16rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}

:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
}
