/*
Theme Name: NB Consulting
Theme URI: https://nbconsults.de
Author: NB Consulting
Author URI: https://nbconsults.de
Description: Eigenständiges, conversionstarkes WordPress-Theme für NB Consulting.
Version: 2.0.0
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: nb-consulting
*/

:root {
	--ink: #0a0c10;
	--ink-soft: #151820;
	--paper: #f2efe6;
	--paper-bright: #fffdf7;
	--blue: #1b7a9c;
	--blue-dark: #125a74;
	--acid: #ff6b35;
	--lime: #64c1de;
	--line: rgba(10, 12, 16, 0.15);
	--line-dark: rgba(255, 255, 255, 0.18);
	--muted: #686a6e;
	--white: #ffffff;
	--sans: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
	--serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
	--container: 1240px;
	--narrow: 780px;
	--gutter: clamp(20px, 4vw, 56px);
	--section: clamp(88px, 10vw, 156px);
	--radius: 4px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
	-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.16em;
}

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

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

h1,
h2,
h3 {
	line-height: 0.98;
	letter-spacing: -0.045em;
}

h1 {
	margin-bottom: 28px;
	font-size: clamp(3.4rem, 7.4vw, 7.2rem);
	font-weight: 750;
}

h2 {
	margin-bottom: 28px;
	font-size: clamp(2.9rem, 5.7vw, 5.8rem);
	font-weight: 750;
}

h3 {
	font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

h1 em,
h2 em {
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: -0.035em;
}

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

.container {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
}

.container--narrow {
	max-width: var(--narrow);
}

.section {
	padding-block: var(--section);
}

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

.section--blue {
	background: var(--blue);
	color: var(--white);
}

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	background: var(--white);
	color: var(--ink);
	transform: translateY(-160%);
}

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

.eyebrow {
	margin-bottom: 22px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.17em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow--accent {
	color: var(--lime);
}

.eyebrow--accent > span {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 9px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 5px rgba(200, 255, 88, 0.12);
}

.lead {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	line-height: 1.45;
}

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

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	min-height: 58px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
	transform: translateY(-3px);
}

.button--small {
	min-height: 46px;
	padding: 10px 16px;
	gap: 16px;
	font-size: 0.7rem;
}

.button--accent {
	background: var(--lime);
	color: var(--ink);
}

.button--accent:hover {
	background: var(--white);
}

.button--dark {
	background: var(--ink);
	color: var(--white);
}

.button--light {
	background: var(--white);
	color: var(--ink);
}

.button--outline {
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--white);
}

.button--outline:hover {
	border-color: var(--lime);
	background: var(--lime);
	color: var(--ink);
}

.button--full {
	width: 100%;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
	gap: 26px;
	color: var(--blue);
}

.text-link--light:hover {
	color: var(--lime);
}

.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(10, 12, 16, 0.82);
	color: var(--white);
	backdrop-filter: blur(18px);
}

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

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}

.brand__logo {
	display: block;
	width: clamp(210px, 18vw, 258px);
	height: auto;
}
.primary-navigation {
	display: flex;
	align-items: center;
	gap: clamp(26px, 3vw, 48px);
}

