:root {
	--color-bg: #f8f2e7;
	--color-surface: #fffdfa;
	--color-text: #101312;
	--color-muted: #5f5647;
	--color-brand: #a16b33;
	--color-brand-strong: #c07a34;
	--color-brand-label: #7a4a1d;
	--color-brand-label-on-dark: #d29a58;
	--color-accent: #c92424;
	--color-border: rgba(16, 19, 18, 0.12);
	--color-dark-panel: #101312;
	--color-dark-panel-soft: #171c1a;
	--shadow-soft: 0 18px 40px rgba(16, 19, 18, 0.08);
	--radius-lg: 24px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--site-width: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

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

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

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background:
		radial-gradient(circle at top center, rgba(161, 107, 51, 0.12), transparent 26%),
		linear-gradient(180deg, #f4efe6 0%, #fbf8f2 100%);
	color: var(--color-text);
}

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

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

.skip-link {
	position: absolute;
	left: 1rem;
	top: -4rem;
	z-index: 1000;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
	background: var(--color-brand);
	color: #fff;
}

.skip-link:focus {
	top: 1rem;
}

.site-shell {
	min-height: 100vh;
}

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

.site-header {
	padding: 1rem 0;
}

.site-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.9rem 1rem;
	background: rgba(255, 253, 250, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(14px);
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
	flex: 1 1 auto;
}

.site-logo img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	background: #fff;
	border: 1px solid rgba(16, 19, 18, 0.08);
}

.custom-logo-link {
	display: inline-flex;
}

