:root {
	--bg-maroon: #d9cbbf;
	--bg-maroon-2: #d9cbbf;
	--bg-dark: #d9cbbf;
	--ink: #2c221a;
	--ink-dim: rgba(44, 34, 26, 0.78);
	--paper: #f6f4f0;
	--paper-2: #f1efe9;
	--line: rgba(44, 34, 26, 0.18);
	--line-dark: rgba(44, 34, 26, 0.18);
	--card-line: rgba(0, 0, 0, 0.18);
	--shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
	--radius: 18px;
	--radius-lg: 26px;
	--container: 1120px;
	--serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
	--sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
		"Apple Color Emoji", "Segoe UI Emoji";
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	font-family: var(--serif);
	color: var(--ink);
	background: var(--bg-maroon);
}

img,
svg {
	display: block;
}

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

a:focus-visible,
summary:focus-visible,
button:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.9);
	outline-offset: 3px;
	border-radius: 10px;
}

.skip-link {
	position: absolute;
	left: 12px;
	top: 12px;
	padding: 10px 12px;
	background: #000;
	color: #fff;
	border-radius: 10px;
	transform: translateY(-140%);
	transition: transform 160ms ease;
	z-index: 50;
}

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

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

[data-surface="maroon"] {
	background: var(--bg-maroon);
}

[data-surface="dark"] {
	background: var(--bg-dark);
}

.site-header {
	position: relative;
	padding: 44px 0 26px;
	background: #d9cbbf;
	border-bottom: 1px solid rgba(44, 34, 26, 0.12);
}

.site-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -44px;
	height: 44px;
	background: linear-gradient(180deg, rgba(217, 203, 191, 1), rgba(217, 203, 191, 0));
	pointer-events: none;
	z-index: 0;
}

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

.header-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 18px 16px;
}

.header-left {
	display: flex;
	gap: 14px;
	align-items: center;
}

.icon-btn {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(44, 34, 26, 0.24);
	border-radius: 10px;
	color: rgba(44, 34, 26, 0.88);
	background: rgba(255, 255, 255, 0.3);
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.icon-btn:hover {
	background: rgba(255, 255, 255, 0.6);
	border-color: rgba(44, 34, 26, 0.42);
	color: #2c221a;
}

.icon-btn svg {
	width: 18px;
	height: 18px;
}

.brand {
	text-align: center;
	display: grid;
	justify-items: center;
}

.brand a {
	display: inline-block;
}

.brand-logo {
	width: min(320px, 70vw);
	height: auto;
}

.brand-title {
	font-size: 34px;
	letter-spacing: 0.02em;
	line-height: 1.05;
	display: flex;
	align-items: center;
	gap: 10px;
}

.brand-sub {
	font-size: 30px;
	letter-spacing: 0.02em;
	line-height: 1;
}

.brand-mark {
	font-size: 22px;
	opacity: 0.9;
}

.brand-rule {
	width: min(320px, 70vw);
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(44, 34, 26, 0.55), transparent);
	position: relative;
}

.brand-rule::before,
.brand-rule::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 7px;
	height: 7px;
	border: 2px solid rgba(44, 34, 26, 0.55);
	border-radius: 2px;
	transform: translateY(-50%);
}

.brand-rule::before {
	left: 0;
}

.brand-rule::after {
	right: 0;
}

.header-right {
	display: flex;
	justify-content: flex-end;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	min-height: 42px;
	border-radius: 0;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.92);
	color: #2b0f0d;
	font-family: var(--serif);
	font-size: 14px;
	letter-spacing: 0.01em;
}

.cta-btn.light {
	border-color: rgba(0, 0, 0, 0.16);
}

.nav {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	gap: 26px;
	padding-top: 8px;
	color: rgba(44, 34, 26, 0.82);
	font-size: 14px;
	letter-spacing: 0.02em;
}

.nav a {
	position: relative;
	padding: 8px 4px;
}

.nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 1px;
	background: rgba(44, 34, 26, 0.45);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.nav a:hover::after {
	transform: scaleX(1);
}

.nav a.is-active::after {
	transform: scaleX(1);
}

