/* Lead capture / AWeber form slot */

.lime-contact-section {
	position: relative;
	padding: clamp(3rem, 6vw, 5rem) 0;
	background:
		radial-gradient(ellipse 80% 60% at 20% 100%, rgba(181, 230, 29, 0.07), transparent 55%),
		radial-gradient(ellipse 60% 50% at 90% 0%, rgba(181, 230, 29, 0.04), transparent 50%),
		var(--dark);
	color: var(--white);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	overflow-x: clip;
}

.lime-contact-container {
	position: relative;
	z-index: 1;
}

.lime-contact-card {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: stretch;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--dark-2);
	box-shadow:
		0 4px 24px rgba(0, 0, 0, 0.25),
		0 24px 64px rgba(0, 0, 0, 0.35);
}

/* Left panel — image + copy */
.lime-contact-aside {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: var(--dark-3);
}

.lime-contact-aside-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.lime-contact-aside-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.88) 72%, rgba(10, 10, 10, 0.96) 100%),
		linear-gradient(135deg, rgba(181, 230, 29, 0.06) 0%, transparent 45%);
}

.lime-contact-aside-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
}

.lime-contact-aside-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	flex: 1;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	min-height: 100%;
}

.lime-contact-aside-body .section-label {
	margin-bottom: 0.875rem;
}

.lime-contact-title {
	font-family: var(--font-serif);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--white);
	margin-bottom: 0.75rem;
}

.lime-contact-title-main {
	display: block;
	font-size: clamp(1.75rem, 3vw, 2.375rem);
}

.lime-contact-title .script-text {
	display: block;
	font-family: var(--font-script);
	color: var(--lime);
	font-weight: 400;
	font-size: clamp(1.85rem, 3.2vw, 2.65rem);
	line-height: 1.05;
	margin-top: 0.2rem;
}

.lime-contact-subtitle {
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 1.5rem;
	max-width: 26rem;
}

.lime-contact-features {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin-top: auto;
	padding-top: 0.5rem;
}

.lime-contact-features li {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.875rem;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	backdrop-filter: blur(8px);
}

.lime-contact-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: rgba(181, 230, 29, 0.14);
	color: var(--lime);
	flex-shrink: 0;
}

.lime-contact-feature-icon svg {
	display: block;
}

/* Right panel — form */
.lime-contact-form-col {
	display: flex;
	flex-direction: column;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.lime-contact-form-header {
	margin-bottom: 1.25rem;
}

.lime-contact-form-title {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 0.375rem;
	letter-spacing: -0.01em;
}

.lime-contact-form-lead {
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.55);
}

.lime-lead-form-wrap {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	width: 100%;
	overflow: hidden;
}

.lime-lead-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex: 1;
}

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

.lime-form-row--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lime-form-field {
	display: flex;
	flex-direction: column;
	gap: 0.4375rem;
	min-width: 0;
}

.lime-form-field label {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.6);
}

.lime-form-field input,
.lime-form-field textarea {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--white);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.lime-form-field input::placeholder,
.lime-form-field textarea::placeholder {
	color: rgba(255, 255, 255, 0.32);
}

.lime-form-field input:hover,
.lime-form-field textarea:hover {
	border-color: rgba(255, 255, 255, 0.2);
}

.lime-form-field input:focus,
.lime-form-field textarea:focus {
	outline: none;
	border-color: rgba(181, 230, 29, 0.65);
	box-shadow: 0 0 0 3px rgba(181, 230, 29, 0.14);
	background: rgba(255, 255, 255, 0.07);
}

.lime-form-field input[readonly] {
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.75);
	cursor: default;
}

.lime-form-field textarea {
	resize: vertical;
	min-height: 5.5rem;
	padding-top: 0.875rem;
}

.lime-form-submit {
	width: 100%;
	margin-top: 0.25rem;
	padding: 1rem 1.5rem;
	font-size: 0.75rem;
	border-radius: 10px;
	box-shadow: 0 8px 28px rgba(181, 230, 29, 0.25);
}

.lime-form-submit:hover {
	box-shadow: 0 10px 32px rgba(181, 230, 29, 0.35);
	transform: translateY(-1px);
}

.lime-form-note {
	font-size: 0.75rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.42);
	text-align: center;
	margin-top: 0.25rem;
}

/* Local page spacing */
.lime-contact-section--local {
	margin-top: 0;
}

