:root {
	--font-serif: "Cormorant Garamond", Georgia, serif;
	--font-sans: "Inter", Arial, sans-serif;
	--ink: #0b0f0f;
	--ink-soft: #1a2020;
	--cream: #f6f2ea;
	--paper: #ffffff;
	--muted: #6a655d;
	--line: rgba(16, 20, 20, 0.13);
	--line-dark: rgba(255, 255, 255, 0.13);
	--gold: #e8c77f;
	--gold-dark: #a77d34;
	--gold-soft: #f2dfb4;
	--charcoal: #080c0c;
	--radius: 8px;
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
}

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

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

p {
	margin: 0 0 1.2rem;
}

h1,
h2,
h3 {
	margin: 0;
	color: inherit;
	font-family: var(--font-serif);
	font-weight: 700;
	line-height: 0.96;
}

h1 {
	font-size: 78px;
	max-width: 720px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 24px;
}

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

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

.section-dark {
	background: var(--charcoal);
	color: var(--paper);
}

.section-light {
	background: var(--cream);
	color: var(--ink);
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--gold);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -60px;
	z-index: 100;
	padding: 10px 14px;
	background: var(--gold);
	color: var(--ink);
	border-radius: 6px;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 16px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(8, 12, 12, 0.94);
	color: var(--paper);
	border-bottom: 1px solid var(--line-dark);
	backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 76px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: max-content;
}

.brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: var(--gold);
	font-family: var(--font-serif);
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
	border-right: 1px solid var(--line-dark);
	padding-right: 14px;
}

.brand__image img {
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.brand__text {
	display: grid;
	gap: 2px;
}

.brand__name {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
}

.brand__tagline {
	color: rgba(255, 255, 255, 0.76);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.primary-nav {
	margin-left: auto;
}

.menu {
	display: flex;
	align-items: center;
	gap: 34px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a {
	color: rgba(255, 255, 255, 0.92);
	font-size: 14px;
	font-weight: 700;
}

.menu a:hover,
.menu a:focus {
	color: var(--gold);
}

.header-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-weight: 800;
	line-height: 1;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta {
	color: var(--paper);
	border-color: rgba(255, 255, 255, 0.72);
}

.header-cta:hover,
.header-cta:focus,
.button:hover,
.button:focus {
	transform: translateY(-2px);
}

.button--gold {
	background: linear-gradient(180deg, #f8dfaa 0%, var(--gold) 100%);
	color: #10110d;
	border-color: var(--gold);
	box-shadow: 0 14px 36px rgba(232, 199, 127, 0.18);
}

.button--outline {
	background: transparent;
	color: var(--paper);
	border-color: rgba(255, 255, 255, 0.7);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}

.text-link,
.card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--gold-dark);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	border-bottom: 1px solid var(--gold);
	padding-bottom: 5px;
}

.text-link--dark {
	color: var(--gold);
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	margin-left: auto;
	background: transparent;
	border: 1px solid var(--line-dark);
	border-radius: 6px;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: var(--paper);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 92px 0 72px;
	background:
		linear-gradient(90deg, rgba(4, 8, 8, 0.98) 0%, rgba(4, 8, 8, 0.95) 46%, rgba(4, 8, 8, 0.7) 100%),
		var(--charcoal);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: 64px;
	min-height: 580px;
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.hero h1 {
	margin-bottom: 24px;
	max-width: 780px;
}

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

.hero-lede {
	max-width: 560px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 20px;
	line-height: 1.45;
}

.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin-top: 34px;
}

.hero-points span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.icon svg,
.hero-points svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero-points svg {
	width: 26px;
	height: 26px;
	color: var(--gold);
}

.hero-visual {
	position: relative;
}

.hero-visual img {
	width: 100%;
	aspect-ratio: 15 / 8.5;
	min-height: 0;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 30px 85px rgba(0, 0, 0, 0.36);
}

.split-heading {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 140px;
	align-items: end;
	padding-top: 70px;
}

.section-intro {
	color: var(--muted);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 32px 0 64px;
}

.service-card {
	min-height: 168px;
	padding: 28px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 14px 30px rgba(20, 18, 12, 0.05);
}

.service-card .icon,
.service-detail .icon,
.process-step .icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--ink);
}

.service-card h3 {
	margin: 10px 0 10px;
	font-size: 24px;
}

.service-card p {
	min-height: 54px;
	color: var(--muted);
	font-size: 14px;
}

