:root {
  --llp-header-max-width: 100%;
  --llp-announcement-height: 30px;
  --llp-navbar-height: 56px;
  --llp-header-offset: 86px;
  --llp-header-height: calc(var(--llp-navbar-height) + var(--llp-announcement-height));
  --llp-chrome-green: #1b5e3b;
  --llp-chrome-dark: #171817;
  --llp-chrome-footer: #191a19;
  --llp-chrome-gold: #b8956a;
}

.llp-announcement-disabled { --llp-header-offset: var(--llp-navbar-height); --llp-header-height: var(--llp-navbar-height); }
.llp-announcement-enabled { --llp-header-height: calc(var(--llp-navbar-height) + var(--llp-announcement-height)); }
.llp-anchor { scroll-margin-top: calc(var(--llp-header-offset) + 20px); }

.llp-site-header,
.llp-site-header * { box-sizing: border-box; }

.llp-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
}

.admin-bar .llp-site-header { top: 32px; }

.llp-announcement {
  height: var(--llp-announcement-height);
  overflow: hidden;
  background: var(--llp-chrome-green);
}

.llp-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  max-width: var(--llp-header-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.25;
  white-space: nowrap;
}

.llp-announcement__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.llp-announcement__text strong { font-weight: 700; }

.llp-site-header .llp-announcement a.llp-announcement__link,
.llp-site-header .llp-announcement a.llp-announcement__link:link,
.llp-site-header .llp-announcement a.llp-announcement__link:visited {
  flex: 0 0 auto;
  color: var(--llp-chrome-gold);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}

.llp-site-header .llp-announcement a.llp-announcement__link:hover,
.llp-site-header .llp-announcement a.llp-announcement__link:focus,
.llp-site-header .llp-announcement a.llp-announcement__link:active {
  color: #d1b184;
  text-decoration: none;
}

.llp-navbar {
  position: relative;
  height: var(--llp-navbar-height);
  background: var(--llp-chrome-dark);
  border-bottom: 1px solid rgba(27, 94, 59, .45);
}

.llp-navbar__inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: 100%;
  max-width: var(--llp-header-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.llp-navbar__logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.llp-navbar__logo-image {
  display: block;
  width: auto;
  max-width: 180px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.llp-navbar__site-name {
  overflow: hidden;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.llp-navbar__menu { justify-self: center; }
.llp-navbar__menu { grid-column: 2; }

.llp-navbar__menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.llp-navbar__menu-list li { position: relative; margin: 0; padding: 0; }

.llp-navbar__menu-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  transition: color .2s ease;
}

.llp-navbar__menu-list a:hover,
.llp-navbar__menu-list a:focus-visible,
.llp-navbar__menu-list .current-menu-item > a,
.llp-navbar__menu-list .current-menu-ancestor > a { color: #fff; }

.llp-navbar__menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  display: none;
  min-width: 190px;
  margin: 0;
  padding: 10px 18px;
  background: var(--llp-chrome-dark);
  list-style: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.llp-navbar__menu-list li:hover > .sub-menu,
.llp-navbar__menu-list li:focus-within > .sub-menu { display: block; }

.llp-navbar__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  grid-column: 3;
}

.llp-site-header a.llp-navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 24px;
  color: #10261b;
  background-color: #b8956a;
  background-image: none;
  border: 1px solid var(--llp-chrome-gold);
  border-radius: 100px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .04em;
  text-align: center;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.llp-site-header a.llp-navbar__cta:link,
.llp-site-header a.llp-navbar__cta:visited {
  color: #10261b;
  background-color: #b8956a;
  background-image: none;
  border-color: var(--llp-chrome-gold);
  box-shadow: none;
  text-decoration: none;
}

.llp-site-header a.llp-navbar__cta:hover,
.llp-site-header a.llp-navbar__cta:focus,
.llp-site-header a.llp-navbar__cta:active {
  color: #10261b;
  background-color: #c7a576;
  background-image: none;
  border-color: #c7a576;
  box-shadow: none;
  text-decoration: none;
}

.llp-site-header a.llp-navbar__cta:focus-visible {
  color: #10261b;
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.llp-site-header a.llp-navbar__cta > * { color: inherit; }
.llp-site-header a.llp-navbar__cta--mobile,
.llp-navbar__toggle { display: none; }

.llp-navbar__toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.llp-navbar__toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: opacity .2s ease, transform .2s ease;
}

.llp-navbar__toggle span:nth-child(1) { top: 13px; }
.llp-navbar__toggle span:nth-child(2) { top: 21px; }
.llp-navbar__toggle span:nth-child(3) { top: 29px; }
.llp-site-header.is-menu-open .llp-navbar__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.llp-site-header.is-menu-open .llp-navbar__toggle span:nth-child(2) { opacity: 0; }
.llp-site-header.is-menu-open .llp-navbar__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.llp-site-header a:focus-visible,
.llp-site-header button:focus-visible,
.llp-site-footer a:focus-visible { outline: 2px solid var(--llp-chrome-gold); outline-offset: 3px; }

.llp-site-footer,
.llp-site-footer * { box-sizing: border-box; }

.llp-site-footer {
  width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, .34);
  background: var(--llp-chrome-footer);
  font-family: Inter, Arial, sans-serif;
}

footer.llp-site-footer a,
footer.llp-site-footer a:link,
footer.llp-site-footer a:visited {
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
}

footer.llp-site-footer a:hover,
footer.llp-site-footer a:focus,
footer.llp-site-footer a:active {
  color: var(--llp-chrome-gold);
  text-decoration: none;
}

.llp-site-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 28px 22px;
}

