/*
 * Luminous Care Services — site template styles
 * Everything is namespaced under .lcs-* so the plugin never fights the theme.
 */

.lcs-page {
	--lcs-ink: #10263a;
	--lcs-ink-soft: #43596b;
	--lcs-teal: #1f6f73;
	--lcs-teal-deep: #14555a;
	--lcs-teal-wash: #e6f0ef;
	--lcs-amber: #e0a32e;
	--lcs-amber-deep: #b9821c;
	--lcs-mist: #eff5f4;
	--lcs-sand: #fbf3e6;
	--lcs-line: #d7e3e2;
	--lcs-white: #ffffff;

	--lcs-display: "Fraunces", Georgia, "Times New Roman", serif;
	--lcs-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--lcs-shell: 1220px;
	--lcs-gap: clamp(1.5rem, 4vw, 3rem);
	--lcs-radius: 14px;
	--lcs-radius-lg: 22px;
	--lcs-shadow: 0 18px 45px -24px rgba(16, 38, 58, 0.45);
	--lcs-shadow-lg: 0 36px 80px -40px rgba(16, 38, 58, 0.55);
}

/* ---------- reset-ish ---------- */

.lcs-page,
.lcs-page body {
	margin: 0;
}

.lcs-site {
	font-family: var(--lcs-body);
	color: var(--lcs-ink);
	background: var(--lcs-white);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

.lcs-site *,
.lcs-site *::before,
.lcs-site *::after {
	box-sizing: border-box;
}

.lcs-site img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* :where() keeps this at zero-class specificity so component rules below
   (buttons, nav links, cards) win without needing !important. */
.lcs-site :where(a) {
	color: var(--lcs-teal-deep);
}

.lcs-site :focus-visible {
	outline: 3px solid var(--lcs-amber);
	outline-offset: 3px;
	border-radius: 4px;
}

.lcs-shell {
	width: 100%;
	max-width: var(--lcs-shell);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.lcs-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--lcs-ink);
	color: #fff;
	padding: 12px 20px;
}

.lcs-skip:focus {
	left: 12px;
	top: 12px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

/* ---------- type ---------- */

.lcs-h2 {
	font-family: var(--lcs-display);
	font-weight: 600;
	font-size: clamp(1.85rem, 3.6vw, 2.9rem);
	line-height: 1.12;
	letter-spacing: -0.015em;
	margin: 0 0 0.6em;
	color: var(--lcs-ink);
}

.lcs-h2--light {
	color: #fff;
}

.lcs-h3 {
	font-family: var(--lcs-display);
	font-weight: 600;
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
}

.lcs-eyebrow {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lcs-teal);
	margin: 0 0 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.lcs-eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--lcs-amber);
	flex: none;
}

.lcs-eyebrow--light {
	color: #ffe6b8;
}

.lcs-lede {
	font-size: clamp(1.02rem, 1.5vw, 1.14rem);
	color: var(--lcs-ink-soft);
	margin: 0 0 1.4rem;
	max-width: 62ch;
}

.lcs-section-head {
	max-width: 720px;
	margin: 0 auto clamp(2rem, 5vw, 3.4rem);
	text-align: center;
}

.lcs-section-head .lcs-lede {
	margin-inline: auto;
}

.lcs-prose > * + * {
	margin-top: 1.1em;
}

.lcs-prose h2,
.lcs-prose h3 {
	font-family: var(--lcs-display);
	font-weight: 600;
	line-height: 1.2;
}

/* ---------- buttons + links ---------- */

.lcs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	font-family: var(--lcs-body);
	font-weight: 600;
	font-size: 0.97rem;
	line-height: 1;
	padding: 0.92rem 1.5rem;
	border-radius: 999px;
	border: 2px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.lcs-btn svg {
	width: 16px;
	height: 12px;
	flex: none;
}

.lcs-btn:hover {
	transform: translateY(-2px);
}

.lcs-btn--lg {
	padding: 1.05rem 1.9rem;
	font-size: 1.02rem;
}