.nav a.is-active {
	color: #2c221a;
}

.hero {
	padding: 62px 0 86px;
}

.hero-inner {
	display: grid;
	place-items: center;
}

.hero-box {
	border: 2px solid rgba(44, 34, 26, 0.42);
	padding: 56px 52px;
	width: min(920px, 100%);
	box-shadow: 0 30px 120px rgba(0, 0, 0, 0.25);
}

.hero-copy {
	margin: 0;
	text-align: center;
	font-size: clamp(22px, 3.2vw, 38px);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.25;
	font-family: var(--serif);
}

.services {
	position: relative;
	color: #0b0a09;
	padding: 64px 0 74px;
	background: #d9cbbf;
	isolation: isolate;
}

.services-bg {
	position: absolute;
	inset: 0;
	background: #d9cbbf;
	filter: saturate(0.9) contrast(0.95);
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.services-inner {
	display: grid;
	gap: 26px;
}

.section-title {
	font-size: clamp(22px, 3vw, 34px);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 14px;
	font-family: var(--serif);
}

.section-title.framed {
	display: inline-block;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(0, 0, 0, 0.72);
	padding: 14px 18px;
	margin: 0 auto;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}

.service-card {
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(0, 0, 0, 0.72);
	padding: 30px 28px;
	min-height: 340px;
	display: grid;
	gap: 14px;
	align-content: start;
	box-shadow: 0 18px 80px rgba(0, 0, 0, 0.16);
}

.service-card h3 {
	margin: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.service-card p {
	margin: 0;
	color: rgba(0, 0, 0, 0.78);
	line-height: 1.65;
	font-size: 15px;
}

.service-meta {
	color: rgba(0, 0, 0, 0.74);
	text-align: center;
}

.text-link {
	justify-self: center;
	margin-top: 8px;
	text-decoration: underline;
	text-underline-offset: 4px;
	color: rgba(0, 0, 0, 0.74);
}

.team {
	padding: 74px 0 82px;
}

.team-inner {
	display: grid;
	gap: 24px;
}

.team-top {
	display: block;
	padding-top: 8px;
	border-top: 1px solid rgba(44, 34, 26, 0.18);
}

.team-top-copy {
	display: grid;
	gap: 8px;
}

.eyebrow {
	margin: 0;
	color: rgba(44, 34, 26, 0.68);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 12px;
	font-family: var(--sans);
}

.team-name {
	margin: 0;
	font-size: 26px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 500;
}

.team-top-meta {
	margin: 0;
	color: rgba(44, 34, 26, 0.68);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--sans);
	line-height: 1.45;
}

.team-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 32px 40px;
	align-items: start;
}

.media-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 999px 999px 20px 20px;
	aspect-ratio: 4 / 5;
	background: #ddd6cb;
}

.team-media {
	grid-row: span 2;
	display: grid;
	align-content: start;
	gap: clamp(18px, 3vw, 32px);
}

.team-image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.team-copy {
	display: grid;
	gap: 18px;
	padding-top: 10px;
	color: rgba(44, 34, 26, 0.86);
}

.team-copy-title {
	margin: 0;
	font-size: clamp(28px, 4vw, 46px);
	letter-spacing: 0.02em;
	font-weight: 500;
}

.team-copy p {
	margin: 0;
	line-height: 1.85;
	font-size: 15px;
	color: rgba(44, 34, 26, 0.82);
}

.team-copy-list {
	margin: -4px 0 0;
	padding-left: 24px;
	display: grid;
	gap: 12px;
	line-height: 1.7;
	font-size: 15px;
	color: rgba(44, 34, 26, 0.86);
}

.team-expertise {
	display: grid;
	gap: 18px;
}

.team-expertise-title {
	margin: 0;
	font-size: clamp(24px, 3vw, 34px);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 500;
	color: rgba(44, 34, 26, 0.92);
}

.team-expertise-list {
	margin: 0;
	padding-left: 24px;
	display: grid;
	gap: 10px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(44, 34, 26, 0.82);
}

.team-link-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	align-items: center;
	align-content: start;
	justify-content: center;
	text-align: center;
}