.primary-navigation__list {
	display: flex;
	align-items: center;
	gap: clamp(24px, 2.6vw, 42px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation__list a {
	position: relative;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-navigation__list a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 1px;
	background: var(--lime);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-navigation__list a:hover::after,
.primary-navigation__list .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

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

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

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

.hero {
	position: relative;
	overflow: hidden;
	padding-top: clamp(142px, 16vw, 200px);
	background:
		radial-gradient(circle at 84% 18%, rgba(49, 92, 255, 0.28), transparent 25%),
		var(--ink);
	color: var(--white);
}

.hero__noise {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, black, transparent);
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
	gap: clamp(48px, 7vw, 100px);
	align-items: center;
	padding-bottom: clamp(84px, 10vw, 140px);
}

.hero h1 {
	max-width: 900px;
	margin-bottom: 32px;
}

.hero h1 em {
	display: block;
	color: var(--lime);
}

.hero__lead {
	max-width: 680px;
	margin-bottom: 42px;
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	line-height: 1.5;
}

.hero__proof {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 46px;
}

.hero__proof p {
	margin: 0;
	color: rgba(255, 255, 255, 0.63);
	font-size: 0.8rem;
	line-height: 1.45;
}

.hero__proof strong {
	color: var(--white);
}

.hero__avatars {
	display: flex;
}

.hero__avatars span {
	display: grid;
	width: 38px;
	height: 38px;
	margin-left: -8px;
	place-items: center;
	border: 2px solid var(--ink);
	border-radius: 50%;
	background: var(--blue);
	color: var(--white);
	font-size: 0.62rem;
	font-weight: 900;
}

.hero__avatars span:first-child {
	margin-left: 0;
	background: var(--lime);
	color: var(--ink);
}

.hero__avatars span:last-child {
	background: var(--paper);
	color: var(--ink);
}

.hero__visual {
	position: relative;
}

.hero__frame {
	position: relative;
	margin: 0 12px;
	padding: 10px;
	border: 1px solid rgba(255,255,255,0.3);
	transform: rotate(1.8deg);
}

.hero__frame::before {
	position: absolute;
	z-index: -1;
	inset: 18px -18px -18px 18px;
	background: var(--blue);
	content: "";
}

.hero__frame > img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	filter: saturate(0.82) contrast(1.05);
}

.hero__badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: var(--paper-bright);
	color: var(--ink);
	box-shadow: 0 18px 55px rgba(0,0,0,0.25);
	transform: rotate(-1.8deg);
}

.hero__badge p {
	margin: 0;
	font-size: 0.68rem;
	line-height: 1.35;
}

.hero__badge--top {
	top: 28px;
	right: -28px;
}

.hero__badge--bottom {
	bottom: 36px;
	left: -44px;
}

.status-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #34c875;
	box-shadow: 0 0 0 5px rgba(52,200,117,0.16);
}

.hero__badge-number {
	font-family: var(--serif);
	font-size: 2rem;
	font-style: italic;
	line-height: 1;
}

.hero__scribble {
	position: absolute;
	right: 10%;
	bottom: -60px;
	color: var(--lime);
	font-family: var(--serif);
	font-size: 1.2rem;
	font-style: italic;
	transform: rotate(-7deg);
}

.hero__ticker {
	position: relative;
	z-index: 2;
	overflow: hidden;
	border-block: 1px solid rgba(255,255,255,0.18);
	background: var(--blue);
}

.hero__ticker > div {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 32px;
	padding: 20px 0;
	animation: nb-ticker 26s linear infinite;
}