.local-page .lime-contact-section {
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* AWeber embed overrides */
.lime-aweb-form .AW-Form-992202749 {
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

#lime-aweb-form-slot .af-form-wrapper,
#lime-aweb-form-slot form.af-form-wrapper {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

#lime-aweb-form-slot #af-form-992202749,
#lime-aweb-form-slot #af-form-992202749.af-quirksMode,
#lime-aweb-form-slot .af-form {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	overflow: visible !important;
	display: block !important;
	margin: 0 !important;
}

.lime-aweb-form .AW-Form-992202749,
.lime-aweb-form .AW-Form-992202749 > div {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
}

#lime-aweb-form-slot #af-header-992202749,
#lime-aweb-form-slot #af-form-992202749 .af-header,
#lime-aweb-form-slot #af-form-992202749 .af-footer {
	display: none !important;
}

#lime-aweb-form-slot #af-body-992202749,
#lime-aweb-form-slot #af-form-992202749 .af-body {
	background: transparent !important;
	background-image: none !important;
	padding: 0 !important;
	color: rgba(255, 255, 255, 0.85) !important;
	font-family: var(--font) !important;
}

#lime-aweb-form-slot #af-form-992202749 .af-standards .af-element,
#lime-aweb-form-slot #af-form-992202749 .af-quirksMode .af-element,
#lime-aweb-form-slot #af-form-992202749 .af-element {
	float: none !important;
	position: static !important;
	margin: 0 0 1rem !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

#lime-aweb-form-slot #af-form-992202749 .af-element:last-child {
	margin-bottom: 0 !important;
}

#lime-aweb-form-slot #af-form-992202749 label.previewLabel {
	float: none !important;
	display: block !important;
	width: 100% !important;
	font-family: var(--font) !important;
	font-size: 0.6875rem !important;
	font-weight: 700 !important;
	font-style: normal !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	color: rgba(255, 255, 255, 0.6) !important;
	margin: 0 0 0.4375rem !important;
	text-align: left !important;
}

#lime-aweb-form-slot #af-form-992202749 .af-textWrap {
	float: none !important;
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	text-align: left !important;
	box-sizing: border-box !important;
}

#lime-aweb-form-slot #af-form-992202749 input.text,
#lime-aweb-form-slot #af-form-992202749 input[type='email'],
#lime-aweb-form-slot #af-form-992202749 textarea {
	float: none !important;
	display: block !important;
	width: 100% !important;
	min-height: 3rem !important;
	margin: 0 !important;
	padding: 0.75rem 1rem !important;
	font-family: var(--font) !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	color: var(--white) !important;
	background: rgba(255, 255, 255, 0.05) !important;
	background-image: none !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 10px !important;
	box-sizing: border-box !important;
	box-shadow: none !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

#lime-aweb-form-slot #af-form-992202749 input.text:hover,
#lime-aweb-form-slot #af-form-992202749 input[type='email']:hover,
#lime-aweb-form-slot #af-form-992202749 textarea:hover {
	border-color: rgba(255, 255, 255, 0.2) !important;
	opacity: 1 !important;
	cursor: text !important;
}

#lime-aweb-form-slot #af-form-992202749 input.text:focus,
#lime-aweb-form-slot #af-form-992202749 input[type='email']:focus,
#lime-aweb-form-slot #af-form-992202749 textarea:focus {
	outline: none !important;
	border-color: rgba(181, 230, 29, 0.65) !important;
	box-shadow: 0 0 0 3px rgba(181, 230, 29, 0.14) !important;
	background: rgba(255, 255, 255, 0.07) !important;
}

#lime-aweb-form-slot #af-form-992202749 textarea {
	min-height: 5.5rem !important;
	height: auto !important;
	resize: vertical !important;
	padding-top: 0.875rem !important;
}

#lime-aweb-form-slot #af-form-992202749 .buttonContainer {
	float: none !important;
	text-align: left !important;
	margin: 0.25rem 0 0 !important;
	padding: 0 !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

#lime-aweb-form-slot #af-form-992202749 .buttonContainer input.submit,
#lime-aweb-form-slot #af-form-992202749 #webFormSubmitButton {
	float: none !important;
	display: block !important;
	width: 100% !important;
	min-height: 3rem !important;
	margin: 0 !important;
	padding: 1rem 1.5rem !important;
	font-family: var(--font) !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	font-style: normal !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	text-decoration: none !important;
	color: var(--dark) !important;
	background: var(--lime) !important;
	background-image: none !important;
	border: none !important;
	border-radius: 10px !important;
	box-shadow: 0 8px 28px rgba(181, 230, 29, 0.25) !important;
	cursor: pointer !important;
	-webkit-appearance: none;
	appearance: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

#lime-aweb-form-slot #af-form-992202749 .buttonContainer input.submit:hover,
#lime-aweb-form-slot #af-form-992202749 #webFormSubmitButton:hover {
	opacity: 1 !important;
	background: var(--lime-dark) !important;
	box-shadow: 0 10px 32px rgba(181, 230, 29, 0.35) !important;
	transform: translateY(-1px);
}

#lime-aweb-form-slot .af-clear {
	display: none !important;
}

