:root {
	--ink: #202925;
	--muted: #606963;
	--sage: #6b7c59;
	--sage-light: #e8eee2;
	--paper: #ffffff;
	--soft: #f5f7f4;
	--border: #dce1da;
	--max-width: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.65;
}

a {
	color: inherit;
}

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

/* Header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(10px);
}

.header-inner {
	width: min(var(--max-width), calc(100% - 40px));
	min-height: 108px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 18px;
	text-decoration: none;
}

.brand-icon {
	width: 88px;
	height: 88px;
	object-fit: contain;
}

.brand-copy strong {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.55rem, 2.4vw, 2.3rem);
	font-weight: 600;
	line-height: 1.1;
}

.brand-copy span {
	display: block;
	margin-top: 6px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

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

.site-nav a {
	position: relative;
	padding: 18px 0;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 700;
	white-space: nowrap;
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
	height: 3px;
	background: var(--sage);
	transform: scaleX(0);
	transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
	transform: scaleX(1);
}

.site-nav a.active {
	color: var(--sage);
}

/* Hero */

.hero {
	position: relative;
	min-height: 500px;
	display: grid;
	align-items: center;
	color: #ffffff;
	isolation: isolate;

	background:
		linear-gradient(
			90deg,
			rgba(18, 22, 19, 0.86),
			rgba(18, 22, 19, 0.28)
		),
		url("../images/mine_landscape.jpeg") center / cover no-repeat;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.03),
		rgba(0, 0, 0, 0.18)
	);
}

.hero-inner {
	width: min(var(--max-width), calc(100% - 40px));
	margin: 0 auto;
	padding: 90px 0;
}

.hero h1 {
	margin: 0 0 20px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3rem, 7vw, 5.1rem);
	font-weight: 500;
	line-height: 1.03;
}

.hero-accent {
	width: 105px;
	height: 4px;
	margin-bottom: 24px;
	background: var(--sage);
}

.hero p {
	max-width: 700px;
	margin: 0;
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	line-height: 1.55;
}

/* Page sections */

.section {
	width: min(var(--max-width), calc(100% - 40px));
	margin: 0 auto;
	padding: 86px 0;
}

.section-heading {
	max-width: 850px;
	margin-bottom: 44px;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--sage);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.section-heading h2 {
	margin: 0 0 16px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.15rem);
	line-height: 1.15;
}

.section-heading p {
	margin: 0;
	color: var(--muted);
	font-size: 1.08rem;
}

/* Service cards */

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

.card {
	display: flex;
	min-height: 315px;
	flex-direction: column;
	padding: 34px;
	background: var(--soft);
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(29, 41, 34, 0.06);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(29, 41, 34, 0.11);
}

.card::before {
	content: "";
	width: 64px;
	height: 4px;
	margin-bottom: 24px;
	background: var(--sage);
	border-radius: 999px;
}

.card h3 {
	margin: 0 0 15px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.55rem;
	line-height: 1.25;
}

.card p {
	flex-grow: 1;
	margin: 0 0 25px;
	color: var(--muted);
}

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

.tag {
	display: inline-block;
	padding: 7px 12px;
	color: #4b5a3f;
	background: var(--sage-light);
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 800;
}

/* Call to action */

.cta {
	background: var(--ink);
	color: #ffffff;
}

.cta-inner {
	width: min(var(--max-width), calc(100% - 40px));
	margin: 0 auto;
	padding: 70px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.cta h2 {
	margin: 0 0 10px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3rem);
}

.cta p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.button {
	display: inline-block;
	padding: 14px 23px;
	color: #ffffff;
	background: var(--sage);
	border-radius: 4px;
	text-decoration: none;
	font-weight: 800;
	white-space: nowrap;
}

/* Footer */

.site-footer {
	background: #f2f4f1;
	border-top: 1px solid var(--border);
}

