:root {
  --esg-bg: #f3efe7;
  --esg-surface: #ffffff;
  --esg-surface-soft: #f8f4ec;
  --esg-border: #d8d0c0;
  --esg-ink: #1f2d34;
  --esg-muted: #5b6a71;
  --esg-brand: #b6773d;
  --esg-brand-strong: #955b2b;
  --esg-steel: #2c4957;
  --esg-steel-soft: #3b5f70;
  --esg-success: #1f7a1f;
  --esg-error: #a11a1a;
  --esg-shadow-soft: 0 10px 30px rgba(20, 30, 36, 0.12);
  --esg-shadow-strong: 0 20px 45px rgba(20, 30, 36, 0.2);
  --esg-radius: 22px;
  --esg-content-max: 1220px;
  --esg-side-rail-width: clamp(22px, calc((100vw - var(--esg-content-max)) / 2 - 8px), 160px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--esg-ink);
  font-family: "Work Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  background:
    radial-gradient(1200px 450px at 0% -5%, rgba(245, 221, 173, 0.35), transparent 65%),
    radial-gradient(900px 280px at 100% 0%, rgba(132, 172, 189, 0.2), transparent 60%),
    linear-gradient(180deg, #f8f4ec 0%, var(--esg-bg) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: var(--esg-side-rail-width);
  opacity: 0.78;
  background:
    radial-gradient(18px 14px at 22px 18px, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 72%),
    radial-gradient(22px 16px at 58px 54px, rgba(203, 186, 157, 0.62), rgba(203, 186, 157, 0) 74%),
    radial-gradient(16px 12px at 96px 102px, rgba(148, 134, 110, 0.56), rgba(148, 134, 110, 0) 72%),
    radial-gradient(24px 18px at 34px 130px, rgba(111, 98, 79, 0.48), rgba(111, 98, 79, 0) 75%),
    radial-gradient(20px 15px at 82px 178px, rgba(188, 170, 142, 0.54), rgba(188, 170, 142, 0) 72%),
    linear-gradient(180deg, rgba(113, 100, 81, 0.08) 0%, rgba(143, 126, 102, 0.16) 55%, rgba(109, 97, 81, 0.11) 100%);
  background-size: 120px 210px;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

body::before {
  left: 0;
  border-right: 1px solid rgba(103, 92, 76, 0.18);
}

body::after {
  right: 0;
  border-left: 1px solid rgba(103, 92, 76, 0.18);
  transform: scaleX(-1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.6em;
  color: var(--esg-ink);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

p {
  margin-top: 0;
  margin-bottom: 1.05rem;
  color: var(--esg-ink);
}

a {
  color: var(--esg-brand-strong);
  text-underline-offset: 0.16em;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--esg-steel);
}

.row.full,
.row.small,
.content-wrapper {
  max-width: var(--esg-content-max);
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper,
.row.full,
.row.small,
.side-buffer {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

main {
  padding-bottom: 2.2rem;
}

.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 252, 246, 0.93);
  border-bottom: 1px solid rgba(140, 128, 110, 0.24);
  backdrop-filter: blur(10px);
}

.header-wrapper.header-home {
  position: relative;
  z-index: 1;
  top: auto;
}

.header-wrapper .header-row {
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.header-wrapper .header-row > .columns {
  padding-left: 0.42rem;
  padding-right: 0.42rem;
}

.header-wrapper .header-details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
}

.header-wrapper .logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin: 0;
}

.header-wrapper .logo-wrapper a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem;
  border: 1px solid rgba(44, 73, 87, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.header-wrapper .logo-wrapper img#desktop {
  display: block;
  width: clamp(76px, 6.6vw, 104px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.header-wrapper .logo-wrapper img#mobile {
  display: none;
  width: clamp(72px, 11vw, 94px);
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

.company-details h1 {
  margin-bottom: 0.1rem;
  color: var(--esg-steel);
  font-family: "Barlow", "Work Sans", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.company-details p {
  margin-bottom: 0;
  color: var(--esg-muted);
  font-family: "Barlow", "Work Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-wrapper .company-details {
  max-width: calc(100% - 96px);
  padding-left: 0;
}

.mobile-menu.hide-for-large-up {
  display: none;
}

.header-wrapper .navigation-wrapper.mobile-hide {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-wrapper .navigation-wrapper.mobile-hide nav.top-bar {
  width: 100%;
  background: transparent;
  padding: 0;
}

.header-wrapper .navigation-wrapper .title-area,
.header-wrapper .navigation-wrapper .toggle-topbar {
  display: none !important;
}

.header-wrapper .navigation-wrapper .top-bar-section.section {
  display: block !important;
}

.header-wrapper .navigation-wrapper .menu > ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-wrapper .navigation-wrapper .menu > ul > li {
  position: relative;
  margin: 0;
  list-style: none;
}

.header-wrapper .navigation-wrapper .menu > ul > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.32rem 0.08rem;
  border-radius: 0;
  color: var(--esg-ink);
  font-family: "Barlow", "Work Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header-wrapper .navigation-wrapper .menu > ul > li > a:hover,
.header-wrapper .navigation-wrapper .menu > ul > li.current_page_item > a,
.header-wrapper .navigation-wrapper .menu > ul > li.current_page_parent > a,
.header-wrapper .navigation-wrapper .menu > ul > li.current_page_ancestor > a,
.header-wrapper .navigation-wrapper .menu > ul > li.is-open > a {
  color: var(--esg-steel);
  border-bottom-color: var(--esg-brand);
}

.header-wrapper .navigation-wrapper .menu > ul > li.page_item_has_children {
  display: block;
}

.header-wrapper .navigation-wrapper.mobile-hide .menu > ul > li.page_item_has_children > a::after {
  content: "▾";
  margin-left: 0.36rem;
  font-size: 0.62rem;
  line-height: 1;
  opacity: 0.7;
}

.header-wrapper .navigation-wrapper .menu > ul > li > .dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 280px;
  max-width: min(760px, calc(100vw - 2.4rem));
  max-height: min(72vh, 560px);
  overflow-y: auto;
  margin: 0;
  padding: 0.9rem;
  border: 1px solid var(--esg-border);
  border-radius: 18px;
  background: var(--esg-surface-soft);
  box-shadow: 0 24px 42px rgba(20, 30, 36, 0.16);
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0.32rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 120;
}

.header-wrapper .navigation-wrapper .menu > ul > li.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-wrapper .navigation-wrapper .menu > ul > li > .dropdown.esg-mega-panel {
  min-width: min(760px, calc(100vw - 2.4rem));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem 0.82rem;
  padding: 1rem;
}

.header-wrapper .navigation-wrapper .menu > ul > li > .dropdown.esg-mega-panel::before {
  content: "Service Categories";
  grid-column: 1 / -1;
  margin-bottom: 0.22rem;
  color: var(--esg-muted);
  font-family: "Barlow", "Work Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header-wrapper .navigation-wrapper .menu > ul > li > .dropdown > li {
  list-style: none;
  margin: 0;
}

.header-wrapper .navigation-wrapper .menu > ul > li > .dropdown > li.esg-all-services {
  grid-column: 1 / -1;
  margin-bottom: 0.18rem;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid rgba(44, 73, 87, 0.14);
}

.header-wrapper .navigation-wrapper .menu > ul > li > .dropdown > li.esg-all-services > a {
  font-weight: 700;
  color: var(--esg-steel);
}

.header-wrapper .navigation-wrapper .menu > ul > li > .dropdown > li > a {
  display: block;
  padding: 0.54rem 0.66rem;
  border-radius: 10px;
  color: var(--esg-ink);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.34;
  text-transform: none;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.header-wrapper .navigation-wrapper .menu > ul > li > .dropdown > li > a:hover,
.header-wrapper .navigation-wrapper .menu > ul > li > .dropdown > li.current_page_item > a {
  background: rgba(44, 73, 87, 0.1);
  color: var(--esg-steel);
}

@media screen and (min-width: 1025px) {
  .header-wrapper .mobile-menu.hide-for-large-up {
    display: none !important;
  }

  .header-wrapper .navigation-wrapper.mobile-hide {
    display: flex !important;
  }

  .header-wrapper .navigation-wrapper.mobile-hide .top-bar-section ul,
  .header-wrapper .navigation-wrapper.mobile-hide .top-bar-section ul li,
  .header-wrapper .navigation-wrapper.mobile-hide .top-bar-section li:not(.has-form) > a:not(.button),
  .header-wrapper .navigation-wrapper.mobile-hide .top-bar-section ul li:hover:not(.has-form) > a,
  .header-wrapper .navigation-wrapper.mobile-hide .top-bar-section li.active:not(.has-form) > a:not(.button) {
    background: transparent !important;
    box-shadow: none !important;
  }

  .header-wrapper .navigation-wrapper.mobile-hide .menu > ul > li > .dropdown,
  .header-wrapper .navigation-wrapper.mobile-hide .menu > ul > li > .dropdown.esg-mega-panel {
    background: #f8f4ec !important;
    box-shadow: 0 24px 42px rgba(20, 30, 36, 0.16) !important;
    border: 1px solid var(--esg-border) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header-wrapper .navigation-wrapper.mobile-hide .top-bar-section li:not(.has-form) > a:not(.button) {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    height: auto !important;
    min-height: 36px !important;
    margin: 0 !important;
    padding: 0.28rem 0.12rem !important;
    line-height: 1.2 !important;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    color: var(--esg-ink) !important;
    font-family: "Barlow", "Work Sans", sans-serif !important;
    font-size: 0.83rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
  }

  .header-wrapper .navigation-wrapper.mobile-hide .top-bar-section .has-dropdown > a::after {
    display: none !important;
    content: none !important;
  }

  .header-wrapper .navigation-wrapper.mobile-hide .esg-submenu-toggle {
    display: none !important;
  }

  .header-wrapper .header-row {
    display: flex;
    gap: 0.9rem;
  }

  .header-wrapper .header-row::before,
  .header-wrapper .header-row::after {
    display: none;
  }

  .header-wrapper .header-details.columns {
    width: 39%;
    min-width: 350px;
    max-width: 470px;
    flex: 1 1 39%;
  }

  .header-wrapper .navigation-wrapper.columns {
    width: 61%;
    flex: 1 1 61%;
  }

  .header-wrapper .navigation-wrapper .menu > ul {
    gap: 0.75rem;
  }

  .header-wrapper .navigation-wrapper .menu > ul > li {
    flex: 0 0 auto;
  }

  .header-wrapper .navigation-wrapper .menu > ul > li > a {
    min-height: 36px;
    min-width: auto;
    padding: 0.28rem 0.12rem;
    font-size: 0.83rem;
    letter-spacing: 0.02em;
    justify-content: flex-start;
    text-align: left;
    white-space: nowrap;
  }

  #first-rate-service {
    scroll-margin-top: 92px;
  }

  #first-rate-service-title {
    scroll-margin-top: 92px;
  }
}

.header-home .hero-wrapper {
  margin-top: 1.15rem;
  margin-bottom: 1.6rem;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--esg-shadow-strong);
  background: linear-gradient(118deg, #20323b 0%, #2e4a57 58%, #42616e 100%);
}

.header-home .slider-wrapper {
  position: relative;
}

.header-home .slider-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(32, 50, 59, 0.18), rgba(32, 50, 59, 0.32));
  pointer-events: none;
}

.header-home .slider-wrapper img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-scroll-arrow {
  display: inline-block;
  text-decoration: none;
  width: 3px;
  height: 195px;
  background: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 30%;
  left: 25px;
  cursor: pointer;
  z-index: 2;
  border-radius: 999px;
}

.hero-scroll-arrow::after {
  content: "";
  width: 100%;
  height: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  animation: esg-scroll-indicator 1.85s ease alternate infinite;
}

@keyframes esg-scroll-indicator {
  0% {
    top: 0;
  }

  100% {
    top: 50%;
  }
}

#first-rate-service {
  position: relative;
  z-index: 2;
  scroll-margin-top: 24px;
}

#first-rate-service-title {
  position: relative;
  z-index: 2;
  scroll-margin-top: 24px;
}

#first-rate-service .intro-row {
  animation: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  color: #fff;
}

