:root {
	--ink: #071313;
	--ink-soft: #0d1d1c;
	--ink-light: #17302d;
	--cream: #f7f0df;
	--cream-deep: #eee1c4;
	--paper: #fffaf0;
	--gold: #c7933e;
	--gold-light: #efc979;
	--gold-dark: #8b5c1d;
	--charcoal: #18201e;
	--muted: #716b60;
	--white: #fffdf8;
	--border: rgba(139, 92, 29, 0.25);
	--shadow: 0 24px 70px rgba(8, 18, 17, 0.12);
	--serif: Georgia, "Times New Roman", serif;
	--sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--wrap: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--charcoal);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: var(--serif);
	font-weight: 400;
	line-height: 1.08;
}

h1 em,
h2 em {
	color: var(--gold);
	font-weight: 400;
}

::selection {
	background: var(--gold);
	color: var(--ink);
}

:focus-visible {
	outline: 3px solid var(--gold-light);
	outline-offset: 4px;
}

.wrap {
	width: min(calc(100% - 48px), var(--wrap));
	margin-inline: auto;
}

.section {
	padding-block: 110px;
}

.skip-link {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	background: var(--paper);
	color: var(--ink);
	transform: translateY(-200%);
}

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

.eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	color: var(--gold-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow > span {
	display: inline-block;
	width: 34px;
	height: 1px;
	background: currentColor;
}

.eyebrow--gold {
	color: var(--gold-light);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 13px 25px;
	border: 1px solid var(--gold);
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	box-shadow: 0 12px 30px rgba(199, 147, 62, 0.18);
	color: var(--ink);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
	box-shadow: 0 16px 38px rgba(199, 147, 62, 0.28);
	filter: brightness(1.05);
	transform: translateY(-2px);
}

.button--small {
	min-height: 42px;
	padding: 10px 18px;
	font-size: 0.66rem;
}

/* Header */
.site-header {
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid rgba(239, 201, 121, 0.16);
	color: var(--white);
}

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

.site-header.is-scrolled {
	position: fixed;
	background: rgba(7, 19, 19, 0.96);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(14px);
	animation: header-in 220ms ease both;
}

@keyframes header-in {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 86px;
	gap: 32px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	color: var(--white);
	text-decoration: none;
}

.brand__mark {
	display: grid;
	width: 45px;
	height: 45px;
	place-items: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold-light);
	font-family: var(--serif);
	font-size: 1.55rem;
	line-height: 1;
}

.brand__wordmark {
	display: flex;
	flex-direction: column;
}

.brand__wordmark strong {
	color: var(--gold-light);
	font-family: var(--serif);
	font-size: 1.45rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
}

.brand__wordmark small {
	margin-top: 6px;
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1;
	text-transform: uppercase;
}

.brand--custom .custom-logo-link {
	display: block;
}

.brand--custom img {
	width: auto;
	max-height: 58px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(20px, 2.3vw, 36px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	position: relative;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav__list a::after {
	position: absolute;
	bottom: -9px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold-light);
	content: "";
	transition: width 180ms ease;
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item a::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	border: 0;
	background: transparent;
	color: var(--white);
	cursor: pointer;
}

.menu-toggle__label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.menu-toggle__icon {
	display: flex;
	width: 27px;
	flex-direction: column;
	gap: 7px;
}

.menu-toggle__icon i {
	display: block;
	width: 100%;
	height: 1px;
	background: currentColor;
	transition: transform 180ms ease;
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	min-height: 850px;
	background:
		radial-gradient(circle at 80% 25%, rgba(199, 147, 62, 0.11), transparent 32%),
		linear-gradient(135deg, #050e0e 0%, #0a1a19 62%, #071313 100%);
	color: var(--white);
}

.hero::before,
.hero::after {
	position: absolute;
	border: 1px solid rgba(239, 201, 121, 0.17);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.hero::before {
	top: -420px;
	left: -350px;
	width: 920px;
	height: 920px;
}

.hero::after {
	right: -410px;
	bottom: -500px;
	width: 1050px;
	height: 1050px;
}

.hero__glow {
	position: absolute;
	top: 18%;
	right: 4%;
	width: 40vw;
	height: 40vw;
	border-radius: 50%;
	background: rgba(220, 164, 73, 0.09);
	filter: blur(100px);
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	min-height: 850px;
	grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.78fr);
	align-items: center;
	gap: clamp(50px, 7vw, 110px);
	padding-top: 112px;
	padding-bottom: 76px;
}

.hero__content {
	padding-bottom: 15px;
}

.hero h1 {
	max-width: 720px;
	margin-bottom: 28px;
	font-size: clamp(3.65rem, 6.2vw, 6.4rem);
	letter-spacing: -0.045em;
}

.hero h1 em {
	display: inline-block;
	font-style: italic;
}

.hero__lead {
	max-width: 610px;
	margin-bottom: 34px;
	color: rgba(255, 253, 248, 0.73);
	font-family: var(--serif);
	font-size: 1.18rem;
	line-height: 1.75;
}

.hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 27px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--serif);
	font-size: 1rem;
	text-decoration: none;
}

