/*
 * Shared components (Prompt 4). BEM, tokens only.
 */

/* Eyebrow ------------------------------------------------------------ */

.lv-eyebrow {
	display: block;
	margin-bottom: var(--lv-space-xs);
	font-family: var(--lv-font-script);
	font-size: var(--lv-eyebrow-size);
	color: var(--lv-gold-deep);
}

.lv-eyebrow--on-dark {
	background-image: var(--lv-gold-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Buttons -------------------------------------------------------------- */

.lv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 34px;
	border: 0;
	border-radius: 2px;
	font-family: var(--lv-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: var(--lv-btn-tracking);
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: filter .3s ease, transform .3s ease, background-color .3s ease, color .3s ease;
}

.lv-btn--primary {
	background-image: var(--lv-gold-gradient);
	color: var(--lv-black);
}

.lv-btn--primary:hover {
	filter: brightness(1.08);
}

.lv-btn--ghost {
	background: transparent;
	border: 1px solid var(--lv-gold-deep);
	color: var(--lv-gold-light);
}

.lv-btn--ghost:hover {
	background: rgba(212, 166, 42, .12);
}

.lv-btn--ghost.lv-btn--on-light {
	border-color: rgba(166, 124, 27, .55);
	color: var(--lv-gold-deep);
}

.lv-btn:focus-visible {
	outline: 2px solid var(--lv-gold-light);
	outline-offset: 3px;
}

/* Stats bar ------------------------------------------------------------ */

.lv-stats-bar {
	background: var(--lv-black);
	border-top: 1px solid rgba(212, 166, 42, .28);
	border-bottom: 1px solid rgba(212, 166, 42, .28);
	padding: var(--lv-space-2xl) var(--lv-space-lg);
}

.lv-stats-bar__grid {
	max-width: var(--lv-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: clamp(28px, 3vw, 40px);
	text-align: center;
}

.lv-stats-bar__number {
	font-family: var(--lv-font-heading);
	font-weight: 700;
	font-size: clamp(2.1rem, 3.6vw, 3.1rem);
	line-height: 1;
	background-image: var(--lv-gold-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lv-stats-bar__label {
	margin-top: 12px;
	font-size: var(--lv-label-size);
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .55);
}

/* Accordion -------------------------------------------------------------- */

.lv-accordion__section {
	margin-bottom: var(--lv-space-2xl);
}

.lv-accordion__heading {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	margin: 0 0 8px;
	color: var(--lv-ink);
}

.lv-accordion__heading:empty {
	display: none;
}

.lv-accordion__rule {
	width: 48px;
	height: 1px;
	background-image: var(--lv-gold-gradient);
	margin-bottom: 20px;
}

.lv-accordion__heading:empty + .lv-accordion__rule {
	display: none;
}

.lv-accordion__item {
	border-bottom: 1px solid rgba(26, 26, 26, .15);
}

.lv-accordion__item > summary.lv-accordion__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0;
	list-style: none;
	cursor: pointer;
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	color: var(--lv-ink);
}

.lv-accordion__item > summary.lv-accordion__question::-webkit-details-marker {
	display: none;
}

.lv-accordion__item > summary.lv-accordion__question:hover {
	color: var(--lv-gold-deep);
}

.lv-accordion__item[open] > summary.lv-accordion__question {
	color: var(--lv-gold-deep);
}

.lv-accordion__sign {
	flex-shrink: 0;
	font-family: var(--lv-font-body);
	font-size: 20px;
	font-weight: 300;
	color: var(--lv-gold-deep);
}

.lv-accordion__sign::before {
	content: "+";
}

.lv-accordion__item[open] .lv-accordion__sign::before {
	content: "\2212";
}

.lv-accordion__answer {
	margin: 0;
	padding: 0 0 24px;
	max-width: 640px;
	font-size: 15px;
	line-height: 1.85;
	color: rgba(26, 26, 26, .74);
	animation: lvFade .25s ease both;
}

@media (prefers-reduced-motion: reduce) {
	.lv-accordion__answer {
		animation: none;
	}
}

/* Testimonials -------------------------------------------------------------- */

.lv-testimonials__card {
	position: relative;
	background: var(--lv-charcoal);
	padding: clamp(36px, 5vw, 68px) clamp(26px, 5vw, 72px);
}

.lv-testimonials__corner {
	position: absolute;
	width: 46px;
	height: 46px;
	color: var(--lv-gold);
	pointer-events: none;
}

.lv-testimonials__corner svg {
	display: block;
	width: 100%;
	height: 100%;
}

.lv-testimonials__corner--top-left {
	top: 0;
	left: 0;
}

.lv-testimonials__corner--bottom-right {
	bottom: 0;
	right: 0;
	transform: rotate(180deg);
}

.lv-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
}

.lv-testimonials__photo-wrap {
	justify-self: center;
	width: 100%;
	max-width: 300px;
}

.lv-testimonials__photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
}

.lv-testimonials__quote {
	margin: 0 0 26px;
	font-family: var(--lv-font-heading);
	font-size: clamp(1.15rem, 1.9vw, 1.55rem);
	line-height: 1.6;
	font-style: italic;
	color: rgba(255, 255, 255, .9);
}

.lv-testimonials__rule {
	width: 44px;
	height: 1px;
	background-image: var(--lv-gold-gradient);
	margin-bottom: 16px;
}

.lv-testimonials__name {
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lv-gold-light);
}

