:root {
	--bg: #f4efe6;
	--panel: #fffaf2;
	--panel-strong: #f1e1c8;
	--text: #1e1d1a;
	--muted: #655f55;
	--line: rgba(30, 29, 26, 0.12);
	--brand: #bb5a2c;
	--brand-dark: #8f411d;
	--accent: #21453f;
	--accent-soft: #2f5a52;
	--warm: #f1e1c8;
	--shadow: 0 24px 48px rgba(29, 25, 18, 0.08);
	--radius: 28px;
	--shell: 1120px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	color: var(--text);
	background:
		radial-gradient(circle at top right, rgba(187, 90, 44, 0.12), transparent 28%),
		linear-gradient(180deg, #fcf8f1 0%, var(--bg) 100%);
	line-height: 1.6;
}

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

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

input,
textarea,
button {
	font: inherit;
}

.site-shell {
	width: min(calc(100% - 2rem), var(--shell));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(12px);
	background: rgba(252, 248, 241, 0.84);
	border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 1rem 0;
}

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

.brand__eyebrow,
.section-kicker,
.post-card__meta {
	font-family: "Arial Narrow", Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.75rem;
	color: var(--muted);
}

.brand__title {
	font-size: 0.9rem;
}

.site-main {
	overflow: clip;
}

.site-nav__menu,
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav__menu a,
.footer-menu a {
	padding-bottom: 0.15rem;
	border-bottom: 1px solid transparent;
}

.site-nav__menu a:hover,
.footer-menu a:hover {
	border-color: currentColor;
}

.hero,
.page-hero {
	padding: 5rem 0 2rem;
}

.about-hero {
	background:
		radial-gradient(circle at top right, rgba(187, 90, 44, 0.12), transparent 24%),
		linear-gradient(180deg, #fbf6ef 0%, #f2e4d0 100%);
}

.about-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 2rem;
	align-items: center;
}

.about-hero__card,
.about-approach__card {
	padding: 2rem;
	border-radius: 30px;
	background: rgba(255, 250, 244, 0.92);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.about-hero__eyebrow,
.about-approach__label {
	margin-bottom: 1rem;
	font-family: "Arial Narrow", Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: var(--brand);
}

.about-hero__list,
.about-bullet-list {
	margin: 0;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.8rem;
}

.about-section-heading {
	max-width: 60rem;
}

.about-section-heading h2,
.about-hero h1,
.section-contact-cta .contact-cta__content h2 {
	max-width: none;
}

.about-section-intro,
.about-competence-summary {
	max-width: 64ch;
}

.about-intro,
.about-work,
.about-approach {
	display: grid;
	gap: 1.8rem;
}

.about-intro__body {
	max-width: 74ch;
	font-size: 1.05rem;
}

.about-competence-section {
	background:
		radial-gradient(circle at top left, rgba(33, 69, 63, 0.1), transparent 28%),
		#fbf7f0;
}

.about-competence-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
	margin-bottom: 1.5rem;
}

.about-competence-grid .point-card h3 {
	margin-bottom: 0;
}

.about-approach__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: 1.5rem;
	align-items: start;
}

.contact-hero {
	background:
		radial-gradient(circle at top right, rgba(69, 106, 95, 0.14), transparent 24%),
		linear-gradient(180deg, #fbf6ef 0%, #f1e1c8 100%);
}

.contact-hero__grid,
.contact-page__layout,
.single-post__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 2rem;
	align-items: start;
}