.hero-content .caption {
  margin: 0;
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.hero-content .caption span {
  color: #ffd9a4;
}

.hero-content .tagline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
}

.section-article > .content-wrapper,
.section-article > .side-buffer,
.section-article > .cta-wrapper,
.section-article > .row {
  margin-top: 1.6rem;
}

.intro-row,
.row-2,
.cta-row,
.contact-body,
.gallery-wrapper,
.contact-form,
.slide-out-content {
  background: var(--esg-surface);
  border: 1px solid var(--esg-border);
  border-radius: var(--esg-radius);
  box-shadow: var(--esg-shadow-soft);
}

.intro-row,
.row-2,
.cta-row {
  overflow: hidden;
}

.intro-row,
.row-2 {
  padding: 0.9rem;
}

.intro-text,
.text-col,
.cta-text,
.contact-body {
  padding: clamp(1.1rem, 2.3vw, 2rem);
}

.fancy-text {
  color: var(--esg-brand-strong);
  font-family: "Barlow", "Work Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intro-bg,
.bg-box,
.contact-bg {
  min-height: 100%;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
}

.intro-bg-wrapper,
.bg-col,
.cta-bg-holder {
  min-height: 300px;
}

.bg-section .bg-row {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--esg-border);
  box-shadow: var(--esg-shadow-soft);
}