.site-logo--fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #e8cca0 0%, #a16b33 68%, #6f4318 100%);
	color: #101312;
	font-family: "Outfit", sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.site-title {
	font-family: "Outfit", sans-serif;
	font-size: clamp(1rem, 3.8vw, 1.25rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	word-break: break-word;
}

.site-branding__text {
	min-width: 0;
	flex: 1 1 auto;
}

.site-tagline {
	margin: 0.15rem 0 0;
	font-size: 0.875rem;
	color: var(--color-muted);
}

.site-tagline::before {
	content: "";
	display: block;
	width: 2.4rem;
	height: 2px;
	margin-bottom: 0.35rem;
	background: linear-gradient(90deg, var(--color-brand), transparent);
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	flex: 0 0 auto;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: #fff;
	font: inherit;
	font-size: 0.95rem;
	color: var(--color-text);
	cursor: pointer;
	white-space: nowrap;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
	display: block;
	width: 1.125rem;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.menu-toggle__icon {
	position: relative;
}

.menu-toggle__icon::before {
	content: "";
	position: absolute;
	top: -0.35rem;
	left: 0;
}

.menu-toggle__icon::after {
	content: "";
	position: absolute;
	top: 0.35rem;
	left: 0;
}

.primary-navigation {
	display: none;
}

.header-cta {
	display: none;
	align-items: center;
	gap: 0.6rem;
	padding: 0.85rem 1.15rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #a16b33 0%, #c07a34 100%);
	color: #fff;
	font-weight: 700;
	box-shadow: 0 12px 24px rgba(161, 107, 51, 0.22);
}

.header-cta__arrow {
	font-size: 1rem;
}

.site-main {
	padding-bottom: 4rem;
}

.hero-section {
	padding: 1rem 0 3rem;
}

.hero-section__inner {
	display: grid;
	gap: 2rem;
	padding: 2rem;
	background: linear-gradient(135deg, #0f1413 0%, #111815 45%, #24190f 100%);
	border-radius: 0 0 40px 40px;
	color: #fff;
	box-shadow: 0 28px 60px rgba(16, 19, 18, 0.24);
}

.hero-copy h1,
.entry-title,
h2 {
	font-family: "Outfit", sans-serif;
	line-height: 1.05;
}

.hero-copy h1 {
	margin: 0 0 1rem;
	font-size: clamp(2.25rem, 6vw, 4.6rem);
	max-width: 12ch;
}

.hero-copy h1 span {
	display: block;
	color: var(--color-brand-strong);
}

.hero-copy__summary {
	max-width: 38rem;
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
	margin: 0 0 1rem;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-brand-label);
}

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

.hero-highlights {
	display: grid;
	gap: 0.85rem;
	margin-top: 2rem;
}

.hero-highlight {
	padding: 0.95rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
}

.hero-highlight strong {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.25rem;
	font-family: "Outfit", sans-serif;
	font-size: 1rem;
	font-weight: 600;
}

.hero-highlight__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 50%;
	background: rgba(192, 122, 52, 0.18);
	color: var(--color-brand-strong);
	font-size: 0.95rem;
	line-height: 1;
	box-shadow: inset 0 0 0 1px rgba(232, 204, 160, 0.18);
}

.hero-highlight__icon svg {
	width: 0.95rem;
	height: 0.95rem;
	display: block;
	fill: currentColor;
}

.hero-highlight > span {
	display: block;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.85rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
}

.button--primary {
	background: linear-gradient(135deg, #a16b33 0%, #c07a34 100%);
	color: #fff;
}

.button--secondary {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.hero-media__placeholder {
	position: relative;
	min-height: 280px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 32px;
	background: #101312;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.hero-media__placeholder picture {
	display: block;
	height: 100%;
}

.hero-media__image {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.section-block {
	padding: 3.5rem 0;
}

.entry-card {
	padding: 1.5rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
}

.error-404__card {
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}

.error-404__card .section-title::after {
	margin-left: auto;
	margin-right: auto;
}

.error-404__card .section-intro {
	margin-left: auto;
	margin-right: auto;
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9rem;
	margin-top: 2rem;
}

.entry-content {
	line-height: 1.75;
}

.post-article {
	max-width: 54rem;
	margin: 0 auto;
}

.page-article {
	max-width: 54rem;
	margin: 0 auto;
}

.post-article__header {
	display: grid;
	gap: 0.85rem;
	margin-bottom: 1.5rem;
}

.page-article__header {
	margin-bottom: 1.25rem;
}

.post-article__title {
	margin: 0;
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 0.98;
}

.post-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: center;
	color: var(--color-muted);
	font-size: 0.95rem;
	font-weight: 600;
}

.post-article__meta a,
.post-article__tags a {
	color: inherit;
}

.post-article__media {
	margin-bottom: 1.5rem;
	overflow: hidden;
	border-radius: calc(var(--radius-md) - 0.3rem);
	border: 1px solid rgba(16, 19, 18, 0.08);
	background: rgba(255, 255, 255, 0.72);
}

.post-article__media img {
	display: block;
	width: 100%;
	height: auto;
}

.page-article__media img {
	display: block;
	width: 100%;
	height: auto;
}

.post-article__content > :first-child {
	margin-top: 0;
}

.post-article__content > :last-child {
	margin-bottom: 0;
}

.post-article__footer {
	margin-top: 1.75rem;
	padding-top: 1rem;
	border-top: 1px solid var(--color-border);
}

.post-article__tags {
	margin: 0;
	line-height: 1.7;
}

.post-navigation {
	display: grid;
	gap: 1rem;
	max-width: 54rem;
	margin: 1.5rem auto 0;
}

.post-navigation__item a {
	display: block;
	color: var(--color-text);
	text-decoration: none;
	font-weight: 600;
}

.comments-area {
	max-width: 54rem;
	margin: 1.5rem auto 0;
}

.comments-title,
.comment-reply-title {
	margin-bottom: 1rem;
}

.comments-title::after,
.comment-reply-title::after {
	content: "";
	display: block;
	width: 3rem;
	height: 3px;
	margin-top: 0.9rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-brand), rgba(161, 107, 51, 0.12));
}

.comment-list,
.comment-list .children {
	list-style: none;
}

.comment-list {
	margin: 0 0 1.5rem;
	padding-left: 0;
}

.comment-list .children {
	margin-top: 1rem;
	padding-left: 1.25rem;
}

.comment-list li {
	margin-bottom: 1rem;
}

.comment-body {
	padding: 1.25rem;
	background: rgba(255, 253, 250, 0.9);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-soft);
}