.llp-site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) minmax(170px, .9fr) minmax(165px, .9fr) minmax(130px, .72fr) minmax(220px, 1.15fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  min-height: 156px;
}

.llp-site-footer__brand { max-width: 310px; }
.llp-site-footer__logo { display: inline-flex; margin-bottom: 22px; }

.llp-site-footer__logo-image {
  display: block;
  width: auto;
  max-width: 180px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.llp-site-footer__description {
  max-width: 300px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.llp-site-footer__description p { margin: 0 0 10px; }
.llp-site-footer__description > :last-child { margin-bottom: 0; }

.llp-site-footer a.llp-site-footer__brochure,
.llp-site-footer a.llp-site-footer__brochure:link,
.llp-site-footer a.llp-site-footer__brochure:visited {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 22px;
  padding: 8px 20px;
  color: #171817;
  background-color: #b8956a;
  background-image: none;
  border: 1px solid #b8956a;
  border-radius: 100px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.llp-site-footer a.llp-site-footer__brochure:hover,
.llp-site-footer a.llp-site-footer__brochure:focus,
.llp-site-footer a.llp-site-footer__brochure:active {
  color: #171817;
  background-color: #c7a576;
  background-image: none;
  border-color: #c7a576;
  box-shadow: none;
  text-decoration: none;
}

.llp-site-footer a.llp-site-footer__brochure:focus-visible {
  color: #171817;
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.llp-site-footer a.llp-site-footer__brochure > * { color: inherit; }

.llp-site-footer h2.llp-site-footer__title {
  margin: 4px 0 22px;
  padding: 0;
  color: rgba(255, 255, 255, .46);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.llp-site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.llp-site-footer__menu li { margin: 0; padding: 0; }

footer.llp-site-footer .llp-site-footer__menu a,
footer.llp-site-footer .llp-site-footer__menu a:link,
footer.llp-site-footer .llp-site-footer__menu a:visited {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  text-decoration: none;
  transition: color .2s ease;
}

footer.llp-site-footer .llp-site-footer__menu a:hover,
footer.llp-site-footer .llp-site-footer__menu a:focus,
footer.llp-site-footer .llp-site-footer__menu a:active { color: var(--llp-chrome-gold); }

.llp-site-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.llp-site-footer__hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .35);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
}

.llp-site-footer__hours-row span {
  min-width: 0;
  margin: 0;
  padding: 0;
  line-height: inherit;
}

.llp-site-footer__hours-row time {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .42);
  line-height: inherit;
  white-space: nowrap;
}

.llp-site-footer__contact { min-width: 0; }

.llp-site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.llp-site-footer__contact-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, .35);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  text-decoration: none;
}

footer.llp-site-footer a.llp-site-footer__contact-row,
footer.llp-site-footer a.llp-site-footer__contact-row:link,
footer.llp-site-footer a.llp-site-footer__contact-row:visited {
  color: rgba(255, 255, 255, .35);
  transition: color .2s ease;
}

footer.llp-site-footer a.llp-site-footer__contact-row:hover,
footer.llp-site-footer a.llp-site-footer__contact-row:focus,
footer.llp-site-footer a.llp-site-footer__contact-row:active { color: var(--llp-chrome-gold); }

.llp-site-footer__contact-row svg,
.llp-site-footer__linkedin svg {
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  fill: var(--llp-chrome-gold);
}

.llp-site-footer__contact-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.llp-site-footer__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .35);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: color .2s ease;
}

footer.llp-site-footer a.llp-site-footer__linkedin,
footer.llp-site-footer a.llp-site-footer__linkedin:link,
footer.llp-site-footer a.llp-site-footer__linkedin:visited { color: rgba(255, 255, 255, .35); }

footer.llp-site-footer a.llp-site-footer__linkedin:hover,
footer.llp-site-footer a.llp-site-footer__linkedin:focus,
footer.llp-site-footer a.llp-site-footer__linkedin:active { color: var(--llp-chrome-gold); }

.llp-site-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.llp-site-footer__legal { min-width: 0; }