.footer-inner {
	width: min(var(--max-width), calc(100% - 40px));
	margin: 0 auto;
	padding: 44px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.footer-inner h3 {
	margin: 0 0 8px;
	font-size: 0.8rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-inner p {
	margin: 0;
	color: var(--muted);
}

.footer-bottom {
	padding: 20px;
	text-align: center;
	color: var(--muted);
	border-top: 1px solid var(--border);
	font-size: 0.86rem;
}

/* Responsive */

@media screen and (max-width: 940px) {
	.header-inner {
		padding: 18px 0;
		align-items: flex-start;
		flex-direction: column;
	}

	.site-nav {
		width: 100%;
		gap: 22px;
		overflow-x: auto;
	}

	.brand-icon {
		width: 72px;
		height: 72px;
	}

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

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

	.cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media screen and (max-width: 560px) {
	.header-inner,
	.hero-inner,
	.section,
	.cta-inner,
	.footer-inner {
		width: min(calc(100% - 26px), var(--max-width));
	}

	.brand-copy span {
		font-size: 0.67rem;
	}

	.hero {
		min-height: 430px;
	}

	.card {
		min-height: 0;
		padding: 26px;
	}
}

/* Homepage hero additions */

.hero-eyebrow {
	color: #dce5d5;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.button-secondary {
	color: #ffffff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.7);
}

.button-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
}


/* Card category */

.card-category {
	flex-grow: 0 !important;
	margin: 0 0 8px !important;
	color: var(--sage) !important;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}


/* Soft background section */

.section-soft {
	width: 100%;
	max-width: none;
	padding-left: max(20px, calc((100% - var(--max-width)) / 2));
	padding-right: max(20px, calc((100% - var(--max-width)) / 2));
	background: var(--soft);
}


/* About preview */

.about-preview {
	width: min(var(--max-width), 100%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	align-items: center;
	gap: 64px;
}

.about-preview-content h2 {
	margin: 0 0 20px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.15;
}

.about-preview-content p {
	color: var(--muted);
}

.about-preview-image img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
	box-shadow: 0 16px 38px rgba(29, 41, 34, 0.13);
}

.text-link {
	display: inline-block;
	margin-top: 10px;
	color: var(--sage);
	font-weight: 800;
	text-decoration: none;
}

.text-link:hover {
	text-decoration: underline;
}


@media screen and (max-width: 800px) {

	.about-preview {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.about-preview-image {
    display: flex;
    justify-content: center;
}

.about-preview-image img {
    width: 75%;
    max-width: 340px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(29, 41, 34, 0.13);
}

}

/* About page */

.about-hero {
	min-height: 330px;
}

.about-hero .hero-inner {
	padding-top: 68px;
	padding-bottom: 68px;
}

.about-page {
	padding-top: 72px;
	padding-bottom: 82px;
}

.about-introduction {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	align-items: center;
	gap: 58px;
	max-width: 1040px;
	margin: 0 auto 82px;
	padding-bottom: 76px;
	border-bottom: 1px solid var(--border);
}

.about-portrait {
	display: flex;
	justify-content: center;
}

.about-portrait img {
	width: 100%;
	max-width: 265px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	box-shadow: 0 14px 32px rgba(29, 41, 34, 0.12);
}

.about-introduction-copy p {
	margin-top: 0;
	margin-bottom: 22px;
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.8;
}

.about-introduction-copy p:last-child {
	margin-bottom: 0;
}

.about-reading-column {
	max-width: 820px;
	margin: 0 auto;
}

.about-text-block {
	padding: 0 0 62px;
	margin-bottom: 62px;
	border-bottom: 1px solid var(--border);
}

.about-text-block:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.about-text-block h2 {
	margin: 0 0 24px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.9rem, 3.5vw, 2.6rem);
	line-height: 1.2;
}

.about-text-block p {
	margin-top: 0;
	margin-bottom: 20px;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.8;
}

.about-text-block p:last-child {
	margin-bottom: 0;
}

.about-expertise-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--border);
}

.about-expertise-list li {
	position: relative;
	padding: 18px 20px 18px 36px;
	border-bottom: 1px solid var(--border);
	font-size: 1.05rem;
	font-weight: 700;
}

.about-expertise-list li::before {
	content: "";
	position: absolute;
	top: 26px;
	left: 6px;
	width: 10px;
	height: 10px;
	background: var(--sage);
	border-radius: 50%;
}

@media screen and (max-width: 760px) {

	.about-introduction {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	align-items: start;
	gap: 64px;
	max-width: 980px;
	margin: 0 auto 82px;
	padding-bottom: 76px;
	border-bottom: 1px solid var(--border);
}
	.about-introduction-copy {
	max-width: 700px;
}

	.about-portrait {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
	.about-portrait {
	align-self: start;
	padding-top: 8px;
}

.about-portrait img {
	width: 100%;
	max-width: 230px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(29, 41, 34, 0.12);
}

}

@media screen and (max-width: 560px) {

	/* About page banner */

.about-banner {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 15% 30%,
			rgba(255, 255, 255, 0.7),
			transparent 38%
		),
		radial-gradient(
			circle at 82% 22%,
			rgba(108, 126, 90, 0.28),
			transparent 42%
		),
		radial-gradient(
			circle at 65% 90%,
			rgba(190, 203, 178, 0.6),
			transparent 46%
		),
		linear-gradient(
			135deg,
			#edf2e9 0%,
			#dbe5d3 48%,
			#c7d4bd 100%
		);
}

.about-banner::before,
.about-banner::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(55px);
	pointer-events: none;
}

.about-banner::before {
	top: -110px;
	right: 8%;
	width: 330px;
	height: 330px;
	background: rgba(91, 112, 74, 0.2);
}