.comment-meta {
	margin-bottom: 0.85rem;
}

.comment-author {
	font-size: 1rem;
}

.comment-author .avatar {
	margin-right: 0.6rem;
	border-radius: 50%;
}

.comment-metadata,
.comment-metadata a {
	color: var(--color-muted);
	font-size: 0.9rem;
	text-decoration: none;
}

.comment-content {
	line-height: 1.75;
}

.comment-content > :first-child {
	margin-top: 0;
}

.comment-content > :last-child {
	margin-bottom: 0;
}

.reply {
	margin-top: 0.85rem;
}

.reply a {
	color: var(--color-accent);
	font-weight: 700;
	text-decoration: none;
}

.comments-closed {
	color: var(--color-muted);
}

.comment-respond {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--color-border);
}

.comment-notes,
.logged-in-as {
	color: var(--color-muted);
	line-height: 1.7;
}

.comment-form {
	display: grid;
	gap: 1rem;
}

.comment-form p {
	margin: 0;
}

.comment-form label {
	display: inline-block;
	margin-bottom: 0.45rem;
	font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(16, 19, 18, 0.16);
	border-radius: var(--radius-sm);
	background: #fff;
	font: inherit;
	color: var(--color-text);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: rgba(122, 74, 29, 0.8);
	box-shadow: 0 0 0 3px rgba(161, 107, 51, 0.72);
}

.comment-form textarea {
	min-height: 11rem;
	resize: vertical;
}

.comment-form-cookies-consent {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	color: var(--color-text);
}

.comment-form-cookies-consent input {
	margin-top: 0.2rem;
}

.comment-form .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.85rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	background: linear-gradient(135deg, #a16b33 0%, #c07a34 100%);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.comment-form .submit:hover,
.comment-form .submit:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(161, 107, 51, 0.72);
	transform: translateY(-1px);
}

.section-intro {
	max-width: 42rem;
	line-height: 1.75;
	color: var(--color-muted);
}

.blog-archive__header {
	margin-bottom: 2rem;
}

.blog-grid {
	display: grid;
	gap: 2rem;
}

.blog-card {
	display: grid;
	gap: 1.5rem;
	padding: 1.9rem;
}

.blog-card__media {
	display: block;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: calc(var(--radius-md) - 0.35rem);
	border: 1px solid rgba(16, 19, 18, 0.08);
	background: rgba(255, 255, 255, 0.72);
}

.blog-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__content {
	display: grid;
	gap: 0.85rem;
}

.blog-card__meta {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--color-muted);
}

.blog-card__title {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.15rem);
	line-height: 1.15;
}

.blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.blog-card__excerpt {
	color: var(--color-text);
	line-height: 1.8;
}

.blog-card__excerpt > :first-child {
	margin-top: 0;
}

.blog-card__excerpt > :last-child {
	margin-bottom: 0;
}

.blog-card--empty {
	max-width: 48rem;
}

.blog-pagination {
	margin-top: 2rem;
}

.blog-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-pagination a,
.blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.7rem;
	min-height: 2.7rem;
	padding: 0.55rem 0.9rem;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: rgba(255, 253, 250, 0.9);
	color: var(--color-text);
	text-decoration: none;
}

.blog-pagination .current {
	background: linear-gradient(135deg, #a16b33 0%, #c07a34 100%);
	border-color: transparent;
	color: #fff;
}

.section-title {
	position: relative;
	margin: 0;
	padding-bottom: 1rem;
}

.section-title::after {
	content: "";
	display: block;
	width: 3rem;
	height: 3px;
	margin-top: 0.9rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-brand), rgba(161, 107, 51, 0.12));
}

.card-grid,
.benefit-grid,
.work-grid {
	display: grid;
	gap: 1.25rem;
	margin-top: 2rem;
}

.benefit-grid {
	margin-bottom: 0;
	padding: 0;
	list-style: none;
}