.lime-aweb-form .lime-form-note {
	margin-top: 1rem;
}

/* Tablet — stacked card */
@media (max-width: 960px) {
	.lime-contact-card {
		grid-template-columns: 1fr;
		overflow: hidden;
	}

	.lime-contact-aside {
		min-height: auto;
		display: flex;
		flex-direction: column;
	}

	.lime-contact-aside-media {
		position: relative;
		inset: auto;
		height: clamp(10rem, 34vw, 14rem);
		flex-shrink: 0;
	}

	.lime-contact-aside-media::after {
		background:
			linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.55) 100%),
			linear-gradient(135deg, rgba(181, 230, 29, 0.05) 0%, transparent 50%);
	}

	.lime-contact-aside-body {
		position: relative;
		justify-content: flex-start;
		margin-top: 0;
		padding: 1.5rem 1.25rem 1.25rem;
		background: var(--dark-3);
	}

	.lime-contact-form-col {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.06);
		min-width: 0;
	}
}

/* Mobile — simplified stacked layout */
@media (max-width: 768px) {
	.lime-contact-section {
		padding: 2rem 0 2.5rem;
		overflow-x: hidden;
	}

	.lime-contact-container.container {
		padding-left: 1rem;
		padding-right: 1rem;
		width: 100%;
		max-width: 100%;
	}

	.lime-contact-card {
		display: flex;
		flex-direction: column;
		border-radius: 14px;
		overflow: visible;
		width: 100%;
		max-width: 100%;
	}

	.lime-contact-aside {
		min-height: 0;
	}

	.lime-contact-aside-media {
		display: none;
	}

	.lime-contact-aside-body {
		min-height: 0;
		padding: 1.25rem 1rem 1rem;
		background: var(--dark-3);
	}

	.lime-contact-title-main {
		font-size: 1.5rem;
		line-height: 1.15;
	}

	.lime-contact-title .script-text {
		font-size: 1.625rem;
		line-height: 1.1;
		word-break: break-word;
	}

	.lime-contact-subtitle {
		font-size: 0.875rem;
		margin-bottom: 0.875rem;
		max-width: none;
	}

	.lime-contact-features {
		flex-direction: column;
		gap: 0.5rem;
		margin-top: 0;
		padding-top: 0;
	}

	.lime-contact-features li {
		width: 100%;
		flex: none;
		min-width: 0;
		font-size: 0.625rem;
		padding: 0.5rem 0.75rem;
	}

	.lime-contact-form-col {
		padding: 1rem;
		min-width: 0;
		width: 100%;
		border-top: 1px solid rgba(255, 255, 255, 0.06);
	}

	.lime-contact-form-header {
		margin-bottom: 0.875rem;
	}

	.lime-contact-form-title {
		font-size: 1.125rem;
	}

	.lime-contact-form-lead {
		font-size: 0.8125rem;
	}

	.lime-lead-form-wrap {
		overflow: visible;
	}

	#lime-aweb-form-slot #af-form-992202749,
	#lime-aweb-form-slot #af-form-992202749.af-quirksMode,
	#lime-aweb-form-slot .af-form-wrapper,
	.lime-aweb-form .AW-Form-992202749,
	.lime-aweb-form .AW-Form-992202749 > div {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	#lime-aweb-form-slot #af-form-992202749 .af-standards .af-element,
	#lime-aweb-form-slot #af-form-992202749 .af-quirksMode .af-element,
	#lime-aweb-form-slot #af-form-992202749 .af-element {
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	#lime-aweb-form-slot #af-form-992202749 input.text,
	#lime-aweb-form-slot #af-form-992202749 input[type='email'],
	#lime-aweb-form-slot #af-form-992202749 textarea {
		width: 100% !important;
		max-width: 100% !important;
		padding: 0.75rem 0.875rem !important;
		margin-top: 0 !important;
		box-sizing: border-box !important;
	}

	#lime-aweb-form-slot #af-form-992202749 .buttonContainer input.submit,
	#lime-aweb-form-slot #af-form-992202749 #webFormSubmitButton {
		width: 100% !important;
		max-width: 100% !important;
		padding: 0.9375rem 1rem !important;
		font-size: 0.6875rem !important;
		white-space: normal !important;
		line-height: 1.3 !important;
	}

	.lime-form-note {
		font-size: 0.6875rem;
		padding: 0 0.125rem;
	}
}

/* Small phones */
@media (max-width: 380px) {
	.lime-contact-container.container {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.lime-contact-aside-body,
	.lime-contact-form-col {
		padding-left: 0.875rem;
		padding-right: 0.875rem;
	}

	.lime-contact-title-main {
		font-size: 1.375rem;
	}

	.lime-contact-title .script-text {
		font-size: 1.5rem;
	}
}