.hero__ticker span {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.hero__ticker i {
	color: var(--lime);
	font-style: normal;
}

@keyframes nb-ticker {
	to { transform: translateX(-50%); }
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
	gap: clamp(36px, 9vw, 150px);
	align-items: end;
	margin-bottom: clamp(50px, 7vw, 90px);
}

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

.section-heading > p {
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 1.05rem;
}

.section-heading--compact {
	align-items: center;
}

.section-heading--compact > .text-link {
	justify-self: end;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
	position: relative;
	display: flex;
	min-height: 610px;
	flex-direction: column;
	padding: clamp(30px, 4vw, 54px);
	border: 1px solid var(--ink);
	transition: transform 240ms ease, z-index 0ms;
}

.service-card + .service-card {
	margin-left: -1px;
}

.service-card:hover {
	z-index: 2;
	transform: translateY(-12px);
}

.service-card--blue {
	background: var(--blue);
	color: var(--white);
}

.service-card--cream {
	background: var(--paper-bright);
}

.service-card--dark {
	background: var(--ink);
	color: var(--white);
}

.service-card__index {
	margin-bottom: 64px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.service-card__icon {
	position: absolute;
	top: 36px;
	right: 36px;
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-family: var(--serif);
	font-size: 1.5rem;
}

.service-card h3 {
	max-width: 290px;
	margin-bottom: 22px;
	font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.service-card > p {
	margin-bottom: 28px;
	opacity: 0.72;
}

.service-card > a {
	display: inline-flex;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid currentColor;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.check-list {
	margin: 0 0 34px;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding: 8px 0 8px 23px;
	font-size: 0.83rem;
}

.check-list li::before {
	position: absolute;
	left: 0;
	content: "↗";
	font-weight: 900;
}

.why__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(70px, 10vw, 150px);
}

.why__intro {
	position: sticky;
	top: 130px;
	align-self: start;
}

.why__intro h2 {
	font-size: clamp(3rem, 5.2vw, 5.3rem);
}

.why__intro > p:not(.eyebrow) {
	max-width: 560px;
	margin-bottom: 34px;
	color: rgba(255,255,255,0.65);
}

.why__points article {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 24px;
	padding: 30px 0 34px;
	border-top: 1px solid var(--line-dark);
}

.why__points article:last-child {
	border-bottom: 1px solid var(--line-dark);
}

.why__points article > span {
	color: var(--lime);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.why__points h3 {
	margin-bottom: 12px;
	font-size: clamp(1.65rem, 2.6vw, 2.5rem);
}

.why__points p {
	max-width: 550px;
	margin: 0;
	color: rgba(255,255,255,0.58);
}

.stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: clamp(90px, 12vw, 170px);
	border-top: 1px solid var(--line-dark);
}

.stat-row > div {
	padding: 34px 30px 0;
	border-right: 1px solid var(--line-dark);
}

.stat-row > div:first-child {
	padding-left: 0;
}

.stat-row > div:last-child {
	border: 0;
}

.stat-row strong {
	display: block;
	margin-bottom: 10px;
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: 1;
	letter-spacing: -0.06em;
}

.stat-row strong span {
	color: var(--lime);
	font-family: var(--serif);
	font-weight: 400;
}

.stat-row p {
	margin: 0;
	color: rgba(255,255,255,0.55);
	font-size: 0.82rem;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(42px, 6vw, 84px) clamp(24px, 3.5vw, 52px);
}

.project-card--featured {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	align-items: stretch;
}

.project-card__image {
	position: relative;
	display: block;
	overflow: hidden;
	background: #dedbd2;
}

.project-card:not(.project-card--featured) .project-card__image {
	aspect-ratio: 4 / 3;
}

.project-card--featured .project-card__image {
	min-height: 520px;
}

.project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.project-card:hover .project-card__image img {
	transform: scale(1.035);
}

.project-card__arrow {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	border-radius: 50%;
	background: var(--lime);
	color: var(--ink);
	font-size: 1.3rem;
	transition: transform 180ms ease;
}

.project-card:hover .project-card__arrow {
	transform: rotate(45deg);
}

.project-card__body {
	padding-top: 26px;
}

.project-card--featured .project-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(36px, 5vw, 70px);
	background: var(--paper-bright);
}

.project-card__body h3 {
	margin-bottom: 16px;
	font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.project-card__body h3 a {
	text-decoration: none;
}

.project-card__body > p:not(.project-card__result) {
	color: var(--muted);
}

.project-card__result {
	margin-bottom: 18px;
	color: var(--blue);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.tag-list li {
	padding: 6px 10px;
	border: 1px solid currentColor;
	border-radius: 100px;
	font-size: 0.62rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.process {
	border-top: 1px solid var(--line);
	background: var(--paper-bright);
}

.process-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--ink);
	list-style: none;
}

.process-list li {
	position: relative;
	padding: 28px clamp(18px, 2.4vw, 34px) 10px;
	border-right: 1px solid var(--ink);
}

.process-list li:first-child {
	padding-left: 0;
}

.process-list li:last-child {
	border-right: 0;
}

.process-list__number {
	font-size: 0.7rem;
	font-weight: 850;
}

.process-list__icon {
	margin-block: 70px;
	font-family: var(--serif);
	font-size: 3rem;
}

.process-list h3 {
	margin-bottom: 16px;
	font-size: 1.65rem;
}

.process-list p {
	color: var(--muted);
	font-size: 0.9rem;
}

.faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(60px, 11vw, 150px);
}

.faq__grid > div:first-child > p:not(.eyebrow) {
	max-width: 410px;
	color: var(--muted);
}

.accordion {
	border-top: 1px solid var(--ink);
}

.accordion details {
	border-bottom: 1px solid var(--ink);
}

.accordion summary {
	position: relative;
	padding: 28px 54px 28px 0;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 750;
	line-height: 1.3;
	cursor: pointer;
	list-style: none;
}

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

.accordion summary::after {
	position: absolute;
	top: 22px;
	right: 0;
	content: "+";
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 400;
}

.accordion details[open] summary::after {
	content: "−";
}

.accordion details p {
	max-width: 650px;
	padding-right: 44px;
	padding-bottom: 28px;
	color: var(--muted);
}

.section--cta {
	overflow: hidden;
	padding-top: 0;
	background: var(--paper);
}

.cta-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(50px, 8vw, 100px);
	background: var(--blue);
	color: var(--white);
}

.cta-panel__orb {
	position: absolute;
	right: -6%;
	bottom: -50%;
	width: min(52vw, 640px);
	aspect-ratio: 1;
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 50%;
	box-shadow:
		0 0 0 60px rgba(255,255,255,0.04),
		0 0 0 120px rgba(255,255,255,0.03);
}

.cta-panel h2 {
	position: relative;
	max-width: 850px;
	margin-bottom: 26px;
}

.cta-panel > p:not(.eyebrow) {
	position: relative;
	max-width: 610px;
	margin-bottom: 34px;
	color: rgba(255,255,255,0.78);
}

.cta-panel .button-row {
	position: relative;
}

.site-footer {
	padding-block: 78px 28px;
	background: var(--ink);
	color: var(--white);
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 0.6fr;
	gap: 60px;
	padding-bottom: 80px;
}

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

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

.site-footer__claim {
	font-family: var(--serif);
	font-size: clamp(1.6rem, 3vw, 2.8rem);
	font-style: italic;
	line-height: 1.1;
}

.site-footer__contact,
.site-footer__links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.site-footer__contact a,
.site-footer__links a {
	color: rgba(255,255,255,0.68);
	text-decoration: none;
}

.site-footer__contact a:hover,
.site-footer__links a:hover {
	color: var(--lime);
}

.site-footer__contact .footer-mail {
	margin-bottom: 5px;
	color: var(--white);
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid var(--line-dark);
	color: rgba(255,255,255,0.48);
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom > p:last-child {
	text-align: right;
}

.site-footer__bottom div {
	display: flex;
	gap: 18px;
}

.site-footer__bottom a {
	text-decoration: none;
}

/* Inner pages */
.page-hero {
	padding: clamp(160px, 18vw, 230px) 0 clamp(90px, 12vw, 150px);
	background: var(--ink);
	color: var(--white);
}

.page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
	gap: clamp(50px, 8vw, 130px);
	align-items: end;
}

.page-hero h1 {
	margin-bottom: 0;
	font-size: clamp(3.7rem, 7.2vw, 7rem);
}

.page-hero h1 em {
	color: var(--lime);
}

.page-hero__lead {
	margin-bottom: 8px;
	color: rgba(255,255,255,0.67);
	font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

.page-hero--image {
	padding-bottom: 0;
}

.page-hero--image h1 {
	max-width: 980px;
	margin-bottom: 70px;
}

.page-hero__image {
	position: relative;
	height: min(68vw, 720px);
}

.page-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.75);
}

