/* ==========================================================================
   Epworth Villa — Landing Page styles
   Scoped under .lp-* classes / .lp-body to avoid leaking into theme styles.
   ========================================================================== */

:root {
	--lp-navy: #002939;
	--lp-gold: #f7ad3e;
	--lp-bg-light: #f8f9fa;
	--lp-border: rgba(0, 41, 57, 0.05);
	--lp-text: #002939;
	--lp-max: 1320px;
	--lp-pad-x: 30px;
	--lp-font: "Azo Sans", "azo-sans-web", "Helvetica Neue", Arial, sans-serif;
	--lp-font-display: "Azo Sans", "azo-sans-web", Arimo, "Helvetica Neue", Arial, sans-serif;
}

/* ----- base ----- */
.lp-body {
	margin: 0;
	font-family: var(--lp-font);
	color: var(--lp-text);
	background: #fff;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

.lp-body a {
	color: inherit;
	text-decoration: none;
	font-weight: 600;
}

.lp-body h1,
.lp-body h2,
.lp-body h3 {
	font-family: var(--lp-font-display);
}


.lp-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lp-text-gold {
	color: var(--lp-gold);
}

.lp-eyebrow {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--lp-gold);
	line-height: 16px;
}

.lp-eyebrow--chip {
	display: inline-block;
	background: rgba(247, 173, 62, 0.15);
	padding: 6px 16px;
	font-weight: 600;
}

.lp-section-heading {
	font-size: 36px;
	line-height: 1.15;
	color: var(--lp-navy);
	font-weight: 300;
}

.lp-section-heading--md {
	font-size: 32px;
}

/* ----- buttons ----- */
.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 22px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	line-height: 1.2;
	border: 1px solid transparent;
	cursor: pointer;
	transition: opacity 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.lp-btn:hover {
	opacity: 0.9;
}

.lp-body .lp-btn--gold {
	background: var(--lp-gold);
	color: var(--lp-navy);
}

.lp-body .lp-btn--navy {
	background: var(--lp-navy);
	color: #fff;
}

.lp-body .lp-btn--outline {
	background: transparent;
	color: #fff;
	border-color: #fff;
	font-weight: 500;
}

.lp-btn--sm {
	padding: 8px 18px;
	font-size: 12px;
	letter-spacing: 1.2px;
	font-weight: 600;
}

.lp-btn__arrow,
.lp-btn__phone-icon {
	display: inline-flex;
	align-items: center;
}

.lp-btn__phone-icon svg,
.lp-btn__arrow svg {
	display: block;
}

/* ----- topbar ----- */
.lp-topbar {
	background: var(--lp-navy);
}

.lp-topbar__inner {
	max-width: var(--lp-max);
	margin: 0 auto;
	padding: 8px var(--lp-pad-x);
	min-height: 96px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.lp-topbar__logo img {
	height: 80px;
	width: auto;
	object-fit: contain;
}

/* ----- hero ----- */
.lp-hero {
	position: relative;
	padding: 40px 0 80px;
	color: #fff;
	overflow: hidden;
	background: var(--lp-navy);
}

.lp-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.lp-hero__bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lp-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 41, 57, 0.7);
}

.lp-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--lp-max);
	margin: 0 auto;
	padding: 0 var(--lp-pad-x);
	display: grid;
	grid-template-columns: 1fr 608px;
	gap: 64px;
	align-items: start;
}

.lp-hero__content {
	padding-top: 60px;
	max-width: 608px;
}

.lp-hero__heading {
	margin-top: 28px;
	margin-bottom: 25px;
	font-size: 56px;
	line-height: 1.1;
	font-weight: 300;
}

.lp-hero__heading span {
	display: block;
}

.lp-hero__heading > span:first-child {
	color: #fff;
}

.lp-hero__lede {
	margin-top: 24px;
	font-size: 16.8px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	max-width: 448px;
}

/* ----- form card ----- */
.lp-form-card {
	background: #fff;
	color: var(--lp-text);
	padding: 40px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	width: 100%;
}

.lp-form-card__heading {
	font-family: var(--lp-font);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--lp-navy);
	line-height: 1.5;
    margin:0px;
}

