@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;500;600;700&family=Prata&display=swap");

:root {
	--navy: #071f35;
	--navy-2: #0c2d49;
	--gold: #d99a24;
	--cream: #f7f4ed;
	--slate: #496070;
	--blue-wash: #e8f0f4;
	--rule: rgba(7, 31, 53, .2);
	--shell: min(1220px, calc(100vw - 48px));
	--display: "Prata", Georgia, serif;
	--sans: "Libre Franklin", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--navy); background: var(--cream); font: 16px/1.65 var(--sans); }
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 { font-family: var(--display); font-weight: 400; line-height: 1.22; letter-spacing: .04em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 4vw, 3.5rem); letter-spacing: .035em; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 3.6vw, 3.8rem); letter-spacing: .07em; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.55rem); }
.lc-shell { width: var(--shell); margin-inline: auto; }
.lc-skip { position: fixed; z-index: 9999; top: 8px; left: 8px; transform: translateY(-160%); padding: 10px 14px; background: #fff; }
.lc-skip:focus { transform: none; }
.lc-eyebrow { margin-bottom: 18px; color: var(--gold); font-size: .73rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.lc-lead { max-width: 610px; font-size: clamp(1.04rem, 1.5vw, 1.25rem); }
.lc-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 24px; border: 1px solid var(--gold); color: var(--gold); background: transparent; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.lc-button:hover, .lc-button:focus-visible { color: var(--navy); background: var(--gold); }
.lc-text-link { color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-underline-offset: 5px; text-transform: uppercase; }
.lc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 30px; }

.lc-header { position: relative; z-index: 100; background: var(--navy); color: #fff; border-bottom: 1px solid rgba(255,255,255,.12); }
.lc-header__inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.lc-brand { flex: 0 0 175px; padding: 7px; background: #fff; }
.lc-brand img { width: 160px; max-height: 50px; object-fit: contain; }
.lc-nav { display: flex; align-items: center; gap: 38px; }
.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: 3px; }
.lc-nav__list a { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.lc-nav__list a:hover, .lc-nav__list a:focus-visible { color: var(--gold); }
.lc-submenu-toggle { width: 28px; height: 32px; display: inline-flex; align-items: center; justify-content: center; padding: 0; border: 0; background: transparent; color: #fff; 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(--gold); }
.lc-submenu { position: absolute; z-index: 110; top: calc(100% + 12px); left: -18px; width: 250px; margin: 0; padding: 10px 0; border: 1px solid rgba(255,255,255,.18); background: var(--navy); box-shadow: 0 18px 40px rgba(2,14,25,.28); 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: 14px; }
.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; }
.lc-menu-toggle, .lc-scrim { display: none; }

.lc-hero { position: relative; min-height: 710px; display: flex; align-items: center; color: #fff; background: linear-gradient(90deg, rgba(7,31,53,.97) 0%, rgba(7,31,53,.84) 42%, rgba(7,31,53,.18) 78%), url("../images/hero.webp") center/cover no-repeat; border-bottom: 3px solid var(--gold); }
.lc-hero__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(330px, .55fr); align-items: center; gap: 90px; padding-block: 76px; }
.lc-hero__copy h1 { max-width: 730px; color: #fff; }
.lc-hero__copy .lc-lead { max-width: 490px; color: rgba(255,255,255,.88); }
.lc-hero__form { justify-self: end; width: 100%; max-width: 480px; }
.lc-no-form .lc-hero__grid { grid-template-columns: minmax(0, 760px); }
.lc-form-shell { width: 100%; max-width: 480px; min-height: 577px; padding: 28px; background: rgba(247,244,237,.98); color: var(--navy); }
.lc-form-shell iframe,
.lc-form-shell close-form { display: block; width: 100%; border: 0; }

.lc-services { padding: 88px 0; background: var(--cream); }
.lc-services h2 { max-width: 850px; }
.lc-service-list { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 54px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.lc-service-list a { min-width: 0; min-height: 360px; display: flex; flex-direction: column; padding: 36px 24px 30px; border-right: 1px solid var(--rule); text-decoration: none; }
.lc-service-list a:last-child { border-right: 0; }
.lc-service-list a:first-child { border-top: 4px solid var(--gold); }
.lc-service-list h3 { min-height: 72px; margin: 22px 0 14px; font-size: 1.25rem; letter-spacing: .08em; text-transform: uppercase; }
.lc-service-list p { color: var(--slate); font-size: .9rem; }
.lc-service-list i { margin-top: auto; color: var(--gold); font-style: normal; font-size: 1.4rem; }
.lc-service-icon { width: 46px; height: 46px; border: 1px solid var(--navy); border-radius: 50%; position: relative; }
.lc-service-icon::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--gold); transform: rotate(45deg); }

.lc-split { display: grid; grid-template-columns: .85fr 1.15fr; background: #fff; }
.lc-split__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 7vw, 110px); }
.lc-split__copy ul { list-style: none; margin: 18px 0 0; padding: 0; }
.lc-split__copy li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--rule); }
.lc-split__copy li::before { content: "▱"; position: absolute; left: 0; color: var(--gold); }
.lc-split__image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }

.lc-benefits { padding: 72px 0; background: var(--cream); }
.lc-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.lc-benefits__grid > div { padding: 8px 48px; text-align: center; border-right: 1px solid var(--rule); }
.lc-benefits__grid > div:last-child { border-right: 0; }
.lc-benefits__grid span { display: block; color: var(--gold); font-family: var(--display); font-size: 1.5rem; }
.lc-benefits__grid h3 { margin: 15px 0; text-transform: uppercase; }
.lc-benefits__grid p { color: var(--slate); }

.lc-area { padding: 42px 0; background: var(--blue-wash); }
.lc-area__inner { display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 38px; }
.lc-area h2, .lc-area p { margin-bottom: 0; }
.lc-area h2 { font-size: clamp(1.75rem, 3vw, 2.85rem); }
.lc-area .lc-eyebrow { margin-bottom: 8px; color: var(--slate); }

.lc-faq { padding: 90px 0; background: var(--cream); }
.lc-faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.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; list-style: none; padding: 20px 42px 20px 0; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lc-faq summary::after { content: "+"; position: absolute; right: 10px; color: var(--gold); font-size: 1.2rem; }
.lc-faq details[open] summary::after { content: "–"; }
.lc-faq details p { padding: 0 42px 22px 0; color: var(--slate); }