.page-hero__image p {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 26px 34px;
	background: var(--lime);
	color: var(--ink);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.4;
	text-transform: uppercase;
}

.page-hero__wide-image {
	height: min(50vw, 620px);
	margin-top: 80px;
}

.page-hero__wide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.72) contrast(1.08);
}

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

.service-detail__grid {
	display: grid;
	grid-template-columns: 80px minmax(0, 1.2fr) minmax(280px, 0.58fr);
	gap: clamp(32px, 5vw, 80px);
}

.service-detail__number {
	padding-top: 8px;
	font-family: var(--serif);
	font-size: 2.3rem;
	font-style: italic;
}

.service-detail__copy h2 {
	font-size: clamp(2.9rem, 5.2vw, 5.2rem);
}

.service-detail__copy > p:not(.eyebrow) {
	max-width: 720px;
}

.service-detail__copy > p:last-of-type {
	margin-bottom: 34px;
	opacity: 0.7;
}

.service-detail__aside {
	padding: 30px;
	border: 1px solid currentColor;
	align-self: start;
}

.service-detail__aside h3 {
	margin-bottom: 28px;
	font-size: 1.25rem;
}

.service-detail__aside .check-list {
	margin: 0;
}

.about-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	gap: clamp(60px, 10vw, 150px);
}