.contact-hero__card,
.contact-page__info,
.single-post__sidebar {
	padding: 2rem;
	border-radius: 30px;
	background: rgba(255, 250, 244, 0.92);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.contact-hero__eyebrow,
.contact-form-card__eyebrow,
.contact-page__label,
.single-post__sidebar-label {
	margin-bottom: 1rem;
	font-family: "Arial Narrow", Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: var(--brand);
}

.contact-hero__list,
.contact-page__list {
	margin: 0;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.75rem;
}

.contact-page__content {
	display: grid;
	gap: 1.5rem;
}

.contact-page__prose,
.single-post__content {
	max-width: none;
}

.contact-form-card h2,
.blog-listing__heading h2,
.single-post__sidebar h2,
.blog-post-card__title,
.blog-hero__content h1 {
	max-width: none;
}

.contact-form-card__intro {
	color: var(--muted);
}

.contact-form-placeholder {
	padding: 1.25rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px dashed rgba(30, 29, 26, 0.18);
}

.contact-form-placeholder p:last-child {
	margin-bottom: 0;
}

.contact-form-placeholder pre {
	margin: 1rem 0;
	padding: 0.95rem 1rem;
	border-radius: 16px;
	background: #fffdf8;
	border: 1px solid rgba(30, 29, 26, 0.08);
	overflow-x: auto;
}

.blog-hero {
	background:
		radial-gradient(circle at top right, rgba(187, 90, 44, 0.12), transparent 24%),
		linear-gradient(180deg, #fbf6ef 0%, #efe2cf 100%);
}

.blog-hero__content {
	max-width: 64rem;
}

.blog-listing__heading {
	max-width: none;
}

.blog-post-grid {
	align-items: stretch;
}

.blog-post-card {
	display: flex;
	flex-direction: column;
	background: rgba(255, 250, 244, 0.92);
	border-radius: 30px;
}

.blog-post-card p {
	color: var(--muted);
}

.blog-post-card__title {
	margin-bottom: 1rem;
}

.single-post__content {
	padding: 2rem;
	border-radius: 30px;
	background: rgba(255, 250, 244, 0.92);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.single-post__sidebar {
	position: sticky;
	top: 6rem;
}

.landing-hero {
	padding: 4.5rem 0 5rem;
	background:
		radial-gradient(circle at top right, rgba(241, 225, 200, 0.22), transparent 24%),
		linear-gradient(140deg, #465342 0%, #314236 55%, #27372d 100%);
	color: #f6f1e5;
}

.landing-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 2rem;
	align-items: center;
}

.landing-hero__title {
	max-width: 10ch;
}

.section-kicker-light {
	color: rgba(246, 241, 229, 0.72);
}

.landing-hero__emphasis {
	display: inline-flex;
	align-items: center;
	margin: 0 0 1.25rem;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: rgba(241, 225, 200, 0.14);
	border: 1px solid rgba(241, 225, 200, 0.22);
	color: var(--warm);
	font-family: "Arial Narrow", Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.78rem;
}

.landing-hero__lead {
	max-width: 54ch;
	font-size: 1.08rem;
	color: rgba(246, 241, 229, 0.78);
}

.landing-hero__visual {
	display: flex;
	justify-content: center;
}

.landing-hero__panel {
	position: relative;
	width: min(100%, 460px);
	min-height: 530px;
	padding: 1.5rem;
	border-radius: 40px;
	background:
		linear-gradient(180deg, rgba(255, 251, 245, 0.1), rgba(255, 251, 245, 0.03)),
		linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(241, 225, 200, 0.16);
	box-shadow: 0 32px 90px rgba(11, 18, 14, 0.35);
	overflow: hidden;
}

.landing-hero__badge {
	position: relative;
	z-index: 2;
	display: inline-flex;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.landing-hero__shape {
	position: absolute;
	border-radius: 999px;
	filter: blur(1px);
}

.landing-hero__shape--one {
	right: -5%;
	top: 12%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 196, 132, 0.85), rgba(187, 90, 44, 0.05) 72%);
}

.landing-hero__shape--two {
	left: 4%;
	bottom: 14%;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03) 70%);
}

.landing-hero__summary {
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 2;
	display: grid;
	gap: 0.75rem;
}

.landing-hero__summary p {
	margin: 0;
	padding: 0.95rem 1rem;
	border-radius: 20px;
	background: rgba(255, 251, 245, 0.1);
	border: 1px solid rgba(255, 251, 245, 0.14);
	backdrop-filter: blur(12px);
}

.landing-hero__summary-button {
	width: 100%;
	text-align: center;
}

.hero__grid,
.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 2rem;
	align-items: center;
}

h1,
h2,
h3 {
	font-weight: 500;
	line-height: 1.05;
	margin: 0 0 1rem;
}

h1 {
	font-size: clamp(3rem, 6vw, 5.75rem);
	max-width: 12ch;
}

h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	max-width: 14ch;
}

h3 {
	font-size: 1.4rem;
}

p {
	margin: 0 0 1rem;
}

.hero__lead {
	max-width: 56ch;
	font-size: 1.1rem;
	color: var(--muted);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.35rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
	background: var(--brand);
	color: #fff8f0;
	border-color: var(--brand);
}

.button-primary:hover {
	background: var(--brand-dark);
}

.button-secondary {
	background: transparent;
}

.button-secondary-light {
	color: #f6f1e5;
	border-color: rgba(246, 241, 229, 0.22);
}