.bg-section .bg-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(32, 50, 59, 0.7), rgba(32, 50, 59, 0.38));
}

.bg-section .bg-text-box {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(1.4rem, 2.8vw, 2.6rem);
  border: 1px solid rgba(44, 73, 87, 0.16);
  border-radius: 18px;
  background: rgba(248, 244, 236, 0.93);
  box-shadow: 0 18px 36px rgba(20, 30, 36, 0.2);
  color: var(--esg-ink);
}

.bg-section .bg-text-box h2,
.bg-section .bg-text-box p {
  color: var(--esg-ink);
}

.badges-wrapper {
  border: 1px solid var(--esg-border);
  border-radius: var(--esg-radius);
  box-shadow: var(--esg-shadow-soft);
  background: linear-gradient(160deg, #fff, var(--esg-surface-soft));
}

.badge-col h3 {
  margin-top: 0.45rem;
  margin-bottom: 0.4rem;
}

.badge-col p {
  color: var(--esg-muted);
}

.cta-wrapper {
  border-radius: var(--esg-radius);
  background: transparent;
}

.cta-wrapper .cta-row {
  background: linear-gradient(145deg, #233641, #1a2a33);
  border-color: rgba(255, 255, 255, 0.08);
}

.cta-wrapper .cta-text h2,
.cta-wrapper .cta-text p {
  color: #fff;
}

.cta-wrapper .cta-text p {
  opacity: 0.92;
}

.cta-btn,
.btn,
.submit,
button.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--esg-brand) 0%, var(--esg-brand-strong) 100%);
  color: #fff !important;
  font-family: "Barlow", "Work Sans", sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(149, 91, 43, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-btn:hover,
.btn:hover,
.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(149, 91, 43, 0.35);
  filter: brightness(1.02);
}

