@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,500;6..72,600&display=swap");

:root {
	--ink: #2b1237;
	--coral: #e84b2a;
	--paper: #f7f3ec;
	--sand: #e8dcc9;
	--charcoal: #211a24;
	--rule: rgba(43, 18, 55, .25);
	--shell: min(1180px, calc(100vw - 48px));
	--serif: "Newsreader", Georgia, serif;
	--sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--charcoal); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-family: var(--serif); font-weight: 600; line-height: 1.02; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 4vw, 3.5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(2.1rem, 4vw, 4.25rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.lc-shell { width: var(--shell); margin-inline: auto; }
.lc-skip { position: fixed; z-index: 9999; top: 8px; left: 8px; transform: translateY(-160%); background: #fff; padding: 10px 14px; }
.lc-skip:focus { transform: none; }
.lc-eyebrow { margin-bottom: 18px; color: var(--coral); font-size: .77rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.lc-lead { max-width: 650px; font-size: clamp(1.06rem, 1.7vw, 1.3rem); line-height: 1.55; }
.lc-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid var(--coral); background: var(--coral); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.lc-button:hover, .lc-button:focus-visible { background: var(--ink); border-color: var(--ink); }
.lc-text-link { color: var(--coral); font-weight: 700; text-underline-offset: 5px; }
.lc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 28px; }

.lc-header { position: relative; z-index: 100; border-bottom: 1px solid var(--rule); background: rgba(247, 243, 236, .98); }
.lc-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.lc-brand { flex: 0 0 190px; }
.lc-brand img { width: 190px; max-height: 54px; object-fit: contain; }
.lc-nav { display: flex; align-items: center; gap: 28px; }
.lc-nav__list { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.lc-nav__item { position: relative; }
.lc-nav__parent { display: flex; align-items: center; gap: 5px; }
.lc-nav__list a { font-size: .88rem; font-weight: 600; text-decoration: none; }
.lc-nav__list a:hover, .lc-nav__list a:focus-visible { color: var(--coral); }
.lc-submenu-toggle { width: 26px; height: 30px; display: inline-flex; align-items: center; justify-content: center; padding: 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.lc-submenu-toggle i { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-1px, -1px); transition: transform .2s ease; }
.lc-submenu-toggle:hover, .lc-submenu-toggle:focus-visible { color: var(--coral); }
.lc-submenu { position: absolute; z-index: 110; top: calc(100% + 18px); left: -18px; width: 250px; margin: 0; padding: 10px 0; border: 1px solid var(--rule); background: var(--paper); box-shadow: 0 16px 34px rgba(42, 16, 45, .12); list-style: none; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.lc-submenu::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 20px; }
.lc-submenu a { display: block; padding: 11px 18px; line-height: 1.25; }
.lc-nav__item--has-submenu:hover > .lc-submenu,
.lc-nav__item--has-submenu:focus-within > .lc-submenu,
.lc-nav__item--has-submenu.submenu-open > .lc-submenu { opacity: 1; visibility: visible; transform: none; }
.lc-nav__item--has-submenu.submenu-open .lc-submenu-toggle i { transform: rotate(225deg) translate(-1px, -1px); }
.lc-button--header { min-height: 44px; background: var(--ink); border-color: var(--ink); }
.lc-menu-toggle, .lc-scrim { display: none; }

.lc-hero { min-height: 670px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); border-bottom: 1px solid var(--rule); }
.lc-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(54px, 7vw, 110px) max(28px, calc((100vw - 1180px) / 2)); padding-right: clamp(38px, 5vw, 84px); }
.lc-hero__copy h1 { max-width: 760px; }
.lc-hero__copy h1::after { content: ""; display: block; width: 74px; height: 3px; margin-top: 20px; background: var(--coral); }
.lc-hero__image { min-width: 0; }
.lc-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.lc-hero__form, .lc-page-hero__form { max-width: 540px; margin-top: 22px; }

.lc-services { padding: 86px 0 0; }
.lc-services h2 { max-width: 820px; }
.lc-service-list { margin-top: 48px; border-top: 1px solid var(--rule); }
.lc-service-list a { display: grid; grid-template-columns: 80px minmax(220px, .75fr) 1fr 44px; align-items: center; gap: 28px; min-height: 92px; border-bottom: 1px solid var(--rule); text-decoration: none; }
.lc-service-list a > span { color: var(--coral); font-family: var(--serif); font-size: 1.35rem; text-align: center; }
.lc-service-list h3, .lc-service-list p { margin: 0; }
.lc-service-list p { font-size: .95rem; line-height: 1.4; }
.lc-service-list i { color: var(--coral); font-size: 2rem; font-style: normal; }
.lc-service-list a:hover h3 { color: var(--coral); }

.lc-benefits { padding: 90px 0; border-bottom: 1px solid var(--rule); background: #fffaf5; }
.lc-benefits__grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); }
.lc-benefits__grid > div { min-width: 0; padding: 12px 32px; border-left: 1px solid var(--rule); }
.lc-benefits__grid > div:first-child { padding-left: 0; border-left: 0; }
.lc-benefits__grid h2 { font-size: clamp(2rem, 3.2vw, 3.3rem); }
.lc-benefits__grid h3 { margin: 12px 0; font-size: 1.55rem; }
.lc-benefits__grid span { color: var(--coral); font-family: var(--serif); font-size: 1.45rem; }