/* Button labels are pinned with an anchor-qualified, double-class selector.
   A single-class rule such as `.lcs-btn--solid` loses to a theme's own
   `.some-theme a { color }`, which made labels vanish until hover. */
.lcs-site a.lcs-btn,
.lcs-site button.lcs-btn {
	text-decoration: none;
}

.lcs-site .lcs-btn.lcs-btn--solid,
.lcs-site a.lcs-btn.lcs-btn--solid,
.lcs-site button.lcs-btn.lcs-btn--solid {
	background: var(--lcs-teal-deep);
	color: #fff;
	border-color: var(--lcs-teal-deep);
}

.lcs-site .lcs-btn.lcs-btn--solid:hover,
.lcs-site a.lcs-btn.lcs-btn--solid:hover,
.lcs-site button.lcs-btn.lcs-btn--solid:hover {
	background: var(--lcs-ink);
	border-color: var(--lcs-ink);
	color: #fff;
}

.lcs-site .lcs-btn.lcs-btn--amber,
.lcs-site a.lcs-btn.lcs-btn--amber,
.lcs-site button.lcs-btn.lcs-btn--amber {
	background: var(--lcs-amber);
	color: var(--lcs-ink);
	border-color: var(--lcs-amber);
}

.lcs-site .lcs-btn.lcs-btn--amber:hover,
.lcs-site a.lcs-btn.lcs-btn--amber:hover,
.lcs-site button.lcs-btn.lcs-btn--amber:hover {
	background: #f2b845;
	border-color: #f2b845;
	color: var(--lcs-ink);
}

.lcs-site .lcs-btn.lcs-btn--ghost,
.lcs-site a.lcs-btn.lcs-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

.lcs-site .lcs-btn.lcs-btn--ghost:hover,
.lcs-site a.lcs-btn.lcs-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.lcs-site .lcs-btn.lcs-btn--ghost-light,
.lcs-site a.lcs-btn.lcs-btn--ghost-light {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}

.lcs-site .lcs-btn.lcs-btn--ghost-light:hover,
.lcs-site a.lcs-btn.lcs-btn--ghost-light:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.lcs-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: var(--lcs-teal-deep);
	text-decoration: none;
	border-bottom: 2px solid var(--lcs-amber);
	padding-bottom: 2px;
}

.lcs-link svg {
	width: 16px;
	height: 12px;
	transition: transform 0.18s ease;
}

.lcs-link:hover svg {
	transform: translateX(4px);
}

.lcs-link--sm {
	font-size: 0.9rem;
}

/* ---------- utility bar + header ---------- */

.lcs-utility {
	background: var(--lcs-ink);
	color: #c6d7e0;
	font-size: 0.85rem;
}

.lcs-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 44px;
	flex-wrap: wrap;
}

.lcs-utility__note {
	margin: 0;
}

.lcs-utility__links {
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

.lcs-utility__links a {
	color: #c6d7e0;
	text-decoration: none;
}

.lcs-utility__links a:hover {
	color: #fff;
}

.lcs-utility__tel {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 700;
	color: var(--lcs-amber) !important;
}

.lcs-utility__tel svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.lcs-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: saturate(1.4) blur(8px);
	border-bottom: 1px solid var(--lcs-line);
	transition: box-shadow 0.25s ease;
}

.lcs-header.is-stuck {
	box-shadow: 0 10px 30px -18px rgba(16, 38, 58, 0.5);
}

.lcs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 84px;
}

/* logo */

.lcs-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	color: var(--lcs-ink);
	flex: none;
}

.lcs-logo__img {
	max-height: 54px;
	width: auto;
}

.lcs-logo__mark {
	width: 46px;
	height: 46px;
	flex: none;
	display: block;
	overflow: visible;
}

.lcs-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.lcs-logo__name {
	font-family: var(--lcs-display);
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: -0.012em;
	line-height: 1;
}

.lcs-logo__sub {
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.235em;
	text-transform: uppercase;
	color: var(--lcs-teal);
	margin-top: 3px;
}

.lcs-logo--light .lcs-logo__name,
.lcs-logo--light {
	color: #fff;
}

