:root {
	--color-primary: #000;
	--color-secondary: #5f5f5f;
	--color-tertiary: #000;
	--color-ink: #000;
	--color-muted: #444;
	--color-paper: #fff;
	--color-soft: #fff;
	--color-border: rgba(0, 0, 0, 0.14);
	--font-display: Georgia, "Times New Roman", serif;
	--font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--header-height: 92px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-ink);
	background: var(--color-paper);
	font-family: var(--font-body);
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.home .hero h1,
body.home .home-story h2,
body.home .home-difference h2,
body.home .home-numbers h2,
body.home .home-who h2,
body.home .projects-section--home h2,
body.home .difference-card h3,
body.home .numbers-grid strong {
	color: var(--home-heading-color, #000);
}

body.home .hero p,
body.home .home-story__copy,
body.home .difference-card p,
body.home .numbers-grid span,
body.home .projects-section--home .section-heading p {
	color: var(--home-body-color, #444);
}

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

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

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

.container {
	width: min(100% - 32px, 1180px);
	margin-inline: auto;
}

.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:focus {
	top: 12px;
	left: 12px;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--color-tertiary);
	color: var(--color-primary);
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	height: var(--header-height);
	color: #000;
	background: #fff;
	border-bottom: 1px solid var(--color-border);
	transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

body:not(.home) .site-header,
.site-header.is-scrolled,
.site-header.is-open {
	background: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 0;
}

.site-brand {
	position: relative;
	z-index: 60;
	display: flex;
	align-items: center;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 4vw, 1.7rem);
	line-height: 1;
	letter-spacing: 0;
}

.site-brand a {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding: 10px 0;
}

.site-brand__text span {
	display: inline-block;
	color: #000;
}

.site-brand__logo img {
	width: auto;
	max-height: 58px;
}

.custom-logo {
	width: auto;
	max-height: 56px;
}

.nav-toggle {
	position: relative;
	z-index: 60;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(0, 0, 0, 0.28);
	border-radius: 50%;
	background: transparent;
	color: #000;
	cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	position: absolute;
	left: 12px;
	width: 18px;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__bar {
	top: 21px;
}

.nav-toggle__bar::before {
	top: -6px;
	left: 0;
}

.nav-toggle__bar::after {
	top: 6px;
	left: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
	transform: translateY(-6px) rotate(-45deg);
}

.main-navigation {
	position: fixed;
	inset: 0;
	display: grid;
	align-items: start;
	justify-items: stretch;
	z-index: 55;
	min-height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: calc(var(--header-height) + 28px) 24px 32px;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
	visibility: hidden;
	transition: transform 240ms ease, opacity 180ms ease, visibility 240ms ease;
}

.main-navigation.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.menu,
.sub-menu,
.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	width: min(100%, 360px);
	margin-inline: auto;
}

.menu a {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 8px 2px;
	color: #000;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.menu-item-has-children {
	position: relative;
}

.sub-menu {
	display: grid;
	gap: 10px;
	margin-top: 10px;
	padding: 14px;
	width: 100%;
	border: 1px solid var(--color-border);
	background: #fff;
}

.sub-menu a {
	min-height: auto;
	color: #000;
	font-size: 0.74rem;
	letter-spacing: 0.08em;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid transparent;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
}

.button-primary {
	background: #000;
	color: #fff;
}

.hero {
	position: relative;
	padding: calc(var(--header-height) + clamp(48px, 7vw, 88px)) 0 clamp(78px, 10vw, 128px);
	color: #000;
	background: #fff;
}

.hero::before {
	display: none;
}

.hero__overlay {
	display: none;
}

.hero__content {
	position: relative;
	display: grid;
	gap: clamp(22px, 4vw, 44px);
	max-width: 1180px;
	padding-bottom: clamp(30px, 5vw, 58px);
	border-bottom: 1px solid var(--color-border);
}

.hero__eyebrow,
.section-kicker,
.entry-meta {
	margin: 0 0 12px;
	color: var(--color-tertiary);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.section-kicker,
.entry-meta {
	color: var(--color-primary);
}

.hero h1,
.section h2,
.entry-header h1,
.archive-header h1,
.not-found h1 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0;
}

.hero h1 {
	max-width: 1040px;
	font-size: clamp(3.2rem, 9.4vw, 7.6rem);
}

.hero p:not(.hero__eyebrow) {
	max-width: 640px;
	margin: 0;
	color: #000;
	font-size: clamp(1rem, 2vw, 1.18rem);
	line-height: 1.72;
}

.hero .hero__subtitle {
	max-width: 720px;
	margin: 0;
	color: #000;
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3.8vw, 3rem);
	line-height: 1.12;
}

.hero__media {
	position: relative;
	margin-top: clamp(34px, 6vw, 70px);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: #f5f5f5;
}

.hero__media img {
	width: 100%;
	aspect-ratio: 16 / 8.4;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
	transition: transform 700ms ease, filter 700ms ease;
}

.hero__media:hover img {
	filter: contrast(1.03);
	transform: scale(1.035);
}

.hero__stats {
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 0;
	left: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: #000;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__stats div {
	padding: 18px 12px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__stats strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 5vw, 2.25rem);
	font-weight: 400;
}

.hero__stats span {
	display: block;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.section {
	padding: clamp(72px, 10vw, 124px) 0;
}

.section-muted {
	background: #fff;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.section-dark,
.contact-section {
	background: #fff;
	color: #000;
}

.contact-hero {
	position: relative;
	margin-top: 54px;
	padding: clamp(52px, 9vw, 96px);
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.28) 100%),
		var(--contact-banner-image) center 48% / cover no-repeat,
		#000;
	color: #fff;
}

.contact-hero::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 112px);
	content: "";
}

.contact-hero__inner {
	position: relative;
	z-index: 1;
}

.contact-hero .section-kicker {
	color: rgba(255, 255, 255, 0.72);
}

.contact-hero h2 {
	max-width: 860px;
	margin: 0;
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 6vw, 4.8rem);
	font-weight: 400;
	line-height: 1.08;
}

.contact-hero__subtitle {
	margin: clamp(20px, 3vw, 34px) 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 3vw, 2.55rem);
	font-style: italic;
}

.contact-copy {
	align-self: start;
}

.contact-response-note {
	margin-top: 22px;
	padding: 18px 20px;
	border-left: 3px solid #000;
	background: #f5f5f5;
}

.section-dark .section-kicker,
.contact-section .section-kicker {
	color: var(--color-tertiary);
}

.section h2,
.entry-header h1,
.archive-header h1,
.not-found h1 {
	color: var(--color-primary);
	font-size: clamp(2.05rem, 6vw, 4.25rem);
}

.section-dark h2,
.contact-section h2 {
	color: #000;
}