.text-link__icon {
	display: grid;
	width: 41px;
	height: 41px;
	place-items: center;
	border: 1px solid rgba(239, 201, 121, 0.5);
	border-radius: 50%;
	color: var(--gold-light);
}

.hero__proof {
	display: flex;
	gap: 25px;
	margin: 48px 0 0;
	padding: 0;
	color: rgba(255, 253, 248, 0.72);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	list-style: none;
	text-transform: uppercase;
}

.hero__proof li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero__proof span {
	color: var(--gold);
}

.hero__visual {
	position: relative;
	justify-self: end;
	width: min(100%, 430px);
}

.hero__visual::before {
	position: absolute;
	z-index: -1;
	top: -24px;
	right: -22px;
	width: 76%;
	height: 72%;
	border-top: 1px solid var(--gold);
	border-right: 1px solid var(--gold);
	content: "";
}

.hero__image-frame {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(239, 201, 121, 0.65);
	border-radius: 49% 49% 3px 3px / 24% 24% 3px 3px;
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.44);
}

.hero__image-frame::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(7, 19, 19, 0.3));
	content: "";
	pointer-events: none;
}

.hero__image-frame img {
	width: 100%;
	aspect-ratio: 0.72;
	object-fit: cover;
}

.hero__badge {
	position: absolute;
	right: -50px;
	bottom: 63px;
	display: flex;
	width: 146px;
	height: 146px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	background: var(--ink);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
	text-align: center;
}

.hero__badge::before {
	position: absolute;
	inset: 7px;
	border: 1px solid rgba(239, 201, 121, 0.32);
	border-radius: inherit;
	content: "";
}

.hero__badge > span {
	color: var(--gold-light);
	font-size: 1.5rem;
}

.hero__badge p {
	margin: 3px 0 0;
	font-family: var(--serif);
	font-size: 0.86rem;
	line-height: 1.2;
}

.hero__badge strong {
	color: var(--gold-light);
	font-size: 1.05rem;
	font-weight: 400;
}

.hero__scroll {
	position: absolute;
	z-index: 3;
	bottom: 28px;
	left: 50%;
	display: flex;
	align-items: center;
	gap: 13px;
	color: rgba(255, 253, 248, 0.56);
	font-size: 0.59rem;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-decoration: none;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.hero__scroll i {
	color: var(--gold-light);
	font-size: 1rem;
	font-style: normal;
}

.intro-strip {
	border-top: 1px solid var(--gold);
	border-bottom: 1px solid var(--border);
	background: var(--cream-deep);
}

.intro-strip__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	gap: clamp(20px, 4vw, 58px);
}

.intro-strip p {
	margin: 0;
	font-family: var(--serif);
	font-size: 1rem;
	font-style: italic;
}

.intro-strip span {
	color: var(--gold);
	font-size: 0.6rem;
}

/* Services */
.services {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 100% 100%, rgba(199, 147, 62, 0.08), transparent 28%),
		var(--paper);
}

.services::after {
	position: absolute;
	right: -85px;
	bottom: -150px;
	color: rgba(139, 92, 29, 0.035);
	content: "K";
	font-family: var(--serif);
	font-size: 32rem;
	line-height: 0.8;
	pointer-events: none;
}

.section-heading {
	position: relative;
	z-index: 1;
	margin-bottom: 58px;
}

.section-heading--split {
	display: grid;
	grid-template-columns: 1.1fr 0.7fr;
	align-items: end;
	gap: 60px;
}

.section-heading h2,
.craft h2,
.contact h2 {
	margin-bottom: 0;
	color: var(--ink);
	font-size: clamp(2.8rem, 4.5vw, 4.7rem);
	letter-spacing: -0.035em;
}