.lcs-logo--light .lcs-logo__sub {
	color: var(--lcs-amber);
}

/* nav */

.lcs-nav {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-left: auto;
}

.lcs-nav__list {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lcs-nav__item {
	position: relative;
}

.lcs-site .lcs-nav__link,
.lcs-site .lcs-nav__list > li > a {
	display: inline-block;
	padding: 0.7rem 0.85rem;
	font-weight: 600;
	font-size: 0.96rem;
	color: var(--lcs-ink);
	text-decoration: none;
	border-radius: 8px;
}

.lcs-site .lcs-nav__link:hover,
.lcs-site .lcs-nav__list > li > a:hover {
	background: var(--lcs-teal-wash);
	color: var(--lcs-teal-deep);
}

.lcs-nav__toggle {
	background: none;
	border: 0;
	padding: 6px;
	cursor: pointer;
	color: var(--lcs-ink);
	vertical-align: middle;
}

.lcs-nav__toggle svg {
	width: 11px;
	height: 8px;
	transition: transform 0.2s ease;
}

.lcs-nav__toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.lcs-nav__sub {
	list-style: none;
	margin: 0;
	padding: 0.5rem;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 250px;
	background: #fff;
	border: 1px solid var(--lcs-line);
	border-radius: var(--lcs-radius);
	box-shadow: var(--lcs-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 20;
}

.lcs-nav__item:hover .lcs-nav__sub,
.lcs-nav__item.is-open .lcs-nav__sub,
.lcs-nav__item:focus-within .lcs-nav__sub {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lcs-nav__sub a {
	display: block;
	padding: 0.6rem 0.8rem;
	border-radius: 8px;
	font-size: 0.93rem;
	font-weight: 500;
	color: var(--lcs-ink);
	text-decoration: none;
}

.lcs-nav__sub a:hover {
	background: var(--lcs-mist);
	color: var(--lcs-teal-deep);
}

.lcs-nav__cta {
	flex: none;
}

.lcs-burger {
	display: none;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
	margin-left: auto;
}

.lcs-burger__box {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 26px;
}

.lcs-burger__box span {
	height: 2px;
	background: var(--lcs-ink);
	border-radius: 2px;
	transition: transform 0.22s ease, opacity 0.22s ease;
}

.lcs-burger[aria-expanded="true"] .lcs-burger__box span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.lcs-burger[aria-expanded="true"] .lcs-burger__box span:nth-child(2) {
	opacity: 0;
}

.lcs-burger[aria-expanded="true"] .lcs-burger__box span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- hero ---------- */

.lcs-hero {
	position: relative;
	isolation: isolate;
	color: #fff;
	padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.lcs-hero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.lcs-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lcs-hero__scrim {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 90% at 12% 20%, rgba(224, 163, 46, 0.22) 0%, transparent 55%),
		linear-gradient(100deg, rgba(16, 38, 58, 0.93) 0%, rgba(16, 38, 58, 0.82) 45%, rgba(20, 85, 90, 0.62) 100%);
}

.lcs-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.lcs-hero__title {
	font-family: var(--lcs-display);
	font-weight: 600;
	font-size: clamp(2.4rem, 5.6vw, 4.1rem);
	line-height: 1.03;
	letter-spacing: -0.025em;
	margin: 0 0 0.5rem;
	color: #fff;
}

.lcs-hero__title em {
	font-style: italic;
	color: var(--lcs-amber);
}

.lcs-hero__subhead {
	font-weight: 600;
	font-size: 1.05rem;
	letter-spacing: 0.02em;
	color: #cfe3e2;
	margin: 0 0 1rem;
}

.lcs-hero__body {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.86);
	max-width: 54ch;
	margin: 0 0 2rem;
}

.lcs-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.lcs-hero__actions .lcs-btn--solid {
	background: var(--lcs-amber);
	border-color: var(--lcs-amber);
	color: var(--lcs-ink);
}

.lcs-hero__actions .lcs-btn--solid:hover {
	background: #f2b845;
	border-color: #f2b845;
}

.lcs-hero__panel {
	background: #fff;
	color: var(--lcs-ink);
	border-radius: var(--lcs-radius-lg);
	padding: clamp(1.5rem, 3vw, 2.1rem);
	box-shadow: var(--lcs-shadow-lg);
}

.lcs-hero__panel-title {
	font-family: var(--lcs-display);
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
}

.lcs-hero__panel-note {
	font-size: 0.92rem;
	color: var(--lcs-ink-soft);
	margin: 0 0 1.2rem;
}

.lcs-hero__panel-tel {
	margin: 1rem 0 0;
	font-size: 0.92rem;
	color: var(--lcs-ink-soft);
	text-align: center;
}

.lcs-hero__panel-tel a {
	font-weight: 700;
	color: var(--lcs-teal-deep);
}

/* ---------- assurances ---------- */

.lcs-assurances {
	background: var(--lcs-ink);
	color: #fff;
	border-top: 3px solid var(--lcs-amber);
}

.lcs-assurances__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.lcs-assurance {
	background: var(--lcs-ink);
	padding: 1.6rem 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.lcs-assurance__stat {
	font-family: var(--lcs-display);
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--lcs-amber);
	line-height: 1;
}

.lcs-assurance__label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.75);
}