.cta-btn.alt,
.sticky-btn.alt {
  border: 1px solid rgba(44, 73, 87, 0.22);
  background: #fff;
  color: var(--esg-steel) !important;
  box-shadow: 0 8px 20px rgba(44, 73, 87, 0.14);
}

.hero-content .cta-btn.alt,
.cta-wrapper .cta-btn.alt {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff !important;
  box-shadow: none;
}

.hero-content .cta-btn.alt:hover,
.cta-wrapper .cta-btn.alt:hover {
  background: rgba(255, 255, 255, 0.14);
}

.mobile-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(53, 74, 85, 0.26);
  background: rgba(255, 252, 247, 0.95);
  backdrop-filter: blur(10px);
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-family: "Barlow", "Work Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
}

.sticky-btn:not(.alt) {
  background: var(--esg-steel);
  color: #fff;
}

.contact-form form,
.slide-out-form form {
  display: grid;
  gap: 0.95rem;
}

.groupWrapper {
  margin: 0;
}

.groupWrapper label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--esg-muted);
  font-family: "Barlow", "Work Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fancyInput,
.slideOutInput,
textarea,
input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  border: 1px solid var(--esg-border);
  border-radius: 12px;
  background: #fff;
  color: var(--esg-ink);
  font-size: 0.98rem;
  line-height: 1.4;
  padding: 0.72rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.fancyInput:focus,
.slideOutInput:focus,
textarea:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: rgba(44, 73, 87, 0.48);
  box-shadow: 0 0 0 4px rgba(44, 73, 87, 0.13);
}

.contact-form-status {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form-status[style*="#1f7a1f"] {
  color: var(--esg-success);
}

.contact-form-status[style*="#a11a1a"] {
  color: var(--esg-error);
}

.slide-out-wrapper {
  right: 16px;
  bottom: 18px;
  z-index: 70;
}

.slide-out-content {
  background: var(--esg-surface);
}

.slide-out-form {
  padding: 1.25rem;
}

.form-title {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--esg-steel);
  font-family: "Barlow", "Work Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.gallery-wrapper {
  padding: clamp(1rem, 2.3vw, 1.8rem);
}

.gallery-wrapper h2 {
  margin-bottom: 0.75rem;
}

.gallery-wrapper .columns-width {
  display: none !important;
}

.gallery-wrapper .gallery-images {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  height: auto !important;
}

.gallery-wrapper .gallery-image {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: auto !important;
  margin-bottom: 0 !important;
}

