@font-face {
	font-family: "Space Grotesk";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("./fonts/space-grotesk-latin-600-normal.woff2") format("woff2");
}

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("./fonts/manrope-latin-400-normal.woff2") format("woff2");
}

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("./fonts/manrope-latin-600-normal.woff2") format("woff2");
}

:root {
	--fpd-bg: #0b0c0b;
	--fpd-surface: #111210;
	--fpd-surface-alt: #191a17;
	--fpd-ink: #f2eee6;
	--fpd-muted: #aaa79f;
	--fpd-accent: #c5a253;
	--fpd-accent-dark: #8e7134;
	--fpd-line: #30312c;
	--fpd-font-display: "Space Grotesk", Arial, sans-serif;
	--fpd-font-body: "Manrope", Arial, sans-serif;
	--fpd-radius: 4px;
	--fpd-shell: min(100% - 48px, 1380px);
	--fpd-header-height: 82px;
}

html {
	scroll-behavior: smooth;
}

body.fpd-site {
	margin: 0;
	min-width: 320px;
	background: var(--fpd-bg);
	color: var(--fpd-ink);
	font-family: var(--fpd-font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.fpd-site.menu-open {
	overflow: hidden;
}

body.fpd-site *,
body.fpd-site *::before,
body.fpd-site *::after {
	box-sizing: border-box;
}

body.fpd-site :where(h1, h2, h3, p, figure, ul) {
	margin: 0;
	padding: 0;
}

body.fpd-site :where(button, a) {
	font: inherit;
}

body.fpd-site a {
	color: inherit;
	text-decoration: none;
}

body.fpd-site button {
	color: inherit;
}

body.fpd-site :where(a, button):focus-visible {
	outline: 2px solid var(--fpd-accent);
	outline-offset: 5px;
}

.fpd-shell {
	width: var(--fpd-shell);
	margin-inline: auto;
}

.fpd-skip-link {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	transform: translateY(-160%);
	border-radius: var(--fpd-radius);
	background: var(--fpd-accent);
	color: var(--fpd-bg);
	font-weight: 600;
	transition: transform 180ms ease;
}

.fpd-skip-link:focus {
	transform: translateY(0);
}

.fpd-header {
	position: fixed;
	z-index: 1000;
	inset: 0 0 auto;
	height: var(--fpd-header-height);
	border-bottom: 1px solid color-mix(in srgb, var(--fpd-line) 76%, transparent);
	background: color-mix(in srgb, var(--fpd-bg) 92%, transparent);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

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

.fpd-header__inner {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 34px;
}

.fpd-brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	flex: 0 0 auto;
}

.fpd-brand__mark {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--fpd-accent);
	border-radius: 2px;
	color: var(--fpd-accent);
	font-family: var(--fpd-font-display);
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
}

.fpd-brand__name {
	display: grid;
	line-height: 1.05;
}

.fpd-brand__name strong {
	font-family: var(--fpd-font-display);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.fpd-brand__name span {
	margin-top: 5px;
	color: var(--fpd-muted);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.fpd-nav--desktop {
	margin-left: auto;
}

.fpd-nav__list,
.fpd-nav__list > li {
	display: flex;
	align-items: center;
	list-style: none;
}

.fpd-nav__list {
	gap: 29px;
}

.fpd-nav__list a {
	position: relative;
	display: block;
	padding-block: 9px;
	color: var(--fpd-muted);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: color 180ms ease;
}

.fpd-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 1px;
	background: var(--fpd-accent);
	content: "";
	opacity: 0;
	transform: scaleX(0);
	transform-origin: right center;
	transition: opacity 180ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fpd-nav__list .current-menu-item > a {
	color: var(--fpd-ink);
}

.fpd-nav__list .current-menu-item > a::after {
	opacity: 1;
	transform: scaleX(1);
	transform-origin: left center;
}

.fpd-nav__list a:hover {
	color: var(--fpd-accent);
}

.fpd-nav__list a:hover::after {
	background: var(--fpd-ink);
	opacity: 1;
	transform: scaleX(1);
	transform-origin: left center;
}

.fpd-header__cta {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 19px;
	border: 1px solid var(--fpd-accent);
	border-radius: var(--fpd-radius);
	color: var(--fpd-accent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.025em;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.fpd-header__cta:hover {
	background: var(--fpd-accent);
	color: var(--fpd-bg);
	transform: translateY(-1px);
}

.fpd-menu-toggle {
	display: none;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-left: auto;
	padding: 8px 0;
	border: 0;
	background: transparent;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

.fpd-menu-toggle__icon {
	display: grid;
	width: 26px;
	gap: 6px;
}

.fpd-menu-toggle__icon i {
	display: block;
	height: 1px;
	background: var(--fpd-accent);
}

.fpd-menu-toggle__icon i:last-child {
	width: 17px;
	margin-left: auto;
}

.fpd-mobile-menu {
	position: fixed;
	z-index: 2000;
	inset: 0;
	display: grid;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	max-height: 100vh;
	max-height: 100dvh;
	min-height: 0;
	grid-template-rows: auto minmax(0, 1fr) auto;
	padding: 26px 24px 30px;
	overflow: hidden;
	background: var(--fpd-surface);
	opacity: 0;
	overscroll-behavior: contain;
	pointer-events: none;
	transform: translateY(-18px);
	transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fpd-mobile-menu.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.fpd-mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--fpd-line);
}

.fpd-mobile-menu__label {
	color: var(--fpd-muted);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fpd-menu-close {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	border: 0;
	background: transparent;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

.fpd-menu-close__icon {
	position: relative;
	width: 24px;
	height: 24px;
}

.fpd-menu-close__icon::before,
.fpd-menu-close__icon::after {
	position: absolute;
	top: 11px;
	left: 1px;
	width: 22px;
	height: 1px;
	background: var(--fpd-accent);
	content: "";
}

.fpd-menu-close__icon::before {
	transform: rotate(45deg);
}

.fpd-menu-close__icon::after {
	transform: rotate(-45deg);
}

.fpd-nav--mobile {
	display: flex;
	min-height: 0;
	align-items: center;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
	touch-action: pan-y;
}

.fpd-mobile-menu__list,
.fpd-mobile-menu__list > li {
	list-style: none;
}

.fpd-mobile-menu__list {
	width: 100%;
}

.fpd-mobile-menu__list li {
	border-bottom: 1px solid var(--fpd-line);
}

.fpd-mobile-menu__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	font-family: var(--fpd-font-display);
	font-size: clamp(26px, 7vw, 42px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1;
}

.fpd-mobile-menu__list a::after {
	width: 28px;
	height: 1px;
	flex: 0 0 28px;
	margin-left: 24px;
	background: var(--fpd-accent);
	content: "";
}

.fpd-mobile-menu__cta {
	display: grid;
	width: 100%;
	max-width: 100%;
	min-height: 54px;
	margin-inline: auto;
	place-items: center;
	justify-self: center;
	padding-inline: 20px;
	border-radius: var(--fpd-radius);
	background: var(--fpd-accent);
	color: var(--fpd-bg);
	font-weight: 600;
	text-align: center;
}

.fpd-hero {
	min-height: 100svh;
	padding-top: var(--fpd-header-height);
	overflow: hidden;
	background: var(--fpd-bg);
}

.fpd-hero__grid {
	display: grid;
	min-height: calc(100svh - var(--fpd-header-height));
	grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
	align-items: center;
	gap: clamp(44px, 6vw, 100px);
}

.fpd-hero__content {
	position: relative;
	z-index: 2;
	min-width: 0;
	padding-block: 54px;
}

.fpd-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 27px;
	color: var(--fpd-accent);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.fpd-hero__eyebrow::before {
	width: 38px;
	height: 1px;
	background: var(--fpd-accent);
	content: "";
}

.fpd-hero__title {
	max-width: 760px;
	color: var(--fpd-ink);
	font-family: var(--fpd-font-display);
	font-size: clamp(52px, 4.7vw, 72px);
	font-weight: 600;
	letter-spacing: -0.055em;
	line-height: 0.98;
	text-wrap: balance;
}

.fpd-hero__title span {
	display: block;
	white-space: nowrap;
}

.fpd-hero__copy {
	max-width: 590px;
	margin-top: 28px;
	color: var(--fpd-muted);
	font-size: clamp(15px, 1.15vw, 18px);
	line-height: 1.65;
}

.fpd-hero__actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 38px;
}

.fpd-button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 0 25px;
	border-radius: var(--fpd-radius);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.fpd-button--primary {
	background: var(--fpd-accent);
	color: var(--fpd-bg);
}

.fpd-button--primary:hover {
	background: var(--fpd-ink);
	transform: translateY(-2px);
}

.fpd-text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding-block: 7px;
	border-bottom: 1px solid var(--fpd-line);
	color: var(--fpd-ink);
	font-size: 13px;
	font-weight: 600;
	transition: border-color 180ms ease, color 180ms ease;
}

.fpd-text-link span {
	color: var(--fpd-accent);
	font-size: 15px;
	transition: transform 180ms ease;
}

.fpd-text-link:hover {
	border-color: var(--fpd-accent);
	color: var(--fpd-accent);
}

.fpd-text-link:hover span {
	transform: translate(2px, -2px);
}

.fpd-hero__visual {
	position: relative;
	height: min(70vh, 720px);
	min-height: 500px;
	margin: 42px calc((100vw - var(--fpd-shell)) / -2) 42px 0;
	overflow: hidden;
	border-radius: var(--fpd-radius) 0 0 var(--fpd-radius);
	background: var(--fpd-surface-alt);
}

.fpd-hero__visual::before {
	position: absolute;
	z-index: 2;
	inset: 0 auto 0 0;
	width: 1px;
	background: var(--fpd-accent);
	content: "";
}

.fpd-hero__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fpd-section,
.fpd-standard,
.fpd-contact {
	scroll-margin-top: calc(var(--fpd-header-height) + 24px);
}

.fpd-section {
	padding-block: clamp(100px, 10vw, 154px);
}

.fpd-section-title,
.fpd-standard h2,
.fpd-contact h2 {
	color: var(--fpd-ink);
	font-family: var(--fpd-font-display);
	font-size: clamp(42px, 5vw, 72px);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 1.02;
	text-wrap: balance;
}

.fpd-section-kicker {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 24px;
	color: var(--fpd-accent);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.fpd-section-kicker::before {
	width: 38px;
	height: 1px;
	background: var(--fpd-accent);
	content: "";
}

.fpd-services {
	background: var(--fpd-surface);
}

.fpd-services__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
	gap: clamp(70px, 9vw, 150px);
}

.fpd-services__intro {
	align-self: start;
}

.fpd-services__intro .fpd-section-title {
	font-size: clamp(42px, 4.25vw, 65px);
}

.fpd-services__intro > p {
	max-width: 530px;
	margin-top: 28px;
	color: var(--fpd-muted);
	font-size: 17px;
	line-height: 1.7;
}

.fpd-service-list,
.fpd-service-list > li {
	list-style: none;
}

.fpd-service-list {
	border-bottom: 1px solid var(--fpd-line);
}

.fpd-service-list__item {
	display: grid;
	grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 64px);
	padding-block: 28px;
	border-top: 1px solid var(--fpd-line);
}

.fpd-service-list__item h3 {
	color: var(--fpd-ink);
	font-family: var(--fpd-font-display);
	font-size: clamp(21px, 2vw, 28px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.fpd-service-list__item p {
	max-width: 560px;
	color: var(--fpd-muted);
	font-size: 14px;
	line-height: 1.7;
}

.fpd-standard {
	padding-block: clamp(100px, 11vw, 170px);
	overflow: hidden;
	background: var(--fpd-bg);
}

.fpd-standard__statement {
	max-width: 1020px;
}

.fpd-standard__statement h2 {
	max-width: 920px;
}

.fpd-standard__statement > p {
	max-width: 680px;
	margin-top: 34px;
	color: var(--fpd-muted);
	font-size: 18px;
	line-height: 1.75;
}

.fpd-standard__principles {
	display: grid;
	margin-top: clamp(72px, 8vw, 118px);
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--fpd-line);
}

.fpd-principle {
	min-height: 220px;
	padding: 34px 44px 0 0;
	border-right: 1px solid var(--fpd-line);
}

.fpd-principle + .fpd-principle {
	padding-left: 44px;
}

.fpd-principle:last-child {
	border-right: 0;
}

.fpd-principle h3 {
	color: var(--fpd-accent);
	font-family: var(--fpd-font-display);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.fpd-principle p {
	max-width: 340px;
	margin-top: 22px;
	color: var(--fpd-muted);
	font-size: 14px;
	line-height: 1.75;
}

.fpd-work {
	border-top: 1px solid var(--fpd-line);
	background: var(--fpd-surface);
}

.fpd-work__heading {
	max-width: 780px;
}

.fpd-work__heading > p:last-child {
	max-width: 650px;
	margin-top: 28px;
	color: var(--fpd-muted);
	font-size: 16px;
	line-height: 1.7;
}

.fpd-work-grid {
	display: grid;
	margin-top: clamp(62px, 7vw, 104px);
	grid-template-columns: minmax(0, 1.14fr) minmax(350px, 0.86fr);
	grid-template-rows: repeat(2, minmax(280px, 1fr));
	gap: 28px;
}

.fpd-work-item {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border: 0;
}

.fpd-work-item--large {
	grid-row: 1 / 3;
}

.fpd-work-item img {
	display: block;
	width: 100%;
	min-height: 0;
	flex: 1;
	border-radius: var(--fpd-radius);
	object-fit: cover;
}

.fpd-work-item figcaption {
	padding-top: 13px;
	color: var(--fpd-muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.fpd-section-link,
.fpd-work__link {
	margin-top: 30px;
}

.fpd-work__link {
	margin-top: 38px;
}

.fpd-page-hero {
	padding-block: calc(var(--fpd-header-height) + clamp(86px, 10vw, 142px)) clamp(88px, 9vw, 138px);
	border-bottom: 1px solid var(--fpd-line);
	background: var(--fpd-bg);
}

.fpd-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
	align-items: end;
	gap: clamp(64px, 9vw, 150px);
}

.fpd-page-hero .fpd-hero__eyebrow {
	margin-bottom: 28px;
}

.fpd-page-hero h1 {
	max-width: 960px;
	color: var(--fpd-ink);
	font-family: var(--fpd-font-display);
	font-size: clamp(52px, 6.4vw, 92px);
	font-weight: 600;
	letter-spacing: -0.058em;
	line-height: 0.98;
	text-wrap: balance;
}

.fpd-page-hero__grid > p,
.fpd-page-hero__grid > div:last-child > p {
	max-width: 570px;
	padding-bottom: 7px;
	color: var(--fpd-muted);
	font-size: clamp(15px, 1.25vw, 18px);
	line-height: 1.72;
}

body.fpd-site .fpd-phone-link,
body.fpd-site .fpd-email-link {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.32em;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--fpd-accent);
	color: var(--fpd-accent);
	font-family: var(--fpd-font-display);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.35;
}

.fpd-contact-hero__actions {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 14px;
	margin-top: 24px;
}

.fpd-email-link span,
.fpd-email-link a {
	max-width: 100%;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: none;
}

.fpd-email-link a {
	overflow-wrap: anywhere;
}

.fpd-services--full .fpd-services__intro {
	position: sticky;
	top: calc(var(--fpd-header-height) + 42px);
}

.fpd-about-story {
	padding-block: clamp(100px, 11vw, 170px);
	background: var(--fpd-surface);
}

.fpd-about-story__grid {
	display: grid;
	grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(70px, 9vw, 150px);
}

.fpd-about-story__visual {
	height: min(66vw, 690px);
	max-height: 690px;
	overflow: hidden;
	border-radius: var(--fpd-radius);
	background: var(--fpd-surface-alt);
}

.fpd-about-story__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fpd-about-story__content h2,
.fpd-cta-band h2 {
	color: var(--fpd-ink);
	font-family: var(--fpd-font-display);
	font-size: clamp(40px, 4.7vw, 68px);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 1.02;
	text-wrap: balance;
}

.fpd-about-story__content p {
	max-width: 650px;
	margin-top: 28px;
	color: var(--fpd-muted);
	font-size: 16px;
	line-height: 1.78;
}

.fpd-values {
	display: grid;
	margin-top: clamp(70px, 8vw, 116px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--fpd-line);
}

.fpd-value {
	min-height: 230px;
	padding: 32px 42px 42px 0;
	border-bottom: 1px solid var(--fpd-line);
}

.fpd-value:nth-child(odd) {
	border-right: 1px solid var(--fpd-line);
}

.fpd-value:nth-child(even) {
	padding-left: 42px;
}

.fpd-value h3 {
	color: var(--fpd-accent);
	font-family: var(--fpd-font-display);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.fpd-value p {
	max-width: 500px;
	margin-top: 22px;
	color: var(--fpd-muted);
	font-size: 14px;
	line-height: 1.75;
}

.fpd-work--page {
	border-top: 0;
}

.fpd-project-scopes {
	padding-block: clamp(96px, 10vw, 150px);
	background: var(--fpd-bg);
}

.fpd-project-scopes .fpd-section-title {
	max-width: 720px;
}

.fpd-project-scopes__list {
	margin-top: clamp(54px, 7vw, 92px);
	border-bottom: 1px solid var(--fpd-line);
}

.fpd-project-scopes__list p {
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
	gap: 44px;
	padding-block: 26px;
	border-top: 1px solid var(--fpd-line);
}

.fpd-project-scopes__list strong {
	color: var(--fpd-ink);
	font-family: var(--fpd-font-display);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.025em;
}

.fpd-project-scopes__list span {
	max-width: 650px;
	color: var(--fpd-muted);
	font-size: 14px;
	line-height: 1.72;
}

.fpd-contact-details {
	display: grid;
	margin: 38px 0 0;
	padding: 0;
	border-bottom: 1px solid var(--fpd-line);
}

.fpd-contact-details > div {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 20px;
	padding-block: 17px;
	border-top: 1px solid var(--fpd-line);
}

.fpd-contact-details dt {
	color: var(--fpd-muted);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.fpd-contact-details dd {
	margin: 0;
	color: var(--fpd-ink);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.6;
}

.fpd-contact-details a {
	color: var(--fpd-accent);
}

.fpd-faq {
	padding-block: clamp(96px, 10vw, 150px);
	border-top: 1px solid var(--fpd-line);
	background: var(--fpd-bg);
}

.fpd-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
	align-items: start;
	gap: clamp(64px, 9vw, 145px);
}

.fpd-faq__list {
	border-bottom: 1px solid var(--fpd-line);
}

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

.fpd-faq summary {
	position: relative;
	padding: 24px 46px 24px 0;
	color: var(--fpd-ink);
	font-family: var(--fpd-font-display);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.3;
	cursor: pointer;
	list-style: none;
}

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

.fpd-faq summary::after {
	position: absolute;
	top: 50%;
	right: 2px;
	color: var(--fpd-accent);
	content: "+";
	font-family: var(--fpd-font-body);
	font-size: 24px;
	font-weight: 400;
	transform: translateY(-50%);
}

.fpd-faq details[open] summary::after {
	content: "−";
}

.fpd-faq details p {
	max-width: 680px;
	padding: 0 48px 26px 0;
	color: var(--fpd-muted);
	font-size: 14px;
	line-height: 1.75;
}

.fpd-cta-band {
	padding-block: clamp(74px, 8vw, 108px);
	border-top: 1px solid var(--fpd-line);
	background: var(--fpd-surface-alt);
}

.fpd-cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.fpd-cta-band h2 {
	max-width: 900px;
	font-size: clamp(38px, 4.6vw, 64px);
}

.fpd-cta-band p {
	margin-top: 18px;
	color: var(--fpd-muted);
	font-size: 15px;
}

.fpd-cta-band .fpd-button {
	flex: 0 0 auto;
}

.fpd-footer__phone {
	display: inline-block;
	margin-top: 12px;
	color: var(--fpd-accent);
	font-weight: 600;
}

.fpd-contact {
	padding-block: clamp(100px, 11vw, 166px);
	border-top: 1px solid var(--fpd-line);
	background: var(--fpd-surface-alt);
}

.fpd-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.76fr) minmax(540px, 1.24fr);
	align-items: start;
	gap: clamp(64px, 9vw, 145px);
}

.fpd-contact__intro {
	position: sticky;
	top: calc(var(--fpd-header-height) + 42px);
}

body.admin-bar.fpd-site .fpd-contact__intro {
	top: calc(var(--fpd-header-height) + 74px);
}

.fpd-contact__intro h2 {
	font-size: clamp(42px, 4.3vw, 66px);
}

.fpd-contact__intro p {
	max-width: 560px;
	margin-top: 30px;
	color: var(--fpd-muted);
	font-size: 17px;
	line-height: 1.72;
}

.fpd-contact__form-wrap {
	padding: clamp(26px, 3.5vw, 52px);
	border: 1px solid var(--fpd-line);
	border-radius: var(--fpd-radius);
	background: var(--fpd-surface);
}

.fpd-form-notice {
	display: grid;
	gap: 7px;
	margin-bottom: 30px;
	padding: 18px 20px;
	border-left: 2px solid var(--fpd-accent);
	background: var(--fpd-bg);
}

.fpd-form-notice strong {
	color: var(--fpd-ink);
	font-size: 14px;
}

.fpd-form-notice span {
	color: var(--fpd-muted);
	font-size: 13px;
	line-height: 1.55;
}

.fpd-form-notice--error {
	border-left-color: var(--fpd-muted);
}

.fpd-form {
	display: grid;
	gap: 25px;
}

.fpd-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.fpd-field {
	display: grid;
	gap: 9px;
}

.fpd-field label {
	color: var(--fpd-ink);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.fpd-field label span {
	color: var(--fpd-muted);
	font-size: 9px;
	font-weight: 400;
}

.fpd-field :where(input, select, textarea) {
	width: 100%;
	min-width: 0;
	border: 1px solid var(--fpd-line);
	border-radius: var(--fpd-radius);
	background: var(--fpd-bg);
	color: var(--fpd-ink);
	font-family: var(--fpd-font-body);
	font-size: 15px;
	line-height: 1.45;
	transition: border-color 180ms ease, background-color 180ms ease;
}

.fpd-field :where(input, select) {
	height: 52px;
	padding-inline: 15px;
}

.fpd-field textarea {
	min-height: 148px;
	padding: 14px 15px;
	resize: vertical;
}

.fpd-field :where(input, select, textarea):hover {
	border-color: var(--fpd-muted);
}

.fpd-field :where(input, select, textarea):focus {
	border-color: var(--fpd-accent);
	outline: 2px solid color-mix(in srgb, var(--fpd-accent) 50%, transparent);
	outline-offset: 2px;
}

.fpd-field select option {
	background: var(--fpd-bg);
	color: var(--fpd-ink);
}

.fpd-form__submit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 6px;
}

.fpd-form__submit p {
	max-width: 260px;
	color: var(--fpd-muted);
	font-size: 11px;
	line-height: 1.55;
}

.fpd-form__submit .fpd-button {
	min-width: 172px;
	border: 0;
	cursor: pointer;
}

.fpd-form__submit .fpd-button:disabled {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.fpd-form__hp {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.fpd-footer {
	padding-block: 72px 30px;
	border-top: 1px solid var(--fpd-line);
	background: var(--fpd-bg);
}

.fpd-footer__top {
	display: grid;
	grid-template-columns: minmax(240px, 0.72fr) minmax(260px, 1fr) auto;
	align-items: start;
	gap: 64px;
}

.fpd-brand--footer {
	width: fit-content;
}

.fpd-footer__top > p {
	max-width: 410px;
	color: var(--fpd-muted);
	font-size: 14px;
	line-height: 1.7;
}

.fpd-footer__nav,
.fpd-footer__nav > li {
	list-style: none;
}

.fpd-footer__nav {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 13px 34px;
}

.fpd-footer__nav a {
	position: relative;
	color: var(--fpd-muted);
	font-size: 12px;
	font-weight: 600;
	transition: color 180ms ease;
}

.fpd-footer__nav a:hover {
	color: var(--fpd-accent);
}

.fpd-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 58px;
	padding-top: 24px;
	border-top: 1px solid var(--fpd-line);
	color: var(--fpd-muted);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.fpd-footer__bottom a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--fpd-ink);
	transition: color 180ms ease;
}

.fpd-footer__bottom a span {
	color: var(--fpd-accent);
}

.fpd-footer__bottom a:hover {
	color: var(--fpd-accent);
}

.js .fpd-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 560ms ease, transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1120px) {
	:root {
		--fpd-shell: min(100% - 40px, 1060px);
	}

	.fpd-nav__list {
		gap: 20px;
	}

	.fpd-hero__grid {
		grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
		gap: 44px;
	}

	.fpd-hero__title {
		font-size: clamp(49px, 5.7vw, 64px);
	}

	.fpd-services__grid,
	.fpd-contact__grid {
		gap: 62px;
	}

	.fpd-contact__grid {
		grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
	}
}

@media (max-width: 900px) {
	:root {
		--fpd-header-height: 74px;
		--fpd-shell: min(100% - 36px, 760px);
	}

	.fpd-nav--desktop,
	.fpd-header__cta {
		display: none;
	}

	.fpd-menu-toggle {
		display: inline-flex;
	}

	.fpd-hero {
		min-height: auto;
	}

	.fpd-hero__grid {
		min-height: auto;
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.fpd-hero__content {
		padding-block: 72px 58px;
	}

	.fpd-hero__title {
		max-width: 720px;
		font-size: clamp(44px, 8.7vw, 66px);
	}

	.fpd-hero__copy {
		max-width: 620px;
	}

	.fpd-hero__visual {
		width: 100vw;
		height: min(68vw, 590px);
		min-height: 380px;
		margin: 0 calc((100vw - var(--fpd-shell)) / -2);
		border-radius: 0;
	}

	.fpd-section {
		padding-block: 100px;
	}

	.fpd-services__grid,
	.fpd-contact__grid {
		grid-template-columns: 1fr;
		gap: 62px;
	}

	.fpd-page-hero__grid,
	.fpd-about-story__grid,
	.fpd-faq__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.fpd-page-hero {
		padding-block: calc(var(--fpd-header-height) + 76px) 92px;
	}

	.fpd-page-hero__grid > p,
	.fpd-page-hero__grid > div:last-child > p {
		max-width: 650px;
	}

	.fpd-services--full .fpd-services__intro {
		position: static;
	}

	.fpd-about-story__visual {
		width: 100vw;
		height: min(78vw, 620px);
		margin-left: calc((100vw - var(--fpd-shell)) / -2);
		border-radius: 0;
	}

	.fpd-services__intro {
		max-width: 680px;
	}

	.fpd-standard {
		padding-block: 110px;
	}

	.fpd-standard__principles {
		grid-template-columns: 1fr;
	}

	.fpd-principle,
	.fpd-principle + .fpd-principle {
		min-height: 0;
		padding: 28px 0 34px;
		border-right: 0;
		border-bottom: 1px solid var(--fpd-line);
	}

	.fpd-principle:last-child {
		border-bottom: 0;
	}

	.fpd-principle p {
		max-width: 590px;
	}

	.fpd-work-grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
		grid-template-rows: repeat(2, minmax(220px, 1fr));
		gap: 20px;
	}

	.fpd-contact__intro {
		position: static;
		max-width: 680px;
	}

	.fpd-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 48px;
	}

	.fpd-footer__top nav {
		grid-column: 1 / -1;
	}

	.fpd-footer__nav {
		display: flex;
		flex-wrap: wrap;
		gap: 18px 28px;
	}
}

@media (max-width: 580px) {
	:root {
		--fpd-shell: calc(100% - 32px);
	}

	.fpd-brand__mark {
		width: 34px;
		height: 34px;
		font-size: 18px;
	}

	.fpd-brand__name strong {
		font-size: 15px;
	}

	.fpd-brand__name span {
		font-size: 8px;
	}

	.fpd-menu-toggle > span:first-child {
		display: none;
	}

	.fpd-hero__content {
		padding-block: 57px 48px;
	}

	.fpd-hero__eyebrow {
		margin-bottom: 22px;
	}

	.fpd-hero__title {
		font-size: clamp(38px, 10.8vw, 52px);
		line-height: 1;
	}

	.fpd-hero__copy {
		margin-top: 24px;
		font-size: 15px;
	}

	.fpd-hero__actions {
		width: 100%;
		align-items: stretch;
		flex-direction: column;
		gap: 20px;
		margin-top: 32px;
	}

	.fpd-button {
		width: 100%;
		margin-inline: auto;
		text-align: center;
	}

	.fpd-hero__actions .fpd-text-link {
		align-self: flex-start;
	}

	.fpd-hero__visual {
		height: 104vw;
		min-height: 390px;
		max-height: 540px;
	}

	body.admin-bar.fpd-site .fpd-header {
		top: 46px;
	}

	.fpd-section,
	.fpd-standard,
	.fpd-contact {
		padding-block: 84px;
	}

	.fpd-page-hero {
		padding-block: calc(var(--fpd-header-height) + 56px) 72px;
	}

	.fpd-page-hero h1 {
		font-size: clamp(40px, 12vw, 54px);
		line-height: 1;
	}

	.fpd-page-hero__grid {
		gap: 30px;
	}

	.fpd-about-story,
	.fpd-project-scopes,
	.fpd-faq {
		padding-block: 84px;
	}

	.fpd-about-story__grid {
		gap: 48px;
	}

	.fpd-about-story__visual {
		height: 112vw;
		max-height: 520px;
	}

	.fpd-about-story__content h2,
	.fpd-cta-band h2 {
		font-size: clamp(38px, 11.8vw, 52px);
	}

	.fpd-values {
		grid-template-columns: 1fr;
		margin-top: 54px;
	}

	.fpd-value,
	.fpd-value:nth-child(even) {
		min-height: 0;
		padding: 28px 0 34px;
		border-right: 0;
	}

	.fpd-project-scopes__list p {
		grid-template-columns: 1fr;
		gap: 10px;
		padding-block: 22px;
	}

	.fpd-faq__grid {
		gap: 48px;
	}

	.fpd-faq summary {
		font-size: 18px;
	}

	.fpd-cta-band__inner {
		align-items: stretch;
		flex-direction: column;
		gap: 34px;
	}

	.fpd-cta-band .fpd-button {
		width: 100%;
	}

	.fpd-section-title,
	.fpd-standard h2,
	.fpd-contact h2,
	.fpd-services__intro .fpd-section-title,
	.fpd-contact__intro h2 {
		font-size: clamp(38px, 11.8vw, 52px);
		line-height: 1.03;
	}

	.fpd-services__grid,
	.fpd-contact__grid {
		gap: 48px;
	}

	.fpd-services__intro > p,
	.fpd-standard__statement > p,
	.fpd-contact__intro p {
		font-size: 15px;
	}

	.fpd-service-list__item {
		grid-template-columns: 1fr;
		gap: 13px;
		padding-block: 24px;
	}

	.fpd-service-list__item p {
		font-size: 13px;
	}

	.fpd-standard__principles {
		margin-top: 54px;
	}

	.fpd-work-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		gap: 38px;
	}

	.fpd-work-item--large {
		grid-row: auto;
	}

	.fpd-work-item img {
		aspect-ratio: 4 / 3;
		flex: none;
	}

	.fpd-work-item--large img {
		aspect-ratio: 4 / 5;
	}

	.fpd-contact__form-wrap {
		padding: 22px 18px;
	}

	.fpd-form__row {
		grid-template-columns: 1fr;
	}

	.fpd-form__submit {
		align-items: stretch;
		flex-direction: column;
	}

	.fpd-form__submit p {
		max-width: none;
	}

	.fpd-form__submit .fpd-button {
		width: 100%;
	}

	.fpd-footer {
		padding-top: 60px;
	}

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

	.fpd-footer__top nav {
		grid-column: auto;
	}

	.fpd-footer__nav {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 14px 24px;
	}

	.fpd-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 44px;
	}
}

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

	.fpd-site *,
	.fpd-site *::before,
	.fpd-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.js .fpd-reveal {
		opacity: 1;
		transform: none;
	}
}