/* ---------- slider ---------- */

.lcs-slider {
	position: relative;
	background: var(--lcs-ink);
	overflow: hidden;
}

.lcs-slider__viewport {
	position: relative;
	min-height: clamp(420px, 56vw, 580px);
}

.lcs-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s ease, visibility 0.7s;
}

.lcs-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.lcs-slide__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.lcs-slide__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.06);
	transition: transform 8s linear;
}

.lcs-slide.is-active .lcs-slide__img {
	transform: scale(1);
}

.lcs-slide__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(95deg, rgba(16, 38, 58, 0.92) 0%, rgba(16, 38, 58, 0.72) 42%, rgba(16, 38, 58, 0.18) 100%);
}

.lcs-slide__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: clamp(3rem, 7vw, 5rem);
}

.lcs-slide__copy {
	max-width: 620px;
	color: #fff;
}

.lcs-slide__title {
	font-family: var(--lcs-display);
	font-weight: 600;
	font-size: clamp(1.9rem, 4.4vw, 3.1rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0 0 0.7rem;
	color: #fff;
}

.lcs-slide__body {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 1.8rem;
	max-width: 52ch;
}

.lcs-slider__controls {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: clamp(1.2rem, 3vw, 2.2rem);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(9, 24, 37, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(10px);
	padding: 0.5rem 0.75rem;
	border-radius: 999px;
	max-width: calc(100% - 2rem);
}

.lcs-slider__arrow,
.lcs-slider__pause {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: transparent;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex: none;
	transition: background-color 0.18s ease, border-color 0.18s ease;
}

.lcs-slider__arrow:hover,
.lcs-slider__pause:hover {
	background: var(--lcs-amber);
	border-color: var(--lcs-amber);
	color: var(--lcs-ink);
}

.lcs-slider__arrow svg {
	width: 18px;
	height: 18px;
}

.lcs-slider__pause-icon {
	width: 12px;
	height: 12px;
	border-left: 3px solid currentColor;
	border-right: 3px solid currentColor;
}

.lcs-slider__pause[aria-pressed="true"] .lcs-slider__pause-icon {
	border: 0;
	width: 0;
	height: 0;
	border-left: 11px solid currentColor;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	margin-left: 3px;
}

.lcs-slider__dots {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-inline: 0.35rem;
}

/* The signature element: each dot is a filament that fills as the slide runs. */
.lcs-slider__dot {
	position: relative;
	width: 46px;
	height: 4px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	cursor: pointer;
	overflow: hidden;
	transition: width 0.3s ease;
}

.lcs-slider__dot-fill {
	position: absolute;
	inset: 0;
	transform-origin: left center;
	transform: scaleX(0);
	background: var(--lcs-amber);
	box-shadow: 0 0 10px rgba(224, 163, 46, 0.85);
}

.lcs-slider__dot.is-active {
	width: 74px;
}

.lcs-slider__dot.is-active .lcs-slider__dot-fill {
	animation: lcs-fill var(--lcs-slide-duration, 7000ms) linear forwards;
}

.lcs-slider.is-paused .lcs-slider__dot.is-active .lcs-slider__dot-fill {
	animation-play-state: paused;
}

@keyframes lcs-fill {
	to {
		transform: scaleX(1);
	}
}

/* No-JS fallback: show every slide stacked and readable. */
.lcs-slider:not(.is-enhanced) .lcs-slide {
	position: relative;
	opacity: 1;
	visibility: visible;
}

.lcs-slider:not(.is-enhanced) .lcs-slider__controls {
	display: none;
}

/* ---------- mission ---------- */

.lcs-mission {
	padding-block: clamp(3.5rem, 8vw, 6rem);
	background: var(--lcs-white);
}

.lcs-mission__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.lcs-mission__media {
	position: relative;
	margin: 0;
}

.lcs-mission__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--lcs-radius-lg);
	box-shadow: var(--lcs-shadow);
}