.gallery-wrapper .gallery-image img {
  display: block;
  width: 100%;
  height: 230px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(20, 30, 36, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-wrapper .gallery-image img:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 28px rgba(20, 30, 36, 0.2);
}

.gallery-wrapper .gallery-image img.esg-gallery-clickable {
  cursor: zoom-in;
}

body.esg-lightbox-open {
  overflow: hidden;
}

.esg-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.esg-gallery-lightbox.open {
  display: block;
}

.esg-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 16, 21, 0.82);
  backdrop-filter: blur(2px);
}

.esg-gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1040px);
  height: min(86vh, 760px);
  margin: 5vh auto;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.esg-gallery-image {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: min(78vh, 680px);
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.44);
}

.esg-gallery-nav,
.esg-gallery-close {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
}

.esg-gallery-nav {
  width: 48px;
  height: 48px;
  font-size: 1.7rem;
  line-height: 1;
}

.esg-gallery-nav.prev {
  grid-column: 1;
  grid-row: 1;
}

.esg-gallery-nav.next {
  grid-column: 3;
  grid-row: 1;
}

.esg-gallery-close {
  position: absolute;
  top: 8px;
  right: 0;
  width: 42px;
  height: 42px;
  font-size: 1.65rem;
  line-height: 1;
}

.esg-gallery-meta {
  grid-column: 1 / span 3;
  grid-row: 2;
  display: flex;
  justify-content: center;
  color: #fff;
  font-family: "Barlow", "Work Sans", sans-serif;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .esg-gallery-dialog {
    grid-template-columns: 42px 1fr 42px;
    width: 96vw;
    gap: 0.45rem;
  }

  .esg-gallery-image {
    height: min(70vh, 540px);
    border-radius: 12px;
  }

  .esg-gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }
}

.fa-star {
  color: #f2b544;
}

.row.vertical-padding-medium .large-4.columns.text-center {
  margin-bottom: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--esg-border);
  border-radius: 16px;
  background: var(--esg-surface);
}