.lp-form-card__sub {
	margin-top: 4px;
	color: var(--lp-navy);
	opacity: 0.5;
	font-size: 14px;
	line-height: 20px;
}

.lp-form-card__placeholder {
	margin-top: 24px;
}

/* ----- Gravity Forms (scoped to .lp-form-card) ----- */
/* !important is used to override the Gravity Forms gravity-theme stylesheet. */
.lp-form-card .gform_wrapper,
.lp-form-card .gform_wrapper.gravity-theme {
	margin: 0 !important;
	padding: 0 !important;
}

.lp-form-card .gform_wrapper form {
	margin: 0 !important;
}

.lp-form-card .gform_fields {
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
	grid-row-gap: 16px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.lp-form-card .gfield {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	grid-column: 1 / -1 !important;
}

.lp-form-card .gfield_label,
.lp-form-card .gform_wrapper legend.gfield_label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	overflow: hidden !important;
	white-space: nowrap !important;
}

.lp-form-card .gfield_required {
	display: none !important;
}

.lp-form-card .ginput_container {
	margin: 0 !important;
}

.lp-form-card input[type="text"],
.lp-form-card input[type="email"],
.lp-form-card input[type="tel"],
.lp-form-card input[type="url"],
.lp-form-card input[type="number"],
.lp-form-card textarea {
	display: block !important;
	width: 100% !important;
	min-height: 46px !important;
	height: 46px !important;
	padding: 12px 16px !important;
	background: var(--lp-bg-light) !important;
	border: 1px solid rgba(0, 41, 57, 0.1) !important;
	border-radius: 0 !important;
	color: var(--lp-navy) !important;
	font-family: var(--lp-font) !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	box-shadow: none !important;
	transition: border-color 0.15s ease !important;
}

.lp-form-card textarea {
	min-height: 86px !important;
	height: 86px !important;
	resize: vertical !important;
}

.lp-form-card input::placeholder,
.lp-form-card textarea::placeholder {
	color: rgba(0, 41, 57, 0.5) !important;
	opacity: 1 !important;
}

.lp-form-card input:focus,
.lp-form-card textarea:focus {
	outline: none !important;
	border-color: var(--lp-gold) !important;
}

.lp-form-card .gfield_description {
	margin-top: 4px !important;
	font-size: 12px !important;
	color: rgba(0, 41, 57, 0.5) !important;
}

.lp-form-card .gfield_validation_message,
.lp-form-card .validation_message {
	margin-top: 6px !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	font-size: 12px !important;
	color: #c0392b !important;
}

.lp-form-card .gfield_error input,
.lp-form-card .gfield_error textarea {
	border-color: #c0392b !important;
}

.lp-form-card .gform_validation_errors {
	margin: 0 0 16px !important;
	padding: 12px 16px !important;
	background: rgba(192, 57, 43, 0.05) !important;
	border: 1px solid rgba(192, 57, 43, 0.2) !important;
	color: #c0392b !important;
	font-size: 13px !important;
}

.lp-form-card .gform_footer,
.lp-form-card .gform_page_footer {
	margin: 22px 0 0 !important;
	padding: 0 !important;
	display: block !important;
}