.about-story h2 {
	font-size: clamp(3rem, 5vw, 5.2rem);
}

.prose--large {
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.prose p {
	margin-bottom: 1.5em;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 90px;
	border-top: 1px solid var(--ink);
}

.values-grid article {
	padding: 30px 40px 0 0;
	border-right: 1px solid var(--ink);
}

.values-grid article + article {
	padding-left: 40px;
}

.values-grid article:last-child {
	border-right: 0;
}

.values-grid span,
.principles__list strong {
	display: block;
	margin-bottom: 60px;
	font-size: 0.7rem;
	letter-spacing: 0.12em;
}

.values-grid h3 {
	margin-bottom: 14px;
}

.values-grid p {
	color: var(--muted);
}

.founder__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
	gap: clamp(60px, 10vw, 150px);
	align-items: center;
}

.founder__portrait {
	position: relative;
}

.founder__portrait img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	filter: grayscale(1) contrast(1.08);
}

.founder__portrait span {
	position: absolute;
	right: -24px;
	bottom: 30px;
	padding: 16px 20px;
	background: var(--lime);
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 850;
	line-height: 1.35;
	text-transform: uppercase;
	transform: rotate(-3deg);
}

.founder h2 {
	font-size: clamp(3.5rem, 6.2vw, 6.6rem);
}

.founder > .container > div:last-child > p:not(.eyebrow) {
	max-width: 630px;
}

.principles__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--ink);
	border-left: 1px solid var(--ink);
}

.principles__list > div {
	padding: clamp(30px, 4vw, 54px);
	border-right: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}

.principles__list h3 {
	font-size: clamp(1.7rem, 2.7vw, 2.7rem);
}

.principles__list p {
	max-width: 480px;
	color: var(--muted);
}

.projects--archive .project-card {
	display: block;
}

.projects--archive .project-card__image {
	min-height: 0;
	aspect-ratio: 4 / 3;
}

.projects--archive .project-card__body {
	display: block;
	padding: 26px 0 0;
	background: transparent;
}

.mini-cta__inner {
	text-align: center;
}

.mini-cta__inner h2 {
	margin-inline: auto;
}

.contact-hero {
	padding: clamp(160px, 18vw, 230px) 0 clamp(90px, 11vw, 140px);
	background: var(--ink);
	color: var(--white);
}

.contact-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.75fr);
	gap: clamp(60px, 10vw, 140px);
	align-items: start;
}

.contact-hero h1 {
	font-size: clamp(3.7rem, 7vw, 7rem);
}

.contact-hero h1 em {
	color: var(--lime);
}

.contact-hero .lead {
	max-width: 600px;
	color: rgba(255,255,255,0.65);
}

.contact-direct {
	margin: 54px 0 34px;
	border-top: 1px solid var(--line-dark);
}

.contact-direct > div {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line-dark);
}