.lcs-mission__badge {
	position: absolute;
	right: -14px;
	bottom: -18px;
	background: var(--lcs-amber);
	color: var(--lcs-ink);
	border-radius: var(--lcs-radius);
	padding: 1rem 1.3rem;
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	box-shadow: var(--lcs-shadow);
}

.lcs-mission__badge-stat {
	font-family: var(--lcs-display);
	font-size: 1.7rem;
	font-weight: 700;
}

.lcs-mission__badge-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
}

/* ---------- services ---------- */

.lcs-services {
	padding-block: clamp(3.5rem, 8vw, 6rem);
	background: var(--lcs-mist);
}

.lcs-services--compact {
	background: transparent;
	padding-block: clamp(2rem, 5vw, 3.5rem);
}

.lcs-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.2rem, 2.5vw, 1.9rem);
}

.lcs-services__grid[data-columns="2"] {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcs-services__grid[data-columns="4"] {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lcs-card {
	position: relative;
	background: #fff;
	border-radius: var(--lcs-radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--lcs-line);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	scroll-margin-top: 120px;
}

.lcs-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--lcs-shadow);
}

.lcs-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--lcs-teal-wash);
}

.lcs-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.lcs-card:hover .lcs-card__img {
	transform: scale(1.05);
}

.lcs-card__body {
	padding: 1.4rem 1.4rem 1.6rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.lcs-card__title {
	font-family: var(--lcs-display);
	font-size: 1.28rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.5rem;
}

.lcs-site .lcs-card__title a {
	color: var(--lcs-ink);
	text-decoration: none;
}

.lcs-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.lcs-card__text {
	color: var(--lcs-ink-soft);
	font-size: 0.97rem;
	margin: 0 0 1.1rem;
	flex: 1;
}

.lcs-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--lcs-teal-deep);
}

.lcs-card__more svg {
	width: 16px;
	height: 12px;
	transition: transform 0.2s ease;
}

.lcs-card:hover .lcs-card__more svg {
	transform: translateX(4px);
}

/* ---------- steps ---------- */

.lcs-steps {
	padding-block: clamp(3.5rem, 8vw, 6rem);
	background: var(--lcs-sand);
}

.lcs-steps__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.lcs-steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.lcs-step {
	display: flex;
	gap: 1.2rem;
	background: #fff;
	border-radius: var(--lcs-radius);
	padding: 1.4rem 1.5rem;
	border-left: 4px solid var(--lcs-amber);
	box-shadow: 0 10px 30px -26px rgba(16, 38, 58, 0.6);
}

.lcs-step__num {
	font-family: var(--lcs-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lcs-amber-deep);
	line-height: 1;
	flex: none;
	padding-top: 2px;
}

.lcs-step__title {
	font-family: var(--lcs-display);
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 0.3rem;
}

.lcs-step__text {
	margin: 0;
	color: var(--lcs-ink-soft);
	font-size: 0.97rem;
}

/* ---------- CTA band ---------- */