.section-heading__intro {
	max-width: 490px;
	margin: 0 0 4px;
	color: var(--muted);
	font-family: var(--serif);
	font-size: 1.05rem;
}

.services-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.service-card {
	position: relative;
	min-height: 475px;
	padding: clamp(30px, 4vw, 50px);
	border: 1px solid var(--border);
	background: rgba(255, 253, 248, 0.88);
	box-shadow: 0 14px 40px rgba(51, 40, 20, 0.05);
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
	border-color: rgba(139, 92, 29, 0.55);
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.service-card--featured {
	background:
		radial-gradient(circle at 90% 10%, rgba(199, 147, 62, 0.14), transparent 28%),
		var(--ink);
	color: var(--white);
}

.service-card__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 35px;
}

.service-card__icon {
	display: grid;
	width: 65px;
	height: 65px;
	place-items: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	background: var(--ink);
	color: var(--gold-light);
}

.service-card__icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.service-card__eyebrow {
	color: var(--gold-dark);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.service-card--featured .service-card__eyebrow {
	color: var(--gold-light);
}

.service-card h3 {
	margin-bottom: 18px;
	font-size: clamp(2rem, 3vw, 2.75rem);
}

.service-card > p {
	max-width: 480px;
	margin-bottom: 24px;
	color: var(--muted);
}

.service-card--featured > p {
	color: rgba(255, 253, 248, 0.68);
}

.service-card ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px 20px;
	margin: 0;
	padding: 21px 0 0;
	border-top: 1px solid var(--border);
	list-style: none;
}

.service-card li {
	position: relative;
	padding-left: 17px;
	font-family: var(--serif);
	font-size: 0.92rem;
	line-height: 1.4;
}

.service-card li::before {
	position: absolute;
	top: 0.6em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
	content: "";
}

.services__note {
	position: relative;
	z-index: 1;
	margin: 36px 0 0;
	color: var(--muted);
	font-family: var(--serif);
	text-align: center;
}

.services__note a {
	color: var(--gold-dark);
	font-weight: 700;
}

/* Craft */
.craft {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: rgba(255, 253, 248, 0.72);
}

.craft::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(239, 201, 121, 0.08) 0.7px, transparent 0.7px);
	background-size: 7px 7px;
	content: "";
	opacity: 0.28;
}

.craft__grid {
	position: relative;
	display: grid;
	grid-template-columns: 0.8fr 1fr;
	align-items: center;
	gap: clamp(60px, 9vw, 140px);
}

.craft__visual {
	position: relative;
	display: grid;
	min-height: 560px;
	place-items: center;
	border: 1px solid rgba(239, 201, 121, 0.32);
	border-radius: 50% 50% 0 0;
	background:
		radial-gradient(circle at 50% 45%, rgba(199, 147, 62, 0.21), transparent 34%),
		linear-gradient(160deg, rgba(255,255,255,0.035), transparent);
}

.craft__visual::before,
.craft__visual::after {
	position: absolute;
	content: "";
}

.craft__visual::before {
	inset: 18px;
	border: 1px solid rgba(239, 201, 121, 0.14);
	border-radius: inherit;
}

.craft__visual::after {
	top: 12%;
	left: -25px;
	width: 1px;
	height: 75%;
	background: linear-gradient(transparent, var(--gold), transparent);
}