.feature-card,
.work-card {
	padding: 1.75rem;
	background: rgba(255, 253, 250, 0.9);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #a16b33 0%, #c07a34 100%);
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
}

.feature-card:hover,
.feature-card:focus-within,
.work-card:hover,
.work-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(161, 107, 51, 0.24);
	box-shadow: 0 24px 42px rgba(16, 19, 18, 0.12);
}

.feature-card h3,
.benefit-item h3,
.work-card h3 {
	margin: 0 0 0.75rem;
	font-family: "Outfit", sans-serif;
	font-size: 1.35rem;
}

.feature-card p,
.benefit-item p,
.work-card p {
	margin: 0;
	line-height: 1.7;
	color: var(--color-muted);
}

.feature-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 1rem;
	color: var(--color-accent);
	font-weight: 700;
}

.feature-card__link-icon {
	display: inline-flex;
	align-items: center;
}

.section-block--dark {
	background: linear-gradient(135deg, #0f1413 0%, #161c19 100%);
	color: #fff;
}

.section-block--dark .benefit-item p,
.section-block--dark .section-intro {
	color: rgba(255, 255, 255, 0.75);
}

.hero-section .eyebrow,
.section-block--dark .eyebrow {
	color: var(--color-brand-label-on-dark);
}

.benefit-item {
	padding: 1.25rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.section-split {
	display: grid;
	gap: 1.5rem;
	align-items: start;
}

.chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.skill-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	min-height: 2.75rem;
	padding: 0.6rem 1rem;
	border: 1px solid rgba(16, 19, 18, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	font-weight: 700;
	box-shadow: 0 10px 22px rgba(16, 19, 18, 0.04);
}

.skill-chip__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.75rem;
	height: 1.75rem;
	padding: 0 0.4rem;
	border-radius: 999px;
	background: rgba(161, 107, 51, 0.14);
	color: var(--color-brand);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
	box-shadow: inset 0 0 0 1px rgba(161, 107, 51, 0.12);
}

.skill-chip__icon svg {
	width: 1rem;
	height: 1rem;
	display: block;
	fill: currentColor;
}

.section-block--work {
	background:
		radial-gradient(circle at top right, rgba(161, 107, 51, 0.12), transparent 22%),
		linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(232, 204, 160, 0.18) 100%);
}

.work-card__label {
	margin: 0 0 0.75rem;
	color: var(--color-brand-label);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.work-card {
	background: rgba(255, 253, 250, 0.72);
	backdrop-filter: blur(10px);
}

.section-cta {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.button--outline {
	border-color: var(--color-text);
	background: rgba(255, 253, 250, 0.55);
	color: var(--color-text);
}

.projects-hero {
	padding: 0.75rem 0 1rem;
}

.projects-hero__inner {
	padding: 2rem 1.8rem;
	border: 1px solid rgba(16, 19, 18, 0.08);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(255, 253, 250, 0.94), rgba(248, 242, 231, 0.9));
	box-shadow: var(--shadow-soft);
}

.projects-hero__title {
	max-width: 100%;
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.02;
}

.projects-hero__summary {
	max-width: 38rem;
	margin: 1rem 0 0;
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--color-muted);
}

.projects-summary__intro {
	margin-bottom: 2rem;
}

.projects-placeholder-grid {
	display: grid;
	gap: 1.25rem;
	align-items: stretch;
}

.project-placeholder-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.75rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: rgba(255, 253, 250, 0.84);
	box-shadow: var(--shadow-soft);
}

.project-placeholder-card h3 {
	margin: 0 0 0.75rem;
	font-family: "Outfit", sans-serif;
	font-size: 1.5rem;
}

.project-placeholder-card p {
	margin: 0;
	line-height: 1.7;
	color: var(--color-muted);
}

.project-card--featured {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.project-card__header {
	display: grid;
	gap: 1.5rem;
	align-items: start;
	justify-items: center;
	text-align: center;
	width: min(100%, 460px);
	margin: 0 auto;
}

.project-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	border: 1px solid rgba(16, 19, 18, 0.08);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.72);
}