.lv-testimonials__meta {
	margin-top: 6px;
	font-size: 11.5px;
	letter-spacing: .1em;
	/* .42 failed axe's color-contrast check against --lv-charcoal — Prompt
	 * 13 QA. */
	color: rgba(255, 255, 255, .58);
}

.lv-testimonials__nav {
	margin-top: 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.lv-testimonials__arrows {
	display: flex;
	gap: 10px;
}

.lv-testimonials__arrow {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 1px solid rgba(212, 166, 42, .4);
	color: var(--lv-gold-light);
	cursor: pointer;
	font-size: 15px;
	transition: background .3s ease;
}

.lv-testimonials__arrow:hover {
	background: rgba(212, 166, 42, .14);
}

.lv-testimonials__count {
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	/* .35 failed axe's color-contrast check — Prompt 13 QA. */
	color: rgba(255, 255, 255, .55);
}

.lv-testimonials__slide {
	display: none;
}

.lv-testimonials__slide--active {
	display: block;
}

/* Quote slider (Prompt 8) ---------------------------------------------- */

.lv-quote-slider {
	position: relative;
	background: var(--lv-charcoal);
	padding: clamp(36px, 5vw, 64px) clamp(26px, 5vw, 68px);
}

.lv-quote-slider__corner {
	position: absolute;
	width: 46px;
	height: 46px;
	border: 1px solid var(--lv-gold);
	pointer-events: none;
}

.lv-quote-slider__corner--top-left {
	top: 0;
	left: 0;
	border-width: 1px 0 0 1px;
}

.lv-quote-slider__corner--bottom-right {
	bottom: 0;
	right: 0;
	border-width: 0 1px 1px 0;
}

.lv-quote-slider__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: clamp(28px, 4vw, 52px);
	align-items: center;
}

.lv-quote-slider__photo-wrap {
	justify-self: center;
	width: 100%;
	max-width: 280px;
}

.lv-quote-slider__photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
}

.lv-quote-slider__text {
	margin: 0 0 24px;
	font-family: var(--lv-font-heading);
	font-size: clamp(1.15rem, 1.9vw, 1.5rem);
	line-height: 1.6;
	font-style: italic;
	color: rgba(255, 255, 255, .9);
}

.lv-quote-slider__rule {
	width: 44px;
	height: 1px;
	background-image: var(--lv-gold-gradient);
	margin-bottom: 14px;
}

.lv-quote-slider__name {
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lv-gold-light);
}

.lv-quote-slider__meta {
	margin-top: 6px;
	font-size: 11.5px;
	letter-spacing: .1em;
	/* .42 failed axe's color-contrast check against --lv-charcoal — Prompt
	 * 13 QA (same fix as .lv-testimonials__meta). */
	color: rgba(255, 255, 255, .58);
}

.lv-quote-slider__nav {
	margin-top: 26px;
	display: flex;
	gap: 10px;
}

.lv-quote-slider__arrow {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 1px solid rgba(212, 166, 42, .4);
	color: var(--lv-gold-light);
	cursor: pointer;
	font-size: 15px;
	transition: background .3s ease;
}

.lv-quote-slider__arrow:hover {
	background: rgba(212, 166, 42, .14);
}

.lv-quote-slider__slide {
	display: none;
}

.lv-quote-slider__slide--active {
	display: block;
}

/* CTA banner -------------------------------------------------------------- */

.lv-cta-banner {
	position: relative;
	background: var(--lv-black);
	padding: var(--lv-space-3xl) var(--lv-space-lg);
	text-align: center;
	overflow: hidden;
}

