/* SUYU Theme - Main CSS */

:root {
	--suyu-brown: #a65f3f;
	--suyu-charcoal: #474747;
	--suyu-muted: #8e9684;
	--suyu-cream: #efede5;
	--suyu-page-padding: clamp(22px, 8vw, 150px);
}

html {
	box-sizing: border-box;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

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

body {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 300;
	overflow-x: hidden;
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
.primary-menu a {
	font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
	margin: 0 auto;
	max-width: none;
	padding: 0 var(--suyu-page-padding);
	width: 100%;
}

.site-header {
	background-color: #f0ede4;
	position: sticky;
	top: 0;
	transition:
		background-color 240ms ease,
		box-shadow 240ms ease;
	z-index: 100;
}

.site-header--home {
	background: transparent;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.site-header--home.site-header--scrolled {
	background-color: #f0ede4;
	box-shadow: 0 8px 28px rgba(42, 42, 42, 0.08);
	position: fixed;
}

.site-header-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: none;
	min-height: 110px;
	padding: 16px var(--suyu-page-padding);
}

.site-header--home .site-header-inner {
	min-height: auto;
	padding-top: 34px;
	padding-bottom: 0;
	transition:
		min-height 240ms ease,
		padding 240ms ease;
}

.site-header--home.site-header--scrolled .site-header-inner {
	min-height: 110px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.site-branding img,
.custom-logo {
	max-height: 86px;
	width: auto;
}

.site-branding-home {
	display: block;
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
	width: 150px;
}

.site-branding-home img {
	max-height: 86px;
	width: auto;
}

.site-header--home.site-header--scrolled .site-branding-home {
	opacity: 1;
	pointer-events: auto;
}

.site-branding,
.main-navigation,
.primary-menu {
	align-items: center;
}

.site-branding-placeholder {
	display: block;
	height: 1px;
	width: 150px;
}

.main-navigation {
	display: flex;
}

.primary-menu {
	display: flex;
	gap: 52px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	position: relative;
}

.site-header:not(.site-header--home) .primary-menu a {
	color: var(--suyu-charcoal);
}

.site-header--home.site-header--scrolled .primary-menu a {
	color: var(--suyu-charcoal);
}

.primary-menu .current-menu-item > a::after,
.primary-menu a:hover::after {
	background-color: var(--suyu-brown);
	bottom: -11px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.site-main {
	min-height: calc(100vh - 400px);
}

.site-main:not(.home-main) {
	padding: 72px 0;
}

.home-hero {
	background-position: center;
	background-size: cover;
	color: #fff;
	min-height: 100vh;
	overflow: hidden;
	position: relative;
	--hero-drift: 0px;
}

.home-hero__shade {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.05) 34%, rgba(0, 0, 0, 0.34) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.14));
	inset: 0;
	position: absolute;
}

.home-hero::before {
	background:
		radial-gradient(ellipse 430px 330px at 0 0, rgba(255, 247, 230, 0.78) 0%, rgba(240, 224, 197, 0.56) 26%, rgba(218, 194, 160, 0.3) 48%, rgba(204, 176, 143, 0.11) 64%, rgba(204, 176, 143, 0) 78%),
		linear-gradient(128deg, rgba(255, 252, 244, 0.22) 0%, rgba(255, 252, 244, 0.1) 38%, rgba(255, 252, 244, 0) 68%);
	content: "";
	height: 420px;
	left: 0;
	position: absolute;
	top: 0;
	transform: translate3d(calc(var(--hero-drift) * -0.025), 0, 0);
	width: 560px;
	z-index: 1;
}

.home-hero::after {
	display: none;
}

.home-hero__content {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-bottom: clamp(88px, 16vh, 150px);
	padding-top: 72px;
	position: relative;
	z-index: 2;
}

.home-hero__logo-mark {
	display: inline-flex;
	margin-top: 0;
	position: relative;
	transform: translate3d(0, calc(var(--hero-drift) * 0.08), 0);
	width: max-content;
}

.home-hero__logo-mark::before {
	display: none;
}

.home-hero__logo {
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
	width: 148px;
}

.home-hero__headline {
	margin-top: auto;
	max-width: 580px;
	padding-bottom: clamp(36px, 8vh, 92px);
}

.home-hero__headline h1 {
	font-size: clamp(44px, 5vw, 64px);
	font-weight: 700;
	line-height: 1.14;
	margin: 0;
}

.home-hero__headline::after,
.section-heading h2::after {
	background-color: var(--suyu-brown);
	content: "";
	display: block;
	height: 2px;
	margin-top: 34px;
	width: 68px;
}

.founder-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.founder-copy {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 700px;
	padding: 84px var(--suyu-page-padding);
	padding-right: clamp(48px, 6vw, 110px);
}

.founder-copy h2 {
	color: var(--suyu-charcoal);
	font-size: clamp(30px, 3vw, 43px);
	font-weight: 500;
	line-height: 1.16;
	margin: 0;
	max-width: 490px;
}

.founder-copy h2 span {
	text-decoration: underline;
	text-decoration-color: var(--suyu-brown);
	text-decoration-thickness: 2px;
	text-underline-offset: 7px;
}

.founder-copy p {
	color: var(--suyu-brown);
	font-size: 22px;
	margin: 0;
}

.founder-image {
	margin: 0;
	min-height: 700px;
	position: relative;
}

.founder-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.founder-image figcaption {
	background: linear-gradient(0deg, rgba(16, 35, 39, 0.78), rgba(16, 35, 39, 0));
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 90px 42px 36px;
	position: absolute;
	right: 0;
}

.founder-image strong,
.founder-image span {
	display: block;
}

.founder-image strong {
	font-size: 22px;
	line-height: 1.2;
}

.founder-image span {
	font-size: 14px;
	font-weight: 400;
	margin-top: 6px;
}

.experience-section {
	background-color: var(--suyu-cream);
	padding: 88px 0 108px;
	text-align: center;
}

.experience-section h2 {
	color: var(--suyu-charcoal);
	font-size: 32px;
	font-weight: 500;
	margin: 0 0 74px;
}

.experience-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 56px 92px;
	justify-content: center;
	margin: 0 auto;
	max-width: 1180px;
}