.hero-card,
.card,
.stat-card,
.form-card,
.post-card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-card,
.form-card {
	padding: 2rem;
}

.hero-card__label {
	font-size: 0.95rem;
	color: var(--muted);
}

.feature-list {
	margin: 1rem 0 0;
	padding-left: 1.2rem;
}

.section {
	padding: 2rem 0 4rem;
}

.section-accent {
	background: linear-gradient(180deg, rgba(33, 69, 63, 0.94), rgba(22, 47, 43, 0.98));
	color: #f7f1e5;
}

.section-soft {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
		linear-gradient(180deg, #f6efe5 0%, #efe2cf 100%);
}

.explainer {
	display: grid;
	gap: 1.8rem;
}

.explainer__body {
	max-width: 72ch;
	font-size: 1.05rem;
}

.explainer__points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.point-card {
	padding: 1.45rem;
	background: rgba(255, 250, 242, 0.8);
	border: 1px solid rgba(30, 29, 26, 0.08);
	border-radius: 24px;
	box-shadow: var(--shadow);
}

.section-comparison {
	background:
		radial-gradient(circle at top left, rgba(33, 69, 63, 0.14), transparent 28%),
		#fbf7f0;
}

.section-contact-cta {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
		linear-gradient(180deg, #f2e4d0 0%, #f8f1e8 100%);
}

.contact-cta {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: 1.5rem;
	align-items: center;
}

.contact-cta__content p:not(.section-kicker) {
	max-width: 56ch;
	font-size: 1.05rem;
}

.contact-cta__card {
	padding: 2rem;
	border-radius: 30px;
	background: linear-gradient(180deg, #fffaf1, #fff4e4);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.contact-cta__label {
	margin-bottom: 1rem;
	font-family: "Arial Narrow", Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: var(--muted);
}

.contact-cta__list {
	margin: 0;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.7rem;
}

.section-blog-slider {
	background:
		radial-gradient(circle at top left, rgba(187, 90, 44, 0.08), transparent 26%),
		linear-gradient(180deg, #fffaf3 0%, #f5eadb 100%);
}

.section-seo-map {
	background:
		radial-gradient(circle at top right, rgba(33, 69, 63, 0.08), transparent 24%),
		linear-gradient(180deg, #fff9f1 0%, #efe2cf 100%);
}

.seo-map__heading {
	max-width: 60rem;
}

.seo-map__heading h2 {
	max-width: none;
}

.seo-map__image-wrap {
	margin-bottom: 2rem;
	padding: 1.5rem;
	border-radius: 32px;
	background: rgba(255, 252, 246, 0.88);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.seo-map__image {
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
}

.seo-map__content {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.seo-map__group {
	padding: 1.6rem;
	border-radius: 28px;
	background: rgba(255, 250, 244, 0.9);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.seo-map__group h3 {
	margin-bottom: 1rem;
}

.seo-map__list {
	margin: 0;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.65rem;
}

.section-logo-marquee {
	background:
		radial-gradient(circle at top left, rgba(33, 69, 63, 0.1), transparent 24%),
		linear-gradient(180deg, #f7efe4 0%, #fffaf4 100%);
	padding-bottom: 3rem;
}

.logo-marquee__heading {
	max-width: 58rem;
	margin-bottom: 2.5rem;
}

.logo-marquee__intro {
	max-width: 60ch;
	margin-bottom: 0;
}

.logo-marquee {
	position: relative;
	overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	width: 7rem;
	pointer-events: none;
}

.logo-marquee::before {
	left: 0;
	background: linear-gradient(90deg, #fff9f3 0%, rgba(255, 249, 243, 0) 100%);
}

.logo-marquee::after {
	right: 0;
	background: linear-gradient(270deg, #fff9f3 0%, rgba(255, 249, 243, 0) 100%);
}

.logo-marquee__track {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	width: max-content;
	animation: logo-marquee-scroll 56s linear infinite;
}

.logo-marquee__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 12rem;
	height: 6.25rem;
	padding: 1rem 1.5rem;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.logo-marquee__image {
	display: block;
	max-width: 100%;
	max-height: 3.6rem;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: saturate(0.98);
}

@keyframes logo-marquee-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 0.625rem));
	}
}

.blog-slider__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
}

.blog-slider__intro {
	max-width: 58ch;
	margin-bottom: 0;
}

.blog-slider__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
}

.blog-slider__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 6.25rem;
	padding: 0.9rem 1.2rem;
	border-radius: 999px;
	border: 1px solid rgba(30, 29, 26, 0.12);
	background: rgba(255, 255, 255, 0.72);
	color: var(--text);
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.blog-slider__nav:hover:not(:disabled) {
	transform: translateY(-1px);
	background: #fff;
}

.blog-slider__nav:disabled {
	opacity: 0.45;
	cursor: default;
}

.blog-slider {
	overflow: hidden;
}

.blog-slider__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(280px, calc((100% - 1.5rem) / 2));
	gap: 1.5rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.blog-slider__track::-webkit-scrollbar {
	display: none;
}

.blog-slider__card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1.75rem;
	border-radius: 30px;
	background: rgba(255, 250, 244, 0.9);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
	scroll-snap-align: start;
}

.blog-slider__title {
	margin-bottom: 0.85rem;
}

.blog-slider__description {
	margin-bottom: 1.5rem;
	color: var(--muted);
}

.blog-slider__link {
	margin-top: auto;
	font-family: "Arial Narrow", Arial, sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.78rem;
	color: var(--brand);
}

.section-faq {
	background:
		radial-gradient(circle at top right, rgba(187, 90, 44, 0.08), transparent 24%),
		linear-gradient(180deg, #fff9f1 0%, #f3e7d7 100%);
}

.section-process {
	background:
		radial-gradient(circle at top left, rgba(33, 69, 63, 0.1), transparent 28%),
		linear-gradient(180deg, #f7efe4 0%, #fffaf4 100%);
}

.section-calculator {
	background:
		radial-gradient(circle at top right, rgba(69, 106, 95, 0.12), transparent 28%),
		linear-gradient(180deg, #f3ebe0 0%, #fbf6ef 100%);
}

.calculator-heading {
	max-width: 52rem;
}

.calculator-card {
	padding: 2rem;
	border-radius: 32px;
	background: rgba(255, 252, 246, 0.94);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.calculator-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.calculator-field {
	display: grid;
	gap: 0.5rem;
}

.calculator-field label {
	font-size: 0.95rem;
	font-weight: 700;
}

.calculator-field__controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 10rem;
	gap: 0.75rem;
}

.calculator-field input,
.calculator-field select {
	width: 100%;
	min-height: 3.25rem;
	padding: 0.85rem 1rem;
	border-radius: 16px;
	border: 1px solid rgba(30, 29, 26, 0.12);
	background: #fffdf8;
	color: var(--text);
	font: inherit;
}

.calculator-field input:focus,
.calculator-field select:focus {
	outline: 2px solid rgba(69, 106, 95, 0.24);
	outline-offset: 1px;
}

.calculator-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
	margin-top: 1.75rem;
}

.calculator-result {
	display: grid;
	gap: 0.25rem;
	padding: 1rem 1.2rem;
	border-radius: 20px;
	background: #f4ede1;
	min-width: min(100%, 24rem);
}

.calculator-result__label,
.calculator-result__value {
	margin: 0;
}

.calculator-result__label {
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.calculator-result__value {
	font-size: 1.35rem;
	font-weight: 700;
}

.calculator-result.is-yes {
	background: rgba(69, 106, 95, 0.14);
}

.calculator-result.is-no {
	background: rgba(187, 90, 44, 0.12);
}

.process-heading {
	max-width: 52rem;
}

.process-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	max-width: 58rem;
	margin: 0 auto;
}

.process-step {
	position: relative;
	padding: 1.6rem;
	border-radius: 28px;
	background: rgba(255, 252, 246, 0.92);
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.process-step:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -2rem;
	transform: translateX(-50%);
	width: 2px;
	height: 1.5rem;
	background: rgba(187, 90, 44, 0.28);
}

.process-step:not(:last-child)::after {
	content: "↓";
	position: absolute;
	left: 50%;
	bottom: -3rem;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: var(--brand);
	color: #fff8f0;
	font-size: 1.1rem;
	line-height: 1;
	box-shadow: 0 16px 32px rgba(187, 90, 44, 0.18);
}

.process-step__number {
	margin-bottom: 0.85rem;
	font-family: "Arial Narrow", Arial, sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brand);
}

.process-step p:last-child {
	margin-bottom: 0;
	color: var(--muted);
}

.process-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
	justify-content: center;
}

.faq-heading {
	max-width: 54rem;
}

.faq-list {
	display: grid;
	gap: 1rem;
}

.faq-item {
	border: 1px solid rgba(30, 29, 26, 0.08);
	border-radius: 28px;
	background: rgba(255, 252, 246, 0.9);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.4rem 1.5rem;
	border: 0;
	background: transparent;
	color: var(--text);
	text-align: left;
	cursor: pointer;
}

.faq-question span {
	font-size: 1.15rem;
	line-height: 1.35;
}

.faq-question::after {
	content: "+";
	flex: 0 0 auto;
	font-size: 1.8rem;
	line-height: 1;
	color: var(--brand);
	transition: transform 160ms ease;
}

.faq-item.is-open .faq-question::after {
	transform: rotate(45deg);
}

.faq-answer {
	display: none;
	padding: 0 1.5rem 1.5rem;
	max-width: 78ch;
	color: var(--muted);
}

.faq-item.is-open .faq-answer {
	display: block;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.comparison-heading {
	max-width: 60rem;
}

.comparison-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.comparison-card {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	border-radius: 32px;
	background: #fff9f1;
	border: 1px solid rgba(30, 29, 26, 0.08);
	box-shadow: var(--shadow);
}

.comparison-card-accent {
	background: linear-gradient(180deg, rgba(33, 69, 63, 0.98), rgba(27, 56, 51, 1));
	color: #f7f1e5;
}

.comparison-card__eyebrow {
	margin-bottom: 0.8rem;
	font-family: "Arial Narrow", Arial, sans-serif;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.75rem;
	color: var(--muted);
}

.comparison-card-accent .comparison-card__eyebrow {
	color: rgba(247, 241, 229, 0.7);
}

.comparison-list {
	margin: 0 0 1rem;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.75rem;
}

.comparison-card__button {
	width: 100%;
	margin-top: auto;
	text-align: center;
}

.section-heading {
	margin-bottom: 2rem;
}

.card-grid,
.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.card,
.post-card {
	padding: 1.6rem;
}

.stat-stack {
	display: grid;
	gap: 1rem;
}

.stat-card strong {
	display: block;
	font-size: 3rem;
	line-height: 1;
	padding: 1.5rem 1.5rem 0.35rem;
}

.stat-card span {
	display: block;
	padding: 0 1.5rem 1.5rem;
	color: rgba(247, 241, 229, 0.78);
}

.prose {
	max-width: 760px;
}

.prose > * {
	max-width: 100%;
}

.form-field {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 1rem;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	border-radius: 18px;
	border: 1px solid var(--line);
	background: #fff;
}

.form-notice {
	padding: 0.85rem 1rem;
	border-radius: 16px;
	margin-bottom: 1rem;
}

.form-notice-success {
	background: rgba(33, 69, 63, 0.12);
	color: var(--accent);
}

.form-notice-error {
	background: rgba(187, 90, 44, 0.12);
	color: var(--brand-dark);
}

.site-footer {
	border-top: 1px solid var(--line);
	padding: 1rem 0 2rem;
}

.site-footer__title {
	font-size: 1rem;
	margin-bottom: 0.2rem;
}

.site-footer__text {
	color: var(--muted);
	margin: 0;
}

@media (max-width: 840px) {
	.site-header__inner,
	.site-footer__inner,
	.hero__grid,
	.split-layout,
	.card-grid,
	.post-grid,
	.landing-hero__grid,
	.about-hero__grid,
	.contact-hero__grid,
	.contact-page__layout,
	.single-post__layout,
	.seo-map__content,
	.about-competence-grid,
	.about-approach__layout,
	.explainer__points,
	.comparison-grid,
	.contact-cta,
	.calculator-grid,
	.process-grid {
		grid-template-columns: 1fr;
		display: grid;
	}

	.calculator-field__controls {
		grid-template-columns: 1fr;
	}

	.site-header__inner,
	.site-footer__inner {
		justify-content: initial;
	}

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

	.landing-hero__panel {
		min-height: 420px;
	}

	.blog-slider__heading,
	.blog-slider__actions {
		align-items: flex-start;
		justify-content: flex-start;
	}

	.logo-marquee::before,
	.logo-marquee::after {
		width: 3rem;
	}

	.logo-marquee__item {
		min-width: 10rem;
		height: 5.5rem;
		padding: 0.85rem 1.1rem;
	}

	.blog-slider__track {
		grid-auto-columns: minmax(260px, 88%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.logo-marquee__track {
		animation: none;
	}
}