.lv-cta-banner--photo {
	border-top: 1px solid rgba(212, 166, 42, .25);
}

.lv-cta-banner__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 22%;
}

.lv-cta-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(13, 13, 13, .94) 0%, rgba(13, 13, 13, .8) 50%, rgba(13, 13, 13, .45) 100%);
}

.lv-cta-banner__inner {
	position: relative;
	max-width: var(--lv-container-narrow);
	margin: 0 auto;
}

.lv-cta-banner__heading {
	margin: 0 0 22px;
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: var(--lv-h2-size);
	line-height: 1.14;
	color: var(--lv-white);
}

.lv-cta-banner__keyword {
	font-style: normal;
	background-image: var(--lv-gold-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lv-cta-banner__body {
	margin: 0 auto 38px;
	max-width: 520px;
	font-size: 15.5px;
	line-height: 1.85;
	font-weight: 300;
	color: rgba(255, 255, 255, .76);
}

/* WhatsApp float -------------------------------------------------------------- */

.lv-whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 70;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--lv-black);
	border: 1px solid rgba(212, 166, 42, .55);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform .3s ease, border-color .3s ease;
}

.lv-whatsapp-float:hover {
	transform: translateY(-3px);
	border-color: var(--lv-gold-light);
}

.lv-whatsapp-float svg {
	width: 26px;
	height: 26px;
	fill: var(--lv-gold);
}

/* Media embed facade (lv-core plugin markup, styled here per Prompt 4 scope) -- */

.lv-media-embed {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background-color: var(--lv-charcoal);
	background-size: cover;
	background-position: center;
	border: 0;
}

.lv-media-embed__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(13, 13, 13, .55);
	border: 1px solid var(--lv-gold);
	color: var(--lv-gold-light);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .3s ease;
}

.lv-media-embed__play:hover {
	background: rgba(212, 166, 42, .3);
}

.lv-media-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.lv-media-embed--linkout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	aspect-ratio: auto;
	padding: 20px 24px;
	background: var(--lv-charcoal);
	color: var(--lv-white);
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.lv-media-embed--linkout:hover {
	color: var(--lv-gold-light);
}

/* Header (Prompt 5) — Blocksy logo/menu/mobile-drawer, restyled ------------ */

/*
 * !important below overrides Blocksy's own dynamic header CSS, which is
 * regenerated on every request from theme_mod defaults (we never set a header
 * background/border color mod) and is injected later in <head> than this
 * stylesheet, so it otherwise wins the cascade at equal specificity.
 */
#header.ct-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	background: var(--lv-black) !important;
	border-bottom: 1px solid rgba(212, 166, 42, .22) !important;
	transition: background .45s ease, border-color .45s ease, padding .45s ease;
}

/* Blocksy's per-row wrappers (the un-classed divs for data-row="middle" etc.)
   carry their own white background from its dynamic CSS — neutralize so the
   header's own background (above) shows through. */
#header.ct-header [data-row] {
	background: transparent !important;
}

/* Pages without a hero start with a solid header (safe default). Pages that
   opt in via .lv-has-hero on <body> start transparent, going solid past 40px
   scroll (JS toggles .lv-header--solid — see assets/js/lv.js). */
body.lv-has-hero #header.ct-header {
	background: transparent !important;
	border-bottom-color: transparent !important;
}

body.lv-has-hero #header.ct-header.lv-header--solid {
	background: var(--lv-black) !important;
	border-bottom-color: rgba(212, 166, 42, .22) !important;
}

body:not(.lv-has-hero) {
	padding-top: 76px;
}

/* Broken interim logo image (SETUP.md) — hide, style the site title text as
   the wordmark instead until a real joint lockup is supplied. */
#header .site-logo-container {
	display: none;
}

#header .site-title {
	font-size: 0;
}

#header .site-title a {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: 21px;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--lv-white);
	text-decoration: none;
}

#header-menu-1 .menu > .menu-item > a.ct-menu-link {
	font-family: var(--lv-font-body);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .8);
}

#header-menu-1 .menu > .menu-item > a.ct-menu-link:hover,
#header-menu-1 .menu > .menu-item.current-menu-item > a.ct-menu-link {
	color: var(--lv-gold-light);
}

#header-menu-1 .sub-menu {
	background: var(--lv-black);
	border: 1px solid rgba(212, 166, 42, .28);
	padding: 10px 0;
}

#header-menu-1 .sub-menu .ct-menu-link {
	padding: 11px 24px;
	font-size: 12.5px;
	letter-spacing: .05em;
	color: rgba(255, 255, 255, .78);
}