.section-heading {
	display: grid;
	gap: 20px;
	margin-bottom: 34px;
}

.section-heading p,
.about-copy p,
.contact-section p,
.project-card__content p,
.project-card__content span,
.post-card time,
.post-card p {
	color: var(--color-muted);
}

.section-dark p,
.contact-section p {
	color: var(--color-muted);
}

.city-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.city-list a {
	padding: 12px 18px;
	border: 1px solid var(--color-border);
	background: rgba(255, 255, 255, 0.58);
	color: var(--color-primary);
	font-weight: 800;
}

.project-grid,
.post-grid,
.amenities-grid {
	display: grid;
	gap: 22px;
}

.project-card,
.post-card,
.amenity-card,
.testimonial-card,
.featured-panel,
.enquiry-form {
	position: relative;
	border: 1px solid var(--color-border);
	background: var(--color-paper);
}

.project-card {
	overflow: hidden;
	transform: translateY(0);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.project-card:hover,
.project-card:focus-within {
	border-color: rgba(0, 0, 0, 0.36);
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.12);
	transform: translateY(-8px);
}

.project-card__media,
.post-card__media,
.about-media,
.gallery-item {
	min-height: 260px;
	background: #f4f4f4;
}

.project-card__media {
	position: relative;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	transform: scale(1);
	transition: background-position 520ms ease, transform 520ms ease, filter 520ms ease;
}

.project-card:hover .project-card__media,
.project-card:focus-within .project-card__media {
	background-position: center 42%;
	filter: saturate(1.08) contrast(1.04);
	transform: scale(1.045);
}

.project-card__media::after {
	display: none;
}

.project-card:hover .project-card__media::after,
.project-card:focus-within .project-card__media::after {
	opacity: 0;
}

.project-card--1 .project-card__media {
	background-image: url("../images/project-signature-residences.png");
}

.project-card--2 .project-card__media {
	background-image: url("../images/project-garden-enclave.png");
}

.project-card--3 .project-card__media {
	background-image: url("../images/project-urban-courts.png");
}

.project-card--4 .project-card__media {
	background-image: url("../images/project-garden-enclave.png");
}

.project-card__content,
.post-card__body {
	padding: 24px;
}

.project-card h3,
.post-card h3,
.post-card h2,
.amenity-card h3 {
	margin: 8px 0;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.2;
}

.project-card h3 {
	font-size: 1.7rem;
}

.project-card a,
.text-link {
	display: inline-block;
	margin-top: 18px;
	color: var(--color-primary);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.project-card a {
	transition: color 180ms ease, transform 180ms ease;
}

.project-card:hover a,
.project-card:focus-within a {
	color: #000;
	transform: translateX(4px);
}

.featured-layout,
.about-layout,
.contact-layout,
.testimonials-layout {
	display: grid;
	gap: 34px;
	align-items: center;
}

.featured-panel,
.testimonial-card,
.enquiry-form {
	padding: clamp(24px, 4vw, 42px);
}

.featured-panel ul {
	margin: 20px 0 0;
	padding-left: 20px;
}

.about-metrics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 28px;
}

.about-metrics div {
	padding: 20px;
	border-left: 3px solid var(--color-primary);
	background: var(--color-soft);
}

.about-metrics strong {
	display: block;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 400;
}

.amenity-card {
	min-height: 150px;
	padding: 26px;
}

.amenity-card span {
	display: block;
	width: 34px;
	height: 2px;
	margin-bottom: 28px;
	background: var(--color-primary);
}

.gallery-grid {
	display: grid;
	gap: 16px;
}

.gallery-item {
	min-height: 220px;
}

.gallery-item--large {
	min-height: 360px;
}

.testimonial-card {
	background: rgba(255, 250, 244, 0.96);
	color: var(--color-ink);
}

.testimonial-card p {
	margin-top: 0;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 4vw, 2.15rem);
	line-height: 1.25;
}

.testimonial-card cite {
	color: var(--color-muted);
	font-style: normal;
}

.post-card__media {
	display: block;
	min-height: 210px;
}

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

.contact-details {
	display: grid;
	gap: 10px;
	margin-top: 24px;
	color: #000;
	font-weight: 800;
}

.contact-details strong,
.contact-details address,
.footer-contact__company,
.footer-contact address {
	font-style: normal;
	line-height: 1.55;
}

.contact-details address {
	max-width: 420px;
	color: var(--color-muted);
	font-weight: 500;
}

.contact-details__phones {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 0;
}

.contact-details__row,
.footer-contact__row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.contact-icon {
	display: inline-grid;
	flex: 0 0 30px;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid currentColor;
	border-radius: 50%;
	transition: background 280ms ease, box-shadow 320ms ease, color 280ms ease, transform 380ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.contact-icon svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
	transition: transform 420ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.contact-details__row:hover .contact-icon,
.contact-details__row:focus-within .contact-icon {
	background: #000;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	color: #fff;
	transform: translateY(-3px) scale(1.08);
}

.contact-details__row:hover .contact-icon svg,
.contact-details__row:focus-within .contact-icon svg,
.footer-contact__row:hover .contact-icon svg,
.footer-contact__row:focus-within .contact-icon svg {
	transform: rotate(-8deg) scale(1.12);
}

.contact-details__phones a:not(:last-child)::after {
	margin-inline: 10px;
	color: #999;
	content: "|";
}

.enquiry-form {
	display: grid;
	gap: 16px;
	padding: clamp(26px, 4vw, 42px);
	border: 1px solid var(--color-border);
	background: #fff;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
	color: var(--color-ink);
}

.enquiry-form h3 {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 400;
}

.enquiry-form label {
	display: grid;
	gap: 7px;
	color: var(--color-primary);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.search-form input[type="search"] {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: 0;
	padding: 13px 14px;
	background: #fff;
	color: var(--color-ink);
}

.site-footer {
	position: relative;
	overflow: hidden;
	background: #000;
	color: #fff;
}

.site-footer::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px);
	content: "";
	opacity: 0.55;
}

.site-footer .container {
	position: relative;
	z-index: 1;
}

.site-footer .site-brand__text span {
	color: #fff;
}

