/**
 * Lady Nicole Editor-First v3 — Phase 6 global shell.
 * Unique lnv3-* selectors isolate the public header and footer from legacy CSS.
 */
:root {
  --lnv3-blue: #0b82bb;
  --lnv3-blue-deep: #075779;
  --lnv3-navy: #071d2d;
  --lnv3-ink: #13191e;
  --lnv3-muted: #66737c;
  --lnv3-line: #dce5e9;
  --lnv3-paper: #fff;
  --lnv3-accent: #f5a019;
  --lnv3-container: 1320px;
  --lnv3-topbar-h: 34px;
  --lnv3-header-h: 88px;
  --lnv3-shadow: 0 22px 55px rgba(4, 29, 44, .14);
}

.lnv3-shell,
.lnv3-shell *,
.lnv3-footer,
.lnv3-footer * { box-sizing: border-box; }

.lnv3-container {
  width: min(calc(100% - 64px), var(--lnv3-container));
  margin-inline: auto;
}

.lnv3-skip {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 2px;
  background: #fff;
  color: #111;
  box-shadow: var(--lnv3-shadow);
}
.lnv3-skip:focus { transform: translateY(0); }

/* Header */
.lnv3-shell {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #fff;
  color: var(--lnv3-ink);
  isolation: isolate;
}
.lnv3-shell.is-sticky { position: sticky; top: 0; }
.admin-bar .lnv3-shell.is-sticky { top: 32px; }