#header-menu-1 .sub-menu .ct-menu-link:hover {
	color: var(--lv-gold-light);
	background: rgba(212, 166, 42, .07);
}

#header-menu-1 .menu-item-cta {
	margin-left: 6px;
}

#header-menu-1 .menu-item-cta > a.ct-menu-link {
	display: inline-flex;
	align-items: center;
	height: 44px;
	padding: 0 26px;
	border-radius: 999px;
	background-image: var(--lv-gold-gradient);
	color: var(--lv-black);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .1em;
	transition: transform .3s ease, filter .3s ease;
}

#header-menu-1 .menu-item-cta > a.ct-menu-link:hover {
	filter: brightness(1.08);
	transform: translateY(-1px);
}

/* No search icon in this design. */
.ct-header-search {
	display: none !important;
}

.ct-header-trigger.ct-toggle {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(212, 166, 42, .35) !important;
	background: none !important;
}

.ct-header-trigger .ct-icon rect {
	fill: var(--lv-gold-light);
}

/* Mobile off-canvas drawer */
#offcanvas.ct-panel {
	background: var(--lv-black);
	border-left: 1px solid rgba(212, 166, 42, .3);
}

#offcanvas .ct-toggle-close {
	color: var(--lv-gold-light);
}

#offcanvas .mobile-menu .ct-menu-link {
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	font-size: 13px;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .82);
}

#offcanvas .mobile-menu .current-menu-item > .ct-menu-link {
	color: var(--lv-gold-light);
}

#offcanvas .mobile-menu .sub-menu .ct-menu-link {
	padding-left: 16px;
	border-bottom: 0;
	font-size: 12.5px;
	color: rgba(255, 255, 255, .65);
}

#offcanvas .menu-item-cta .ct-menu-link {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	border-radius: 999px;
	background-image: var(--lv-gold-gradient);
	color: var(--lv-black);
	font-weight: 600;
}

/* Footer (Prompt 5) ------------------------------------------------------- */

#footer.ct-footer {
	background: var(--lv-black) !important;
	border-top: 1px solid rgba(255, 255, 255, .09);
}

/* Same per-row white-background masking issue as the header (see above). */
#footer.ct-footer [data-row] {
	background: transparent !important;
}

#footer.ct-footer [data-row="middle"] .ct-container {
	max-width: var(--lv-container);
	gap: clamp(32px, 4vw, 56px);
	padding-top: var(--lv-space-2xl);
}

#footer .widget-title {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--lv-gold-light);
	margin: 0 0 20px;
}

.lv-footer__wordmark {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin-bottom: 18px;
}

.lv-footer__wordmark-part {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: .05em;
	color: var(--lv-white);
}

.lv-footer__wordmark-amp {
	font-family: var(--lv-font-script);
	font-size: 24px;
	background-image: var(--lv-gold-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lv-footer__tagline {
	margin: 0 0 22px;
	max-width: 300px;
	font-size: 14px;
	line-height: 1.85;
	font-weight: 300;
	color: rgba(255, 255, 255, .55);
}

.lv-footer__socials {
	display: flex;
	gap: 10px;
}

.lv-footer__social {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .14);
	color: rgba(255, 255, 255, .7);
	font-size: 10.5px;
	letter-spacing: .06em;
	text-decoration: none;
	transition: border-color .3s, color .3s;
}

.lv-footer__social:hover {
	border-color: var(--lv-gold);
	color: var(--lv-gold-light);
}

#footer .widget_nav_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

#footer .widget_nav_menu a {
	font-size: 14px;
	color: rgba(255, 255, 255, .62);
}

#footer .widget_nav_menu a:hover {
	color: var(--lv-gold-light);
}

.lv-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.lv-footer__contact a,
.lv-footer__contact span {
	font-size: 14px;
	color: rgba(255, 255, 255, .62);
}

.lv-footer__contact a:hover {
	color: var(--lv-gold-light);
}

.lv-footer__contact-hours {
	font-size: 13px;
	/* .38 failed axe's color-contrast check — Prompt 13 QA. */
	color: rgba(255, 255, 255, .55) !important;
}

.lv-footer__newsletter-intro {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255, 255, 255, .55);
}

.lv-footer__newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lv-footer__newsletter-form input {
	height: 48px;
	padding: 0 16px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .18);
	color: var(--lv-white);
	font-size: 14px;
	font-family: var(--lv-font-body);
	outline: none;
	transition: border-color .3s;
}