.footer-grid {
	display: grid;
	gap: 22px;
	padding: clamp(54px, 8vw, 92px) 0;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
	position: relative;
	padding: clamp(22px, 3vw, 30px);
	border: 0;
	background: rgba(255, 255, 255, 0.035);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(10px);
	transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.footer-brand:hover,
.footer-links:hover,
.footer-contact:hover,
.footer-social:hover {
	background: rgba(255, 255, 255, 0.065);
	transform: translateY(-4px);
}

.footer-brand::before,
.footer-contact::before {
	display: block;
	width: 48px;
	height: 3px;
	margin-bottom: 22px;
	background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
	content: "";
}

.footer-brand p,
.footer-contact p,
.footer-contact address,
.footer-menu a {
	color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
	max-width: 340px;
	margin-bottom: 0;
}

.footer-contact p {
	margin: 0 0 8px;
}

.footer-contact__phones {
	display: grid;
	gap: 7px;
	margin-bottom: 8px;
}

.footer-contact__row .contact-icon {
	color: rgba(255, 255, 255, 0.82);
}

.footer-contact__row:hover .contact-icon,
.footer-contact__row:focus-within .contact-icon {
	background: #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
	color: #000;
	transform: translateY(-3px) scale(1.08);
}

.footer-contact__row address,
.footer-contact__row p {
	margin: 0;
}

.footer-contact__phones a {
	justify-self: start;
}

.footer-contact__company {
	color: #fff;
	font-weight: 800;
}

.footer-links h2,
.footer-contact h2,
.footer-contact__address h3,
.footer-social h2,
.footer-widget__title {
	margin: 0 0 18px;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 400;
}

.footer-contact__address {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact__address h3 {
	margin-bottom: 10px;
	font-size: 1.15rem;
}

.footer-menu {
	display: grid;
	gap: 12px;
}

.footer-menu a,
.footer-contact a {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	transition: color 180ms ease, transform 180ms ease;
}

.footer-menu a::after {
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	opacity: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: opacity 180ms ease, transform 220ms ease;
}

.footer-menu a:hover,
.footer-menu a:focus,
.footer-contact a:hover,
.footer-contact a:focus {
	color: rgba(255, 255, 255, 0.96);
	transform: translateX(4px);
}

.footer-menu a:hover::after,
.footer-menu a:focus::after {
	opacity: 1;
	transform: scaleX(1);
}

.footer-menu .menu-item-has-children > a {
	color: #fff;
	font-weight: 800;
}

.footer-menu .sub-menu {
	position: static;
	display: grid;
	gap: 8px;
	width: auto;
	min-width: 0;
	margin: 8px 0 2px 14px;
	padding: 0 0 0 14px;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	background: transparent;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.footer-menu .sub-menu a {
	min-height: auto;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: none;
}

.footer-menu .sub-menu a:hover,
.footer-menu .sub-menu a:focus {
	color: #fff;
}

.footer-contact__address address {
	position: relative;
	margin: 0;
	padding: 18px 18px 18px 22px;
	border-left: 3px solid #fff;
	background: rgba(255, 255, 255, 0.06);
	font-style: normal;
	line-height: 1.7;
}

.footer-social__list {
	display: grid;
	gap: 12px;
}

.footer-social__link {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 54px;
	padding: 9px 12px 9px 9px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(0, 0, 0, 0.24);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.footer-social__icon {
	display: inline-grid;
	flex: 0 0 auto;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	color: #000;
	transition: background 220ms ease, color 220ms ease, transform 520ms ease;
}

.footer-social__icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.footer-social__link:hover,
.footer-social__link:focus {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	transform: translateX(6px);
}

.footer-social__link:hover .footer-social__icon,
.footer-social__link:focus .footer-social__icon {
	background: rgba(255, 255, 255, 0.82);
	color: #000;
	transform: rotate(360deg) scale(1.08);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding: 18px 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.88rem;
}

.page-shell {
	padding: calc(var(--header-height) + 64px) 0 84px;
}

.content-container {
	max-width: 860px;
}

.entry-header,
.archive-header,
.not-found {
	margin-bottom: 34px;
}

.entry-content-wrap {
	background: var(--color-paper);
}

.entry-featured {
	margin: 34px 0;
}

.entry-content a {
	color: var(--color-primary);
	text-decoration: underline;
}

.entry-content > * {
	margin-bottom: 1.25em;
}

.entry-content-wrap--projects {
	position: relative;
	margin-bottom: clamp(24px, 5vw, 52px);
	padding: clamp(28px, 5vw, 58px);
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.32) 100%),
		var(--projects-banner-image) center 48% / cover no-repeat,
		#000;
	color: #fff;
}

.page-shell--projects .content-container {
	max-width: 1180px;
}

.page-shell--how-we-build .content-container {
	max-width: 1180px;
}

.page-shell--why-we-build .content-container {
	max-width: 1180px;
}

.entry-content-wrap--projects::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 118px);
	content: "";
	opacity: 0.72;
}

.entry-content-wrap--projects .entry-header,
.entry-content-wrap--projects .entry-content {
	position: relative;
	z-index: 1;
}

.entry-content-wrap--projects .entry-meta {
	color: rgba(255, 255, 255, 0.72);
}

.entry-content-wrap--projects h1 {
	max-width: 780px;
	color: #fff;
}

.entry-content-wrap--projects .entry-content {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1.02rem;
}

.projects-section--page {
	padding-top: clamp(34px, 5vw, 58px);
}

.projects-section--page > .container {
	width: 100%;
}

.projects-section--page .section-heading {
	position: relative;
	margin-bottom: clamp(28px, 5vw, 48px);
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border);
}

.projects-section--page .section-heading::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: min(220px, 42%);
	height: 2px;
	background: #000;
	content: "";
}

.projects-section--page .section-heading h2 {
	max-width: 760px;
}

.projects-section--page .section-heading p {
	align-self: end;
	max-width: 500px;
	margin: 0;
	color: var(--color-muted);
}

.projects-section--page .project-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: clamp(18px, 3vw, 30px);
}

.projects-section--page .project-card {
	min-height: 520px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 0;
	background: #000;
	color: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.project-card__link {
	display: flex;
	flex: 1;
	flex-direction: column;
	color: inherit;
}

.unit-hero {
	position: relative;
	min-height: min(720px, 80vh);
	display: flex;
	align-items: flex-end;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.16)), var(--unit-hero-image) center / cover no-repeat;
	color: #fff;
}

.unit-hero__content {
	padding-block: clamp(110px, 16vw, 180px) clamp(54px, 8vw, 90px);
}