.team-inline-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	min-height: 42px;
	border: 1px solid rgba(44, 34, 26, 0.34);
	color: rgba(44, 34, 26, 0.92);
	font-family: var(--serif);
	font-size: 14px;
	letter-spacing: 0.01em;
	text-decoration: none;
}

.team-text-link {
	color: rgba(44, 34, 26, 0.92);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.about {
	padding: 76px 0 88px;
}

.about-inner {
	display: grid;
	grid-template-columns: 1.08fr 1fr;
	gap: 30px;
	align-items: start;
}

.about-media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.about-media-inner {
	min-height: 520px;
	background: rgba(255, 255, 255, 0.04);
}

.about-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
}

.about-card {
	background: rgba(255, 255, 255, 0.95);
	color: #190a09;
	padding: 28px 26px;
	border-radius: 4px;
	box-shadow: var(--shadow);
}

.about-card p {
	margin: 0 0 16px;
	line-height: 1.75;
	color: rgba(0, 0, 0, 0.72);
}

.about-card p:last-of-type {
	margin-bottom: 22px;
}

.values {
	position: relative;
	padding: 84px 0 94px;
	color: #11100f;
	background: #d9cbbf;
	overflow: hidden;
}

.values-split {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	z-index: 0;
}

.values-side {
	filter: saturate(0.9) contrast(0.92);
}

.values-side.stone {
	background: #d9cbbf;
}

.values-side.dune {
	background: #d9cbbf;
}

.values-inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 20px;
}

.values-title {
	margin: 0;
	font-size: 34px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.75);
}

.values-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.value-card {
	background: rgba(255, 255, 255, 0.9);
	border: 3px solid rgba(58, 20, 17, 0.75);
	padding: 28px 26px;
	box-shadow: 0 18px 80px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.75);
}

.value-card ul {
	margin: 0 0 20px;
	padding-left: 18px;
	color: rgba(0, 0, 0, 0.7);
	line-height: 1.65;
}

.value-card ul:last-child {
	margin-bottom: 0;
}

.faq {
	padding: 92px 0 70px;
	color: rgba(44, 34, 26, 0.9);
}

.faq-inner {
	display: grid;
	gap: 44px;
}

.faq-title {
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 20px;
	color: rgba(44, 34, 26, 0.92);
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px 56px;
	align-items: start;
}

.faq-item {
	border-top: 1px solid var(--line-dark);
	border-bottom: 1px solid var(--line-dark);
	padding: 14px 0;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	color: rgba(44, 34, 26, 0.86);
}

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

.faq-item summary::after {
	content: "+";
	font-family: var(--sans);
	font-size: 18px;
	opacity: 0.9;
}

.faq-item[open] summary::after {
	content: "–";
}

.faq-body {
	padding-top: 10px;
	color: rgba(44, 34, 26, 0.72);
	line-height: 1.65;
	font-size: 14px;
	max-width: 56ch;
}

.footer {
	padding: 30px 0 44px;
	background: #d9cbbf;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr 0.6fr;
	gap: 26px;
	align-items: start;
}

.footer-logo .brand-logo {
	width: min(260px, 100%);
}

.footer-heading {
	margin: 0 0 10px;
	color: rgba(44, 34, 26, 0.9);
	font-size: 14px;
	letter-spacing: 0.04em;
}

.footer-copy p {
	margin: 0 0 10px;
	color: rgba(44, 34, 26, 0.72);
	line-height: 1.65;
	font-size: 14px;
}