.lv-footer__newsletter-form input:focus-visible {
	border-color: var(--lv-gold);
	outline: none;
}

#footer.ct-footer [data-row="bottom"] .ct-container {
	max-width: var(--lv-container);
	margin-top: clamp(40px, 5vw, 64px);
	padding-top: 26px;
	padding-bottom: 34px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	align-items: center;
	justify-content: space-between;
}

.ct-footer-copyright {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .38);
}

.ct-footer-copyright a {
	color: inherit;
	text-decoration: none;
}

#footer #footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

#footer #footer-menu a {
	font-size: 12.5px;
	/* .38 failed axe's color-contrast check (2.9:1 vs required 4.5:1) —
	 * Prompt 13 QA. */
	color: rgba(255, 255, 255, .55);
}

#footer #footer-menu a:hover {
	color: var(--lv-gold-light);
}

/* Fluent Forms (Prompt 7) ------------------------------------------------
 * Scoped under .lv-form so these overrides never leak onto other plugins'
 * shortcode output. Field colors follow Get Started.dc.html itself (cream
 * inputs, gold-deep focus ring) rather than a literal "dark inputs" reading
 * of the prompt text — see SETUP.md Prompt 7 notes.
 */

.lv-form .fluentform {
	max-width: 640px;
}

.lv-form .ff-el-group {
	margin-bottom: 22px;
}

.lv-form .ff-el-input--label label {
	display: block;
	margin-bottom: 9px;
	font-family: var(--lv-font-body);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(26, 26, 26, .62);
}

.lv-form .ff-el-form-control,
.lv-form select.ff-el-form-control,
.lv-form textarea.ff-el-form-control {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	border: 1px solid rgba(26, 26, 26, .2);
	background: var(--lv-cream);
	font-family: var(--lv-font-body);
	font-size: 15px;
	color: var(--lv-ink);
	outline: none;
	transition: border-color .25s ease;
}

.lv-form textarea.ff-el-form-control {
	height: auto;
	padding: 15px 16px;
	line-height: 1.7;
	resize: vertical;
}

.lv-form .ff-el-form-control:focus {
	border-color: var(--lv-gold-deep);
}

/* Error / validation states — Fluent's own jQuery-Validate classes, plus a
 * native :invalid fallback for browsers that reach it before JS validates. */
.lv-form .ff-el-form-control.error,
.lv-form .ff-el-form-control:invalid:not(:placeholder-shown) {
	border-color: var(--lv-error);
}

.lv-form label.error {
	display: block;
	margin-top: 7px;
	font-size: 12.5px;
	color: var(--lv-error);
}

.lv-form .ff-el-form-check {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	cursor: pointer;
}

.lv-form .ff-el-form-check-input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: var(--lv-gold-deep);
	flex-shrink: 0;
}

.lv-form .ff_t_c,
.lv-form .ff_t_c p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.7;
	color: rgba(26, 26, 26, .8);
}

.lv-form .ff_t_c a {
	/* var(--lv-gold-deep) failed axe's color-contrast check here (white/cream
	 * form background); also failed "link-in-text-block" (color alone isn't
	 * a sufficient visual cue for a link inside a run of body text, per
	 * WCAG 1.4.1) — underline added alongside the darker color. Prompt 13 QA. */
	color: var(--lv-gold-deep-on-cream);
	text-decoration: underline;
}

/* Section breaks double as the "step indicator" the free tier can offer
 * without Fluent Forms Pro's real multi-step wizard — auto-numbered via a
 * CSS counter scoped to each form. */
.lv-form .fluentform {
	counter-reset: lv-form-step;
}

.lv-form .ff-el-section-break {
	counter-increment: lv-form-step;
	margin: clamp(32px, 4vw, 46px) 0 22px;
	padding-top: 16px;
	border: 0;
	border-top: 2px solid var(--lv-gold-deep);
}

.lv-form .ff-el-section-break:first-child {
	margin-top: 0;
}

.lv-form .ff-el-section-title {
	position: relative;
	margin: 0;
	padding-left: 34px;
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--lv-ink);
}

.lv-form .ff-el-section-title::before {
	content: counter(lv-form-step, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: -2px;
	font-family: var(--lv-font-heading);
	font-size: 13px;
	letter-spacing: .1em;
	color: var(--lv-gold-deep);
}

.lv-form .ff-section_break_desk,
.lv-form .ff-el-section-break hr {
	display: none;
}

.lv-ff-photo-note {
	margin: 0 0 22px;
	padding: 14px 18px;
	background: rgba(166, 124, 27, .08);
	border: 1px solid rgba(166, 124, 27, .3);
}

.lv-ff-photo-note p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.7;
	color: rgba(26, 26, 26, .75);
}