.lcs-cta {
	position: relative;
	isolation: isolate;
	color: #fff;
	padding-block: clamp(3.5rem, 8vw, 5.5rem);
	text-align: center;
}

.lcs-cta__media {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.lcs-cta__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lcs-cta__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 85, 90, 0.9), rgba(16, 38, 58, 0.94));
}

.lcs-cta__text {
	max-width: 62ch;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.05rem;
}

.lcs-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	justify-content: center;
}

/* ---------- page hero ---------- */

.lcs-pagehero {
	position: relative;
	isolation: isolate;
	color: #fff;
	padding-block: clamp(3rem, 7vw, 5rem);
}

.lcs-pagehero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.lcs-pagehero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lcs-pagehero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(16, 38, 58, 0.93), rgba(20, 85, 90, 0.7));
}

.lcs-pagehero__title {
	font-family: var(--lcs-display);
	font-weight: 600;
	font-size: clamp(2.1rem, 4.6vw, 3.3rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0 0 0.6rem;
	color: #fff;
}

.lcs-pagehero__intro {
	max-width: 60ch;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 1.4rem;
}

.lcs-crumbs {
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.7);
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.lcs-crumbs a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* ---------- about ---------- */

.lcs-about {
	padding-block: clamp(3rem, 7vw, 5rem);
}

.lcs-about__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.lcs-about__figure {
	margin: 0 0 1.5rem;
}

.lcs-about__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--lcs-radius-lg);
}

.lcs-factbox {
	background: var(--lcs-mist);
	border-radius: var(--lcs-radius-lg);
	padding: 1.6rem;
	border-top: 4px solid var(--lcs-amber);
}

.lcs-factbox__title {
	font-family: var(--lcs-display);
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 0.9rem;
}

.lcs-factbox dl {
	margin: 0;
}

.lcs-factbox dt {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	color: var(--lcs-teal);
	margin-top: 0.9rem;
}

.lcs-factbox dd {
	margin: 0.2rem 0 0;
	font-size: 0.96rem;
}

.lcs-factbox__tel a {
	font-family: var(--lcs-display);
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--lcs-teal-deep);
}

.lcs-pillars {
	padding-block: clamp(3rem, 7vw, 5rem);
	background: var(--lcs-mist);
}

.lcs-pillars__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.3rem;
}

.lcs-pillar {
	background: #fff;
	border-radius: var(--lcs-radius);
	padding: 1.5rem;
	border-bottom: 4px solid var(--lcs-teal);
}

.lcs-pillar__title {
	font-family: var(--lcs-display);
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 0.4rem;
}

.lcs-pillar__text {
	margin: 0;
	font-size: 0.96rem;
	color: var(--lcs-ink-soft);
}

/* ---------- services list page ---------- */

.lcs-servicelist {
	padding-block: clamp(3rem, 7vw, 5rem);
}

.lcs-servicelist__inner {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.lcs-toc {
	position: sticky;
	top: 120px;
	background: var(--lcs-mist);
	border-radius: var(--lcs-radius);
	padding: 1.3rem;
}

.lcs-toc__title {
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lcs-teal);
	margin: 0 0 0.8rem;
}

.lcs-toc ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.lcs-toc a {
	display: block;
	padding: 0.42rem 0.6rem;
	border-radius: 7px;
	font-size: 0.93rem;
	font-weight: 500;
	color: var(--lcs-ink);
	text-decoration: none;
}

.lcs-toc a:hover {
	background: #fff;
	color: var(--lcs-teal-deep);
}

.lcs-servicelist__body {
	display: flex;
	flex-direction: column;
	gap: clamp(2.2rem, 5vw, 3.4rem);
}

.lcs-service {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(1.4rem, 3vw, 2.4rem);
	align-items: center;
	scroll-margin-top: 130px;
	padding-bottom: clamp(2.2rem, 5vw, 3.4rem);
	border-bottom: 1px solid var(--lcs-line);
}

.lcs-service:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}

.lcs-service--flip .lcs-service__media {
	order: 2;
}