.experience-logos img {
	filter: grayscale(1);
	flex: 0 0 158px;
	max-height: 58px;
	object-fit: contain;
	opacity: 0.68;
	width: auto;
}

.blog-section {
	background-color: #fff;
	padding: 86px 0 104px;
}

.section-heading {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 58px;
}

.section-heading h2 {
	align-items: center;
	color: var(--suyu-charcoal);
	display: flex;
	font-size: 34px;
	font-weight: 500;
	gap: 42px;
	margin: 0;
}

.section-heading h2::after {
	margin: 0;
}

.section-heading a {
	color: var(--suyu-brown);
	font-size: 14px;
	font-weight: 400;
}

.blog-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, 1fr);
}

.blog-card {
	background-color: #f0ede4;
}

.blog-card__image {
	aspect-ratio: 1.75;
	background-color: #f0eee8;
	display: block;
	overflow: hidden;
}

.blog-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.blog-card__body {
	padding: 25px 26px 30px;
}

.blog-card__category {
	color: var(--suyu-brown);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.03em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.blog-card h3 {
	color: var(--suyu-charcoal);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.18;
	margin: 0 0 46px;
}

.blog-card__meta {
	color: #6c6c6c;
	font-size: 13px;
	font-weight: 400;
	margin: 0;
}

.site-footer {
	background-color: var(--suyu-muted);
	color: #fff;
	padding: 78px 0 42px;
}

.footer-main {
	align-items: flex-start;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 72px;
}

.footer-logo img {
	width: 156px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(150px, 1fr));
	gap: 54px 72px;
	padding-top: 20px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-column h2 {
	color: #fdeccf;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
	margin: 0 0 2px;
	text-transform: uppercase;
}

.footer-column a {
	font-size: 13px;
	font-weight: 400;
}

.footer-social {
	font-size: 18px;
	margin-top: 4px;
}

.footer-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 4px;
}

.footer-newsletter__form label {
	display: flex;
	flex-direction: column;
}

.footer-newsletter__form label span {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.footer-newsletter__form input {
	background-color: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.42);
	color: #fff;
	font: inherit;
	font-size: 13px;
	min-height: 42px;
	padding: 11px 12px;
	width: 100%;
}

.footer-newsletter__form input::placeholder {
	color: rgba(255, 255, 255, 0.72);
}

.footer-newsletter__form button {
	background-color: #fdeccf;
	border: 0;
	color: var(--suyu-charcoal);
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 500;
	min-height: 42px;
	padding: 11px 14px;
}

.footer-bottom {
	align-items: center;
	border-top: 0;
	display: flex;
	justify-content: space-between;
	margin-top: 84px;
	padding-top: 34px;
	position: relative;
}