.project-card__media img {
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 180px;
	object-fit: contain;
}

.project-card__identity {
	display: grid;
	align-content: start;
	gap: 0.65rem;
	min-width: 0;
	justify-items: center;
	width: 100%;
}

.project-card__identity .work-card__label {
	margin: 0;
}

.project-card__identity h3 {
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: clamp(1.6rem, 2.1vw, 2.2rem);
	line-height: 1.05;
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.project-card__content {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	flex: 1 1 auto;
}

.project-card__lead {
	font-size: 1.02rem;
	color: var(--color-text);
}

.project-card__actions {
	display: flex;
	justify-content: center;
	margin-top: auto;
	padding-top: 1rem;
}

.contact-page-hero {
	padding: 1rem 0 0;
}

.contact-page-hero__inner {
	padding: 2rem;
	background: rgba(255, 253, 250, 0.84);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}

.contact-page-hero__title {
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: clamp(2.15rem, 5.4vw, 4.1rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	max-width: 16ch;
}

.contact-page-hero__summary {
	max-width: 46rem;
	margin: 1rem 0 0;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--color-muted);
}

.contact-page-grid {
	display: grid;
	gap: 1.25rem;
}

.contact-form-card,
.contact-page-aside__card {
	padding: 1.75rem;
	background: rgba(255, 253, 250, 0.88);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
}

.form-status {
	margin: 0 0 1.25rem;
	padding: 0.95rem 1rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
	line-height: 1.5;
}

.form-status.is-success {
	background: rgba(24, 122, 70, 0.12);
	border: 1px solid rgba(24, 122, 70, 0.2);
	color: #155437;
}

.form-status.is-error {
	background: rgba(201, 36, 36, 0.08);
	border: 1px solid rgba(201, 36, 36, 0.18);
	color: #8c2020;
}

.contact-form {
	display: grid;
	gap: 1rem;
}

.contact-form__grid {
	display: grid;
	gap: 1rem;
}

.contact-form__field {
	display: grid;
	gap: 0.45rem;
}

.contact-form__field label {
	font-weight: 700;
}

.contact-form__field input,
.contact-form__field textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(16, 19, 18, 0.16);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.92);
	font: inherit;
	color: var(--color-text);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
	outline: none;
	border-color: rgba(122, 74, 29, 0.8);
	box-shadow: 0 0 0 3px rgba(161, 107, 51, 0.72);
}

.contact-form__field textarea {
	resize: vertical;
	min-height: 11rem;
}

.contact-form__field--hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.contact-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	align-items: center;
}

.contact-panel {
	display: grid;
	gap: 1.5rem;
	padding: 2rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

.button--secondary-dark {
	border-color: var(--color-text);
	color: var(--color-text);
}

.site-footer {
	padding: 0 0 1.25rem;
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.6rem 0 0;
	border-top: 1px solid var(--color-border);
}

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

.menu--footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.6rem;
	font-size: 0.9rem;
	line-height: 1.4;
}

.menu--footer,
.menu--footer ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.menu--footer li {
	display: inline-flex;
	align-items: center;
}

.menu--footer li:not(:last-child)::after {
	content: "|";
	margin-left: 0.6rem;
	color: rgba(16, 19, 18, 0.35);
}

.menu-open {
	overflow: hidden;
}

.primary-navigation.is-open {
	display: block;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 1rem;
	right: 1rem;
	z-index: 50;
}

.primary-navigation.is-open .menu--primary {
	display: grid;
	gap: 0.5rem;
	padding: 1rem;
	background: rgba(255, 253, 250, 0.98);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
}

.menu--primary a,
.menu--footer a {
	font-weight: 700;
}

.menu--primary a {
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	padding: 0.65rem 0.85rem;
	border-radius: 999px;
}

.menu--primary a:hover,
.menu--primary a:focus-visible,
.menu--footer a:hover,
.menu--footer a:focus-visible,
.site-title:hover,
.site-title:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.feature-card__link:hover,
.feature-card__link:focus-visible {
	outline: none;
	color: inherit;
	box-shadow: 0 0 0 3px rgba(161, 107, 51, 0.72);
}