.lp-form-card .gform_button {
	display: block !important;
	width: 100% !important;
	min-height: 48px !important;
	padding: 14px 22px !important;
	background-color: var(--lp-gold) !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8h10m0 0L8.5 3.5M13 8l-4.5 4.5' stroke='%23002939' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: calc(50% + 50px) center !important;
	background-size: 16px 16px !important;
	color: var(--lp-navy) !important;
	border: 0 !important;
	border-radius: 0 !important;
	font-family: var(--lp-font) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.7px !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
	text-align: center !important;
	cursor: pointer !important;
	transition: opacity 0.15s ease !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.lp-form-card .gform_button:hover {
	opacity: 0.9 !important;
}

.lp-form-card .gform_ajax_spinner {
	margin-left: 12px !important;
	vertical-align: middle !important;
}

.lp-form-card .gform_confirmation_message {
	font-size: 14px !important;
	line-height: 1.5 !important;
	color: var(--lp-navy) !important;
}

/* ----- reasons ----- */
.lp-reasons {
	background: #fff;
	padding: 96px 0;
}

.lp-reasons__inner {
	max-width: var(--lp-max);
	margin: 0 auto;
	padding: 0 var(--lp-pad-x);
}

.lp-reasons .lp-section-heading {
	margin-top: 12px;
}

.lp-reasons__grid {
	margin-top: 88px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.lp-reason-card {
	border: 1px solid var(--lp-border);
	padding: 32px;
	min-height: 382px;
	display: flex;
	flex-direction: column;
}

.lp-reason-card__num {
	width: 48px;
	height: 48px;
	background: var(--lp-navy);
	color: var(--lp-gold);
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-reason-card__heading {
	margin-top: 24px;
	font-family: var(--lp-font);
	font-size: 19.2px;
	font-weight: 700;
	color: var(--lp-navy);
	line-height: 1.5;
}

.lp-reason-card__body {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--lp-navy);
	opacity: 0.6;
}

.lp-body .lp-link {
	margin-top: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--lp-gold);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

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

.lp-link__arrow {
	display: inline-block;
}

/* ----- split sections ----- */
.lp-split {
	padding: 0;
}

.lp-split__wrap {
	max-width: var(--lp-max);
	margin: 0 auto;
	padding: 0 var(--lp-pad-x);
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 480px;
}

.lp-split__media {
	min-height: 480px;
}

.lp-split__media img {
	width: 100%;
	height: 100%;
	min-height: 480px;
	object-fit: cover;
}

.lp-split__content {
	display: flex;
	align-items: center;
	padding: 64px 0 64px clamp(20px, 5vw, 80px);
}

.lp-split--reverse .lp-split__content {
	padding: 64px 80px 64px 0;
}

.lp-split__inner .lp-section-heading,
.lp-split__inner .lp-section-heading--md {
	margin-top: 14px;
}

.lp-split__lede {
	margin-top: 18px;
	font-size: 14px;
	line-height: 1.8;
	color: var(--lp-navy);
	opacity: 0.55;
}

.lp-amenities {
	background: var(--lp-bg-light);
}

.lp-checklist {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lp-checklist li {
	position: relative;
	padding-left: 30px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--lp-navy);
	opacity: 0.7;
}

.lp-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 18px;
	height: 18px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'><path d='M16.3508 7.49999C16.6933 9.18097 16.4492 10.9286 15.6592 12.4513C14.8691 13.9741 13.5809 15.18 12.0094 15.868C10.4379 16.5559 8.67798 16.6843 7.02324 16.2318C5.36849 15.7792 3.91891 14.773 2.91622 13.3811C1.91353 11.9891 1.41836 10.2954 1.51326 8.58253C1.60817 6.86964 2.28742 5.24106 3.43775 3.96837C4.58808 2.69568 6.13995 1.85582 7.83456 1.58883C9.52918 1.32185 11.2641 1.64389 12.75 2.50124' stroke='%23F7AD3E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M6.75 8.25L9 10.5L16.5 3' stroke='%23F7AD3E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

.lp-checklist__more {
	font-style: italic;
	opacity: 0.6;
}

.lp-checklist__more::before {
	display: none;
}

.lp-covered {
	margin-bottom: 97px;
}


/* ----- closing CTA ----- */
.lp-cta {
	position: relative;
	padding: 80px 0;
	color: #fff;
	overflow: hidden;
	background: var(--lp-navy);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 79px;
}

.lp-cta__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.lp-cta__bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.lp-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(162deg, rgba(0, 41, 57, 0.92) 0%, rgba(0, 41, 57, 0.75) 50%, rgba(0, 41, 57, 0.85) 100%);
}

.lp-cta__inner {
	position: relative;
	z-index: 1;
	max-width: var(--lp-max);
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--lp-pad-x);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}


.lp-cta__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 3.6px;
	text-transform: uppercase;
	color: var(--lp-gold);
}

