:root {
  --brand: #238443;
  --brand-dark: #0f3d2a;
  --brand-soft: #e8f4ed;
  --ink: #17211c;
  --muted: #66736d;
  --line: #dfe8e3;
  --paper: #f7faf8;
  --white: #ffffff;
  --accent: #c89d35;
  --shadow: 0 18px 45px rgba(18, 38, 30, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(200, 157, 53, 0.55);
  outline-offset: 3px;
}

.skip-link {
  background: var(--brand-dark);
  color: var(--white);
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -100px;
  z-index: 2000;
}

.skip-link:focus {
  top: 1rem;
}

img {
  max-width: 100%;
}

.site-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 61, 42, 0.1);
  box-shadow: 0 10px 30px rgba(20, 42, 33, 0.08);
  backdrop-filter: blur(14px);
}

.brand-logo {
  height: 48px;
  width: auto;
}

.navbar .nav-link {
  color: var(--ink);
  font-weight: 700;
  padding: 0.75rem 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.dropdown-item:hover {
  color: var(--brand);
}

.navbar .nav-link.active {
  position: relative;
}

.navbar .nav-link.active::after {
  background: var(--brand);
  border-radius: 999px;
  content: "";
  height: 3px;
  inset: auto 0.9rem 0.35rem;
  position: absolute;
}

.dropdown-item.active,
.dropdown-item:active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.btn-brand,
.btn-outline-brand {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.75rem 1.25rem;
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
}

.btn-brand.active {
  box-shadow: 0 0 0 3px rgba(35, 132, 67, 0.2);
}

.btn-outline-brand {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-outline-brand:hover {
  background: var(--white);
  color: var(--brand-dark);
}

.hero {
  min-height: 660px;
  padding: 150px 0 90px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero,
.page-hero,
.service-hero {
  --hero-shift: 0px;
  --hero-scale: 1.02;
}

.hero::before,
.page-hero::before,
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 18, 0.86), rgba(8, 24, 18, 0.5) 48%, rgba(8, 24, 18, 0.18));
  z-index: 1;
}

.hero::after,
.page-hero::after,
.service-hero::after {
  content: "";
  position: absolute;
  inset: -24px;
  background-image: inherit;
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--hero-shift), 0) scale(var(--hero-scale));
  transition: transform 0.7s ease, filter 0.7s ease;
  z-index: 0;
}

.hero::after {
  animation: heroDrift 24s ease-in-out infinite alternate;
}

.hero:hover,
.page-hero:hover,
.service-hero:hover {
  --hero-scale: 1.055;
}

.hero:hover::after,
.page-hero:hover::after,
.service-hero:hover::after {
  filter: saturate(1.08) contrast(1.04);
}

.hero > .container,
.page-hero > .container,
.service-hero > .container {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  max-width: 900px;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.hero-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  padding-top: 1.25rem;
}

.hero-strip strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
}

.hero-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.section {
  padding: 85px 0;
}

.section-white {
  background: var(--white);
}

.section-muted {
  background: #eef5f1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.page-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
}

.section-heading p,
.page-intro {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.value-card,
.info-panel,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(18, 38, 30, 0.08);
}

.service-card {
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  width: 100%;
}

.service-card:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.045);
}

.service-card-body {
  padding: 1.25rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.link-arrow {
  color: var(--brand);
  font-weight: 800;
}

.split-feature {
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.feature-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.feature-image:hover {
  box-shadow: 0 22px 54px rgba(18, 38, 30, 0.16);
  transform: translateY(-3px) scale(1.01);
}

.value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: 1.3rem;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.value-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.cta-band {
  background: var(--brand-dark);
  color: var(--white);
  padding: 70px 0;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero,
.service-hero {
  min-height: 430px;
  padding: 145px 0 80px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.page-hero h1,
.service-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
}

.service-content {
  margin-top: -55px;
  position: relative;
  z-index: 2;
}

.info-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.info-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.pill-list li {
  background: var(--brand-soft);
  border: 1px solid rgba(35, 132, 67, 0.16);
  border-radius: 999px;
  color: var(--brand-dark);
  font-weight: 700;
  padding: 0.45rem 0.8rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.filter-button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  padding: 0.55rem 0.9rem;
}

.filter-button.active,
.filter-button:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.gallery-card {
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
  text-align: left;
  transform: translateZ(0);
  transition: opacity 0.2s ease, transform 0.28s ease, filter 0.28s ease;
}

.gallery-card:hover {
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-3px) scale(1.015);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card.is-filtered-out {
  opacity: 0;
  transform: scale(0.98);
}

.gallery-card span {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  color: var(--white);
  font-weight: 700;
  padding: 2.4rem 1rem 1rem;
}

.image-dialog {
  background: #0d1511;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  max-width: min(92vw, 980px);
  opacity: 0;
  padding: 1rem;
  transform: scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.image-dialog.is-open {
  opacity: 1;
  transform: scale(1);
}

.image-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.image-dialog img {
  border-radius: 6px;
  display: block;
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.image-dialog p {
  font-weight: 700;
  margin: 0.8rem 2.5rem 0 0;
}

.dialog-close {
  background: var(--white);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  font-size: 1.5rem;
  height: 38px;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 38px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    background-position: 48% center;
  }

  to {
    background-position: 54% center;
  }
}

.contact-wrap {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-label {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.2rem 0 0;
}

.inquiry-form {
  margin-top: 1.25rem;
}

.form-label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-control,
.form-select {
  border-color: var(--line);
  border-radius: 8px;
  min-height: 48px;
}

textarea.form-control {
  min-height: 150px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(35, 132, 67, 0.14);
}

.alert {
  border-radius: 8px;
}

.trust-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.site-footer {
  background: #111a16;
  color: rgba(255, 255, 255, 0.76);
  padding: 58px 0 28px;
}

.footer-logo {
  max-width: 115px;
}

.footer-copy {
  max-width: 430px;
}

.footer-title {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  margin-bottom: 0.45rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
}

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    padding: 1rem 0;
  }

  .navbar .nav-link.active::after {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .service-grid,
  .value-grid,
  .gallery-grid,
  .trust-strip,
  .split-feature,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .hero,
  .page-hero,
  .service-hero {
    padding-top: 125px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