.lv-form .ff-btn-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 54px;
	padding: 0 40px;
	margin-top: 8px;
	background-image: var(--lv-gold-gradient);
	border: 0;
	border-radius: 2px;
	color: var(--lv-black);
	font-family: var(--lv-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: filter .3s ease;
}

.lv-form .ff-btn-submit:hover {
	filter: brightness(1.08);
}

.lv-form .ff-btn-submit:focus-visible {
	outline: 2px solid var(--lv-gold-deep);
	outline-offset: 3px;
}

/* Footer newsletter form (Prompt 11) — the shared .lv-form skin above is
 * tuned for cream-background pages; the footer is dark, and the design
 * (Blog.dc.html footer) wants a single compact input+button row rather than
 * the full-width labeled field the skin normally produces. */
.lv-form--newsletter .fluentform {
	max-width: none;
}

.lv-form--newsletter .ff-el-group {
	position: relative;
	margin-bottom: 12px;
}

/* The design shows just an input + button, no visible label — but the
 * label stays in the DOM (visually-hidden, not display:none) so screen
 * readers still get it. Fluent Forms' own `label_placement: hidden` field
 * setting does NOT actually suppress the label markup in this version
 * (confirmed empirically — Prompt 13 QA), which left a stray "required"
 * asterisk floating unreadably dark-on-dark; this CSS is what actually
 * fixes it. */
.lv-form--newsletter .ff-el-input--label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.lv-form--newsletter .ff-el-form-control {
	height: 48px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .18);
	/* !important: something in Fluent Forms' own CSS was winning over this
	 * (computed color stayed a low-contrast gray, #606266, regardless —
	 * found via axe-core, Prompt 13 QA); the placeholder rule below needed
	 * the same treatment, not worth chasing the exact competing rule
	 * further given both are now fixed. */
	color: var(--lv-white) !important;
}

.lv-form--newsletter .ff-el-form-control::placeholder {
	/* !important: Fluent Forms' own fluent-forms-public.css ships
	 * `.fluentform .ff-el-form-control::placeholder { color: #868e96 }` at
	 * equal specificity, and it was winning the load-order tiebreak,
	 * silently overriding this rule (found via axe-core, Prompt 13 QA —
	 * the placeholder was failing contrast at a color neither of these two
	 * rules alone would produce, confirming a third factor was blending in;
	 * !important sidesteps the whole ambiguity rather than chasing it). */
	color: rgba(255, 255, 255, .6) !important;
}

.lv-form--newsletter .ff-el-form-control:focus {
	border-color: var(--lv-gold);
}

.lv-form--newsletter .ff-btn-submit {
	width: 100%;
	height: 48px;
	margin-top: 0;
	padding: 0;
}

.lv-form--newsletter .ff-success-message,
.lv-form--newsletter .ff-message-success {
	color: var(--lv-gold-light);
	font-size: 13px;
}

/* Page hero (Prompt 10 — owner-editable pages) -------------------------- */

.lv-page-hero {
	position: relative;
	padding: clamp(120px, 16vh, 180px) clamp(20px, 4vw, 48px) clamp(44px, 6vw, 76px);
	background: var(--lv-black);
	overflow: hidden;
}

.lv-page-hero--photo {
	border-bottom: 0;
}

.lv-page-hero:not(.lv-page-hero--photo) {
	border-bottom: 1px solid rgba(212, 166, 42, .22);
}

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

.lv-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(95deg, rgba(13, 13, 13, .95) 0%, rgba(13, 13, 13, .82) 46%, rgba(13, 13, 13, .42) 100%);
}

.lv-page-hero__inner {
	position: relative;
	max-width: var(--lv-container);
	margin: 0 auto;
	color: var(--lv-white);
}

.lv-page-hero__breadcrumb {
	margin-bottom: 22px;
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
}

.lv-page-hero__breadcrumb a {
	color: rgba(255, 255, 255, .45);
}

.lv-page-hero__heading {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: clamp(2.1rem, 4.2vw, 3.4rem);
	line-height: 1.1;
	margin: 0 0 18px;
	color: var(--lv-white);
}

.lv-page-hero__lede {
	margin: 0 0 26px;
	max-width: 520px;
	font-size: 16px;
	line-height: 1.85;
	font-weight: 300;
	color: rgba(255, 255, 255, .72);
}