.footer-copy a {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.footer-nav {
	display: grid;
	justify-items: end;
	gap: 10px;
}

.footer-nav a {
	color: rgba(44, 34, 26, 0.78);
	text-decoration: underline;
	text-underline-offset: 5px;
}

.services-hero {
	padding: 72px 0 62px;
}

.services-hero-inner {
	display: grid;
	gap: 16px;
	align-items: center;
	justify-items: center;
	position: relative;
}

.services-hero-title {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 500;
	font-size: clamp(22px, 3.2vw, 36px);
	color: rgba(44, 34, 26, 0.9);
}

.services-hero-back {
	margin: 0;
	position: absolute;
	right: 0;
	bottom: 2px;
	color: rgba(44, 34, 26, 0.72);
	font-size: 14px;
}

.services-hero-back a {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.service-detail {
	background: #d9cbbf;
	color: #131110;
	padding: 54px 0 62px;
}

.service-detail.has-divider {
	border-top: 1px solid rgba(0, 0, 0, 0.22);
}

.detail-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: start;
}

.detail-copy h2 {
	margin: 0 0 18px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	font-size: clamp(24px, 3vw, 38px);
}

.detail-copy p {
	margin: 0 0 16px;
	color: rgba(0, 0, 0, 0.72);
	line-height: 1.75;
	font-size: 15px;
	max-width: 66ch;
}

.detail-subhead {
	font-weight: 600;
	margin-top: 8px;
}

.detail-copy ul {
	margin: 0 0 18px;
	padding-left: 22px;
	color: rgba(0, 0, 0, 0.72);
	line-height: 1.65;
	display: grid;
	gap: 10px;
	max-width: 70ch;
}

.detail-note {
	margin-top: 12px;
}

.detail-price {
	margin: 0;
	font-weight: 600;
}

.inline-link {
	color: #c53b2b;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.detail-media {
	justify-self: end;
}

.detail-photo {
	width: min(430px, 100%);
	aspect-ratio: 3 / 4;
	border-radius: 0;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.media-img--square {
	border-radius: 0;
}

.quote-band {
	position: relative;
	min-height: 360px;
	display: grid;
	align-items: center;
	padding: 46px 0;
	overflow: hidden;
}

.quote-bg {
	position: absolute;
	inset: 0;
	background: #d9cbbf;
	filter: none;
	transform: scale(1.02);
}

.quote-bg .media-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	opacity: 0;
}

.quote-inner {
	position: relative;
	z-index: 1;
}

.quote-text {
	margin: 0;
	font-style: italic;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(44, 34, 26, 0.9);
	font-size: clamp(18px, 3vw, 34px);
	padding: 0;
	text-align: center;
}

.groups-hero {
	padding: 64px 0 0;
}

.groups-hero-inner {
	display: grid;
	gap: 22px;
}

.groups-hero-top {
	display: flex;
	justify-content: flex-end;
}

.groups-hero-back {
	margin: 0;
	color: rgba(44, 34, 26, 0.72);
	font-size: 14px;
}

.groups-hero-back a {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.groups-hero-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
}

.groups-hero-title {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	font-size: clamp(26px, 4vw, 44px);
	color: rgba(44, 34, 26, 0.9);
}

.groups-hero-media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
	transform: translateY(26px);
}

.groups-page {
	background: #d9cbbf;
	color: #141312;
	padding: 76px 0 42px;
}

.groups-page-title {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	font-size: 34px;
}

.groups-rule {
	height: 1px;
	background: rgba(0, 0, 0, 0.32);
	margin: 18px 0 26px;
}

.group-block {
	padding: 0 0 46px;
}

.group-block.has-divider {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	padding-top: 36px;
}

.group-title {
	margin: 0 0 18px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	font-size: 20px;
}

.group-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 42px;
	align-items: start;
}

.group-img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.14);
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: #eee7dd;
}

.group-copy {
	font-size: 14px;
	line-height: 1.75;
	color: rgba(0, 0, 0, 0.72);
}

.group-copy p {
	margin: 0 0 14px;
}

.group-label {
	margin: 0 0 10px;
	color: rgba(0, 0, 0, 0.55);
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: none;
}

.group-subhead {
	margin-top: 16px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.72);
}

.group-copy ul {
	margin: 0 0 14px;
	padding-left: 18px;
	display: grid;
	gap: 10px;
}

.group-footnote {
	margin: 18px 0 0;
	color: rgba(0, 0, 0, 0.62);
	font-size: 13px;
	line-height: 1.75;
	text-align: center;
	max-width: 92ch;
}

.groups-contact {
	background: #d9cbbf;
	color: #141312;
	padding: 62px 0 56px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 42px;
	align-items: start;
}