.lnv3-topbar {
  min-height: var(--lnv3-topbar-h);
  background: var(--lnv3-blue);
  color: #fff;
}
.lnv3-topbar__inner {
  min-height: var(--lnv3-topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lnv3-topbar__content {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .055em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
span.lnv3-topbar__content { cursor: default; }
.lnv3-topbar__content svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.lnv3-topbar.is-empty .lnv3-topbar__inner { min-height: var(--lnv3-topbar-h); }

.lnv3-header {
  position: relative;
  min-height: var(--lnv3-header-h);
  border-bottom: 1px solid var(--lnv3-line);
  background: rgba(255, 255, 255, .985);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.lnv3-shell.is-scrolled .lnv3-header {
  border-bottom-color: transparent;
  box-shadow: 0 8px 26px rgba(4, 28, 43, .09);
}
.lnv3-header__inner {
  min-height: var(--lnv3-header-h);
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 2.3vw, 44px);
}

.lnv3-brand {
  all: unset;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.lnv3-brand__logo {
  display: block;
  width: min(152px, 100%);
  height: auto;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

.lnv3-desktop-nav {
  min-width: 0;
  height: var(--lnv3-header-h);
  display: flex;
  justify-content: center;
}
.lnv3-menu {
  all: unset;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(16px, 1.55vw, 27px);
  list-style: none;
}
.lnv3-menu__item {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.lnv3-menu__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  background: var(--lnv3-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.lnv3-menu__item:hover::after,
.lnv3-menu__item:focus-within::after,
.lnv3-menu__item.is-open::after,
.lnv3-menu__item.is-current::after { transform: scaleX(1); }

.lnv3-menu__row {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lnv3-menu__link {
  all: unset;
  height: 100%;
  display: inline-flex;
  align-items: center;
  color: var(--lnv3-ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 520;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}
.lnv3-menu__link:hover,
.lnv3-menu__link:focus-visible,
.lnv3-menu__item.is-current > .lnv3-menu__row > .lnv3-menu__link { color: var(--lnv3-blue); }

.lnv3-menu__toggle {
  all: unset;
  width: 22px;
  height: 100%;
  display: inline-grid;
  place-items: center;
  color: var(--lnv3-ink);
  cursor: pointer;
}
.lnv3-menu__toggle svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .18s ease;
}
.lnv3-menu__item.is-open .lnv3-menu__toggle svg { transform: rotate(180deg); }

.lnv3-submenu {
  position: absolute;
  z-index: 80;
  top: calc(100% - 8px);
  left: 50%;
  width: max-content;
  min-width: 260px;
  max-width: min(360px, calc(100vw - 32px));
  padding-top: 13px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.lnv3-submenu::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--lnv3-line);
  border-left: 1px solid var(--lnv3-line);
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}
.lnv3-submenu > ul {
  all: unset;
  display: block;
  padding: 10px;
  border: 1px solid var(--lnv3-line);
  background: #fff;
  box-shadow: var(--lnv3-shadow);
  list-style: none;
}
.lnv3-submenu li { all: unset; display: block; }
.lnv3-submenu a {
  all: unset;
  display: block;
  padding: 13px 14px;
  color: #20262b;
  font-family: inherit;
  font-size: 14px;
  font-weight: 580;
  line-height: 1.35;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lnv3-submenu a:hover,
.lnv3-submenu a:focus-visible,
.lnv3-submenu a[aria-current="page"] { background: #eef7fb; color: var(--lnv3-blue); }
.lnv3-menu__item:hover > .lnv3-submenu,
.lnv3-menu__item:focus-within > .lnv3-submenu,
.lnv3-menu__item.is-open > .lnv3-submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.lnv3-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.lnv3-action,
.lnv3-client {
  all: unset;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lnv3-ink);
  font-family: inherit;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.lnv3-action { border-radius: 999px; }
.lnv3-action:hover,
.lnv3-action:focus-visible,
.lnv3-client:hover,
.lnv3-client:focus-visible { background: #eef7fb; color: var(--lnv3-blue); }
.lnv3-action svg,
.lnv3-client svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lnv3-language {
  min-width: 52px;
  gap: 5px;
  border: 1px solid var(--lnv3-line);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .04em;
}
.lnv3-language svg { width: 16px; height: 16px; }
.lnv3-client {
  gap: 7px;
  padding: 0 9px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 680;
  white-space: nowrap;
}
.lnv3-menu-button { display: none; }

/* Search */
.lnv3-search {
  position: fixed;
  z-index: 1300;
  inset: 0;
}
.lnv3-search__backdrop {
  all: unset;
  position: absolute;
  inset: 0;
  background: rgba(4, 23, 35, .58);
  cursor: pointer;
}
.lnv3-search__dialog {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: min(12vh, 110px) auto 0;
  padding: clamp(24px, 4vw, 46px);
  background: #fff;
  box-shadow: var(--lnv3-shadow);
}
.lnv3-search__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.lnv3-search__head span { color: var(--lnv3-blue); font-size: 11px; font-weight: 800; letter-spacing: .17em; }
.lnv3-search__head h2 {
  all: unset;
  display: block;
  margin-top: 8px;
  color: var(--lnv3-navy);
  font-family: inherit;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 760;
  line-height: 1.05;
}
.lnv3-search__field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 0;
  border-bottom: 2px solid var(--lnv3-navy);
}
.lnv3-search__field svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.lnv3-search__field input { all: unset; min-width: 0; width: 100%; color: var(--lnv3-ink); font-family: inherit; font-size: 17px; }
.lnv3-search__results { display: grid; gap: 1px; margin-top: 18px; background: var(--lnv3-line); }
.lnv3-search__results a {
  all: unset;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  background: #fff;
  color: var(--lnv3-ink);
  font-size: 14px;
  font-weight: 620;
  cursor: pointer;
}
.lnv3-search__results a:hover { color: var(--lnv3-blue); }
.lnv3-search__results svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.lnv3-search__results p { margin: 0; padding: 16px; background: #fff; color: var(--lnv3-muted); }

/* Mobile drawer */
.lnv3-overlay {
  position: fixed;
  z-index: 1190;
  inset: 0;
  background: rgba(4, 23, 35, .5);
  opacity: 0;
  transition: opacity .22s ease;
}
.lnv3-overlay.is-open { opacity: 1; }
.lnv3-drawer {
  position: fixed;
  z-index: 1200;
  inset: 0;
  pointer-events: none;
}
.lnv3-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 94vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
  background: #fff;
  box-shadow: -18px 0 48px rgba(4, 29, 44, .2);
  pointer-events: auto;
  transform: translateX(104%);
  transition: transform .24s ease;
}
.lnv3-drawer.is-open .lnv3-drawer__panel { transform: translateX(0); }
.lnv3-drawer__head {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--lnv3-line);
}
.lnv3-drawer__head .lnv3-brand__logo { width: 142px; max-height: 46px; }
.lnv3-mobile-nav { flex: 1 1 auto; padding: 7px 18px 24px; }
.lnv3-mobile-nav > ul,
.lnv3-mobile-submenu { all: unset; display: block; list-style: none; }
.lnv3-mobile-nav > ul > li { display: block; border-bottom: 1px solid var(--lnv3-line); }
.lnv3-mobile-nav__row { display: grid; grid-template-columns: minmax(0, 1fr) 50px; align-items: center; }
.lnv3-mobile-nav__row > a,
.lnv3-mobile-submenu a {
  all: unset;
  display: block;
  color: var(--lnv3-ink);
  font-family: inherit;
  cursor: pointer;
}
.lnv3-mobile-nav__row > a { padding: 18px 4px; font-size: 17px; font-weight: 650; line-height: 1.2; }
.lnv3-mobile-nav__row > button {
  all: unset;
  width: 50px;
  height: 54px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lnv3-mobile-nav__row > button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .18s ease; }
.lnv3-mobile-nav > ul > li.is-open .lnv3-mobile-nav__row > button svg { transform: rotate(180deg); }
.lnv3-mobile-submenu { padding: 0 0 12px 16px; }
.lnv3-mobile-submenu li { display: block; }
.lnv3-mobile-submenu a { padding: 11px 4px; color: var(--lnv3-muted); font-size: 14px; font-weight: 580; line-height: 1.35; }
.lnv3-mobile-nav li.is-current > .lnv3-mobile-nav__row > a,
.lnv3-mobile-submenu a:hover { color: var(--lnv3-blue); }
.lnv3-drawer__footer { padding: 20px 18px max(24px, env(safe-area-inset-bottom)); border-top: 1px solid var(--lnv3-line); background: #f7fafb; }
.lnv3-drawer__cta {
  all: unset;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  background: var(--lnv3-accent);
  color: #101820;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
}
.lnv3-drawer__cta svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.lnv3-drawer__links { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 18px; margin-top: 16px; }
.lnv3-drawer__links a { all: unset; color: var(--lnv3-muted); font-size: 13px; font-weight: 620; cursor: pointer; }
html.lnv3-scroll-lock { overflow: hidden; }

/* Footer */
.lnv3-footer {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #07577f;
  color: #fff;
  isolation: isolate;
}
.lnv3-footer::before,
.lnv3-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.lnv3-footer::before { width: 480px; height: 480px; top: -320px; left: -180px; background: rgba(52, 164, 211, .2); }
.lnv3-footer::after { width: 420px; height: 420px; right: -210px; bottom: -290px; background: rgba(2, 43, 69, .34); }

.lnv3-footer-cta { border-bottom: 1px solid rgba(255, 255, 255, .18); background: #062f49; }
.lnv3-footer-cta__inner {
  min-height: 176px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  padding-block: 34px;
}
.lnv3-footer-cta__copy { max-width: 820px; }
.lnv3-footer-cta__copy > span {
  display: block;
  margin-bottom: 10px;
  color: #78d0f5;
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  letter-spacing: .17em;
}
.lnv3-footer-cta__copy h2 {
  all: unset;
  display: block;
  color: #fff;
  font-family: inherit;
  font-size: clamp(27px, 3.3vw, 48px);
  font-weight: 740;
  line-height: 1.06;
  letter-spacing: -.025em;
}
.lnv3-footer-cta__copy p { max-width: 680px; margin: 14px 0 0; color: rgba(255, 255, 255, .75); font-size: 15px; line-height: 1.65; }
.lnv3-footer-cta__button {
  all: unset;
  min-width: 190px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  background: var(--lnv3-accent);
  color: #111a20;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.lnv3-footer-cta__button:hover,
.lnv3-footer-cta__button:focus-visible { background: #ffad29; transform: translateY(-2px); }
.lnv3-footer-cta__button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.lnv3-footer__main { padding: 52px 0 46px; }
.lnv3-footer__brand {
  display: grid;
  grid-template-columns: 190px minmax(0, 610px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.lnv3-footer__logo { all: unset; display: inline-flex; align-items: center; cursor: pointer; }
.lnv3-footer__logo-image {
  display: block;
  width: min(172px, 100%);
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.lnv3-footer__brand p { margin: 0; color: rgba(255, 255, 255, .78); font-size: 14px; line-height: 1.75; }

.lnv3-footer__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr 1.2fr;
  gap: clamp(44px, 7vw, 100px);
  padding-top: 38px;
}
.lnv3-footer__column { min-width: 0; }
.lnv3-footer__heading {
  all: unset;
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lnv3-footer__menu { all: unset; display: grid; gap: 11px; list-style: none; }
.lnv3-footer__menu li { all: unset; display: block; }
.lnv3-footer__menu a {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .78);
  font-family: inherit;
  font-size: 14px;
  font-weight: 520;
  line-height: 1.45;
  cursor: pointer;
  transition: color .16s ease, transform .16s ease;
}
.lnv3-footer__menu a::before { content: ""; width: 4px; height: 4px; flex: 0 0 4px; border-radius: 50%; background: rgba(255, 255, 255, .58); }
.lnv3-footer__menu a:hover,
.lnv3-footer__menu a:focus-visible { color: #fff; transform: translateX(3px); }
.lnv3-footer__socials { display: flex; flex-wrap: wrap; gap: 9px; }
.lnv3-footer__socials a {
  all: unset;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .035);
  color: #fff;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.lnv3-footer__socials a:hover,
.lnv3-footer__socials a:focus-visible { border-color: #fff; background: rgba(255, 255, 255, .13); transform: translateY(-2px); }
.lnv3-footer__socials svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.lnv3-footer__social-note { max-width: 330px; margin: 14px 0 0; color: rgba(255, 255, 255, .72); font-size: 13px; line-height: 1.65; }

.lnv3-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .2); background: rgba(1, 34, 55, .24); }
.lnv3-footer__bottom-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-block: 11px; }
.lnv3-footer__bottom p { margin: 0; color: rgba(255, 255, 255, .74); font-size: 12px; line-height: 1.5; }
.lnv3-footer__bottom-actions { display: flex; align-items: center; gap: 24px; }
.lnv3-footer__bottom-actions a,
.lnv3-footer__bottom-actions button {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
}
.lnv3-footer__bottom-actions a:hover,
.lnv3-footer__bottom-actions button:hover { text-decoration: underline; text-underline-offset: 4px; }
.lnv3-footer__bottom-actions svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

@media (max-width: 1270px) and (min-width: 1121px) {
  .lnv3-header__inner { grid-template-columns: 150px minmax(0, 1fr) auto; gap: 14px; }
  .lnv3-menu { gap: clamp(10px, 1vw, 15px); }
  .lnv3-menu__link { font-size: 12.5px; }
  .lnv3-client span { display: none; }
  .lnv3-client { min-width: 44px; padding: 0; border-radius: 999px; }
}

@media (max-width: 1120px) {
  :root { --lnv3-header-h: 78px; }
  .lnv3-container { width: min(calc(100% - 40px), var(--lnv3-container)); }
  .lnv3-header__inner { grid-template-columns: minmax(0, 1fr) auto; gap: 16px; }
  .lnv3-desktop-nav { display: none; }
  .lnv3-brand__logo { width: 145px; max-height: 46px; }
  .lnv3-menu-button { display: inline-flex; }
}

@media (max-width: 782px) {
  .admin-bar .lnv3-shell.is-sticky { top: 46px; }
}

@media (max-width: 760px) {
  .lnv3-footer-cta__inner { grid-template-columns: 1fr; gap: 24px; }
  .lnv3-footer-cta__button { width: min(100%, 330px); }
  .lnv3-footer__brand { grid-template-columns: 1fr; gap: 20px; }
  .lnv3-footer__grid { grid-template-columns: 1fr; gap: 0; }
  .lnv3-footer__column { padding: 0 0 28px; border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .lnv3-footer__column + .lnv3-footer__column { padding-top: 28px; }
  .lnv3-footer__column:last-child { padding-bottom: 0; border-bottom: 0; }
  .lnv3-footer__bottom-inner { align-items: flex-start; flex-direction: column; justify-content: center; gap: 10px; min-height: 90px; }
}

@media (max-width: 600px) {
  :root { --lnv3-topbar-h: 28px; --lnv3-header-h: 70px; }
  .admin-bar .lnv3-shell.is-sticky { top: 0; }
  .lnv3-container { width: min(calc(100% - 26px), var(--lnv3-container)); }
  .lnv3-topbar__content { font-size: 10px; }
  .lnv3-brand__logo { width: 128px; max-height: 42px; }
  .lnv3-actions { gap: 1px; }
  .lnv3-action,
  .lnv3-client { min-width: 40px; min-height: 40px; }
  .lnv3-language { min-width: 42px; }
  .lnv3-language svg { display: none; }
  .lnv3-client { display: none; }
  .lnv3-social-action { display: none; }
  .lnv3-footer__main { padding: 44px 0 38px; }
  .lnv3-footer-cta__inner { min-height: 0; padding-block: 30px; }
  .lnv3-footer-cta__copy h2 { font-size: clamp(26px, 9vw, 38px); }
  .lnv3-footer__bottom-actions { flex-wrap: wrap; gap: 14px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .lnv3-shell *,
  .lnv3-shell *::before,
  .lnv3-shell *::after,
  .lnv3-footer *,
  .lnv3-footer *::before,
  .lnv3-footer *::after { transition-duration: .01ms; animation-duration: .01ms; animation-iteration-count: 1; scroll-behavior: auto; }
}


/* Phase 13.1 production visual corrections.
   Loaded after the public route bundle so stale companion CSS cannot re-open
   media gaps, hide default button labels or enlarge the signature footer. */
body.ln-editor-first-phase-7-homepage .lnv3home :where(.lnv3home-hero__image,
  .lnv3home-program-card__media img,
  .lnv3home-intro__media img,
  .lnv3home-testimonials__media img,
  .lnv3home-free__visual img) {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  object-fit: cover !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home-hero h1 {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home-program-card__media {
  aspect-ratio: 4 / 3.25 !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home-program-card__media::after {
  inset: 62% 0 0 !important;
  background: linear-gradient(transparent, rgba(4,25,38,.58)) !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home :where(.lnv3home-button--accent,
  .lnv3home-button--accent:link,
  .lnv3home-button--accent:visited) {
  border-color: #f5a019 !important;
  background: #f5a019 !important;
  color: #17130d !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home :where(.lnv3home-button--navy,
  .lnv3home-button--navy:link,
  .lnv3home-button--navy:visited) {
  border-color: #071d2d !important;
  background: #071d2d !important;
  color: #fff !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home :where(.lnv3home-button--glass,
  .lnv3home-button--glass:link,
  .lnv3home-button--glass:visited) {
  border-color: rgba(255,255,255,.68) !important;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home :where(.lnv3home-button--light,
  .lnv3home-button--light:link,
  .lnv3home-button--light:visited) {
  border-color: #fff !important;
  background: #fff !important;
  color: #071d2d !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home .lnv3home-button :where(span,svg) {
  color: inherit !important;
  stroke: currentColor !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home .lnv3home-button--navy:hover,
body.ln-editor-first-phase-7-homepage .lnv3home .lnv3home-button--navy:focus-visible {
  border-color: #075779 !important;
  background: #075779 !important;
  color: #fff !important;
}
body.ln-editor-first-phase-7-homepage .lnv3home .lnv3home-button--accent:hover,
body.ln-editor-first-phase-7-homepage .lnv3home .lnv3home-button--accent:focus-visible {
  border-color: #ffb23d !important;
  background: #ffb23d !important;
  color: #17130d !important;
}

/* Restore a compact, reference-like footer hierarchy. */
body .lnv3-footer .lnv3-footer__main {
  padding: 56px 0 48px !important;
}
body .lnv3-footer .lnv3-footer__grid {
  display: grid !important;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.05fr) minmax(0,1.15fr) !important;
  gap: clamp(38px, 6vw, 86px) !important;
  padding-top: 38px !important;
}
body .lnv3-footer h2.lnv3-footer__heading {
  all: unset !important;
  display: block !important;
  margin: 0 0 18px !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 820 !important;
  line-height: 1.2 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
body .lnv3-footer .lnv3-footer__menu,
body .lnv3-footer .lnv3-footer__menu li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body .lnv3-footer .lnv3-footer__menu a {
  color: rgba(255,255,255,.8) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}
@media (max-width: 900px) {
  body.ln-editor-first-phase-7-homepage .lnv3home-hero__frame {
    min-height: 0 !important;
  }
  body .lnv3-footer .lnv3-footer__grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 34px 28px !important;
  }
  body .lnv3-footer .lnv3-footer__column:last-child {
    grid-column: 1 / -1 !important;
  }
}
@media (max-width: 620px) {
  body .lnv3-footer .lnv3-footer__grid {
    grid-template-columns: minmax(0,1fr) !important;
    gap: 0 !important;
  }
  body .lnv3-footer .lnv3-footer__column:last-child {
    grid-column: auto !important;
  }
}