/* About story: His / Hers / Ours ----------------------------------------- */

.lv-about-story--his {
	background: var(--lv-cream);
	color: var(--lv-ink);
	padding: clamp(66px, 9vw, 120px) clamp(20px, 4vw, 48px);
}

.lv-about-story--hers {
	background: var(--lv-black);
	padding: clamp(66px, 9vw, 120px) clamp(20px, 4vw, 48px);
}

.lv-about-story__grid {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(36px, 5vw, 80px);
	align-items: center;
}

.lv-about-story__media {
	position: relative;
}

.lv-about-story__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: 30% 20%;
	display: block;
}

.lv-about-story__frame {
	position: absolute;
	width: 38%;
	aspect-ratio: 1;
	border: 1px solid rgba(212, 166, 42, .55);
	pointer-events: none;
}

.lv-about-story__frame--bottom-left {
	bottom: -18px;
	left: -18px;
}

.lv-about-story__frame--top-right {
	top: -18px;
	right: -18px;
}

.lv-about-story__text {
	max-width: 460px;
}

.lv-about-story__kicker {
	font-family: var(--lv-font-script);
	font-size: 26px;
	color: var(--lv-gold-deep);
	display: block;
	margin-bottom: 4px;
}

.lv-about-story__kicker--gradient {
	background-image: var(--lv-gold-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lv-about-story__name {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: clamp(1.7rem, 2.8vw, 2.3rem);
	line-height: 1.18;
	margin: 0 0 18px;
	color: var(--lv-ink);
}

.lv-about-story__name--on-dark {
	color: var(--lv-white);
}

.lv-about-story--his .lv-about-story__text p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.85;
	color: rgba(26, 26, 26, .76);
}

.lv-about-story--hers .lv-about-story__text p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.85;
	font-weight: 300;
	color: rgba(255, 255, 255, .72);
}

.lv-about-story--ours {
	position: relative;
	padding: clamp(72px, 10vw, 140px) clamp(20px, 4vw, 48px);
	overflow: hidden;
}

.lv-about-story__ours-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 25%;
}

.lv-about-story__ours-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(13, 13, 13, .93) 0%, rgba(13, 13, 13, .78) 52%, rgba(13, 13, 13, .4) 100%);
}

.lv-about-story__ours-inner {
	position: relative;
	max-width: 620px;
	margin: 0 auto 0 0;
	color: var(--lv-white);
}

.lv-about-story__ours-heading {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: clamp(1.9rem, 3.4vw, 2.8rem);
	line-height: 1.16;
	margin: 0 0 20px;
	color: var(--lv-white);
}

.lv-about-story__ours-inner p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.9;
	font-weight: 300;
	color: rgba(255, 255, 255, .78);
}

/* Vision & Mission --------------------------------------------------------- */

.lv-vision-mission {
	background: var(--lv-cream);
	color: var(--lv-ink);
	padding: clamp(72px, 10vw, 130px) clamp(20px, 4vw, 48px);
}

.lv-vision-mission__grid {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(28px, 4vw, 60px);
}

.lv-vision-mission__item {
	border-top: 2px solid var(--lv-gold-deep);
	padding-top: 26px;
}

.lv-vision-mission__item h3 {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: clamp(1.4rem, 2.2vw, 1.8rem);
	margin: 0 0 16px;
}

.lv-vision-mission__item p {
	margin: 0;
	font-size: 16px;
	line-height: 1.85;
	color: rgba(26, 26, 26, .76);
}

/* Contact details grid ----------------------------------------------------- */

.lv-contact-details-section {
	background: var(--lv-black);
	padding: 0 clamp(20px, 4vw, 48px) clamp(56px, 7vw, 90px);
}

.lv-contact-details {
	max-width: var(--lv-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	border-top: 1px solid rgba(212, 166, 42, .3);
}

.lv-contact-details__item {
	display: block;
	padding: 30px 26px;
	border-bottom: 1px solid rgba(212, 166, 42, .3);
	text-decoration: none;
	transition: background .3s ease;
}

.lv-contact-details__item:not(:first-child) {
	border-left: 1px solid rgba(212, 166, 42, .3);
}

a.lv-contact-details__item:hover {
	background: rgba(212, 166, 42, .06);
}

.lv-contact-details__label {
	display: block;
	font-size: 10.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--lv-gold-light);
	margin-bottom: 14px;
}

.lv-contact-details__value {
	display: block;
	font-family: var(--lv-font-heading);
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	color: var(--lv-white);
}