.contact-title {
	margin: 0 0 18px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	font-size: 34px;
}

.contact-copy {
	margin: 0;
	color: rgba(0, 0, 0, 0.68);
	line-height: 1.75;
	max-width: 48ch;
}

.contact-form {
	display: grid;
	gap: 14px;
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.field {
	display: grid;
	gap: 6px;
}

.field-label {
	font-size: 12px;
	color: rgba(0, 0, 0, 0.62);
	font-family: var(--sans);
}

.req {
	opacity: 0.8;
}

.input {
	width: 100%;
	border-radius: 0;
	border: 1px solid rgba(0, 0, 0, 0.45);
	background: #d9cbbf;
	padding: 12px 12px;
	font-family: var(--serif);
	font-size: 14px;
	line-height: 1.4;
}

.textarea {
	resize: vertical;
	min-height: 120px;
}

.submit {
	justify-self: start;
	margin-top: 4px;
	background: #e23b2f;
	border: none;
	color: #fff;
	padding: 12px 22px;
	font-family: var(--serif);
	cursor: pointer;
}

.contact-page {
	background: var(--bg-maroon);
}

.contact-main {
	color: var(--ink);
}

.contact-hero {
	padding: 54px 0 72px;
}

.contact-hero-inner {
	display: grid;
	gap: 22px;
}

.contact-back {
	margin: 0;
	color: rgba(44, 34, 26, 0.78);
}

.contact-back a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact-panel {
	background: var(--bg-maroon);
	color: var(--ink);
	box-shadow: 0 18px 68px rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(0, 0, 0, 0.18);
}

.contact-panel-inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 46px;
	padding: 64px 72px;
	align-items: start;
}

.contact-panel-title {
	margin: 0 0 18px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	font-size: 40px;
}

.contact-panel-text {
	margin: 0;
	color: rgba(44, 34, 26, 0.78);
	line-height: 1.9;
	max-width: 48ch;
}

.contact-panel-home {
	margin: 32px 0 0;
}

.contact-panel-home a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact-detail-list {
	display: grid;
	gap: 10px;
	margin: 26px 0 0;
	color: rgba(44, 34, 26, 0.82);
	line-height: 1.7;
}

.contact-detail-list p {
	margin: 0;
}

.contact-detail-list a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.contact-panel-form {
	display: grid;
	gap: 14px;
}

.contact-panel-form .field-label {
	color: rgba(44, 34, 26, 0.82);
}

.input--dark {
	background: rgba(255, 255, 255, 0.6);
	color: #2c221a;
	border-color: rgba(44, 34, 26, 0.2);
}

.input--dark::placeholder {
	color: rgba(44, 34, 26, 0.6);
}

.check-field {
	margin: 10px 0 0;
	padding: 0;
	border: none;
	display: grid;
	gap: 12px;
}

.check-field .field-label {
	color: rgba(44, 34, 26, 0.72);
	margin-bottom: 4px;
}

.check {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: 16px;
	color: rgba(44, 34, 26, 0.92);
}

.check input {
	width: 16px;
	height: 16px;
	accent-color: #2c221a;
}

.submit--light {
	background: rgba(255, 255, 255, 0.82);
	color: #141312;
	border: 1px solid rgba(44, 34, 26, 0.16);
	padding: 12px 32px;
}

.team-hero {
	padding: 68px 0 36px;
}

.team-hero-inner {
	display: grid;
	grid-template-columns: 0.6fr 1.4fr;
	gap: 26px;
	align-items: end;
}

.team-hero-title {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	font-size: clamp(42px, 6vw, 84px);
	line-height: 0.92;
}

.team-hero-title span {
	display: block;
}

.team-hero-right {
	display: grid;
	justify-items: end;
	gap: 16px;
}

.team-hero-back {
	margin: 0;
	color: rgba(44, 34, 26, 0.72);
	font-size: 14px;
}

