/* Loyces Contact Form — front-end + editor preview styles. */
.loyces-cf {
	max-width: 34rem;
}
.loyces-cf-heading {
	margin-bottom: 0.5rem;
}
.loyces-cf-intro {
	margin-bottom: 1.5rem;
}
.loyces-cf .loyces-cf-field {
	margin: 0 0 1.15rem;
}
.loyces-cf label {
	display: block;
	font-family: var(--wp--preset--font-family--mono, ui-monospace, monospace);
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.4rem;
}
.loyces-cf input[type="text"],
.loyces-cf input[type="email"],
.loyces-cf textarea {
	width: 100%;
	padding: 0.7rem 0.8rem;
	font-family: inherit;
	font-size: 1rem;
	background: #fff;
	border: 1px solid var(--wp--preset--color--kraft, #C7B590);
	border-radius: 0;
	box-sizing: border-box;
}
.loyces-cf input:focus,
.loyces-cf textarea:focus {
	outline: 2px solid var(--wp--preset--color--chalk, #2E4E8F);
	outline-offset: 1px;
	border-color: var(--wp--preset--color--chalk, #2E4E8F);
}
.loyces-cf button {
	background: var(--wp--preset--color--ink, #191817);
	color: var(--wp--preset--color--calico, #F6F4EF);
	border: 0;
	border-radius: 0;
	padding: 0.85rem 2.2rem;
	font-size: 0.95rem;
	cursor: pointer;
}
.loyces-cf button:hover {
	background: var(--wp--preset--color--chalk, #2E4E8F);
}
/* Honeypot — hidden from people, present for bots. */
.loyces-cf-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.loyces-cf-notice {
	padding: 0.85rem 1rem;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	border-left: 3px solid;
}
.loyces-cf-notice--ok {
	border-color: var(--wp--preset--color--chalk, #2E4E8F);
	background: rgba( 46, 78, 143, 0.07 );
}
.loyces-cf-notice--err {
	border-color: var(--wp--preset--color--selvedge, #9A3B2E);
	background: rgba( 154, 59, 46, 0.07 );
}
/* Editor preview: show disabled fields at reduced opacity. */
.loyces-cf--preview input,
.loyces-cf--preview textarea,
.loyces-cf--preview button {
	opacity: 0.6;
	pointer-events: none;
}