.craft__letter {
	background: linear-gradient(145deg, #f7db95, #a86c22 55%, #efc979);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-family: var(--serif);
	font-size: clamp(12rem, 24vw, 20rem);
	line-height: 0.8;
	text-shadow: 0 20px 60px rgba(199, 147, 62, 0.12);
}

.craft__seal {
	position: absolute;
	right: -45px;
	bottom: 55px;
	display: flex;
	width: 150px;
	height: 150px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	background: var(--cream);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
	color: var(--ink);
	text-align: center;
}

.craft__seal span {
	font-size: 0.53rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.craft__seal strong {
	margin: 3px 0;
	color: var(--gold-dark);
	font-family: var(--serif);
	font-size: 1.23rem;
	font-style: italic;
	font-weight: 400;
}

.craft h2 {
	margin-bottom: 28px;
	color: var(--white);
}

.craft__lead {
	color: var(--cream);
	font-family: var(--serif);
	font-size: 1.16rem;
}

.craft__content > p:not(.eyebrow) {
	max-width: 610px;
}

.craft__values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 45px;
	border-top: 1px solid rgba(239, 201, 121, 0.22);
	border-bottom: 1px solid rgba(239, 201, 121, 0.22);
}

.craft__values div {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 20px 10px 20px 0;
}

.craft__values strong {
	color: var(--gold-light);
	font-family: var(--serif);
	font-size: 1.5rem;
	font-style: italic;
	font-weight: 400;
}

.craft__values span {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	line-height: 1.45;
	text-transform: uppercase;
}

/* Process */
.process {
	background: var(--cream);
}

.section-heading--center {
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.process__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	list-style: none;
	counter-reset: steps;
}

.process__steps li {
	position: relative;
	padding: 50px 42px 45px;
	text-align: center;
}

.process__steps li + li {
	border-left: 1px solid var(--border);
}

.process__number {
	position: absolute;
	top: 20px;
	left: 22px;
	color: rgba(139, 92, 29, 0.45);
	font-family: var(--serif);
	font-size: 0.75rem;
	font-style: italic;
}

.process__icon {
	display: grid;
	width: 76px;
	height: 76px;
	margin: 0 auto 25px;
	place-items: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	background: var(--ink);
	box-shadow: inset 0 0 0 6px var(--ink), inset 0 0 0 7px rgba(239, 201, 121, 0.28);
	color: var(--gold-light);
	font-family: var(--serif);
	font-size: 1.5rem;
}

.process h3 {
	margin-bottom: 13px;
	font-size: 1.55rem;
}

.process__steps p {
	max-width: 280px;
	margin: 0 auto;
	color: var(--muted);
	font-size: 0.9rem;
}

/* Contact */
.contact {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.contact::before {
	position: absolute;
	top: -230px;
	right: -160px;
	width: 600px;
	height: 600px;
	border: 1px solid rgba(239, 201, 121, 0.12);
	border-radius: 50%;
	content: "";
}

.contact__line {
	position: absolute;
	top: 50%;
	left: -5%;
	width: 110%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(239, 201, 121, 0.25), transparent);
	transform: rotate(-7deg);
}

.contact__grid {
	position: relative;
	display: grid;
	grid-template-columns: 0.82fr 1fr;
	align-items: center;
	gap: clamp(60px, 10vw, 150px);
}

.contact h2 {
	margin-bottom: 27px;
	color: var(--white);
}

.contact__content > p:not(.eyebrow) {
	max-width: 500px;
	margin-bottom: 32px;
	color: rgba(255, 253, 248, 0.68);
}

.contact-card {
	border: 1px solid rgba(239, 201, 121, 0.46);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(8px);
}

.contact-card__row {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 22px;
	padding: 30px 36px;
}

.contact-card__row + .contact-card__row {
	border-top: 1px solid rgba(239, 201, 121, 0.2);
}

.contact-card__icon {
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold-light);
	font-family: var(--serif);
	font-size: 1.2rem;
}

.contact-card small {
	display: block;
	margin-bottom: 8px;
	color: var(--gold-light);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
	font-family: var(--serif);
	font-size: 1.1rem;
	font-weight: 400;
}

.contact-card a {
	color: var(--white);
}

.contact-card dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 20px;
	margin: 0;
	font-family: var(--serif);
	font-size: 0.95rem;
}

.contact-card dt,
.contact-card dd {
	margin: 0;
}

.contact-card dd {
	color: rgba(255, 253, 248, 0.72);
}

/* Footer */
.site-footer {
	border-top: 1px solid rgba(239, 201, 121, 0.18);
	background: #04100f;
	color: rgba(255, 253, 248, 0.62);
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 60px;
	padding-block: 72px 58px;
}

.brand--footer {
	margin-bottom: 22px;
}

.footer-brand p,
.footer-column p,
.footer-column address {
	margin: 0;
	font-size: 0.82rem;
	font-style: normal;
	line-height: 1.8;
}

.footer-column h2 {
	margin-bottom: 18px;
	color: var(--gold-light);
	font-family: var(--sans);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.footer-link,
.footer-phone {
	display: inline-block;
	margin-top: 12px;
	color: var(--white);
	font-family: var(--serif);
	font-size: 0.9rem;
}

.footer-phone {
	margin: 0 0 7px;
	font-size: 1.1rem;
}

.footer-email {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 253, 248, 0.74);
	font-size: 0.76rem;
}