.footer-bottom::before {
	background-color: rgba(255, 255, 255, 0.38);
	content: "";
	height: 1px;
	left: calc(var(--suyu-page-padding) * -1);
	position: absolute;
	right: calc(var(--suyu-page-padding) * -1);
	top: 0;
}

.site-info p,
.footer-legal a {
	font-size: 12px;
	font-weight: 400;
	margin: 0;
}

.footer-legal {
	display: flex;
	gap: 38px;
}

.about-main {
	background-color: #fff;
	color: var(--suyu-charcoal);
}

.site-main.about-main {
	padding: 0;
}

.about-hero,
.about-founder {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
}

.about-hero__content,
.about-founder__content {
	padding: 118px var(--suyu-page-padding) 96px;
}

.section-kicker {
	color: var(--suyu-brown);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.about-hero h1,
.about-founder h2,
.about-section-heading h2 {
	color: var(--suyu-charcoal);
	font-weight: 600;
	line-height: 1.12;
	margin: 0;
}

.about-hero h1 {
	font-size: clamp(36px, 4vw, 52px);
	max-width: 520px;
}

.about-hero h1::after,
.about-founder h2::after,
.about-section-heading h2::after {
	background-color: var(--suyu-brown);
	content: "";
	display: block;
	height: 2px;
	margin-top: 24px;
	width: 68px;
}

.about-hero__content > p {
	font-size: 18px;
	line-height: 1.45;
	margin: 38px 0 0;
	max-width: 500px;
}

.about-hero__block {
	margin-top: 44px;
	max-width: 520px;
}

.about-hero__block h2 {
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	margin: 0 0 8px;
}

.about-hero__block p,
.about-founder__content p,
.partner-card__content p {
	font-size: 17px;
	line-height: 1.48;
	margin: 0;
}

.about-hero__image,
.about-founder__image {
	margin: 0;
	min-height: 760px;
}

.about-hero__image img,
.about-founder__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

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

.about-founder__content {
	align-self: center;
	padding-left: clamp(56px, 6vw, 118px);
}

.about-founder h2 {
	font-size: clamp(38px, 4.2vw, 58px);
}

.about-founder__content h3 {
	color: var(--suyu-brown);
	font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	margin: 38px 0 0;
}

.about-founder__content p {
	margin-top: 24px;
	max-width: 620px;
}

.about-founder__content p + p {
	margin-top: 22px;
}

.founder-message {
	padding-bottom: 28px;
	padding-top: 96px;
}

.founder-message__inner {
	background-color: #f7f6f2;
	border-left: 6px solid var(--suyu-brown);
	padding: 58px clamp(34px, 6vw, 78px) 64px;
}

.founder-message h2 {
	color: var(--suyu-charcoal);
	font-size: clamp(34px, 3.4vw, 52px);
	font-weight: 500;
	line-height: 1.14;
	margin: 0;
	max-width: 780px;
}

.founder-message h2::after {
	background-color: var(--suyu-brown);
	content: "";
	display: block;
	height: 2px;
	margin-top: 26px;
	width: 68px;
}

.founder-message p:not(.section-kicker) {
	font-size: 18px;
	line-height: 1.62;
	margin: 32px 0 0;
	max-width: 940px;
}

.partners-section {
	padding-bottom: 54px;
	padding-top: 86px;
}

.associates-section {
	padding-bottom: 92px;
	padding-top: 42px;
}

.about-section-heading {
	margin-bottom: 42px;
}

.about-section-heading h2 {
	font-size: clamp(32px, 3vw, 42px);
}

.about-section-heading--small {
	margin-bottom: 30px;
}

.about-section-heading--small h2 {
	font-size: clamp(26px, 2.4vw, 34px);
}

.about-section-heading--small h2::after {
	margin-top: 18px;
	width: 52px;
}

.partner-card {
	background-color: #f0ede4;
	display: grid;
	grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
	max-width: 980px;
}

.partner-card__image {
	margin: 0;
	min-height: 420px;
}

.partner-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.partner-card__content {
	padding: 38px 38px 42px;
}

.partner-card__header {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 26px;
}

.partner-card__header h3,
.associate-card h3 {
	color: var(--suyu-charcoal);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

.partner-card__header a {
	align-items: center;
	background-color: var(--suyu-brown);
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	height: 22px;
	justify-content: center;
	width: 22px;
}

.associate-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.associate-card {
	background-color: #f0ede4;
}

.associate-card img {
	aspect-ratio: 0.92;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.associate-card h3 {
	font-size: 22px;
	padding: 24px 24px 28px;
}

.error404-main {
	background-color: #fff;
	color: #fff;
}

.site-main.error404-main {
	padding: 0;
}

.error404-hero {
	background-position: center;
	background-size: cover;
	min-height: calc(100vh - 110px);
	position: relative;
}

.error404-hero__shade {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.28) 54%, rgba(0, 0, 0, 0.16)),
		linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42));
	inset: 0;
	position: absolute;
}