.featured-work {
	padding: 58px 0;
	background:
		linear-gradient(90deg, rgba(7, 11, 11, 1), rgba(7, 11, 11, 0.92)),
		var(--charcoal);
}

.work-strip {
	display: grid;
	grid-template-columns: 330px 1fr;
	gap: 84px;
	align-items: center;
}

.work-strip h2 {
	font-size: 42px;
}

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

.transformation {
	display: grid;
	grid-template-columns: 0.86fr 34px 1.14fr;
	align-items: center;
	gap: 10px;
}

.arrow {
	color: var(--paper);
	font-size: 30px;
}

.project-screen {
	position: relative;
	display: grid;
	align-content: start;
	min-height: 174px;
	padding: 26px 18px 18px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 6px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.project-screen p {
	margin: 0;
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}

.project-screen small {
	align-self: end;
	margin-top: 24px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.project-screen--before {
	background: #eceae4;
	color: #222;
	filter: grayscale(1);
}

.project-screen--after {
	background:
		linear-gradient(135deg, rgba(232, 199, 127, 0.15), rgba(255, 255, 255, 0.03)),
		#111819;
	color: var(--paper);
}

.project-screen--blue {
	background:
		linear-gradient(145deg, rgba(29, 79, 113, 0.86), rgba(12, 19, 28, 0.95)),
		#13202c;
}

.project-screen--cream {
	background: #f2efe6;
	color: #20231f;
}

.tag {
	position: absolute;
	top: -1px;
	right: 14px;
	padding: 5px 10px;
	background: rgba(16, 20, 20, 0.82);
	color: var(--paper);
	border-radius: 0 0 4px 4px;
	font-size: 12px;
	font-weight: 800;
}

.process {
	padding: 58px 0 64px;
}

.process-grid {
	display: grid;
	grid-template-columns: 1.25fr repeat(4, 1fr);
	gap: 36px;
}

.process-grid > div:first-child {
	padding-right: 32px;
}

.process-step {
	position: relative;
	padding: 0 20px;
	border-left: 1px solid var(--line);
}

.step-number {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.process-step h3 {
	margin: 8px 0 10px;
	font-size: 22px;
}

.process-step p {
	color: var(--muted);
	font-size: 14px;
}

.testimonials {
	position: relative;
	padding: 52px 0;
	background:
		linear-gradient(180deg, rgba(5, 8, 8, 0.96), rgba(5, 8, 8, 0.98)),
		var(--charcoal);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: 1fr repeat(3, 1.08fr);
	border: 1px solid var(--line-dark);
}

.testimonial-heading,
.testimonial-card {
	padding: 32px;
}

.testimonial-card {
	margin: 0;
	border-left: 1px solid var(--line-dark);
}

.avatar {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: linear-gradient(180deg, #f8dfaa 0%, var(--gold) 100%);
	color: var(--ink);
	font-weight: 900;
}

.testimonial-card blockquote {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.88);
}

.testimonial-card figcaption {
	display: grid;
	gap: 2px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 13px;
}

.testimonial-card strong {
	color: var(--paper);
}

.logo-strip {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.logo-strip__inner {
	display: grid;
	grid-template-columns: 1.5fr repeat(6, auto) 1.1fr;
	align-items: center;
	gap: 28px;
	min-height: 78px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.logo-strip strong {
	color: #312f2a;
	font-family: var(--font-serif);
	font-size: 22px;
	text-transform: none;
}

.final-cta {
	padding: 86px 0;
	background-position: center center;
	background-size: cover;
}

.cta-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 120px;
	align-items: center;
}

.final-cta h2 {
	font-size: 64px;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.final-cta p {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.cta-quote {
	margin: 0;
	padding-left: 36px;
	border-left: 2px solid var(--gold);
}

.cta-quote p {
	color: var(--paper);
	font-family: var(--font-serif);
	font-size: 34px;
	line-height: 1.08;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.cta-quote cite {
	color: var(--gold);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.site-footer {
	padding: 38px 0;
	background: #050707;
	color: rgba(255, 255, 255, 0.72);
	border-top: 1px solid var(--line-dark);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.2fr auto 0.8fr;
	gap: 32px;
	align-items: start;
}

.brand--footer .brand__mark {
	border-right-color: var(--line-dark);
}

.footer-copy {
	max-width: 430px;
	margin: 18px 0 0;
	font-size: 14px;
}

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

.footer-meta {
	text-align: right;
	font-size: 14px;
}

.page-hero {
	padding: 92px 0 82px;
	background:
		linear-gradient(90deg, rgba(5, 8, 8, 0.96), rgba(5, 8, 8, 0.78)),
		var(--charcoal);
}

.page-hero__inner {
	max-width: 830px;
}

.page-hero p:not(.eyebrow) {
	max-width: 660px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
}

.page-section {
	padding: 72px 0;
}

.entry-content {
	max-width: 760px;
}

.entry-content a {
	color: var(--gold-dark);
	border-bottom: 1px solid var(--gold-dark);
}

.service-detail-grid,
.resources-grid,
.work-page-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.service-detail,
.resource-card,
.post-card,
.form-panel {
	padding: 32px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 14px 30px rgba(20, 18, 12, 0.05);
}

.service-detail h2,
.resource-card h2,
.post-card h2 {
	font-size: 34px;
}

.service-detail ul {
	padding-left: 20px;
	color: var(--muted);
}

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

.content-split,
.contact-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 64px;
	align-items: start;
}

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

.project-form {
	display: grid;
	gap: 18px;
}

.project-form label {
	display: grid;
	gap: 8px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
}

.project-form input,
.project-form select,
.project-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 4px;
	background: #fbfaf7;
	color: var(--ink);
	padding: 13px 14px;
}

.project-form textarea {
	resize: vertical;
}

.notice {
	margin-bottom: 20px;
	padding: 14px 16px;
	border-radius: 6px;
	font-weight: 700;
}

.notice--success {
	background: #e7f7ea;
	color: #1e6932;
}

.notice--error {
	background: #fae5e1;
	color: #813225;
}

.post-list {
	display: grid;
	gap: 22px;
}

.navigation.pagination {
	margin-top: 28px;
}

@media (max-width: 1100px) {
	h1 {
		font-size: 62px;
	}

	h2 {
		font-size: 40px;
	}

	.hero-grid,
	.split-heading,
	.work-strip,
	.cta-grid {
		grid-template-columns: 1fr;
	}

	.vertical-note {
		display: none;
	}

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

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

	.process-grid > div:first-child {
		grid-column: 1 / -1;
	}

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

	.testimonial-card {
		border-left: 0;
		border-top: 1px solid var(--line-dark);
	}

	.logo-strip__inner {
		grid-template-columns: repeat(3, 1fr);
		padding: 22px 0;
		text-align: center;
	}

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

	.footer-meta {
		text-align: left;
	}
}

@media (max-width: 860px) {
	.container {
		width: min(100% - 32px, 1180px);
	}

	.header-inner {
		min-height: 72px;
	}

	.nav-toggle {
		display: block;
	}

	.header-cta {
		display: none;
	}

	.primary-nav {
		position: absolute;
		left: 16px;
		right: 16px;
		top: calc(100% + 8px);
		display: none;
		margin-left: 0;
		padding: 18px;
		background: rgba(8, 12, 12, 0.98);
		border: 1px solid var(--line-dark);
		border-radius: var(--radius);
		box-shadow: var(--shadow);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav .menu {
		display: grid;
		gap: 14px;
	}

	.hero {
		padding-top: 56px;
	}

	.hero-grid {
		min-height: 0;
	}

	.hero-visual img {
		min-height: 330px;
	}

	.transformations,
	.service-detail-grid,
	.resources-grid,
	.work-page-grid,
	.content-split,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.case-study {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 44px;
	}

	h2,
	.final-cta h2 {
		font-size: 34px;
	}

	.brand__name {
		font-size: 17px;
	}

	.brand__tagline {
		font-size: 8px;
	}

	.hero-lede,
	.final-cta p {
		font-size: 16px;
	}

	.service-grid,
	.process-grid,
	.process-grid--simple {
		grid-template-columns: 1fr;
	}

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

	.arrow {
		text-align: center;
		transform: rotate(90deg);
	}

	.button {
		width: 100%;
	}

	.hero-points {
		display: grid;
		gap: 14px;
	}

	.logo-strip__inner {
		grid-template-columns: 1fr;
	}

	.cta-quote {
		padding-left: 20px;
	}

	.cta-quote p {
		font-size: 28px;
	}

	.service-card,
	.service-detail,
	.resource-card,
	.post-card,
	.form-panel,
	.testimonial-heading,
	.testimonial-card {
		padding: 24px;
	}
}