.unit-hero__content > a,
.unit-hero .section-kicker { color: rgba(255, 255, 255, 0.72); }
.unit-hero h1 { margin: 16px 0 12px; color: #fff; font-family: var(--font-display); font-size: clamp(4rem, 12vw, 9rem); font-weight: 400; line-height: 0.9; }
.unit-hero__content > p:last-child { max-width: 620px; margin: 0; font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
.unit-overview .container { max-width: 860px; margin-left: max(16px, calc((100vw - 1180px) / 2)); }
.unit-overview h2,
.unit-gallery h2,
.unit-video h2 { margin: 0 0 22px; font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; line-height: 1.08; }
.unit-overview p:last-child { max-width: 760px; color: var(--color-muted); font-size: 1.08rem; }
.unit-gallery { background: #f5f5f5; }
.unit-gallery__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(10px, 2vw, 22px); }
.unit-gallery__grid figure { margin: 0; overflow: hidden; background: #ddd; }
.unit-gallery__grid img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 650ms ease; }
.unit-gallery__grid figure:hover img { transform: scale(1.045); }
.unit-gallery__large { grid-column: 1 / -1; }
.unit-gallery__large img { aspect-ratio: 16 / 8; }
.unit-video video { display: block; width: 100%; max-height: 680px; margin-top: 30px; background: #000; }

@media (max-width: 640px) {
	.unit-gallery__grid { grid-template-columns: 1fr; }
	.unit-gallery__large { grid-column: auto; }
	.unit-gallery__large img { aspect-ratio: 4 / 3; }
}

.projects-section--page .project-card::after {
	position: absolute;
	inset: 0;
	z-index: 5;
	pointer-events: none;
	border: 2px solid rgba(255, 255, 255, 0.72);
	content: "";
	opacity: 0;
	transition: opacity 240ms ease;
}

.projects-section--page .project-card:hover,
.projects-section--page .project-card:focus-within {
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
	transform: translateY(-10px);
}

.projects-section--page .project-card:hover::after,
.projects-section--page .project-card:focus-within::after {
	opacity: 1;
}

.projects-section--page .project-card__media {
	flex: 1 1 auto;
	min-height: 360px;
}

.projects-section--page .project-card__media::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.74));
	content: "";
	opacity: 0.86;
	transition: opacity 260ms ease;
}

.projects-section--page .project-card:hover .project-card__media::before,
.projects-section--page .project-card:focus-within .project-card__media::before {
	opacity: 0.68;
}

.projects-section--page .project-card__content {
	position: relative;
	z-index: 4;
	margin-top: -142px;
	padding: clamp(22px, 3vw, 30px);
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92) 28%);
}

.projects-section--page .project-card__content p {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	margin: 0 0 14px;
	padding: 7px 11px;
	background: rgba(255, 255, 255, 0.92);
	color: #000;
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.projects-section--page .project-card h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.projects-section--page .project-card h3::after {
	display: block;
	width: 46px;
	height: 2px;
	margin-top: 18px;
	background: #fff;
	content: "";
	transform: scaleX(0.52);
	transform-origin: left;
	transition: transform 240ms ease;
}

.projects-section--page .project-card:hover h3::after,
.projects-section--page .project-card:focus-within h3::after {
	transform: scaleX(1);
}

.navigation.pagination,
.post-navigation {
	margin-top: 34px;
}

.not-found__actions {
	display: grid;
	gap: 20px;
	max-width: 520px;
}

.story-hero {
	position: relative;
	isolation: isolate;
	margin-top: 54px;
	padding: clamp(44px, 8vw, 84px);
	background:
		linear-gradient(100deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.76) 55%, rgba(0, 0, 0, 0.34) 100%),
		url('../images/home-hero-banner.png') center 58% / cover no-repeat;
	color: #fff;
	overflow: hidden;
}

.story-hero::after {
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.72);
	content: "";
}

.story-hero .section-kicker {
	color: rgba(255, 255, 255, 0.78);
}

.story-hero h2 {
	max-width: 900px;
	margin: 0;
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 6vw, 4.8rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
}

.story-hero__subheadline {
	margin: clamp(20px, 3vw, 34px) 0 0;
	color: #d8d8d8;
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 3.5vw, 2.8rem);
	font-style: italic;
	line-height: 1.1;
}

.story-section {
	display: grid;
	gap: 24px;
	margin-top: 28px;
}

.story-block {
	display: grid;
	gap: 18px;
	padding: clamp(28px, 5vw, 52px);
	border: 1px solid var(--color-border);
	background: #fff;
}

.story-block--feature {
	background: var(--color-soft);
}

.story-block--media {
	grid-template-columns: minmax(0, 1fr);
	padding: 0;
	overflow: hidden;
}

.story-block--media .story-block__number {
	padding: clamp(28px, 5vw, 52px) clamp(28px, 5vw, 52px) 0;
}

.story-block--media .story-block__content {
	padding: 0 clamp(28px, 5vw, 52px) clamp(28px, 5vw, 52px);
}

.story-block__media {
	min-height: 340px;
	margin: 0;
}

.story-block__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
}

.story-block__number {
	margin: 0;
	color: var(--color-secondary);
	font-family: var(--font-display);
	font-size: 2.4rem;
	line-height: 1;
}

.story-block h2 {
	margin: 0 0 16px;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 4vw, 3.1rem);
	font-weight: 400;
	line-height: 1.1;
}

.story-block p {
	margin: 0 0 16px;
	color: var(--color-muted);
}

.story-block p:last-child {
	margin-bottom: 0;
}

.story-list {
	display: grid;
	gap: 8px;
	margin: 18px 0;
	padding: 0;
	list-style: none;
}

.story-list li {
	padding: 12px 16px;
	border-left: 3px solid var(--color-primary);
	background: var(--color-paper);
	color: var(--color-primary);
	font-weight: 800;
}

.build-hero {
	--active-banner-image: var(--what-banner-image, none);
	--active-banner-overlay: var(--what-banner-overlay, #000);
	--active-banner-opacity: var(--what-banner-opacity, 0.82);
	position: relative;
	margin-top: 54px;
	padding: clamp(44px, 8vw, 84px);
	overflow: hidden;
	background:
		var(--active-banner-image) center / cover no-repeat,
		#000;
	color: #fff;
}

.build-hero::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 112px);
	content: "";
	opacity: 0.72;
}

.build-hero::after,
.method-hero::after,
.why-hero::after {
	position: absolute;
	z-index: 0;
	inset: 0;
	pointer-events: none;
	background: var(--active-banner-overlay, #000);
	content: "";
	opacity: var(--active-banner-opacity, 0.82);
}

.build-hero::before,
.method-hero::before,
.why-hero::before {
	z-index: 1;
}

.build-hero__inner {
	position: relative;
	z-index: 2;
}

.build-hero .section-kicker {
	color: rgba(255, 255, 255, 0.72);
}

.build-hero h2 {
	max-width: 820px;
	margin: 0;
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 6vw, 4.8rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
}

.build-section {
	display: grid;
	gap: 24px;
	margin-top: 28px;
	scroll-margin-top: calc(var(--header-height) + 24px);
}

.build-block {
	position: relative;
	display: grid;
	gap: clamp(20px, 3vw, 34px);
	padding: clamp(34px, 6vw, 62px);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: #fff;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.06);
	scroll-margin-top: calc(var(--header-height) + 24px);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.build-block::before {
	position: absolute;
	top: 0;
	left: 0;
	width: min(260px, 40%);
	height: 3px;
	background: #000;
	content: "";
}

.build-block:hover,
.build-block:focus-within {
	border-color: rgba(0, 0, 0, 0.28);
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.12);
	transform: translateY(-6px);
}

.build-block--intro {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.045), transparent 48%), #fff;
}