.lp-cta__dash {
	display: inline-block;
	width: 40px;
	height: 1px;
	background: var(--lp-gold);
}

.lp-cta__heading {
	font-size: 48px;
	line-height: 1.1;
	font-weight: 300;
	color: #fff;
}

.lp-cta__inner > * {
	margin: 0;
}

.lp-cta__heading span {
	display: block;
}

.lp-cta__lede {
	max-width: 512px;
	font-size: 14px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.5);
}

.lp-cta__inner > .lp-cta__buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 35px;
}

.lp-cta__buttons .lp-btn {
	min-width: 207px;
	padding: 16px 22px;
}

/* ----- footer ----- */
.lp-footer {
	border-top: 1px solid var(--lp-border);
	padding: 65px 0 0;
	background: #fff;
}

.lp-footer__inner {
	max-width: var(--lp-max);
	margin: 0 auto;
	padding: 0 var(--lp-pad-x) 33px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.lp-footer__logo {
	margin-bottom: 40px;
}

.lp-footer__logo img {
	height: 80px;
	width: auto;
	object-fit: contain;
}

.lp-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	max-width: 290px;
	margin-top: 8px;
}

.lp-footer__contact li {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	color: rgba(0, 41, 57, 0.5);
	font-size: 14px;
	line-height: 1.4;
}

.lp-footer__contact-item--address {
	align-items: flex-start !important;
}

.lp-footer__contact-text {
	text-align: center;
}

.lp-footer__contact a:hover {
	text-decoration: underline;
}

.lp-footer__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	flex-shrink: 0;
}

.lp-footer__copy {
	margin-top: 16px;
	padding-top: 33px;
	border-top: 1px solid var(--lp-border);
	width: 100%;
	text-align: center;
	font-size: 12px;
	color: rgba(0, 41, 57, 0.3);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet: switch hero to true 50/50 instead of cramming the 608px form card. */
@media (max-width: 1100px) {
	.lp-hero__inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.lp-hero__content {
		padding-top: 0;
		max-width: none;
	}

	.lp-hero__heading {
		font-size: 48px;
	}
}

@media (max-width: 960px) {
	.lp-reasons {
		padding: 64px 0;
	}

	.lp-reasons__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 48px;
	}

	.lp-reason-card {
		min-height: 0;
	}

	.lp-split__wrap {
		grid-template-columns: 1fr;
	}

	.lp-split__media,
	.lp-split__media img {
		min-height: 0;
		height: auto;
	}

	.lp-split__media img {
		height: 320px;
	}

	.lp-split--reverse .lp-split__wrap {
		display: flex;
		flex-direction: column;
	}

	.lp-split__content,
	.lp-split--reverse .lp-split__content {
		padding: 40px 0;
	}

	.lp-covered {
		margin-bottom: 30px;
	}

	.lp-cta {
		gap: 40px;
	}

	.lp-cta__heading {
		font-size: 36px;
	}

	.lp-cta__inner > .lp-cta__buttons {
		margin-top: 20px;
	}
}

/* Below 768px: stack hero (form below content) — narrow tablets and phones. */
@media (max-width: 768px) {
	.lp-hero {
		padding: 32px 0 56px;
	}

	.lp-hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.lp-hero__heading {
		font-size: 44px;
	}

	.lp-hero__lede {
		margin-bottom: 0;
	}
}

@media (max-width: 600px) {
	:root {
		--lp-pad-x: 20px;
	}

	.lp-topbar__inner {
		min-height: 72px;
	}

	.lp-topbar__logo img {
		height: 56px;
	}

	.lp-hero {
		padding: 24px 0 48px;
	}

	.lp-hero__heading {
		font-size: 36px;
	}

	.lp-form-card {
		padding: 24px;
	}

	.lp-section-heading {
		font-size: 28px;
	}

	.lp-section-heading--md {
		font-size: 26px;
	}

	.lp-reason-card {
		padding: 24px;
	}

	.lp-cta {
		gap: 32px;
	}

	.lp-cta__heading {
		font-size: 28px;
	}

	.lp-cta__buttons .lp-btn {
		width: 100%;
		min-width: 0;
	}
}