.lcs-service__media {
	margin: 0;
}

.lcs-service__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--lcs-radius-lg);
}

.lcs-service__excerpt {
	font-weight: 600;
	color: var(--lcs-teal-deep);
	margin-top: 0;
}

.lcs-service__copy p {
	color: var(--lcs-ink-soft);
}

/* ---------- contact + inquiry ---------- */

.lcs-contact,
.lcs-inquiry {
	padding-block: clamp(3rem, 7vw, 5rem);
}

.lcs-contact-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.2rem;
	margin-bottom: clamp(2.4rem, 5vw, 3.5rem);
}

.lcs-contact-card {
	background: var(--lcs-mist);
	border-radius: var(--lcs-radius);
	padding: 1.4rem;
}

.lcs-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--lcs-teal);
	color: #fff;
	margin-bottom: 0.9rem;
}

.lcs-contact-card__icon svg {
	width: 22px;
	height: 22px;
}

.lcs-contact-card__title {
	font-family: var(--lcs-display);
	font-size: 1.08rem;
	font-weight: 600;
	margin: 0 0 0.4rem;
}

.lcs-contact-card__line {
	margin: 0 0 0.4rem;
	font-size: 0.94rem;
	color: var(--lcs-ink-soft);
}

.lcs-contact__split,
.lcs-inquiry__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.lcs-inquiry__aside {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.lcs-inquiry__aside .lcs-contact-cards {
	grid-template-columns: 1fr;
	margin-bottom: 0;
}

.lcs-map {
	border-radius: var(--lcs-radius-lg);
	overflow: hidden;
	border: 1px solid var(--lcs-line);
}

.lcs-map iframe {
	display: block;
}

.lcs-contact__hours {
	margin-top: 1rem;
	font-size: 0.95rem;
	color: var(--lcs-ink-soft);
}

/* ---------- form ---------- */

.lcs-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.lcs-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-bottom: 1rem;
}

.lcs-field label {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--lcs-ink-soft);
}

