:root {
  --teal: #5b989a;
  --green: #5bc98c;
  --ink: #2b2a2a;
  --nav: #21252b;
  --muted: #4d4d4d;
  --footer-text: #858d91;
  --line: #ffffff;
  --white: #ffffff;
  --header-shadow: rgba(0, 0, 0, 0.07);
  --overlay: rgba(17, 17, 17, 0.5);
  --font: "Lato", Arial, Helvetica, sans-serif;
  --content-max: 1170px;
  --content-pad: 15px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 10000;
  padding: 8px 12px;
  background: var(--teal);
  color: var(--white);
}

.skip-link:focus {
  left: 8px;
}

.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 70px var(--content-pad) 50px;
}

/* Header */

.site-header {
  position: relative;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 0 15px 1px var(--header-shadow);
}

.top-bar {
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--ink);
}

.top-bar-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  min-height: 40px;
  padding: 0 var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  line-height: 20px;
}

.top-contact a,
.mobile-panel-widgets a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.top-contact .contact-phone {
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px dotted var(--white);
}

.top-contact svg {
  width: 14px;
  height: 14px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons a {
  display: inline-flex;
  color: var(--white);
  opacity: 1;
}

.social-icons a:hover {
  color: var(--green);
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  min-height: 90px;
  background: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  padding: 25px 0;
}

.brand img {
  width: 250px;
  height: auto;
  max-width: 250px;
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.site-nav a {
  display: block;
  padding: 18px 6px;
  color: var(--nav);
  letter-spacing: 0;
}

.site-nav .nav-list > li > a {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--teal);
}

/* Off-canvas menu: SB slide-in, LVGD chrome (teal bars, top-right) */

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px 6px;
  border: 0;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: var(--teal);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--teal);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9601;
  background: var(--overlay);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9602;
  display: flex;
  flex-direction: column;
  width: 330px;
  max-width: 100%;
  height: 100%;
  background: var(--white);
  overflow: auto;
  box-sizing: border-box;
  padding: 45px 15px 30px 30px;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.5s ease;
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: #444444;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  left: 7px;
  top: 15px;
  width: 18px;
  height: 2px;
  background: #444444;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-extra {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-extra a {
  display: block;
  padding: 15px 25px 15px 0;
  border-bottom: 1px solid #dddddd;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #444444;
}

.mobile-extra a:hover {
  color: var(--teal);
}

.mobile-panel-widgets {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #dddddd;
}

.mobile-panel-widgets a {
  color: var(--ink);
  font-size: 14px;
}

.mobile-panel-widgets .social-icons a {
  color: var(--ink);
}

.mobile-panel-widgets .social-icons a:hover {
  color: var(--teal);
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-menu-open .mobile-panel {
  transform: translate3d(0, 0, 0);
}

/* Hero — static replacement for Slider Revolution */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1240 / 762;
  height: auto;
  overflow: hidden;
  background: #1a1a1a;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Content */

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  font-family: var(--font);
  font-weight: 600;
  line-height: normal;
  margin: 0 0 30px;
  color: var(--teal);
}

.content-body h1,
.content-body h2 {
  font-size: 30px;
}

.content-body p {
  margin: 0 0 22px;
  color: var(--ink);
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 16px var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright {
  margin: 0;
  font-size: 14px;
  color: var(--white);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #444;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--green);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 1025px) {
  .menu-overlay,
  .mobile-panel,
  .menu-close,
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 1024px) {
  .site-header .top-bar {
    display: none;
  }

  .header-bar {
    position: relative;
    justify-content: flex-start;
    min-height: 80px;
    padding: 0 56px 0 16px;
  }

  .brand {
    padding: 15px 0;
  }

  .brand img {
    width: 210px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    left: auto;
    transform: translateY(-50%);
  }

  .site-nav {
    display: none;
  }

  .wrap {
    padding: 40px 20px 56px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .menu-close {
    top: 12px;
    right: 12px;
  }
}

/* Inner pages */

.page-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1240 / 868;
  overflow: hidden;
  background: #1a1a1a;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.page-hero img.is-active {
  opacity: 1;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px 80px;
}

.split-block figure {
  margin: 0 0 24px;
}

.split-block img {
  width: 100%;
  height: auto;
}

.split-block h2 {
  margin-top: 0;
}

@media (max-width: 800px) {
  .split-block {
    grid-template-columns: 1fr;
    padding: 0 20px 56px;
    gap: 40px;
  }
}

/* Contact Us — LVGD-branded stripe + form */

.intro.wrap {
  padding-bottom: 50px;
}

.intro:has(.icon-break) {
  padding-bottom: 0;
}

.content-body p.icon-break {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 0 0 -25px;
}

.icon-break img {
  width: 50px;
  height: 50px;
}

.stripe {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 48px;
  margin: 0;
}

.stripe h2,
.stripe h3 {
  color: var(--teal);
  font-family: var(--font);
  font-weight: 600;
  line-height: normal;
  margin: 0 0 24px;
}

.stripe h2 {
  font-size: 30px;
}

.stripe h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 28px;
}

.stripe p,
.stripe a {
  color: var(--white);
}

.stripe a:hover {
  color: var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px 40px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.contact-details p {
  margin: 0 0 18px;
  line-height: 22px;
}

.contact-details strong {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 8px;
}

.contact-social a {
  display: inline-flex;
  color: var(--white);
}

.contact-social a:hover {
  color: var(--green);
}

.contact-social svg {
  width: 18px;
  height: 18px;
}

.service-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-links a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 16px;
  line-height: 22px;
}

.service-links a:hover {
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 16px;
  position: relative;
}

.form-field {
  display: grid;
  gap: 6px;
}

.contact-form label {
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
}

.contact-form input:not(.visually-hidden),
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c4c4c4;
  font-family: var(--font);
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
  background: #f7f7f7;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-required {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 16px;
  line-height: 26px;
}

.form-required .req,
.contact-form .req {
  color: var(--green);
}

.captcha-wrap {
  padding: 12px;
  background: var(--ink);
  margin: 4px 0;
}

.captcha-wrap.is-idle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.contact-form .h-captcha {
  margin: 0;
}

.contact-form button {
  justify-self: start;
  padding: 12px 28px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--teal);
  color: var(--white);
  border: 0;
  border-radius: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--green);
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 36px;
  }

  .stripe {
    padding: 48px 0 40px;
  }
}