.footer-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav li + li {
	margin-top: 7px;
}

.footer-nav a {
	font-size: 0.82rem;
	text-decoration: none;
}

.footer-nav a:hover {
	color: var(--gold-light);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	padding-block: 22px;
	border-top: 1px solid rgba(239, 201, 121, 0.14);
	font-size: 0.64rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin: 0;
}

/* Inner and legal pages */
.page-hero {
	position: relative;
	overflow: hidden;
	min-height: 455px;
	padding-top: 86px;
	background:
		radial-gradient(circle at 76% 40%, rgba(199, 147, 62, 0.15), transparent 25%),
		var(--ink);
	color: var(--white);
}

.page-hero::after {
	position: absolute;
	right: -120px;
	bottom: -260px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(239, 201, 121, 0.2);
	border-radius: 50%;
	content: "";
}

.page-hero__ornament {
	position: absolute;
	top: 0;
	left: 8%;
	width: 1px;
	height: 100%;
	background: linear-gradient(transparent, rgba(239, 201, 121, 0.35), transparent);
	transform: rotate(24deg);
}

.page-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 369px;
	flex-direction: column;
	justify-content: center;
	padding-block: 55px;
}

.page-hero h1 {
	margin-bottom: 20px;
	font-size: clamp(3.4rem, 7vw, 6.5rem);
	letter-spacing: -0.045em;
}

.page-hero__inner > p:last-child:not(.eyebrow) {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 253, 248, 0.68);
	font-family: var(--serif);
	font-size: 1.1rem;
}

.legal-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
	align-items: start;
	gap: 80px;
	padding-block: 100px 120px;
}

.legal-content section + section {
	margin-top: 48px;
	padding-top: 45px;
	border-top: 1px solid var(--border);
}

.legal-content h2 {
	margin-bottom: 18px;
	color: var(--ink);
	font-size: 1.75rem;
}

.legal-content p,
.entry-content p {
	color: #514d45;
}

.legal-content a,
.entry-content a {
	color: var(--gold-dark);
}

.legal-notice {
	position: sticky;
	top: 115px;
	padding: 26px;
	border: 1px solid #c86f3d;
	background: #fff1e8;
	box-shadow: var(--shadow);
}

.legal-notice strong {
	display: block;
	margin-bottom: 9px;
	color: #8a3d19;
	font-family: var(--serif);
	font-size: 1.2rem;
}

.legal-notice p {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.6;
}

.legal-notice--neutral {
	border-color: var(--border);
	background: var(--cream);
}

.legal-notice--neutral strong {
	color: var(--gold-dark);
}

.entry-content {
	min-height: 350px;
	padding-block: 80px 110px;
}

.post-card {
	padding-block: 30px;
	border-bottom: 1px solid var(--border);
}

.post-card h2 a {
	color: var(--ink);
}

.not-found {
	display: flex;
	min-height: 78vh;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding-top: 100px;
}

.not-found h1 {
	margin-bottom: 24px;
	color: var(--ink);
	font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.not-found p:not(.eyebrow) {
	margin-bottom: 30px;
	color: var(--muted);
}

/* Responsive */
@media (max-width: 1120px) {
	.hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
		gap: 55px;
	}

	.hero__badge {
		right: -20px;
		bottom: 35px;
		width: 125px;
		height: 125px;
	}

	.site-nav {
		gap: 18px;
	}

	.site-nav__list {
		gap: 18px;
	}

	.site-footer__top {
		grid-template-columns: 1.2fr repeat(3, 0.8fr);
		gap: 35px;
	}
}