.lc-split { display: grid; grid-template-columns: 1fr 1fr; }
.lc-split__image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.lc-split__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(54px, 7vw, 100px); background: var(--paper); }
.lc-split__copy ul { margin: 16px 0 0; padding: 0; list-style: none; }
.lc-split__copy li { padding: 12px 0 12px 30px; border-bottom: 1px solid var(--rule); position: relative; }
.lc-split__copy li::before { content: "—"; position: absolute; left: 0; color: var(--coral); }

.lc-area { border-block: 1px solid rgba(43, 18, 55, .15); background: var(--sand); }
.lc-area__inner { display: grid; grid-template-columns: 1.3fr 1fr auto; align-items: center; gap: 34px; min-height: 132px; }
.lc-area h2, .lc-area p { margin-bottom: 0; }
.lc-area h2 { font-size: clamp(1.65rem, 3vw, 2.75rem); }
.lc-area .lc-eyebrow { margin-bottom: 7px; }

.lc-faq { padding: 92px 0; background: #fffaf5; }
.lc-faq__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.lc-faq details { border-top: 1px solid var(--rule); }
.lc-faq details:last-child { border-bottom: 1px solid var(--rule); }
.lc-faq summary { position: relative; cursor: pointer; padding: 20px 42px 20px 0; font-weight: 700; list-style: none; }
.lc-faq summary::after { content: "+"; position: absolute; right: 10px; color: var(--coral); font-size: 1.3rem; }
.lc-faq details[open] summary::after { content: "–"; }
.lc-faq details p { max-width: 780px; padding: 0 42px 20px 0; }

.lc-final { padding: 38px 0; background: var(--ink); color: #fff; }
.lc-final__inner { display: grid; grid-template-columns: 1.4fr 1fr auto; align-items: center; gap: 40px; }
.lc-final h2 { margin: 0; color: #fff; font-size: clamp(2rem, 3.5vw, 3.6rem); }
.lc-final p { margin: 0; }
.lc-footer { padding: 64px 0 24px; border-top: 1px solid var(--rule); background: var(--paper); }
.lc-footer__grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 50px; }
.lc-footer__brand img { width: 220px; margin-bottom: 18px; }
.lc-footer__brand p { max-width: 290px; }
.lc-footer h2 { font-family: var(--sans); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.lc-footer ul { list-style: none; margin: 0; padding: 0; }
.lc-footer li { margin: 8px 0; }
.lc-footer a { text-decoration: none; }
.lc-footer a:hover { color: var(--coral); }
.lc-footer__legal { margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--rule); font-size: .8rem; }

.lc-page-hero, .lc-simple-hero { padding: clamp(70px, 9vw, 130px) 0; border-bottom: 1px solid var(--rule); background: linear-gradient(135deg, #fffaf5, var(--paper)); }
.lc-page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .72fr); align-items: start; gap: clamp(40px, 7vw, 100px); }
.lc-page-hero h1, .lc-simple-hero h1 { max-width: 920px; font-size: clamp(2.55rem, 3.8vw, 3.5rem); }
.lc-page-hero .lc-button { margin-top: 18px; }
.lc-no-form .lc-page-hero__grid { grid-template-columns: minmax(0, 850px); }
.lc-content { padding: 92px 0; background: #fffaf5; }
.lc-content:nth-of-type(even) { background: var(--paper); }
.lc-content__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.lc-content__grid h2 { font-size: clamp(2.1rem, 3.7vw, 3.8rem); }
.lc-content--image { padding: 0; }
.lc-content--image .lc-shell { width: 100%; }
.lc-content--related > .lc-shell { display: grid; grid-template-columns: minmax(0, 760px); }
.lc-content--related h2 { max-width: 760px; }
.lc-context-photo { width: var(--shell); margin: 0 auto; padding: 64px 0 0; }
.lc-context-photo img { width: 100%; height: clamp(320px, 36vw, 480px); object-fit: cover; }
.lc-location-photo { width: var(--shell); margin: 0 auto; padding: 0 0 92px; }
.lc-location-photo img { width: 100%; height: clamp(320px, 36vw, 480px); object-fit: cover; }
.lc-location-grid { padding: 80px 0; }
.lc-location-grid .lc-shell { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--rule); }
.lc-location-grid a { min-height: 250px; padding: 38px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); text-decoration: none; }
.lc-location-grid a:nth-child(even) { border-right: 0; }
.lc-location-grid h2 { font-size: 2.4rem; }
.lc-location-grid span { color: var(--coral); font-weight: 700; }
.lc-legal { max-width: 850px; }
.lc-legal h2 { margin-top: 48px; font-size: 2.1rem; }
.lc-effective { color: #665a65; font-size: .9rem; }
.lc-sitemap { margin-top: 36px; columns: 2; }
.lc-sitemap li { break-inside: avoid; margin: 10px 0; }
.lc-form-shell { width: 100%; max-width: 540px; padding: 26px; background: #fff; border: 1px solid var(--rule); }
.lc-form-shell iframe,
.lc-form-shell close-form { display: block; width: 100%; border: 0; }

@media (max-width: 980px) {
	:root { --shell: min(100% - 34px, 760px); }
	h1 { font-size: clamp(2.3rem, 6.5vw, 3.5rem); }
	.lc-menu-toggle { display: inline-flex; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; border: 0; background: transparent; font-size: 0; }
	.lc-menu-toggle i, .lc-menu-toggle i::before, .lc-menu-toggle i::after { display: block; width: 24px; height: 2px; background: var(--ink); }
	.lc-menu-toggle i { position: relative; }
	.lc-menu-toggle i::before, .lc-menu-toggle i::after { content: ""; position: absolute; left: 0; }
	.lc-menu-toggle i::before { top: -7px; }
	.lc-menu-toggle i::after { top: 7px; }
	.lc-nav { position: fixed; z-index: 102; top: 0; right: 0; bottom: 0; width: min(88vw, 390px); display: flex; flex-direction: column; align-items: stretch; overflow-y: auto; padding: 90px 28px 32px; background: var(--paper); transform: translateX(105%); transition: transform .28s ease; }
	.menu-open .lc-nav { transform: none; }
	.lc-nav__list { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
	.lc-nav__list > li { border-bottom: 1px solid var(--rule); }
	.lc-nav__list > li > a, .lc-nav__parent > a { display: flex; min-height: 54px; align-items: center; font-size: 1rem; }
	.lc-nav__parent { display: grid; grid-template-columns: minmax(0, 1fr) 48px; gap: 0; }
	.lc-submenu-toggle { width: 48px; height: 54px; }
	.lc-submenu { position: static; display: none; width: auto; margin: 0 0 12px 14px; padding: 2px 0 2px 16px; border: 0; border-left: 2px solid var(--coral); box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: none; }
	.lc-submenu::before { display: none; }
	.lc-nav__item--has-submenu:hover > .lc-submenu,
	.lc-nav__item--has-submenu:focus-within > .lc-submenu { display: none; }
	.lc-nav__item--has-submenu.submenu-open > .lc-submenu { display: block; }
	.lc-submenu a { min-height: 42px; display: flex; align-items: center; padding: 7px 10px; font-size: .92rem; line-height: 1.25; }
	.lc-scrim { position: fixed; z-index: 101; inset: 0; display: block; border: 0; background: rgba(21, 11, 26, .55); opacity: 0; pointer-events: none; transition: .25s ease; }
	.menu-open .lc-scrim { opacity: 1; pointer-events: auto; }
	.menu-open .lc-menu-toggle { position: fixed; z-index: 103; top: 18px; right: 18px; }
	.menu-open .lc-menu-toggle i { background: transparent; }
	.menu-open .lc-menu-toggle i::before { top: 0; transform: rotate(45deg); }
	.menu-open .lc-menu-toggle i::after { top: 0; transform: rotate(-45deg); }
	.lc-hero { grid-template-columns: 1fr; }
	.lc-hero__copy { padding: 64px max(17px, calc((100vw - 760px) / 2)); }
	.lc-hero__image { min-height: 420px; }
	.lc-service-list a { grid-template-columns: 58px minmax(0, 1fr) 34px; gap: 16px; padding: 18px 0; }
	.lc-service-list p { grid-column: 2 / -1; }
	.lc-benefits__grid { grid-template-columns: 1fr 1fr; }
	.lc-benefits__grid > div:nth-child(3) { border-left: 0; }
	.lc-benefits__grid > div { padding: 24px; border-bottom: 1px solid var(--rule); }
	.lc-split { grid-template-columns: 1fr; }
	.lc-split__image img { min-height: 420px; }
	.lc-area__inner { grid-template-columns: 1fr; gap: 12px; padding-block: 36px; }
	.lc-faq__grid, .lc-page-hero__grid, .lc-content__grid, .lc-final__inner { grid-template-columns: 1fr; }
	.lc-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
	.lc-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
	:root { --shell: calc(100% - 28px); }
	body { font-size: 15px; }
	.lc-header__inner { min-height: 68px; }
	.lc-brand, .lc-brand img { width: 150px; flex-basis: 150px; }
	.lc-hero__copy { padding: 48px 14px; }
	.lc-hero__copy h1 { font-size: 2.125rem; line-height: 1.08; }
	.lc-hero__image { min-height: 300px; }
	.lc-services { padding-top: 60px; }
	.lc-service-list a { grid-template-columns: 42px minmax(0, 1fr) 26px; }
	.lc-service-list a > span { font-size: 1rem; }
	.lc-service-list h3 { font-size: 1.45rem; }
	.lc-service-list p { font-size: .88rem; }
	.lc-benefits { padding: 56px 0; }
	.lc-benefits__grid { grid-template-columns: 1fr; }
	.lc-benefits__grid > div, .lc-benefits__grid > div:first-child { padding: 24px 0; border-left: 0; }
	.lc-split__image img { min-height: 280px; }
	.lc-split__copy { padding: 56px 18px; }
	.lc-faq, .lc-content { padding: 64px 0; }
	.lc-faq__grid { gap: 28px; }
	.lc-final { padding: 44px 0; }
	.lc-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
	.lc-footer__brand { grid-column: 1 / -1; }
	.lc-location-grid .lc-shell { grid-template-columns: 1fr; }
	.lc-location-grid a, .lc-location-grid a:nth-child(even) { min-height: 0; padding: 28px 0; border-right: 0; }
	.lc-sitemap { columns: 1; }
	.lc-page-hero, .lc-simple-hero { padding: 62px 0; }
	.lc-page-hero h1, .lc-simple-hero h1 { font-size: 2.125rem; line-height: 1.08; }
	.lc-location-photo { padding-bottom: 64px; }
	.lc-location-photo img { height: 260px; }
	.lc-context-photo { padding-top: 42px; }
	.lc-context-photo img { height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