.about-banner::after {
	bottom: -150px;
	left: 12%;
	width: 390px;
	height: 390px;
	background: rgba(255, 255, 255, 0.54);
}

.about-banner-inner {
	position: relative;
	z-index: 1;
	width: min(var(--max-width), calc(100% - 40px));
	margin: 0 auto;
	padding: 94px 0 98px;
}

.about-banner .eyebrow {
	margin-bottom: 16px;
	color: #58694b;
}

.about-banner h1 {
	max-width: 900px;
	margin: 0 0 22px;
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.7rem, 5.5vw, 4.7rem);
	font-weight: 500;
	line-height: 1.08;
}

.about-banner p:last-child {
	max-width: 690px;
	margin: 0;
	color: #526058;
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	line-height: 1.6;
}

@media screen and (max-width: 560px) {

	.about-banner-inner {
		width: min(calc(100% - 26px), var(--max-width));
		padding: 70px 0 74px;
	}

	.about-banner h1 {
		font-size: 2.45rem;
	}

}
	.about-page {
		padding-top: 56px;
		padding-bottom: 64px;
	}

	.about-introduction-copy p,
	.about-text-block p {
		font-size: 1rem;
	}

	.about-text-block {
		padding-bottom: 48px;
		margin-bottom: 48px;
	}

}

/* Expertise page */

.expertise-banner {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 12% 24%,
			rgba(255, 255, 255, 0.7),
			transparent 38%
		),
		radial-gradient(
			circle at 82% 20%,
			rgba(103, 124, 84, 0.28),
			transparent 40%
		),
		radial-gradient(
			circle at 64% 92%,
			rgba(191, 204, 179, 0.64),
			transparent 46%
		),
		linear-gradient(
			135deg,
			#edf2e9 0%,
			#dce6d5 50%,
			#c6d3bb 100%
		);
}

.expertise-banner::before,
.expertise-banner::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
}

.expertise-banner::before {
	top: -120px;
	right: 7%;
	width: 350px;
	height: 350px;
	background: rgba(84, 104, 68, 0.2);
}

.expertise-banner::after {
	bottom: -170px;
	left: 10%;
	width: 430px;
	height: 430px;
	background: rgba(255, 255, 255, 0.55);
}

.expertise-banner-inner {
	position: relative;
	z-index: 1;
	width: min(var(--max-width), calc(100% - 40px));
	margin: 0 auto;
	padding: 102px 0 108px;
}

.expertise-banner .eyebrow {
	margin-bottom: 17px;
	color: #58694b;
}

.expertise-banner h1 {
	max-width: 940px;
	margin: 0 0 25px;
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.9rem, 6vw, 5rem);
	font-weight: 500;
	line-height: 1.07;
}

.expertise-banner-summary {
	max-width: 720px;
	margin: 0;
	color: #526058;
	font-size: clamp(1.08rem, 2vw, 1.3rem);
	line-height: 1.65;
}

.expertise-introduction {
	padding-bottom: 55px;
}

.expertise-keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 34px;
}

.expertise-keywords span {
	padding: 9px 15px;
	color: #4d5e40;
	background: var(--sage-light);
	border: 1px solid rgba(107, 124, 89, 0.17);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 800;
}

.expertise-main-section {
	padding-top: 28px;
}

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

.expertise-card {
	display: flex;
	min-height: 340px;
	flex-direction: column;
	padding: 36px;
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: 0 11px 30px rgba(29, 41, 34, 0.07);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.expertise-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 17px 38px rgba(29, 41, 34, 0.11);
}

.expertise-card::before {
	content: "";
	width: 62px;
	height: 4px;
	margin-bottom: 25px;
	background: var(--sage);
	border-radius: 999px;
}