@media (max-width: 920px) {
	.section {
		padding-block: 85px;
	}

	.menu-toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		top: 0;
		right: 0;
		display: flex;
		width: min(86vw, 420px);
		height: 100dvh;
		padding: 115px 38px 45px;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		background: var(--ink);
		box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
		transform: translateX(110%);
		transition: transform 220ms ease;
	}

	.site-nav.is-open {
		transform: translateX(0);
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav__list li {
		border-bottom: 1px solid rgba(239, 201, 121, 0.17);
	}

	.site-nav__list a {
		display: block;
		padding: 18px 0;
		font-family: var(--serif);
		font-size: 1.45rem;
		font-weight: 400;
		letter-spacing: 0;
		text-transform: none;
	}

	.site-nav__cta {
		margin-top: 20px;
	}

	.menu-toggle[aria-expanded="true"] {
		position: relative;
		z-index: 2;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
		transform: translateY(4px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
		transform: translateY(-4px) rotate(-45deg);
	}

	.hero,
	.hero__inner {
		min-height: auto;
	}

	.hero__inner {
		grid-template-columns: 1fr 0.63fr;
		gap: 35px;
		padding-top: 160px;
		padding-bottom: 100px;
	}

	.hero h1 {
		font-size: clamp(3.2rem, 7.4vw, 5rem);
	}

	.hero__lead {
		font-size: 1rem;
	}

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

	.hero__badge {
		display: none;
	}

	.hero__scroll {
		display: none;
	}

	.section-heading--split,
	.craft__grid,
	.contact__grid {
		grid-template-columns: 1fr;
	}

	.section-heading--split {
		gap: 24px;
	}

	.section-heading__intro {
		max-width: 650px;
	}

	.craft__grid {
		gap: 70px;
	}

	.craft__visual {
		width: min(100%, 520px);
		min-height: 500px;
		margin-inline: auto;
	}

	.craft__seal {
		right: -20px;
	}

	.contact__grid {
		gap: 55px;
	}

	.contact__content {
		max-width: 650px;
	}

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

	.legal-layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.legal-notice {
		position: static;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 16px;
	}

	.wrap {
		width: min(calc(100% - 32px), var(--wrap));
	}

	.section {
		padding-block: 70px;
	}

	.site-header__inner {
		min-height: 74px;
	}

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

	.brand__mark {
		width: 39px;
		height: 39px;
		font-size: 1.3rem;
	}

	.brand__wordmark strong {
		font-size: 1.18rem;
	}

	.brand__wordmark small {
		font-size: 0.48rem;
	}

	.menu-toggle__label {
		display: none;
	}

	.hero__inner {
		display: flex;
		padding-top: 126px;
		padding-bottom: 68px;
		flex-direction: column;
		align-items: stretch;
		gap: 55px;
	}

	.hero h1 {
		font-size: clamp(3.05rem, 15vw, 4.4rem);
	}

	.hero__lead {
		font-size: 1rem;
		line-height: 1.6;
	}

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

	.hero__actions .button {
		width: 100%;
	}

	.hero__proof {
		margin-top: 35px;
		font-size: 0.59rem;
	}

	.hero__visual {
		width: min(88%, 400px);
		align-self: center;
	}

	.intro-strip__inner {
		min-height: 64px;
		gap: 10px;
		overflow: hidden;
	}

	.intro-strip p {
		flex: 0 0 auto;
		font-size: 0.8rem;
	}

	.intro-strip p:nth-of-type(3),
	.intro-strip span:nth-of-type(2) {
		display: none;
	}

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

	.section-heading h2,
	.craft h2,
	.contact h2 {
		font-size: clamp(2.45rem, 12vw, 3.4rem);
	}

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

	.service-card {
		min-height: auto;
		padding: 30px 25px 34px;
	}

	.service-card__topline {
		margin-bottom: 27px;
	}

	.service-card__icon {
		width: 56px;
		height: 56px;
	}

	.service-card__eyebrow {
		max-width: 150px;
		text-align: right;
	}

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

	.craft__visual {
		min-height: 400px;
	}

	.craft__seal {
		right: -7px;
		bottom: 28px;
		width: 125px;
		height: 125px;
	}

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

	.craft__values div + div {
		border-top: 1px solid rgba(239, 201, 121, 0.14);
	}

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

	.process__steps li + li {
		border-top: 1px solid var(--border);
		border-left: 0;
	}

	.contact-card__row {
		grid-template-columns: 44px 1fr;
		gap: 17px;
		padding: 25px 20px;
	}

	.contact-card__icon {
		width: 43px;
		height: 43px;
	}

	.contact-card dl {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.contact-card dd + dt {
		margin-top: 8px;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 38px;
		padding-block: 58px 45px;
	}

	.site-footer__bottom {
		flex-direction: column;
		gap: 5px;
	}

	.page-hero {
		min-height: 390px;
		padding-top: 74px;
	}

	.page-hero__inner {
		min-height: 316px;
	}

	.page-hero h1 {
		font-size: clamp(3rem, 15vw, 4.5rem);
	}

	.legal-layout {
		padding-block: 70px 85px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