.contact-direct span {
	color: rgba(255,255,255,0.45);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-direct a {
	text-decoration: none;
}

.contact-direct p {
	margin: 0;
}

.contact-card {
	padding: clamp(28px, 4vw, 50px);
	background: var(--paper-bright);
	color: var(--ink);
}

.contact-card h2 {
	margin-bottom: 34px;
	font-size: clamp(2.4rem, 4vw, 4rem);
}

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

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

.field {
	margin: 0;
}

.field label {
	display: block;
	margin-bottom: 7px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid var(--ink);
	border-radius: 0;
	outline: none;
	background: transparent;
	color: var(--ink);
}

.field input,
.field select {
	height: 50px;
}

.field textarea {
	padding: 13px 0;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 2px 0 var(--blue);
}

.form-privacy {
	margin: 0;
	color: var(--muted);
	font-size: 0.68rem;
	line-height: 1.5;
}

.honeypot {
	position: absolute !important;
	left: -9999px !important;
}

.form-message {
	margin-bottom: 22px;
	padding: 14px 16px;
	font-size: 0.82rem;
}

.form-message--success {
	border-left: 4px solid #38a86b;
	background: #e5f6ec;
}

.form-message--error {
	border-left: 4px solid #d23f3f;
	background: #fce9e9;
}

.legal-hero {
	padding: clamp(160px, 17vw, 220px) 0 70px;
	background: var(--ink);
	color: var(--white);
}

.legal-hero h1 {
	margin: 0;
	font-size: clamp(3.5rem, 6vw, 6rem);
}

.entry-content {
	font-size: 1.04rem;
}

.entry-content > * + * {
	margin-top: 1.25em;
}

.entry-content h2 {
	margin-top: 1.5em;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.entry-content h3 {
	margin-top: 1.5em;
	font-size: 1.45rem;
}

.entry-content a {
	color: var(--blue);
}

.project-single__hero {
	padding: clamp(150px, 17vw, 220px) 0 74px;
	background: var(--ink);
	color: var(--white);
}

.back-link {
	display: inline-block;
	margin-bottom: 70px;
	color: rgba(255,255,255,0.55);
	font-size: 0.72rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.project-single__heading {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: end;
}

.project-single__heading h1 {
	margin: 0;
}

.project-single__result {
	max-width: 260px;
	margin: 0 0 15px;
	color: var(--lime);
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-align: right;
	text-transform: uppercase;
}

.project-single__image {
	height: min(62vw, 740px);
	margin-top: 60px;
}

.project-single__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.entry-content--project .lead {
	margin-bottom: 2.2em;
	font-size: clamp(1.4rem, 2.4vw, 2rem);
}

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

.article-card {
	padding: 30px;
	border: 1px solid var(--ink);
}

.article-card h2 {
	font-size: 2rem;
}

.article-card h2 a {
	text-decoration: none;
}

.not-found {
	min-height: 100vh;
	padding: 160px 0 100px;
	background: var(--ink);
	color: var(--white);
	text-align: center;
}

.not-found__code {
	margin: 0;
	color: var(--blue);
	font-size: clamp(8rem, 24vw, 22rem);
	font-weight: 900;
	letter-spacing: -0.1em;
	line-height: 0.75;
}

.not-found h1 {
	font-size: clamp(2.6rem, 5vw, 5rem);
}

.not-found h1 em {
	color: var(--lime);
}

@media (max-width: 1050px) {
	.hero__grid {
		grid-template-columns: 1fr 0.75fr;
		gap: 52px;
	}

	.hero h1 {
		font-size: clamp(3.4rem, 6.7vw, 5.8rem);
	}

	.service-card {
		padding: 32px;
	}

	.why__grid {
		gap: 70px;
	}

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

@media (max-width: 900px) {
	:root {
		--section: 92px;
	}

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

	.primary-navigation {
		position: fixed;
		z-index: 999;
		top: 76px;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 42px var(--gutter);
		background: var(--ink);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.primary-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-navigation__list {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.primary-navigation__list li {
		border-bottom: 1px solid var(--line-dark);
	}

	.primary-navigation__list a {
		display: block;
		padding: 18px 0;
		font-size: 1.45rem;
		letter-spacing: -0.02em;
		text-transform: none;
	}

	.primary-navigation .header-cta {
		margin-top: 32px;
	}

	.menu-open .menu-toggle__icon i:first-child {
		transform: translateY(4px) rotate(45deg);
	}

	.menu-open .menu-toggle__icon i:last-child {
		transform: translateY(-4px) rotate(-45deg);
	}

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

	.hero__copy {
		max-width: 760px;
	}

	.hero__visual {
		width: min(80%, 560px);
		margin: 0 auto;
	}

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

	.service-card {
		min-height: 520px;
	}

	.service-card + .service-card {
		margin: -1px 0 0;
	}

	.why__grid,
	.faq__grid,
	.about-story__grid,
	.founder__grid,
	.contact-hero__grid {
		grid-template-columns: 1fr;
	}

	.why__intro {
		position: static;
	}

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

	.process-list li {
		border-bottom: 1px solid var(--ink);
	}

	.process-list li:nth-child(2) {
		border-right: 0;
	}

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

	.project-card--featured .project-card__image {
		min-height: 440px;
	}

	.page-hero__grid {
		grid-template-columns: 1fr;
	}

	.service-detail__grid {
		grid-template-columns: 58px 1fr;
	}

	.service-detail__aside {
		grid-column: 2;
	}

	.site-footer__top {
		grid-template-columns: 1.2fr 1fr;
	}

	.site-footer__links {
		grid-column: 2;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom > p:last-child {
		text-align: left;
	}
}

@media (max-width: 680px) {
	:root {
		--gutter: 20px;
		--section: 76px;
	}

	body {
		font-size: 16px;
	}

	h1 {
		font-size: clamp(3rem, 14vw, 4.6rem);
	}

	h2 {
		font-size: clamp(2.5rem, 12vw, 4rem);
	}

	.brand__logo {
		width: 178px;
	}

	.hero {
		padding-top: 132px;
	}

	.hero__grid {
		padding-bottom: 80px;
	}

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

	.hero__lead {
		font-size: 1.05rem;
	}

	.hero__visual {
		width: calc(100% - 22px);
	}

	.hero__badge--top {
		right: -12px;
	}

	.hero__badge--bottom {
		left: -12px;
	}

	.hero__scribble {
		display: none;
	}

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

	.section-heading {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.section-heading--compact > .text-link {
		justify-self: start;
	}

	.service-card {
		min-height: 500px;
	}

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

	.stat-row > div {
		padding: 28px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line-dark);
	}

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

	.project-card--featured {
		grid-column: auto;
	}

	.project-card--featured .project-card__image {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.project-card--featured .project-card__body {
		padding: 26px 0 0;
		background: transparent;
	}

	.process-list {
		grid-template-columns: 1fr;
	}

	.process-list li {
		display: grid;
		grid-template-columns: 42px 58px 1fr;
		gap: 14px;
		padding: 28px 0;
		border-right: 0;
	}

	.process-list__icon {
		margin: 0;
		font-size: 2rem;
	}

	.cta-panel {
		padding: 44px 26px;
	}

	.cta-panel__orb {
		opacity: 0.45;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		padding-bottom: 54px;
	}

	.site-footer__links {
		grid-column: auto;
	}

	.site-footer__bottom div {
		flex-wrap: wrap;
	}

	.page-hero {
		padding-top: 140px;
	}

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

	.page-hero__wide-image {
		height: 72vw;
		margin-top: 52px;
	}

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

	.service-detail__number {
		font-size: 1.5rem;
	}

	.service-detail__aside {
		grid-column: auto;
	}

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

	.values-grid article,
	.values-grid article + article {
		padding: 30px 0;
		border-right: 0;
		border-bottom: 1px solid var(--ink);
	}

	.values-grid span {
		margin-bottom: 26px;
	}

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

	.contact-hero {
		padding-top: 140px;
	}

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

	.project-single__heading {
		grid-template-columns: 1fr;
	}

	.project-single__result {
		text-align: left;
	}

	.project-single__image {
		height: 72vw;
	}

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

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

