.c-site {
	font-family: Arial, Helvetica, sans-serif;
	color: var(--th-ink);
}

.c-container {
	width: min(var(--th-shell-width), calc(100% - 40px)) !important;
	max-width: calc(100% - 40px) !important;
	margin-inline: auto !important;
}

.c-hero {
	width: 100%;
	padding: 112px 0 92px;
	background: var(--th-cream);
}

.c-eyebrow {
	color: var(--th-coral);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.c-hero h1 {
	margin: 18px 0 24px;
	font-family: Georgia, serif;
	font-size: clamp(3.8rem, 7vw, 7rem);
	line-height: 1;
	letter-spacing: -0.05em;
}

.c-hero p {
	max-width: 680px;
	color: var(--th-muted);
	font-size: 1.05rem;
	line-height: 1.75;
}

.c-main {
	width: 100%;
	padding: 92px 0;
	background: var(--th-white);
}

.c-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
	gap: 75px;
	align-items: start;
}

.c-copy h2 {
	margin: 14px 0 22px;
	font-family: Georgia, serif;
	font-size: clamp(2.7rem, 4vw, 4.2rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.c-copy p {
	color: var(--th-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.c-email {
	display: inline-flex;
	margin-top: 20px;
	padding: 15px 22px;
	border-radius: 999px;
	background: var(--th-coral);
	color: var(--th-white);
	font-size: 0.78rem;
	font-weight: 900;
	text-decoration: none;
}

.c-email:hover {
	background: var(--th-coral-dark);
}

.c-note {
	margin-top: 28px;
	padding: 18px 20px;
	border: 1px solid var(--th-line);
	border-radius: 10px;
	color: var(--th-muted);
	font-size: 0.78rem;
}

.c-form {
	padding: 34px;
	border-radius: 14px;
	background: var(--th-cream);
}

.c-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.c-form label {
	display: block;
	margin-bottom: 18px;
}

.c-form label > span {
	display: block;
	margin-bottom: 7px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.c-form input,
.c-form select,
.c-form textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #b9b3aa;
	border-radius: 8px;
	background: var(--th-white);
	color: var(--th-ink);
	font: inherit;
	font-size: 0.9rem;
}

.c-form textarea {
	resize: vertical;
}

.c-form .c-email {
	margin-top: 0;
	border: 0;
	cursor: pointer;
}

.c-form small {
	display: block;
	margin-top: 13px;
	color: var(--th-muted);
	font-size: 0.72rem;
}

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

.c-form-status {
	margin-bottom: 22px;
	padding: 14px 16px;
	border-radius: 9px;
	font-size: 0.86rem;
	line-height: 1.5;
}

.c-form-status.is-success {
	border: 1px solid #bcdac5;
	background: #e8f4ec;
	color: #245b37;
}

.c-form-status.is-error {
	border: 1px solid #ecc7c3;
	background: #fff0ee;
	color: #8b332d;
}

.c-form .c-consent {
	display: flex !important;
	align-items: flex-start;
	gap: 10px;
	margin: 2px 0 20px;
}

.c-form .c-consent input {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	margin: 1px 0 0;
	padding: 0;
}

.c-form .c-consent span {
	display: block;
	margin: 0;
	color: var(--th-muted);
	font-size: 0.76rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0;
	text-transform: none;
}

.c-form .c-consent a {
	color: var(--th-coral-dark);
	font-weight: 700;
}

@media (max-width: 800px) {
	.c-grid,
	.c-form-grid {
		grid-template-columns: 1fr;
	}

	.c-grid {
		gap: 42px;
	}

	.c-hero {
		padding: 82px 0 68px;
	}

	.c-main {
		padding: 68px 0;
	}
}

@media (max-width: 700px) {
	.c-form {
		padding: 24px;
	}
}