.lc-final { padding: 52px 0; background: var(--navy); color: #fff; border-top: 1px solid rgba(255,255,255,.14); }
.lc-final__inner { display: grid; grid-template-columns: 1.25fr 1fr auto; align-items: center; gap: 46px; }
.lc-final h2 { margin: 0; color: #fff; font-size: clamp(2rem, 3.4vw, 3.4rem); text-transform: uppercase; }
.lc-final p { margin: 0; color: rgba(255,255,255,.8); }
.lc-footer { padding: 66px 0 22px; background: var(--navy); color: rgba(255,255,255,.82); }
.lc-footer__grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 48px; }
.lc-footer__brand img { width: 190px; margin-bottom: 20px; padding: 8px; background: #fff; }
.lc-footer__brand p { max-width: 300px; }
.lc-footer h2 { color: #fff; font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .15em; 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(--gold); }
.lc-footer__legal { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); font-size: .78rem; }

.lc-page-hero, .lc-simple-hero { padding: clamp(80px, 9vw, 135px) 0; color: #fff; background: linear-gradient(120deg, rgba(7,31,53,.96), rgba(12,45,73,.72)), var(--lc-page-image, url("../images/hero.webp")) center/cover; border-bottom: 3px solid var(--gold); }
.lc-page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .6fr); gap: 90px; align-items: start; }
.lc-page-hero h1, .lc-simple-hero h1 { max-width: 960px; color: #fff; font-size: clamp(2.55rem, 3.7vw, 3.25rem); }
.lc-page-hero .lc-lead, .lc-simple-hero .lc-lead, .lc-simple-hero p { color: rgba(255,255,255,.84); }
.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: var(--cream); }
.lc-content:nth-of-type(even) { background: #fff; }
.lc-content__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.lc-content__grid h2 { font-size: clamp(2rem, 3.4vw, 3.4rem); }
.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-location-grid { padding: 80px 0; background: var(--cream); }
.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: 260px; 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.2rem; }
.lc-location-grid span { color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.lc-legal { max-width: 850px; }
.lc-legal h2 { margin-top: 48px; color: #fff; font-size: 2rem; }
.lc-effective { font-size: .85rem; }
.lc-sitemap { margin-top: 36px; columns: 2; }
.lc-sitemap li { break-inside: avoid; margin: 10px 0; }

@media (max-width: 1020px) {
	:root { --shell: min(100% - 34px, 780px); }
	.lc-menu-toggle { display: inline-flex; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; border: 0; background: transparent; color: #fff; font-size: 0; }
	.lc-menu-toggle i, .lc-menu-toggle i::before, .lc-menu-toggle i::after { display: block; width: 26px; height: 2px; background: #fff; }
	.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: -8px; }
	.lc-menu-toggle i::after { top: 8px; }
	.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; padding: 92px 28px 32px; background: var(--navy); transform: translateX(105%); transition: transform .28s ease; }
	.menu-open .lc-nav { transform: none; }
	.lc-nav__list { flex-direction: column; gap: 0; }
	.lc-nav__list > li { border-bottom: 1px solid rgba(255,255,255,.16); }
	.lc-nav__list > li > a, .lc-nav__parent > a { display: flex; min-height: 56px; align-items: center; }
	.lc-nav__parent { display: grid; grid-template-columns: minmax(0, 1fr) 48px; gap: 0; }
	.lc-submenu-toggle { width: 48px; height: 56px; }
	.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(--gold); 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: .82rem; line-height: 1.25; }
	.lc-scrim { position: fixed; z-index: 101; inset: 0; display: block; border: 0; background: rgba(2,14,25,.65); 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 { min-height: 0; background: linear-gradient(rgba(7,31,53,.84), rgba(7,31,53,.96)), url("../images/hero.webp") center/cover; }
	.lc-hero__grid, .lc-faq__grid, .lc-page-hero__grid, .lc-content__grid, .lc-final__inner { grid-template-columns: 1fr; }
	.lc-service-list { grid-template-columns: repeat(2, 1fr); }
	.lc-service-list a { min-height: 290px; border-bottom: 1px solid var(--rule); }
	.lc-service-list a:nth-child(even) { border-right: 0; }
	.lc-split { grid-template-columns: 1fr; }
	.lc-split__image { order: -1; }
	.lc-split__image img { min-height: 420px; }
	.lc-benefits__grid { grid-template-columns: 1fr; }
	.lc-benefits__grid > div { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--rule); }
	.lc-area__inner { grid-template-columns: 1fr; gap: 12px; }
	.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: 70px; }
	.lc-brand { width: 150px; flex-basis: 150px; }
	.lc-brand img { width: 136px; }
	.lc-hero__grid { padding-block: 56px; }
	.lc-hero h1 { font-size: 2.125rem; letter-spacing: .025em; }
	.lc-services, .lc-content, .lc-faq { padding: 62px 0; }
	.lc-service-list { grid-template-columns: 1fr; }
	.lc-service-list a, .lc-service-list a:nth-child(even) { min-height: 0; padding: 28px 4px; border-right: 0; }
	.lc-service-list h3 { min-height: 0; }
	.lc-split__copy { padding: 56px 18px; }
	.lc-split__image img { min-height: 280px; }
	.lc-area { padding: 38px 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-page-hero, .lc-simple-hero { padding: 64px 0; }
	.lc-page-hero h1, .lc-simple-hero h1 { font-size: 2.125rem; letter-spacing: .025em; }
	.lc-sitemap { columns: 1; }
}

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