.expertise-card-category {
	margin: 0 0 9px;
	color: var(--sage);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.expertise-card h2 {
	margin: 0 0 17px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.65rem;
	line-height: 1.24;
}

.expertise-card p:not(.expertise-card-category) {
	flex-grow: 1;
	margin: 0 0 26px;
	color: var(--muted);
}

.expertise-work-section {
	background: var(--soft);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.expertise-work-inner {
	width: min(var(--max-width), calc(100% - 40px));
	margin: 0 auto;
	padding: 82px 0;
}

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

.work-card {
	padding: 34px;
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: 10px;
}

.work-card h3 {
	margin: 0 0 14px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.5rem;
	line-height: 1.3;
}

.work-card p:not(.expertise-card-category) {
	margin: 0 0 20px;
	color: var(--muted);
}

.expertise-closing {
	background: #ffffff;
}

.expertise-closing-inner {
	width: min(860px, calc(100% - 40px));
	margin: 0 auto;
	padding: 86px 0;
	text-align: center;
}

.expertise-closing h2 {
	margin: 0 0 20px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.15rem);
	line-height: 1.18;
}

.expertise-closing p {
	max-width: 680px;
	margin: 0 auto 30px;
	color: var(--muted);
	font-size: 1.08rem;
}

@media screen and (max-width: 820px) {

	.expertise-grid,
	.work-grid {
		grid-template-columns: 1fr;
	}

	.expertise-card {
		min-height: 0;
	}

}

@media screen and (max-width: 560px) {

	.expertise-banner-inner,
	.expertise-work-inner,
	.expertise-closing-inner {
		width: min(calc(100% - 26px), var(--max-width));
	}

	.expertise-banner-inner {
		padding: 74px 0 78px;
	}

	.expertise-banner h1 {
		font-size: 2.55rem;
	}

	.expertise-card,
	.work-card {
		padding: 27px;
	}

	.expertise-work-inner,
	.expertise-closing-inner {
		padding-top: 64px;
		padding-bottom: 64px;
	}

}
/* Contact dialog */

.contact-dialog {
	width: min(620px, calc(100% - 30px));
	max-height: calc(100vh - 40px);
	margin: auto;
	padding: 0;
	overflow-y: auto;
	color: var(--ink);
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 28px 90px rgba(23, 33, 27, 0.3);
}

.contact-dialog::backdrop {
	background: rgba(31, 41, 38, 0.72);
	backdrop-filter: blur(6px);
}

.contact-dialog[open] {
	animation: contact-dialog-in 0.2s ease-out;
}

@keyframes contact-dialog-in {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.contact-dialog-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 34px 38px 18px;
	background:
		radial-gradient(
			circle at 85% 20%,
			rgba(107, 124, 89, 0.22),
			transparent 45%
		),
		linear-gradient(
			135deg,
			#f2f5ef,
			#dfe8d8
		);
	border-bottom: 1px solid var(--border);
}

.contact-dialog-header .eyebrow {
	margin-bottom: 8px;
}

.contact-dialog-header h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 2.7rem);
	font-weight: 500;
	line-height: 1.12;
}

.contact-dialog-close {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	padding: 0;

	background: rgba(255,255,255,.75);
	backdrop-filter: blur(8px);

	border: 1px solid rgba(107,124,89,.18);
	border-radius: 50%;

	color: #58694b;

	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1;

	cursor: pointer;

	transition:
		background .2s ease,
		border-color .2s ease,
		transform .2s ease,
		box-shadow .2s ease;
}

.contact-dialog-close:hover {

	background: white;

	border-color: var(--sage);

	color: var(--sage);

	transform: rotate(90deg);

	box-shadow: 0 8px 20px rgba(0,0,0,.12);

}

.contact-dialog-close:active {

	transform: rotate(90deg) scale(.95);

}

.contact-dialog-close:focus-visible {

	outline: none;

	box-shadow:
		0 0 0 4px rgba(107,124,89,.18);

}

.contact-dialog-intro {
	margin: 0;
	padding: 24px 38px 6px;
	color: var(--muted);
}

.contact-form {
	padding: 20px 38px 38px;
}

.contact-field {
	margin-bottom: 20px;
}

.contact-field label {
	display: block;
	margin-bottom: 7px;
	color: var(--ink);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
	width: 100%;
	padding: 13px 14px;
	color: var(--ink);
	background: #fafbf9;
	border: 1px solid #ccd5c9;
	border-radius: 7px;
	font: inherit;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
	background: #ffffff;
	border-color: var(--sage);
	outline: none;
	box-shadow: 0 0 0 4px rgba(107, 124, 89, 0.14);
}

.contact-field textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

.contact-cancel {
	color: var(--sage);
	background: transparent;
	border: 1px solid var(--sage);
	cursor: pointer;
}

.contact-cancel:hover {
	color: #ffffff;
	background: var(--sage);
}

.contact-submit {
	border: 0;
	cursor: pointer;
}

.contact-submit:disabled {
	cursor: wait;
	opacity: 0.65;
}

.contact-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form-status {
	display: none;
	margin-bottom: 20px;
	padding: 12px 14px;
	border-radius: 7px;
}

.contact-form-status.is-success {
	display: block;
	color: #34452d;
	background: #e8eee2;
	border: 1px solid #ccd9c3;
}

.contact-form-status.is-error {
	display: block;
	color: #762e2e;
	background: #f7e9e9;
	border: 1px solid #e5c8c8;
}

@media screen and (max-width: 560px) {

	.contact-dialog {
		width: calc(100% - 18px);
		max-height: calc(100vh - 18px);
	}

	.contact-dialog-header {
		padding: 27px 22px 16px;
	}

	.contact-dialog-intro {
		padding: 21px 22px 4px;
	}

	.contact-form {
		padding: 18px 22px 26px;
	}

	.contact-form-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.contact-form-actions button {
		width: 100%;
	}

}