.lcs-field input,
.lcs-field select,
.lcs-field textarea {
	font-family: inherit;
	font-size: 1rem;
	color: var(--lcs-ink);
	background: #fff;
	border: 1px solid var(--lcs-line);
	border-radius: 10px;
	padding: 0.78rem 0.9rem;
	width: 100%;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lcs-field input:focus,
.lcs-field select:focus,
.lcs-field textarea:focus {
	border-color: var(--lcs-teal);
	box-shadow: 0 0 0 3px rgba(31, 111, 115, 0.14);
	outline: none;
}

.lcs-field textarea {
	resize: vertical;
	min-height: 130px;
}

.lcs-field.has-error input,
.lcs-field.has-error select {
	border-color: #b23c2b;
}

.lcs-form__hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.lcs-form__submit {
	width: 100%;
	margin-top: 0.3rem;
}

.lcs-form__submit[disabled] {
	opacity: 0.65;
	cursor: progress;
	transform: none;
}

.lcs-form__legal {
	font-size: 0.8rem;
	color: var(--lcs-ink-soft);
	margin: 0.85rem 0 0;
}

.lcs-form__status {
	margin: 0.9rem 0 0;
	font-size: 0.94rem;
	font-weight: 600;
	min-height: 1px;
}

.lcs-form__status.is-ok {
	color: var(--lcs-teal-deep);
}

.lcs-form__status.is-error {
	color: #b23c2b;
}

/* ---------- editor content ---------- */

.lcs-editor {
	padding-block: clamp(2.5rem, 6vw, 4rem);
}

/* ---------- footer ---------- */

.lcs-footer {
	background: var(--lcs-ink);
	color: rgba(255, 255, 255, 0.78);
	padding-top: clamp(3rem, 7vw, 4.5rem);
	font-size: 0.96rem;
}

.lcs-footer__top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
	gap: clamp(1.8rem, 4vw, 3rem);
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.lcs-footer__blurb {
	margin: 1rem 0 0.8rem;
	color: var(--lcs-amber);
	font-weight: 600;
	font-size: 0.92rem;
}

.lcs-footer__address {
	font-style: normal;
	line-height: 1.8;
}

.lcs-footer a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.lcs-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.lcs-footer__heading {
	font-family: var(--lcs-display);
	font-size: 1.02rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 1rem;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid rgba(224, 163, 46, 0.5);
}

.lcs-footer__col ul,
.lcs-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.lcs-footer__social {
	flex-direction: row;
	gap: 1rem;
	margin-top: 1rem;
}

.lcs-footer__note {
	margin: 0 0 1.3rem;
}

.lcs-footer__legal {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-block: 1.4rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 2rem;
	justify-content: space-between;
}

.lcs-footer__legal p {
	margin: 0;
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
	.lcs-services__grid,
	.lcs-services__grid[data-columns="4"] {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-pillars__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-contact-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-servicelist__inner {
		grid-template-columns: 1fr;
	}

	.lcs-toc {
		position: static;
	}

	.lcs-toc ul {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (max-width: 900px) {
	.lcs-hero__inner,
	.lcs-mission__inner,
	.lcs-steps__inner,
	.lcs-about__inner,
	.lcs-contact__split,
	.lcs-inquiry__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.lcs-mission__media {
		order: 2;
	}

	.lcs-mission__badge {
		right: 12px;
	}

	.lcs-assurances__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lcs-service {
		grid-template-columns: minmax(0, 1fr);
	}

	.lcs-service--flip .lcs-service__media {
		order: 0;
	}

	/* Mobile navigation */
	.lcs-burger {
		display: block;
	}

	/* Mobile menu: a full-width panel that drops from the bottom edge of the
	   header. The previous side drawer was pinned to the viewport top, so it
	   covered the logo and opened with an empty band above the first item. */
	.lcs-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		width: 100%;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0 clamp(1.25rem, 4vw, 2.5rem) 1.25rem;
		border-top: 1px solid var(--lcs-line);
		box-shadow: 0 24px 50px -28px rgba(16, 38, 58, 0.55);
		max-height: calc(100dvh - 100%);
		overflow-y: auto;
		overscroll-behavior: contain;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
		z-index: 120;
	}

	.lcs-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	/* Dim the page behind the open panel. */
	.lcs-header::after {
		content: "";
		position: fixed;
		inset: 0;
		top: 100%;
		background: rgba(16, 38, 58, 0.42);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.22s ease, visibility 0.22s;
		z-index: 110;
		pointer-events: none;
	}

	.lcs-header.is-nav-open::after {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.lcs-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.lcs-nav__item {
		border-bottom: 1px solid var(--lcs-line);
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.lcs-nav__item:last-of-type {
		border-bottom: 0;
	}

	.lcs-nav__link {
		flex: 1;
		padding: 0.95rem 0.4rem;
	}

	.lcs-nav__sub {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		width: 100%;
		display: none;
		padding: 0 0 0.6rem 0.8rem;
	}

	.lcs-nav__item.is-open .lcs-nav__sub {
		display: block;
	}

	.lcs-nav__cta {
		margin-top: 1rem;
	}

	.lcs-nav__cta .lcs-btn {
		width: 100%;
	}

	.lcs-scrim-open {
		overflow: hidden;
	}
}

@media (max-width: 640px) {
	.lcs-site {
		font-size: 16px;
	}

	.lcs-utility__note {
		display: none;
	}

	.lcs-utility__inner {
		justify-content: center;
	}

	.lcs-form__row {
		grid-template-columns: minmax(0, 1fr);
	}

	.lcs-services__grid,
	.lcs-services__grid[data-columns="2"],
	.lcs-pillars__grid,
	.lcs-contact-cards,
	.lcs-footer__top,
	.lcs-assurances__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.lcs-slider__dot {
		width: 26px;
	}

	.lcs-slider__dot.is-active {
		width: 44px;
	}

	.lcs-footer__legal {
		flex-direction: column;
	}
}

/* ---------- motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
	.lcs-site *,
	.lcs-site *::before,
	.lcs-site *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.lcs-slide__img {
		transform: none;
	}
}