.team-hero-back a {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.team-hero-portraits {
	position: relative;
	height: 260px;
	width: min(620px, 100%);
}

.team-portrait {
	position: absolute;
	bottom: 0;
	width: 260px;
	height: 260px;
	border-radius: 999px;
	overflow: hidden;
	box-shadow: 0 30px 120px rgba(0, 0, 0, 0.28);
	background: rgba(255, 255, 255, 0.08);
}

.team-portrait .media-img {
	border-radius: 999px;
	aspect-ratio: auto;
	height: 100%;
}

.team-portrait.is-secondary {
	right: 0;
	width: 240px;
	height: 240px;
}

.team-bios {
	padding: 30px 0 64px;
}

.team-bios-inner {
	display: grid;
	grid-template-columns: 1.0fr 1.4fr;
	gap: 26px;
}

.bio-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column: 2;
	gap: 75px;
	align-items: start;
}

.bio-name {
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	font-size: 12px;
	font-family: var(--sans);
	color: rgba(44, 34, 26, 0.74);
}

.bio-role {
	margin: 0 0 16px;
	color: rgba(44, 34, 26, 0.74);
	font-size: 13px;
}

.bio p {
	margin: 0 0 14px;
	color: rgba(44, 34, 26, 0.74);
	line-height: 1.85;
	font-size: 14px;
	max-width: 70ch;
}

.bio-link a {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.team-quote {
	position: relative;
	min-height: 520px;
	display: grid;
	align-items: center;
	background: #d9cbbf;
	overflow: hidden;
}

.team-quote-bg {
	position: absolute;
	inset: 0;
}

.team-quote-bg .media-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: none;
	opacity: 0;
}

.team-quote-inner {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
}

.team-quote-box {
	border: 2px solid rgba(44, 34, 26, 0.3);
	padding: 44px 42px;
	width: min(740px, 100%);
	text-align: center;
	backdrop-filter: blur(2px);
	background: rgba(217, 203, 191, 0.78);
}

.team-quote-text {
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	font-size: 18px;
	color: rgba(44, 34, 26, 0.9);
}

.team-quote-sub {
	margin: 0;
	color: rgba(44, 34, 26, 0.78);
	font-size: 13px;
}

.consult {
	background: #d9cbbf;
	color: #141312;
	padding: 64px 0 62px;
}

.consult-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr 0.85fr;
	gap: 36px;
	align-items: start;
}

.consult-title {
	margin: 0 0 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	font-size: 34px;
}

.consult-copy p {
	margin: 0 0 12px;
	color: rgba(0, 0, 0, 0.7);
	line-height: 1.75;
	max-width: 40ch;
}

.consult-form {
	display: grid;
	gap: 14px;
}

.input--white {
	background: #d9cbbf;
}

.consult-media {
	justify-self: end;
}

.consult-img {
	width: min(380px, 100%);
	aspect-ratio: 4 / 5;
	object-fit: cover;
	background: #eee;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

@media (max-width: 980px) {
	.header-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto auto;
		justify-items: center;
	}

	.header-left {
		justify-content: center;
	}

	.header-right {
		justify-content: center;
	}

	.nav {
		flex-wrap: wrap;
		gap: 10px 20px;
	}

	.card-grid {
		grid-template-columns: 1fr;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}

	.about-inner {
		grid-template-columns: 1fr;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}

	.footer-inner {
		grid-template-columns: 1fr;
	}

	.footer-nav {
		justify-items: start;
	}

	.services-hero-back {
		position: static;
	}

	.detail-grid {
		grid-template-columns: 1fr;
	}

	.detail-media {
		justify-self: start;
	}

	.groups-hero-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.group-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.field-row {
		grid-template-columns: 1fr;
	}

	.contact-panel-inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 44px 24px;
	}

	.team-hero-inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.team-hero-right {
		justify-items: start;
	}

	.team-hero-portraits {
		height: 220px;
	}

	.team-portrait {
		width: 220px;
		height: 220px;
	}

	.team-portrait.is-secondary {
		width: 200px;
		height: 200px;
	}

	.bio-grid {
		grid-template-columns: 1fr;
		grid-column: auto;
	}

	.team-bios-inner {
		grid-template-columns: 1fr;
	}

	.consult-grid {
		grid-template-columns: 1fr;
	}

	.consult-media {
		justify-self: start;
	}
}