.error404-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: calc(100vh - 110px);
	padding-bottom: 96px;
	padding-top: 96px;
	position: relative;
}

.error404-hero h1 {
	font-size: clamp(44px, 5.2vw, 76px);
	font-weight: 600;
	line-height: 1.06;
	margin: 0;
	max-width: 820px;
}

.error404-hero h1::after {
	background-color: var(--suyu-brown);
	content: "";
	display: block;
	height: 2px;
	margin-top: 30px;
	width: 68px;
}

.error404-hero__content > p:not(.section-kicker) {
	font-size: 19px;
	line-height: 1.58;
	margin: 32px 0 0;
	max-width: 620px;
}

.error404-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 46px;
}

.error404-actions a {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.72);
	display: inline-flex;
	font-size: 15px;
	font-weight: 500;
	gap: 14px;
	justify-content: center;
	min-height: 52px;
	padding: 15px 24px;
}

.error404-actions__primary {
	background-color: var(--suyu-brown);
	border-color: var(--suyu-brown) !important;
	color: #fff;
}

.services-main {
	background-color: #fff;
	color: var(--suyu-charcoal);
}

.site-main.services-main {
	padding: 0;
}

.services-hero {
	background-position: center;
	background-size: cover;
	min-height: 560px;
	position: relative;
}

.services-hero__shade {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.14));
	inset: 0;
	position: absolute;
}

.services-hero__content {
	align-items: flex-end;
	color: #fff;
	display: flex;
	min-height: 560px;
	padding-bottom: 72px;
	position: relative;
}

.services-hero h1 {
	font-size: clamp(48px, 5vw, 72px);
	font-weight: 600;
	line-height: 1;
	margin: 0;
}

.services-hero h1::after,
.services-intro h2::after,
.services-cta h2::after {
	background-color: var(--suyu-brown);
	content: "";
	display: block;
	height: 2px;
	margin-top: 34px;
	width: 68px;
}

.services-intro {
	padding-bottom: 70px;
	padding-top: 74px;
	text-align: center;
}

.services-intro h2 {
	color: var(--suyu-charcoal);
	font-size: clamp(32px, 3vw, 44px);
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.services-intro h2::after {
	margin-left: auto;
	margin-right: auto;
	margin-top: 24px;
}

.services-intro p {
	font-size: 18px;
	line-height: 1.42;
	margin: 34px auto 0;
	max-width: 880px;
}

.services-list {
	display: flex;
	flex-direction: column;
	gap: 42px;
	padding-bottom: 112px;
}

.service-card {
	background-color: #f7f6f2;
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr) minmax(260px, 0.48fr);
	min-height: 286px;
}

.service-card__number {
	align-items: center;
	background-color: #a64614;
	color: #fff;
	display: flex;
	font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 52px;
	font-weight: 600;
	justify-content: center;
}

.service-card__body {
	align-self: center;
	padding: 44px 70px;
}

.service-card__body h2 {
	color: var(--suyu-charcoal);
	font-size: 25px;
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 32px;
}

.service-card__body p {
	font-size: 17px;
	line-height: 1.72;
	margin: 0;
	max-width: 720px;
}

.service-card__aside {
	align-self: center;
	border-left: 1px solid #dfddd5;
	display: flex;
	flex-direction: column;
	gap: 46px;
	padding: 36px 46px;
}

.service-card__aside ul {
	display: flex;
	flex-direction: column;
	gap: 17px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-card__aside li {
	align-items: center;
	display: flex;
	font-size: 15px;
	gap: 12px;
	line-height: 1.3;
}

.service-card__aside li i,
.service-card__aside a,
.services-cta a i {
	color: var(--suyu-brown);
}

.service-card__aside a {
	align-items: center;
	display: inline-flex;
	font-size: 15px;
	font-weight: 500;
	gap: 18px;
	margin-left: auto;
}

.services-cta {
	background-position: center;
	background-size: cover;
	color: #fff;
	min-height: 420px;
	position: relative;
	text-align: center;
}

.services-cta__shade {
	background: rgba(43, 67, 47, 0.68);
	inset: 0;
	position: absolute;
}

.services-cta__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	min-height: 420px;
	justify-content: center;
	position: relative;
}