.build-block--feature {
	border-color: var(--color-border);
	background: #fff;
	color: #000;
}

.build-block--feature::before {
	background: #000;
}

.build-block__number {
	margin: 0;
	color: #000;
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 7vw, 5.2rem);
	line-height: 1;
	opacity: 0.16;
	transition: opacity 320ms ease, transform 420ms ease;
}

.build-block:hover .build-block__number,
.build-block:focus-within .build-block__number {
	opacity: 0.3;
	transform: translateX(6px);
}

.build-block__eyebrow {
	margin-bottom: 12px !important;
	color: #000 !important;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.build-block h2 {
	margin: 0 0 16px;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 4vw, 3.1rem);
	font-weight: 400;
	line-height: 1.1;
}

.build-block p {
	margin: 0;
	color: var(--color-muted);
}

.build-block h2::after {
	display: block;
	width: 54px;
	height: 2px;
	margin-top: 16px;
	background: #000;
	content: "";
	transform: scaleX(0.38);
	transform-origin: left;
	transition: transform 420ms ease;
}

.build-block:hover h2::after,
.build-block:focus-within h2::after {
	transform: scaleX(1);
}

.build-block--feature .build-block__number,
.build-block--feature h2,
.build-block--feature .build-block__eyebrow {
	color: #000 !important;
}

.build-block--feature p:not(.build-block__number):not(.build-block__eyebrow) {
	color: var(--color-muted);
}

.build-block--feature h2::after {
	background: #000;
}

.home-story__grid {
	display: grid;
	gap: 28px;
	align-items: start;
}