.llp-site-footer__legal-row {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, .2);
  font-size: 11px;
  line-height: 1.5;
}

footer.llp-site-footer .llp-site-footer__legal-row a,
footer.llp-site-footer .llp-site-footer__legal-row a:link,
footer.llp-site-footer .llp-site-footer__legal-row a:visited,
footer.llp-site-footer a.llp-site-footer__credit,
footer.llp-site-footer a.llp-site-footer__credit:link,
footer.llp-site-footer a.llp-site-footer__credit:visited {
  color: rgba(255, 255, 255, .22);
  text-decoration: none;
  transition: color .2s ease;
}

footer.llp-site-footer .llp-site-footer__legal-row a:hover,
footer.llp-site-footer .llp-site-footer__legal-row a:focus,
footer.llp-site-footer .llp-site-footer__legal-row a:active,
footer.llp-site-footer a.llp-site-footer__credit:hover,
footer.llp-site-footer a.llp-site-footer__credit:focus,
footer.llp-site-footer a.llp-site-footer__credit:active { color: var(--llp-chrome-gold); }

.llp-site-footer__note {
  margin-top: 5px;
  color: rgba(255, 255, 255, .14);
  font-size: 9px;
  line-height: 1.45;
}

.llp-site-footer__note p { margin: 0; }

.llp-site-footer__credit {
  flex: 0 0 auto;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .llp-navbar__inner { grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr); }
  .llp-navbar__menu-list { gap: 18px; }
  .llp-navbar__menu-list a { font-size: 12px; }
  .llp-site-header a.llp-navbar__cta { padding-inline: 18px; }
  .llp-site-footer__grid { grid-template-columns: minmax(220px, 1.35fr) minmax(150px, .95fr) minmax(145px, .9fr) minmax(115px, .72fr) minmax(190px, 1.15fr); gap: 24px; }
}

@media (max-width: 1000px) {
  .llp-site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 34px; }
  .llp-site-footer__brand { grid-column: 1 / -1; max-width: 420px; }
}

@media (max-width: 900px) {
  .llp-navbar__inner { grid-template-columns: 1fr auto; }
  .llp-navbar__actions { grid-column: 2; }
  .llp-navbar__toggle { display: block; }
  .llp-site-header a.llp-navbar__cta--desktop { display: none; }
  .llp-navbar__menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--llp-header-offset));
    overflow-y: auto;
    padding: 16px 24px 24px;
    background: var(--llp-chrome-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .22);
  }
  .llp-site-header.is-menu-open .llp-navbar__menu { display: block; }
  .llp-navbar__menu-list { display: flex; align-items: stretch; gap: 0; }
  .llp-navbar__menu-list,
  .llp-navbar__menu-list .sub-menu { flex-direction: column; }
  .llp-navbar__menu-list a { display: flex; min-height: 44px; font-size: 14px; }
  .llp-navbar__menu-list .sub-menu { position: static; display: block; padding: 0 0 0 18px; box-shadow: none; }
  .llp-site-header a.llp-navbar__cta--mobile { display: flex; width: 100%; margin-top: 14px; }
  .llp-site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 34px; }
  .llp-site-footer__brand { grid-column: 1 / -1; grid-row: auto; max-width: 420px; }
}

@media (max-width: 782px) {
  .admin-bar .llp-site-header { top: 46px; }
}

@media (max-width: 600px) {
  :root {
    --llp-announcement-height: 40px;
    --llp-navbar-height: 56px;
    --llp-header-offset: 96px;
  }
  .llp-announcement-disabled { --llp-header-offset: var(--llp-navbar-height); --llp-header-height: var(--llp-navbar-height); }
  .llp-announcement__inner { padding-inline: 16px; font-size: 10.5px; white-space: normal; }
  .llp-announcement__text { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; text-align: center; }
  .llp-navbar__inner { padding-inline: 18px; }
  .llp-navbar__logo-image { max-width: 150px; height: 38px; }
  .llp-navbar__site-name { max-width: 220px; font-size: 22px; }
  .llp-navbar__menu { padding-inline: 18px; }
  .llp-site-footer__inner { padding: 48px 22px 24px; }
  .llp-site-footer__grid { grid-template-columns: 1fr 1fr; gap: 42px 28px; min-height: 0; }
  .llp-site-footer__brand { grid-column: 1 / -1; grid-row: auto; max-width: none; }
  .llp-site-footer__bottom { flex-direction: column; gap: 16px; margin-top: 44px; }
  .llp-site-footer__legal-row { flex-direction: column; align-items: flex-start; gap: 7px; }
}

@media (max-width: 380px) {
  .llp-site-footer__grid { grid-template-columns: 1fr; }
  .llp-site-footer__brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .llp-site-header *,
  .llp-site-footer * { scroll-behavior: auto; transition-duration: 0s !important; }
}