.lv-contact-details__value--wrap {
	word-break: break-word;
}

.lv-contact-details__meta {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
}

/* Service landing (SEO hub pages) ------------------------------------------ */

.lv-service-landing__benefits {
	background: var(--lv-cream);
	color: var(--lv-ink);
	padding: clamp(66px, 9vw, 125px) clamp(20px, 4vw, 48px);
}

.lv-service-landing__benefits-inner {
	max-width: var(--lv-container);
	margin: 0 auto;
}

.lv-service-landing__benefits-head {
	max-width: 620px;
	margin-bottom: clamp(38px, 5vw, 60px);
}

.lv-service-landing__benefits-head h2 {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: clamp(1.9rem, 3.2vw, 2.7rem);
	line-height: 1.16;
	margin: 0 0 18px;
}

.lv-service-landing__benefits-head h3 {
	font-family: var(--lv-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lv-gold-deep-on-cream);
	margin: 0;
}

.lv-service-landing__benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	border-top: 1px solid rgba(26, 26, 26, .14);
}

.lv-service-landing__benefit {
	padding: 30px 26px;
	border-bottom: 1px solid rgba(26, 26, 26, .14);
}

.lv-service-landing__benefit:not(:first-child) {
	border-left: 1px solid rgba(26, 26, 26, .14);
}

.lv-service-landing__benefit-index {
	font-family: var(--lv-font-heading);
	font-size: 13px;
	color: var(--lv-gold-deep-on-cream);
}

.lv-service-landing__benefit h4 {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: 1.2rem;
	margin: 12px 0 10px;
}

.lv-service-landing__benefit p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.8;
	color: rgba(26, 26, 26, .72);
}

.lv-service-landing__testimonial {
	background: var(--lv-black);
	padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 48px);
}

.lv-service-landing__testimonial-card {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	background: var(--lv-charcoal);
	padding: clamp(34px, 5vw, 60px);
}

.lv-service-landing__testimonial-corner {
	position: absolute;
	width: 44px;
	height: 44px;
	border: 1px solid var(--lv-gold);
}

.lv-service-landing__testimonial-corner--top-left {
	top: 0;
	left: 0;
	border-width: 1px 0 0 1px;
}

.lv-service-landing__testimonial-corner--bottom-right {
	bottom: 0;
	right: 0;
	border-width: 0 1px 1px 0;
}

.lv-service-landing__testimonial-quote {
	margin: 0 0 22px;
	font-family: var(--lv-font-heading);
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	line-height: 1.6;
	font-style: italic;
	color: rgba(255, 255, 255, .9);
}

.lv-service-landing__testimonial-rule {
	width: 44px;
	height: 1px;
	background-image: var(--lv-gold-gradient);
	margin-bottom: 14px;
}

.lv-service-landing__testimonial-name {
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lv-gold-light);
}

.lv-service-landing__testimonial-meta {
	margin-top: 6px;
	font-size: 11.5px;
	letter-spacing: .1em;
	color: rgba(255, 255, 255, .58);
}

.lv-service-landing__faq {
	background: var(--lv-black);
	padding: 0 clamp(20px, 4vw, 48px) clamp(66px, 9vw, 115px);
}

.lv-service-landing__faq-inner {
	max-width: 900px;
	margin: 0 auto;
}

.lv-service-landing__faq-inner > h2 {
	font-family: var(--lv-font-heading);
	font-weight: 600;
	font-size: clamp(1.7rem, 2.8vw, 2.2rem);
	margin: 0 0 clamp(26px, 3.5vw, 38px);
	color: var(--lv-white);
}

.lv-service-landing__faq .lv-accordion__section {
	margin-bottom: 0;
	border-top: 1px solid rgba(212, 166, 42, .3);
}

.lv-service-landing__faq .lv-accordion__heading,
.lv-service-landing__faq .lv-accordion__rule {
	display: none;
}

.lv-service-landing__faq .lv-accordion__item {
	border-bottom: 1px solid rgba(212, 166, 42, .3);
}

.lv-service-landing__faq .lv-accordion__question {
	color: var(--lv-white) !important;
	font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
}

.lv-service-landing__faq .lv-accordion__item[open] > summary.lv-accordion__question,
.lv-service-landing__faq .lv-accordion__question:hover {
	color: var(--lv-gold-light) !important;
}

.lv-service-landing__faq .lv-accordion__answer {
	max-width: 660px;
	color: rgba(255, 255, 255, .68);
}