.services-cta h2 {
	font-size: clamp(32px, 3.2vw, 46px);
	font-weight: 500;
	line-height: 1.15;
	margin: 0;
}

.services-cta h2::after {
	margin-left: auto;
	margin-right: auto;
	margin-top: 24px;
}

.services-cta p {
	font-size: 18px;
	margin: 36px 0 42px;
}

.services-cta a {
	align-items: center;
	border: 2px solid rgba(255, 255, 255, 0.78);
	display: inline-flex;
	font-size: 22px;
	font-weight: 500;
	gap: 20px;
	justify-content: center;
	min-width: 330px;
	padding: 22px 40px;
}

.service-detail-main {
	background-color: #fff;
	color: var(--suyu-charcoal);
}

.site-main.service-detail-main {
	padding: 0;
}

.service-detail-hero {
	background-position: center;
	background-size: cover;
	min-height: 520px;
	position: relative;
}

.service-detail-hero__shade {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.3) 48%, rgba(0, 0, 0, 0.08));
	inset: 0;
	position: absolute;
}

.service-detail-hero__content {
	color: #fff;
	min-height: 520px;
	padding-bottom: 58px;
	padding-top: 34px;
	position: relative;
}

.service-breadcrumb {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 62px;
}

.service-breadcrumb,
.service-breadcrumb a,
.service-breadcrumb strong {
	font-size: 13px;
	font-weight: 300;
}

.service-breadcrumb strong {
	font-weight: 400;
}

.service-detail-kicker {
	color: var(--suyu-brown);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.04em;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.service-detail-hero h1 {
	font-size: clamp(42px, 5vw, 70px);
	font-weight: 600;
	line-height: 1.08;
	margin: 0;
	max-width: 760px;
}

.service-detail-hero h1::after,
.service-detail-heading h2::after,
.service-contact__intro h2::after {
	background-color: var(--suyu-brown);
	content: "";
	display: block;
	height: 2px;
	margin-top: 28px;
	width: 68px;
}

.service-detail-hero__content > p:last-child {
	font-size: 19px;
	line-height: 1.58;
	margin: 30px 0 0;
	max-width: 680px;
}

.service-includes {
	padding-bottom: 78px;
	padding-top: 50px;
}

.service-detail-heading h2 {
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}

.service-detail-heading {
	margin-bottom: 34px;
}

.service-includes__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
}

.service-includes__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-includes__list li {
	align-items: center;
	border-bottom: 1px solid #d8d4cb;
	display: grid;
	font-size: 17px;
	grid-template-columns: 74px 1fr;
	min-height: 86px;
}

.service-includes__list span {
	align-items: center;
	background-color: #f0ede4;
	border-radius: 999px;
	color: #68715e;
	display: inline-flex;
	font-size: 28px;
	height: 56px;
	justify-content: center;
	width: 56px;
}

.service-includes__copy {
	border-left: 1px solid #cfcac0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 76px;
}

.service-includes__copy > p {
	font-size: 21px;
	font-weight: 300;
	line-height: 1.48;
	margin: 0;
	max-width: 560px;
}

.service-includes__copy > p + p {
	margin-top: 48px;
}

.service-includes__copy strong {
	font-weight: 400;
}

.service-audience {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: 48px 1fr;
	margin-top: 64px;
	max-width: 600px;
}

.service-audience i {
	color: #68715e;
	font-size: 40px;
}

.service-audience p {
	font-size: 21px;
	font-weight: 300;
	line-height: 1.42;
	margin: 0;
}

.service-request-link {
	align-items: center;
	background-color: var(--suyu-brown);
	color: #fff;
	display: inline-flex;
	font-size: 16px;
	font-weight: 400;
	gap: 16px;
	justify-content: center;
	margin-top: 52px;
	max-width: 260px;
	padding: 17px 28px;
}

.service-benefits {
	border-top: 1px solid #f0ede4;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-bottom: 82px;
	padding-top: 76px;
}

.service-benefit {
	padding: 0 72px;
	text-align: center;
}

.service-benefit + .service-benefit {
	border-left: 1px solid #cfcac0;
}