.footer-wrapper {
  margin-top: 2.2rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(158deg, #1d2e37 0%, #142128 100%);
  color: #f4f0e7;
}

.footer-wrapper h2,
.footer-wrapper p,
.footer-wrapper a {
  color: #f4f0e7;
}

.footer-wrapper p {
  opacity: 0.92;
}

.footer-wrapper a:hover {
  color: #ffd9a3;
}

.footer-row {
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.payment-icon {
  max-width: 58px;
  margin-right: 0.45rem;
}

.disclaimer img {
  max-width: 180px;
  filter: grayscale(1) brightness(1.45);
  opacity: 0.62;
}

.lnm-policies {
  background: #0f1a20 !important;
  color: #b9c2c8 !important;
}

.lnm-policies a,
.lnm-policies ul.useful-links {
  color: #b9c2c8 !important;
}

@keyframes esg-fade-lift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-wrapper,
.intro-row,
.row-2,
.cta-row,
.gallery-wrapper,
.contact-form {
  animation: esg-fade-lift 0.65s ease both;
}

.intro-row {
  animation-delay: 0.05s;
}

.row-2 {
  animation-delay: 0.1s;
}

.cta-row {
  animation-delay: 0.14s;
}

.gallery-wrapper,
.contact-form {
  animation-delay: 0.16s;
}

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

@media screen and (max-width: 1024px) {
  body::before,
  body::after {
    opacity: 0;
    display: none;
  }

  .header-wrapper {
    position: relative;
  }

  .header-wrapper .header-row {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .header-wrapper .header-details {
    justify-content: center;
    flex-direction: column;
    gap: 0.45rem;
  }

  .header-wrapper .navigation-wrapper.mobile-hide {
    display: none !important;
  }

  .mobile-menu.hide-for-large-up {
    display: flex !important;
    width: 100%;
  }

  .mobile-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-menu .navigation-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin-bottom: 0.36rem;
    border: 1px solid rgba(44, 73, 87, 0.26);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
  }

  .mobile-menu .navigation-toggle:focus-visible {
    outline: 2px solid rgba(44, 73, 87, 0.46);
    outline-offset: 2px;
  }

  .mobile-menu .fullwidth-navigation {
    display: none;
    width: min(94vw, 520px);
    margin-top: 0.28rem;
    border: 1px solid var(--esg-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--esg-shadow-soft);
    padding: 0.5rem;
  }

  .mobile-menu.is-open .fullwidth-navigation {
    display: block;
  }

  .mobile-menu nav.top-bar,
  .mobile-menu .top-bar-section.section {
    background: transparent;
    padding: 0;
    display: block !important;
  }

  .mobile-menu .title-area,
  .mobile-menu .toggle-topbar {
    display: none !important;
  }

  .mobile-menu .menu > ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu .menu > ul > li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid rgba(44, 73, 87, 0.1);
  }

  .mobile-menu .menu > ul > li:last-child {
    border-bottom: 0;
  }

  .mobile-menu .menu > ul > li > a {
    display: block;
    width: calc(100% - 2.8rem);
    margin: 0;
    padding: 0.74rem 0.9rem;
    color: var(--esg-ink);
    font-family: "Barlow", "Work Sans", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-menu .menu > ul > li > a:hover {
    color: var(--esg-steel);
  }

  .mobile-menu .esg-mobile-submenu-toggle {
    position: absolute;
    top: 0.42rem;
    right: 0.36rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(44, 73, 87, 0.08);
    color: var(--esg-steel);
    cursor: pointer;
  }

  .mobile-menu .esg-mobile-submenu-toggle span {
    display: inline-block;
    font-size: 1.12rem;
    line-height: 1;
    transition: transform 0.16s ease;
  }

  .mobile-menu .menu > ul > li.is-open > .esg-mobile-submenu-toggle span {
    transform: rotate(45deg);
  }

  .mobile-menu .menu > ul > li > .dropdown {
    display: none !important;
    position: static !important;
    width: 100%;
    margin: 0 0 0.5rem;
    padding: 0.26rem;
    border: 1px solid rgba(44, 73, 87, 0.14);
    border-radius: 12px;
    box-shadow: none;
    background: var(--esg-surface-soft);
  }

  .mobile-menu .menu > ul > li.is-open > .dropdown {
    display: block !important;
  }

  .mobile-menu .menu > ul > li > .dropdown > li {
    list-style: none;
    margin: 0;
  }

  .mobile-menu .menu > ul > li > .dropdown > li > a {
    display: block;
    padding: 0.52rem 0.62rem;
    color: var(--esg-ink);
    font-size: 0.82rem;
    line-height: 1.32;
    text-transform: none;
    letter-spacing: 0.01em;
    text-decoration: none;
  }

  .mobile-menu .menu > ul > li > .dropdown > li > a:hover {
    color: var(--esg-steel);
    background: rgba(44, 73, 87, 0.08);
  }

  .header-wrapper .logo-wrapper {
    width: auto;
    margin-bottom: 0.2rem;
  }

  .header-wrapper .logo-wrapper img#desktop {
    display: none;
  }

  .header-wrapper .logo-wrapper img#mobile {
    display: block;
    width: min(96px, 30vw);
    max-height: 96px;
  }

  .header-wrapper .company-details {
    max-width: 100%;
    text-align: center;
  }

  .company-details p {
    letter-spacing: 0.03em;
  }

  .hero-content {
    padding: 1.3rem;
  }

  #first-rate-service {
    scroll-margin-top: 20px;
  }

  #first-rate-service-title {
    scroll-margin-top: 20px;
  }

  .intro-row,
  .row-2,
  .cta-row {
    padding: 0.35rem;
    border-radius: 18px;
  }

  .intro-text,
  .text-col,
  .cta-text,
  .contact-body {
    padding: 1rem;
  }

  .slide-out-wrapper {
    right: 12px;
    bottom: 14px;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-bottom: calc(65px + env(safe-area-inset-bottom));
  }

  .content-wrapper,
  .row.full,
  .row.small,
  .side-buffer {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .header-wrapper {
    border-bottom: 1px solid rgba(140, 128, 110, 0.2);
    background: #fffaf2;
    backdrop-filter: none;
  }

  .mobile-menu .fullwidth-navigation {
    width: calc(100vw - 1.2rem);
    padding: 0.42rem;
  }

  .mobile-menu .menu > ul > li > a {
    width: calc(100% - 2.6rem);
    padding: 0.66rem 0.78rem;
    font-size: 0.82rem;
  }

  .mobile-menu .menu > ul > li > .dropdown > li > a {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .hero-content .caption {
    font-size: 2rem;
  }

  .section-article > .content-wrapper,
  .section-article > .side-buffer,
  .section-article > .cta-wrapper,
  .section-article > .row {
    margin-top: 1rem;
  }

  .intro-bg-wrapper,
  .bg-col,
  .cta-bg-holder {
    min-height: 180px;
  }

  .gallery-wrapper .gallery-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-wrapper .gallery-image img {
    height: 160px;
  }

  .footer-row {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