.menu--primary .current-menu-item > a,
.menu--primary .current_page_item > a {
	color: var(--color-brand);
	background: rgba(161, 107, 51, 0.08);
}

@media (max-width: 599px) {
	.site-logo img,
	.site-logo--fallback {
		width: 46px;
		height: 46px;
	}

	.site-tagline {
		display: none;
	}

	.menu-toggle {
		padding: 0.75rem;
	}

	.menu-toggle__label {
		display: none;
	}
}

@media (min-width: 900px) {
	.contact-page-grid {
		grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
		align-items: start;
	}

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

	.hero-section {
		padding: 0.75rem 0 1.5rem;
	}

	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		display: block;
	}

	.menu--primary {
		display: flex;
		align-items: center;
		gap: 1.5rem;
	}

	.menu--primary a {
		min-height: auto;
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		position: relative;
	}

	.menu--primary a::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -0.6rem;
		height: 2px;
		border-radius: 999px;
		background: var(--color-accent);
		opacity: 0;
		transform: scaleX(0.4);
		transition: opacity 160ms ease, transform 160ms ease;
	}

	.menu--primary a:hover::after,
	.menu--primary a:focus-visible::after,
	.menu--primary .current-menu-item > a::after,
	.menu--primary .current_page_item > a::after {
		opacity: 1;
		transform: scaleX(1);
	}

	.header-cta {
		display: inline-flex;
	}

	.hero-section__inner {
		grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
		align-items: center;
		gap: 1.25rem;
		padding: 2rem 2.25rem 1.35rem;
	}

	.hero-media__placeholder {
		min-height: 390px;
	}

	.hero-media__image {
		min-height: 390px;
	}

	.hero-highlights {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.75rem;
		margin-top: 1rem;
	}

	.hero-copy h1 {
		max-width: 14ch;
		font-size: clamp(3rem, 4.15vw, 4.1rem);
		line-height: 0.98;
		margin-bottom: 0.55rem;
	}

	.hero-copy__summary {
		max-width: 30rem;
		font-size: 0.94rem;
		line-height: 1.5;
	}

	.hero-actions {
		margin-top: 1rem;
	}

	.hero-highlight {
		padding: 0.68rem 0.75rem;
	}

	.hero-highlight strong {
		font-size: 0.88rem;
	}

	.hero-highlight > span {
		font-size: 0.78rem;
		line-height: 1.25;
	}

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

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

	.blog-card {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
		align-items: center;
	}

	.blog-card:not(.has-post-thumbnail) {
		grid-template-columns: 1fr;
	}

	.blog-card__media {
		height: 100%;
		min-height: 220px;
		aspect-ratio: 16 / 10;
	}

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

	.post-navigation__item--next {
		text-align: right;
	}

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

	.project-card--featured {
		align-items: start;
	}

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

	.benefit-item {
		padding: 0 1.25rem;
		border-top: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.14);
	}

	.benefit-item:first-child {
		padding-left: 0;
		border-left: 0;
	}

	.section-split,
	.contact-panel,
	.work-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-panel {
		align-items: center;
	}

	.contact-actions {
		justify-content: flex-end;
		align-self: center;
	}

	.contact-actions .button {
		flex: 0 0 auto;
	}
}

@media (max-width: 599px) {
	.site-main {
		padding-bottom: 1rem;
	}

	.contact-panel {
		margin-bottom: 0;
		padding-bottom: 1rem;
	}

	.site-footer__inner {
		justify-content: center;
		text-align: center;
		padding-top: 0.9rem;
	}

	.site-footer__copy {
		margin: 0;
		width: 100%;
	}

	.menu--footer {
		justify-content: center;
		gap: 0.2rem 0.35rem;
		font-size: 0.8rem;
	}

	.menu--footer li:not(:last-child)::after {
		margin-left: 0.35rem;
	}

	.menu--footer a {
		letter-spacing: -0.01em;
	}
}