.service-benefit i {
	color: #68715e;
	font-size: 58px;
	margin-bottom: 34px;
}

.service-benefit h2 {
	font-size: 21px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 24px;
}

.service-benefit p {
	font-size: 15px;
	line-height: 1.58;
	margin: 0 auto;
	max-width: 310px;
}

.service-contact {
	border-top: 1px solid #f0ede4;
	display: grid;
	gap: 74px;
	grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.25fr);
	padding-bottom: 94px;
	padding-top: 76px;
}

.service-contact__intro {
	display: flex;
	flex-direction: column;
}

.service-contact__intro h2 {
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 500;
	line-height: 1.14;
	margin: 0;
	max-width: 390px;
}

.service-contact__intro p {
	font-size: 16px;
	line-height: 1.58;
	margin: 32px 0 0;
	max-width: 430px;
}

.service-contact__intro a {
	align-items: center;
	color: var(--suyu-brown);
	display: inline-flex;
	font-size: 15px;
	font-weight: 400;
	gap: 24px;
	margin-top: auto;
}

.service-contact__form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.service-form-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, 1fr);
}

.service-contact__form label {
	display: flex;
	flex-direction: column;
}

.service-contact__form label span {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.service-contact__form input,
.service-contact__form textarea {
	background-color: #fff;
	border: 1px solid #cfcac0;
	color: var(--suyu-charcoal);
	font: inherit;
	font-size: 15px;
	padding: 17px 18px;
	width: 100%;
}

.service-contact__form textarea {
	min-height: 136px;
	resize: vertical;
}

.service-contact__form button {
	background-color: var(--suyu-brown);
	border: 0;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 16px;
	font-weight: 400;
	padding: 19px 28px;
}

.service-form-note {
	align-items: center;
	color: #6c6c6c;
	display: flex;
	font-size: 13px;
	gap: 10px;
	margin: 18px 0 0;
}

.contact-main {
	background-color: #fff;
	color: var(--suyu-charcoal);
}

.site-main.contact-main {
	padding: 0;
}

.contact-hero .services-hero__shade {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.14) 58%, rgba(0, 0, 0, 0.18));
}

.contact-intro {
	padding-bottom: 68px;
	padding-top: 74px;
	text-align: center;
}

.contact-intro h2 {
	color: var(--suyu-charcoal);
	font-size: clamp(32px, 3vw, 44px);
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.contact-intro h2::after {
	background-color: var(--suyu-brown);
	content: "";
	display: block;
	height: 2px;
	margin: 24px auto 0;
	width: 68px;
}

.contact-intro p {
	font-size: 18px;
	line-height: 1.5;
	margin: 34px auto 0;
	max-width: 820px;
}

.contact-section {
	padding-top: 76px;
}

.contact-direct {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 48px;
}

.contact-direct a {
	align-items: center;
	border-bottom: 1px solid #d8d4cb;
	color: var(--suyu-charcoal);
	display: grid;
	font-size: 17px;
	font-weight: 400;
	gap: 18px;
	grid-template-columns: 42px 1fr;
	margin-top: 0;
	padding-bottom: 18px;
}

.contact-direct i {
	align-items: center;
	color: var(--suyu-brown);
	display: inline-flex;
	font-size: 22px;
	justify-content: center;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #8b8b8b;
}

.faq-main {
	background-color: #fff;
	color: var(--suyu-charcoal);
}

.site-main.faq-main {
	padding: 0;
}

.faq-hero .services-hero__shade {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0.18));
}

.faq-intro {
	padding-bottom: 54px;
	padding-top: 74px;
	text-align: center;
}