.home-story h2,
.home-difference h2,
.home-numbers h2,
.home-who h2 {
	margin: 0;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: clamp(2.05rem, 5vw, 4rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
}

.home-story__copy {
	display: grid;
	gap: 16px;
	color: var(--color-muted);
	font-size: 1.02rem;
}

.home-story__copy p {
	margin: 0;
}

.home-story__copy .button {
	justify-self: start;
	margin-top: 10px;
}

.home-story__media {
	margin: 0;
	overflow: hidden;
}

.home-story__media img {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.home-difference h2 {
	max-width: 780px;
	color: #000;
}

.difference-grid,
.numbers-grid {
	display: grid;
	gap: 20px;
	margin-top: 34px;
}

.difference-card {
	padding: clamp(24px, 4vw, 36px);
	border: 1px solid var(--color-border);
	background: #fff;
}

.difference-card span {
	display: block;
	margin-bottom: 24px;
	color: #000;
	font-family: var(--font-display);
	font-size: 2.3rem;
	line-height: 1;
}

.difference-card h3 {
	margin: 0 0 12px;
	color: #000;
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 400;
	line-height: 1.15;
}

.difference-card p {
	margin: 0;
	color: var(--color-muted);
}

.numbers-grid div {
	padding: clamp(28px, 5vw, 44px);
	border: 1px solid var(--color-border);
	background: #fff;
}

.numbers-grid strong {
	display: block;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 5vw, 4.2rem);
	font-weight: 400;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.numbers-grid strong.is-counted {
	animation: counter-pop 520ms ease both;
}

@keyframes counter-pop {
	0% {
		transform: translateY(8px);
		opacity: 0.55;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.numbers-grid span {
	display: block;
	margin-top: 12px;
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.method-hero {
	--active-banner-image: var(--how-banner-image, none);
	--active-banner-overlay: var(--how-banner-overlay, #000);
	--active-banner-opacity: var(--how-banner-opacity, 0.82);
	position: relative;
	margin-top: 54px;
	padding: clamp(44px, 8vw, 84px);
	overflow: hidden;
	background:
		var(--active-banner-image) center / cover no-repeat,
		#000;
	color: #fff;
}

.method-hero::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 112px);
	content: "";
	opacity: 0.72;
}

.method-hero__inner {
	position: relative;
	z-index: 2;
}

.method-hero .section-kicker {
	color: rgba(255, 255, 255, 0.72);
}

.method-hero h2 {
	max-width: 860px;
	margin: 0;
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 6vw, 4.8rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
}

.method-section {
	position: relative;
	display: grid;
	gap: 30px;
	margin-top: 28px;
	padding: clamp(40px, 7vw, 72px);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: #fff;
	scroll-margin-top: calc(var(--header-height) + 24px);
}

.method-section::before {
	position: absolute;
	top: 0;
	left: 0;
	width: min(260px, 40%);
	height: 3px;
	background: #000;
	content: "";
}

.method-section--dark {
	background: #000;
	color: #fff;
}

.method-section--dark::before {
	background: #fff;
}

.method-intro {
	max-width: 820px;
}

.method-intro h2 {
	margin: 0 0 18px;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 400;
	line-height: 1.08;
}

.method-intro p {
	margin: 0;
	color: var(--color-muted);
}

.method-section--dark .section-kicker {
	color: var(--color-tertiary);
}

.method-section--dark .method-intro h2,
.method-section--dark .method-intro p {
	color: #fff;
}

.principle-grid,
.apart-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
	gap: clamp(16px, 2.4vw, 24px);
	min-width: 0;
}

.principle-card,
.apart-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid var(--color-border);
	background: var(--color-soft);
	scroll-margin-top: calc(var(--header-height) + 24px);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.principle-card::before,
.apart-card::before {
	display: block;
	width: 44px;
	height: 2px;
	margin-bottom: 22px;
	background: currentColor;
	content: "";
	opacity: 0.5;
	transition: width 220ms ease, opacity 220ms ease;
}

.principle-card:hover,
.principle-card:focus-within,
.apart-card:hover,
.apart-card:focus-within {
	border-color: rgba(0, 0, 0, 0.32);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
	transform: translateY(-6px);
}

.principle-card:hover::before,
.principle-card:focus-within::before,
.apart-card:hover::before,
.apart-card:focus-within::before {
	width: 100%;
	opacity: 0.85;
}

.apart-card {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.apart-card:hover,
.apart-card:focus-within {
	border-color: rgba(255, 255, 255, 0.42);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.principle-card h3,
.apart-card h3 {
	margin: 0 0 10px;
	color: var(--color-primary);
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 400;
	line-height: 1.15;
}

.apart-card h3 {
	color: #fff;
}

.principle-card p,
.apart-card p {
	margin: 0;
	color: var(--color-muted);
	overflow-wrap: anywhere;
}

.apart-card p {
	color: rgba(255, 255, 255, 0.72);
}

.why-hero {
	--active-banner-image: var(--why-banner-image, none);
	--active-banner-overlay: var(--why-banner-overlay, #000);
	--active-banner-opacity: var(--why-banner-opacity, 0.82);
	position: relative;
	margin-top: 54px;
	padding: clamp(44px, 8vw, 84px);
	overflow: hidden;
	background:
		var(--active-banner-image) center / cover no-repeat,
		#000;
	color: #fff;
}

.why-hero::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 112px);
	content: "";
	opacity: 0.72;
}

.why-hero__inner {
	position: relative;
	z-index: 2;
}

.why-hero .section-kicker {
	color: var(--why-hero-color, #fff);
	opacity: 0.72;
}

.why-hero h2 {
	max-width: 860px;
	margin: 0;
	color: var(--why-hero-color, #fff);
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 6vw, 4.8rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
}

.why-section {
	position: relative;
	display: grid;
	gap: clamp(20px, 3vw, 34px);
	align-items: start;
	margin-top: 28px;
	padding: clamp(34px, 6vw, 62px);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: var(--why-card-color, #fff);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.06);
	scroll-margin-top: calc(var(--header-height) + 24px);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.why-section::before {
	position: absolute;
	top: 0;
	left: 0;
	width: min(260px, 40%);
	height: 3px;
	background: var(--why-accent-color, #000);
	content: "";
	transform: scaleX(0.42);
	transform-origin: left;
	transition: transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.why-section:hover::before,
.why-section:focus-within::before {
	transform: scaleX(1);
}

.why-section:hover,
.why-section:focus-within {
	border-color: rgba(0, 0, 0, 0.28);
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.12);
	transform: translateY(-6px);
}

.why-section--feature {
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.04), transparent 45%),
		var(--why-card-color, var(--color-soft));
}

.why-section__number {
	margin: 0;
	color: var(--why-accent-color, #000);
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 7vw, 5.2rem);
	line-height: 1;
	opacity: 0.16;
	transition: opacity 320ms ease, transform 480ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.why-section:hover .why-section__number,
.why-section:focus-within .why-section__number {
	opacity: 0.28;
	transform: translateX(7px) translateY(-3px);
}

.why-section h2,
.why-values h2 {
	margin: 0 0 14px;
	color: var(--why-heading-color, var(--color-primary));
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.1;
}

.why-section p,
.value-card p {
	margin: 0;
	color: var(--color-muted);
	overflow-wrap: anywhere;
}

.why-section__visual {
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	margin-bottom: 24px;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--why-accent-color, #000) 22%, transparent);
	background: color-mix(in srgb, var(--why-accent-color, #000) 4%, transparent);
	color: var(--why-accent-color, #000);
	transition: background 320ms ease, color 320ms ease, transform 420ms ease;
}

.why-section__visual svg {
	width: 42px;
	height: 42px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: filter 320ms ease, transform 480ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.why-section__visual svg path,
.why-section__visual svg circle {
	stroke-dasharray: 180;
	stroke-dashoffset: 0;
}

.why-section__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 520ms ease;
}

.why-section:hover .why-section__visual,
.why-section:focus-within .why-section__visual {
	background: var(--why-accent-color, #000);
	color: var(--why-card-color, #fff);
	transform: translateY(-6px) rotate(-3deg) scale(1.04);
}

.why-section:hover .why-section__visual svg,
.why-section:focus-within .why-section__visual svg {
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
	transform: rotate(3deg) scale(1.08);
}

.why-section:hover .why-section__visual svg path,
.why-section:hover .why-section__visual svg circle,
.why-section:focus-within .why-section__visual svg path,
.why-section:focus-within .why-section__visual svg circle {
	animation: why-icon-draw 720ms ease both;
}

.why-section:hover .why-section__visual img,
.why-section:focus-within .why-section__visual img {
	transform: scale(1.07);
}

.why-section p {
	color: var(--why-body-color, var(--color-muted));
}

.why-section h2::after {
	display: block;
	width: 56px;
	height: 2px;
	margin-top: 15px;
	background: var(--why-accent-color, #000);
	content: "";
	transform: scaleX(0.35);
	transform-origin: left;
	transition: transform 460ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.why-section:hover h2::after,
.why-section:focus-within h2::after {
	transform: scaleX(1);
}

@keyframes why-icon-draw {
	0% {
		stroke-dashoffset: 180;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

.why-values {
	position: relative;
	margin-top: 24px;
	padding: clamp(36px, 6vw, 64px);
	overflow: hidden;
	background: var(--why-values-bg-color, #000);
	color: #fff;
	scroll-margin-top: calc(var(--header-height) + 24px);
}

.why-values::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 38%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 112px);
	content: "";
	opacity: 0.66;
}

.why-values__intro,
.value-grid {
	position: relative;
	z-index: 1;
}

.why-values .section-kicker {
	color: rgba(255, 255, 255, 0.72);
}

.why-values h2 {
	max-width: 720px;
	color: #fff;
}

/* Our Story follows the visual system established on Why We Build. */
.story-hero--with-image {
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(30, 30, 30, 0.72)),
		var(--story-banner-image, url('../images/story-banner.jpg')) center 48% / cover no-repeat;
}

.story-hero--with-image::before {
	z-index: 0;
}

.story-hero--with-image::after {
	display: none;
}

.story-hero--with-image .story-hero__inner {
	position: relative;
	z-index: 1;
}

.story-hero--with-image .story-hero__subheadline {
	color: var(--story-hero-color, #fff);
	opacity: 0.72;
}

.story-hero--with-image h2,
.story-hero--with-image .section-kicker,
.story-hero--with-image .story-hero__facts strong {
	color: var(--story-hero-color, #fff);
}

.story-hero__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 760px;
	margin-top: clamp(34px, 6vw, 64px);
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.story-hero__facts span {
	display: grid;
	gap: 2px;
	padding: 18px clamp(10px, 2vw, 24px);
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.story-hero__facts span + span {
	border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.story-hero__facts strong {
	color: #fff;
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.5vw, 2rem);
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.story-block__era {
	margin-bottom: 12px !important;
	color: var(--story-accent-color, #000) !important;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.story-block.why-section {
	gap: clamp(20px, 3vw, 34px);
	padding: clamp(34px, 6vw, 62px);
	background-color: var(--story-card-color, #fff);
}

.story-block.why-section h2,
.story-block.why-section .story-list li {
	color: var(--story-heading-color, #000);
}

.story-block.why-section p:not(.story-block__number):not(.story-block__era) {
	color: var(--story-body-color, #444);
}

.story-block.why-section .story-block__number {
	padding: 0;
	color: #000;
	font-size: clamp(2.4rem, 7vw, 5.2rem);
	opacity: 0.16;
}

.story-block.why-section .story-block__content {
	padding: 0;
}

.story-block.why-section .story-block__media {
	position: relative;
	width: 100%;
	max-width: 520px;
	aspect-ratio: 1;
	margin: 0;
	align-self: center;
	justify-self: center;
	overflow: hidden;
	background: #f2f2f2;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
	transition: box-shadow 420ms ease, transform 420ms ease;
}

.story-block.why-section .story-block__media img {
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: 1;
	object-fit: cover;
	filter: saturate(0.88) contrast(1.02);
	transition: filter 520ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.story-block.why-section .story-block__number {
	transition: opacity 320ms ease, transform 420ms ease;
}

.story-block.why-section h2::after {
	display: block;
	width: 54px;
	height: 2px;
	margin-top: 16px;
	background: var(--story-accent-color, #000);
	content: "";
	transform: scaleX(0.38);
	transform-origin: left;
	transition: transform 420ms ease;
}

.story-block.why-section:hover .story-block__media,
.story-block.why-section:focus-within .story-block__media {
	box-shadow: 0 26px 58px rgba(0, 0, 0, 0.18);
	transform: translateY(-5px);
}

.story-block.why-section:hover .story-block__media img,
.story-block.why-section:focus-within .story-block__media img {
	filter: saturate(1) contrast(1.04);
	transform: scale(1.045);
}

.story-block.why-section:hover .story-block__number,
.story-block.why-section:focus-within .story-block__number {
	opacity: 0.28;
	transform: translateX(6px);
}

.story-block.why-section:hover h2::after,
.story-block.why-section:focus-within h2::after {
	transform: scaleX(1);
}

@media (max-width: 640px) {
	.story-hero__facts {
		grid-template-columns: 1fr;
	}

	.story-hero__facts span + span {
		border-top: 1px solid rgba(255, 255, 255, 0.28);
		border-left: 0;
	}
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: clamp(16px, 2.4vw, 24px);
	margin-top: 30px;
	min-width: 0;
}

.value-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
	scroll-margin-top: calc(var(--header-height) + 24px);
	transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.value-card::before {
	display: block;
	width: 44px;
	height: 2px;
	margin-bottom: 22px;
	background: currentColor;
	content: "";
	opacity: 0.5;
	transition: width 220ms ease, opacity 220ms ease;
}

.value-card:hover,
.value-card:focus-within {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.09);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	transform: translateY(-6px);
}

.value-card:hover::before,
.value-card:focus-within::before {
	width: 100%;
	opacity: 0.85;
}

.value-card h3 {
	margin: 0 0 10px;
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 400;
	line-height: 1.15;
	transition: letter-spacing 320ms ease, transform 320ms ease;
}

.value-card:hover h3,
.value-card:focus-within h3 {
	letter-spacing: 0.01em;
	transform: translateX(4px);
}

.value-card p {
	color: rgba(255, 255, 255, 0.72);
}

body.home.home-section-hover-enabled .site-main > section {
	position: relative;
	isolation: isolate;
	transition: box-shadow 260ms ease, filter 260ms ease, transform 260ms ease;
	will-change: transform;
}

body.home.home-section-hover-enabled .site-main > section::after {
	position: absolute;
	inset: 10px;
	z-index: -1;
	pointer-events: none;
	border: 1px solid transparent;
	content: "";
	opacity: 0;
	transition: border-color 260ms ease, opacity 260ms ease;
}

@media (hover: hover) {
	body.home.home-section-hover-lift .site-main > section:hover,
	body.home.home-section-hover-lift .site-main > section:focus-within {
		box-shadow: var(--home-section-hover-shadow);
		transform: translateY(calc(var(--home-section-hover-distance) * -1));
	}

	body.home.home-section-hover-zoom .site-main > section:hover,
	body.home.home-section-hover-zoom .site-main > section:focus-within {
		box-shadow: var(--home-section-hover-shadow);
		transform: scale(var(--home-section-hover-scale));
	}

	body.home.home-section-hover-tilt .site-main > section:hover,
	body.home.home-section-hover-tilt .site-main > section:focus-within {
		box-shadow: var(--home-section-hover-shadow);
		transform: perspective(1100px) rotateX(1.2deg) translateY(calc(var(--home-section-hover-distance) * -0.65));
	}

	body.home.home-section-hover-glow .site-main > section:hover,
	body.home.home-section-hover-glow .site-main > section:focus-within {
		filter: contrast(1.02);
	}

	body.home.home-section-hover-enabled .site-main > section:hover::after,
	body.home.home-section-hover-enabled .site-main > section:focus-within::after {
		border-color: rgba(0, 0, 0, 0.18);
		opacity: 1;
	}

	body.home.home-section-hover-glow .site-main > section:hover::after,
	body.home.home-section-hover-glow .site-main > section:focus-within::after {
		border-color: rgba(0, 0, 0, 0.32);
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 18px 54px rgba(0, 0, 0, 0.12);
	}
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 620ms ease, transform 620ms ease;
	will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 960px) {
	.container {
		width: min(100% - 56px, 1180px);
	}

	.nav-toggle {
		display: none;
	}

	.main-navigation {
		position: static;
		display: flex;
		justify-content: flex-end;
		flex: 1 1 auto;
		z-index: auto;
		min-height: 0;
		overflow: visible;
		padding: 0;
		background: transparent;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	.menu {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-end;
		gap: clamp(14px, 2vw, 28px);
		align-items: center;
		width: auto;
		margin-inline: 0;
	}

	.menu > li > a {
		position: relative;
		min-height: 52px;
		padding-block: 14px;
		white-space: nowrap;
	}

	.menu > li > a::after {
		position: absolute;
		right: 0;
		bottom: 8px;
		left: 0;
		height: 2px;
		background: var(--color-tertiary);
		content: "";
		opacity: 0;
		transform: scaleX(0);
		transform-origin: center;
		transition: opacity 180ms ease, transform 220ms ease;
	}

	.menu > li:hover > a::after,
	.menu > li:focus-within > a::after,
	.menu > .current-menu-item > a::after,
	.menu > .current-menu-ancestor > a::after,
	.menu > .current_page_item > a::after,
	.menu > .current_page_ancestor > a::after {
		opacity: 1;
		transform: scaleX(1);
	}

	.menu > .current-menu-item > a,
	.menu > .current-menu-ancestor > a,
	.menu > .current_page_item > a,
	.menu > .current_page_ancestor > a {
		color: var(--color-tertiary);
	}

	.sub-menu {
		position: absolute;
		top: 100%;
		left: 50%;
		min-width: 220px;
		margin-top: 14px;
		background: #fff;
		box-shadow: 0 24px 44px rgba(0, 0, 0, 0.12);
		opacity: 0;
		visibility: hidden;
		transform: translate(-50%, 12px);
		transition: opacity 220ms ease, transform 240ms ease, visibility 220ms ease;
	}

	.menu-item-has-children:hover > .sub-menu,
	.menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
	}

	.footer-menu .menu-item-has-children:hover > .sub-menu,
	.footer-menu .menu-item-has-children:focus-within > .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.section-heading,
	.featured-layout,
	.about-layout,
	.contact-layout,
	.testimonials-layout {
		grid-template-columns: 1fr 1fr;
	}

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

	.project-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.gallery-grid {
		grid-template-columns: 1.2fr 0.8fr 0.8fr;
	}

	.gallery-item--large {
		grid-row: span 2;
	}

	.gallery-item--wide {
		grid-column: span 2;
	}

	.footer-grid {
		grid-template-columns: 1.1fr 0.75fr 1.25fr 1fr;
	}

	.hero__content {
		grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
		align-items: end;
	}

	.hero h1 {
		grid-column: 1 / -1;
	}

	.hero .hero__subtitle {
		max-width: 620px;
	}

	.hero p:not(.hero__eyebrow):not(.hero__subtitle) {
		justify-self: end;
		max-width: 520px;
		padding-top: 10px;
	}

	.story-block {
		grid-template-columns: 96px 1fr;
	}

	.story-block--media {
		grid-template-columns: 96px minmax(0, 1fr) minmax(320px, 0.9fr);
		align-items: stretch;
	}

	.story-block--media .story-block__number {
		grid-column: 1;
		padding: clamp(36px, 4vw, 52px) 0 0 clamp(28px, 3vw, 40px);
	}

	.story-block--media .story-block__content {
		grid-column: 2;
		padding: clamp(36px, 4vw, 52px);
	}

	.story-block--media .story-block__media {
		grid-column: 3;
		grid-row: 1;
	}

	.story-block--media-left {
		grid-template-columns: 96px minmax(320px, 0.9fr) minmax(0, 1fr);
	}

	.story-block--media-left .story-block__content {
		grid-column: 3;
	}

	.story-block--media-left .story-block__media {
		grid-column: 2;
	}

	.build-block {
		grid-template-columns: 96px 1fr;
	}

	.home-story__grid {
		grid-template-columns: 1fr 1fr;
	}

	.home-story--media .home-story__grid {
		grid-template-areas:
			"intro media"
			"copy media";
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		align-items: center;
	}

	.home-story--media .home-story__intro {
		grid-area: intro;
	}

	.home-story--media .home-story__copy {
		grid-area: copy;
	}

	.home-story--media .home-story__media {
		grid-area: media;
	}

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

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

	.why-section {
		grid-template-columns: 110px 1fr;
	}

	.story-block.why-section.story-block--media {
		grid-template-columns: 110px minmax(0, 1fr) minmax(320px, 0.9fr);
	}

	.story-block.why-section.story-block--media-left {
		grid-template-columns: 110px minmax(320px, 0.9fr) minmax(0, 1fr);
	}
}

@media (max-width: 959px) {
	:root {
		--header-height: 82px;
	}

	.site-header {
		background: #fff;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	}

	.site-brand {
		font-size: 1.28rem;
	}

	.custom-logo {
		max-height: 48px;
	}

	.main-navigation {
		min-height: 100dvh;
		padding-inline: 18px;
	}

	.menu {
		gap: 12px;
		width: min(100%, 420px);
	}

	.menu > li {
		width: 100%;
		text-align: center;
	}

	.menu a {
		justify-content: center;
		width: 100%;
		padding-inline: 12px;
	}

	.main-navigation .menu-item-has-children > a {
		border-bottom: 1px solid var(--color-border);
	}

	.main-navigation .sub-menu {
		position: static;
		display: grid;
		gap: 6px;
		width: 100%;
		min-width: 0;
		margin-top: 0;
		padding: 12px;
		border: 1px solid var(--color-border);
		border-top: 0;
		background: #fff;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.main-navigation .sub-menu a {
		justify-content: center;
		min-height: 40px;
		padding-block: 8px;
		color: #000;
		font-size: 0.76rem;
		letter-spacing: 0.08em;
		white-space: normal;
	}

	.main-navigation .sub-menu a:hover,
	.main-navigation .sub-menu a:focus {
		background: #f5f5f5;
	}

	.hero {
		padding-bottom: 82px;
	}

	.hero__content {
		padding-bottom: 30px;
	}

	.hero__media img {
		aspect-ratio: 4 / 3.25;
	}
}

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

	.project-card,
	.project-card__media,
	.project-card__media::after,
	.project-card a,
	.why-section,
	.why-section__visual,
	.why-section__visual svg,
	.why-section__visual img,
	.why-section__number,
	.why-section h2::after,
	.build-block,
	.build-block__number,
	.build-block h2::after,
	.story-block.why-section .story-block__media,
	.story-block.why-section .story-block__media img,
	.story-block.why-section .story-block__number,
	.story-block.why-section h2::after,
	.value-card,
	.value-card::before,
	.value-card h3,
	body.home.home-section-hover-enabled .site-main > section,
	body.home.home-section-hover-enabled .site-main > section::after {
		transition: none;
	}

	.project-card:hover,
	.project-card:focus-within,
	.project-card:hover .project-card__media,
	.project-card:focus-within .project-card__media,
	.project-card:hover a,
	.project-card:focus-within a,
	.why-section:hover,
	.why-section:focus-within,
	.why-section:hover .why-section__visual,
	.why-section:focus-within .why-section__visual,
	.why-section:hover .why-section__visual img,
	.why-section:focus-within .why-section__visual img,
	.why-section:hover .why-section__visual svg,
	.why-section:focus-within .why-section__visual svg,
	.why-section:hover .why-section__number,
	.why-section:focus-within .why-section__number,
	.why-section:hover h2::after,
	.why-section:focus-within h2::after,
	.build-block:hover,
	.build-block:focus-within,
	.build-block:hover .build-block__number,
	.build-block:focus-within .build-block__number,
	.build-block:hover h2::after,
	.build-block:focus-within h2::after,
	.story-block.why-section:hover .story-block__media,
	.story-block.why-section:focus-within .story-block__media,
	.story-block.why-section:hover .story-block__media img,
	.story-block.why-section:focus-within .story-block__media img,
	.story-block.why-section:hover .story-block__number,
	.story-block.why-section:focus-within .story-block__number,
	.story-block.why-section:hover h2::after,
	.story-block.why-section:focus-within h2::after,
	.value-card:hover,
	.value-card:focus-within,
	.value-card:hover h3,
	.value-card:focus-within h3,
	body.home.home-section-hover-enabled .site-main > section:hover,
	body.home.home-section-hover-enabled .site-main > section:focus-within {
		transform: none;
	}

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