.faq-intro h2 {
	color: var(--suyu-charcoal);
	font-size: clamp(32px, 3vw, 44px);
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.faq-intro h2::after {
	background-color: var(--suyu-brown);
	content: "";
	display: block;
	height: 2px;
	margin: 24px auto 0;
	width: 68px;
}

.faq-intro p {
	font-size: 18px;
	line-height: 1.5;
	margin: 34px auto 0;
	max-width: 860px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-bottom: 112px;
}

.faq-item {
	background-color: #f7f6f2;
	border-left: 6px solid var(--suyu-brown);
}

.faq-item summary {
	align-items: center;
	cursor: pointer;
	display: grid;
	font-size: clamp(17px, 1.45vw, 22px);
	font-weight: 500;
	gap: 28px;
	grid-template-columns: 58px 1fr 24px;
	line-height: 1.25;
	list-style: none;
	padding: 32px 40px;
}

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

.faq-item summary span {
	color: var(--suyu-brown);
	font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 18px;
	font-weight: 700;
}

.faq-item summary i {
	color: var(--suyu-brown);
	font-size: 18px;
	transition: transform 220ms ease;
}

.faq-item[open] summary i {
	transform: rotate(45deg);
}

.faq-item.is-closing summary i {
	transform: rotate(0deg);
}

.faq-item__answer {
	border-top: 1px solid #dfddd5;
	height: 0;
	margin: 0 40px 0 126px;
	overflow: hidden;
	padding: 0;
	transition:
		height 360ms ease,
		padding 360ms ease;
}

.faq-item[open] .faq-item__answer {
	padding: 28px 0 36px;
}

.faq-item.is-closing .faq-item__answer {
	padding: 0;
}

.faq-item__answer p {
	font-size: 17px;
	line-height: 1.72;
	margin: 0;
	max-width: 920px;
	min-height: 0;
}

.service-final-phrase {
	padding-bottom: 104px;
	padding-top: 18px;
	text-align: center;
}

.service-final-phrase h2 {
	color: var(--suyu-charcoal);
	font-size: clamp(34px, 3.4vw, 52px);
	font-weight: 500;
	line-height: 1.14;
	margin: 0;
}

.service-final-phrase h2::after {
	background-color: var(--suyu-brown);
	content: "";
	display: block;
	height: 2px;
	margin: 26px auto 0;
	width: 68px;
}

.service-final-phrase p {
	font-size: clamp(22px, 2.2vw, 34px);
	line-height: 1.25;
	margin: 34px 0 0;
}

.service-final-phrase a {
	color: var(--suyu-brown);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 7px;
}

.reveal-on-scroll {
	opacity: 0;
	transform: translate3d(0, 52px, 0);
	transition:
		opacity 1150ms ease,
		transform 1150ms cubic-bezier(0.16, 0.84, 0.24, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-on-scroll.reveal-from-left {
	transform: translate3d(-64px, 0, 0);
}

.reveal-on-scroll.reveal-from-right {
	transform: translate3d(64px, 0, 0);
}

.reveal-on-scroll.reveal-scale {
	transform: translate3d(0, 36px, 0) scale(0.94);
}

.reveal-on-scroll.reveal-from-left.is-visible,
.reveal-on-scroll.reveal-from-right.is-visible,
.reveal-on-scroll.reveal-scale.is-visible {
	transform: translate3d(0, 0, 0) scale(1);
}

.home-hero__logo-mark.reveal-on-scroll.is-visible {
	transform: translate3d(0, calc(var(--hero-drift) * 0.08), 0);
}

.blog-card,
.experience-logos img,
.partner-card,
.associate-card {
	transition:
		opacity 1150ms ease,
		transform 1150ms cubic-bezier(0.16, 0.84, 0.24, 1),
		box-shadow 280ms ease;
}

.blog-card:hover {
	box-shadow: 0 18px 42px rgba(42, 42, 42, 0.1);
	transform: translateY(-4px);
}

.blog-card.reveal-on-scroll.is-visible:hover {
	transform: translateY(-4px);
}

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

	.home-hero::before,
	.home-hero::after,
	.home-hero__logo-mark,
	.home-hero__logo,
	.reveal-on-scroll,
	.blog-card,
	.experience-logos img,
	.partner-card,
	.associate-card {
		transition: none;
		transform: none;
	}

	.reveal-on-scroll {
		opacity: 1;
	}
}

@media (max-width: 900px) {
	.site-header-inner {
		min-height: 100px;
		padding-bottom: 14px;
		padding-top: 14px;
	}

	.site-header--home .site-header-inner {
		padding-top: 22px;
	}

	.site-header--home.site-header--scrolled .site-header-inner {
		min-height: 100px;
		padding-bottom: 14px;
		padding-top: 14px;
	}

	.primary-menu {
		gap: 24px;
	}

	.founder-section,
	.blog-grid,
	.footer-main,
	.about-hero,
	.about-founder,
	.partner-card,
	.service-card,
	.service-includes__grid,
	.service-contact {
		grid-template-columns: 1fr;
	}

	.service-detail-hero,
	.service-detail-hero__content {
		min-height: 500px;
	}

	.service-includes__copy {
		border-left: 0;
		padding-left: 0;
	}

	.service-benefits {
		grid-template-columns: 1fr;
	}

	.service-benefit {
		padding: 42px 0;
	}

	.service-benefit + .service-benefit {
		border-left: 0;
		border-top: 1px solid #cfcac0;
	}

	.service-contact__intro a {
		margin-top: 42px;
	}

	.service-card {
		min-height: auto;
	}

	.service-card__number {
		align-items: flex-start;
		font-size: 42px;
		justify-content: flex-start;
		padding: 26px 32px;
	}

	.service-card__body {
		padding: 42px 32px 18px;
	}

	.service-card__aside {
		border-left: 0;
		border-top: 1px solid #dfddd5;
		margin: 18px 32px 34px;
		padding: 28px 0 0;
	}

	.service-card__aside a {
		margin-left: 0;
	}

	.about-hero__content,
	.about-founder__content {
		padding: 72px var(--suyu-page-padding);
	}

	.about-hero__image,
	.about-founder__image {
		min-height: 520px;
	}

	.about-founder__image {
		order: 1;
	}

	.about-founder__content {
		order: 2;
	}

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

	.founder-copy {
		min-height: auto;
		padding: 58px 32px 76px;
	}

	.founder-copy p {
		margin-top: 80px;
	}

	.experience-logos {
		gap: 42px 58px;
	}
}

@media (max-width: 640px) {
	.container {
		padding: 0 var(--suyu-page-padding);
	}

	.site-header-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		min-height: auto;
		padding-bottom: 18px;
		padding-left: var(--suyu-page-padding);
		padding-right: var(--suyu-page-padding);
		padding-top: 18px;
	}

	.site-header--home .site-header-inner {
		padding-top: 22px;
	}

	.site-header--home.site-header--scrolled .site-header-inner {
		min-height: auto;
		padding-bottom: 18px;
		padding-top: 18px;
	}

	.site-branding-placeholder {
		display: none;
	}

	.primary-menu {
		flex-wrap: wrap;
		gap: 14px 22px;
	}

	.primary-menu a {
		font-size: 13px;
	}

	.home-hero,
	.home-hero__content {
		min-height: 100vh;
	}

	.error404-hero,
	.error404-hero__content {
		min-height: 520px;
	}

	.error404-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.error404-actions a {
		width: 100%;
	}

	.services-hero,
	.services-hero__content,
	.service-detail-hero,
	.service-detail-hero__content {
		min-height: 430px;
	}

	.services-hero__content {
		padding-bottom: 48px;
	}

	.services-list {
		padding-bottom: 72px;
	}

	.services-cta a {
		min-width: 0;
		width: 100%;
	}

	.service-detail-hero__content {
		padding-bottom: 42px;
	}

	.service-breadcrumb {
		margin-bottom: 44px;
	}

	.service-form-grid {
		grid-template-columns: 1fr;
	}

	.service-contact {
		gap: 48px;
		padding-bottom: 72px;
	}

	.faq-intro {
		padding-bottom: 44px;
		padding-top: 58px;
	}

	.faq-list {
		padding-bottom: 72px;
	}

	.faq-item summary {
		gap: 16px;
		grid-template-columns: 40px 1fr 20px;
		padding: 26px 22px;
	}

	.faq-item__answer {
		margin: 0 22px 0 22px;
	}

	.faq-item[open] .faq-item__answer {
		padding: 24px 0 30px;
	}

	.home-hero__content {
		padding-bottom: 58px;
		padding-top: 120px;
	}

	.home-hero__logo {
		width: 118px;
	}

	.home-hero::before {
		background:
			radial-gradient(ellipse 310px 260px at 0 0, rgba(255, 247, 230, 0.78) 0%, rgba(240, 224, 197, 0.54) 26%, rgba(218, 194, 160, 0.28) 48%, rgba(204, 176, 143, 0.1) 64%, rgba(204, 176, 143, 0) 78%),
			linear-gradient(128deg, rgba(255, 252, 244, 0.2) 0%, rgba(255, 252, 244, 0.09) 38%, rgba(255, 252, 244, 0) 68%);
		height: 330px;
		width: 390px;
	}

	.home-hero__headline {
		padding-bottom: clamp(48px, 12vh, 86px);
	}

	.founder-image,
	.founder-copy {
		min-height: 520px;
	}

	.experience-section,
	.blog-section {
		padding: 62px 0;
	}

	.experience-section h2,
	.section-heading h2 {
		font-size: 26px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.section-heading h2 {
		display: block;
	}

	.section-heading h2::after {
		margin-top: 20px;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}
}
