:root {
  color-scheme: light;
  --page: #ffffff;
  --soft: #f5f2ea;
  --ink: #171b16;
  --muted: #5d665b;
  --line: rgba(23, 27, 22, 0.14);
  --green: #12351f;
  --green_2: #1d5a35;
  --gold: #d8a226;
  --gold_dark: #9a6700;
  --cream: #fff8e7;
  --navy: #0e1c17;
  --shadow: 0 18px 46px rgba(20, 24, 19, 0.12);
  --shadow_deep: 0 26px 70px rgba(18, 53, 31, 0.22);
  --max: 1180px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body,
input,
select,
textarea,
button {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site_header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px max(18px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(18, 53, 31, 0.05);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand_logo {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 16px rgba(18, 53, 31, 0.16));
}

.brand_logo img,
.footer_brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site_nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  font-size: 0.94rem;
}

.site_nav a {
  color: var(--muted);
  text-decoration: none;
}

.site_nav a:hover,
.site_nav a:focus {
  color: var(--green);
}

.nav_cta {
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--cream) !important;
  box-shadow: 0 12px 24px rgba(18, 53, 31, 0.18);
}

.nav_toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  color: var(--green);
}

.nav_toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 85px);
  padding: 44px max(18px, calc((100% - var(--max)) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 162, 38, 0.18), transparent 23rem),
    linear-gradient(130deg, rgba(18, 53, 31, 0.09), transparent 42%),
    var(--page);
}

.hero_slides {
  position: relative;
  order: 2;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--green);
  box-shadow: var(--shadow_deep);
}

.hero_slides::before,
.hero_slides::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero_slides::before {
  inset: 0;
  border: 1px solid rgba(255, 248, 231, 0.32);
  border-radius: inherit;
}

.hero_slides::after {
  right: 22px;
  bottom: 22px;
  width: 118px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 248, 231, 0.76));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero_slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1400ms ease, transform 6800ms ease;
}

.hero_slide.is_active {
  opacity: 1;
  transform: scale(1);
}

.hero_overlay {
  display: none;
}

.hero_content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 650px;
  padding: 18px 0;
}

.hero_area,
.eyebrow {
  margin: 0 0 14px;
  color: var(--green_2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.5vw, 4.6rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero_content p:not(.hero_area) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.contact_card em {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.button_primary,
.contact_card em {
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 14px 28px rgba(18, 53, 31, 0.18);
}

.button_secondary {
  border: 1px solid var(--line);
  background: var(--page);
  color: var(--green);
}

.button,
.contact_card,
.service_card,
.project_card,
.review_card,
.trust_card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover,
.button:focus,
.contact_card:hover,
.contact_card:focus {
  transform: translateY(-2px);
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.section_heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service_grid,
.trust_grid,
.process_grid,
.project_grid,
.review_grid,
.contact_cards {
  display: grid;
  gap: 20px;
}

.service_grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service_card,
.contact_card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  box-shadow: 0 5px 18px rgba(20, 24, 19, 0.06);
}

.service_card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 32px;
}

.service_card::after {
  content: "";
  position: absolute;
  inset: auto 28px 24px auto;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.72;
}

.service_card:hover,
.service_card:focus-within {
  border-color: rgba(29, 90, 53, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service_icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(216, 162, 38, 0.16);
  box-shadow: inset 0 0 0 1px rgba(216, 162, 38, 0.2);
}

.service_icon::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid var(--gold);
  border-radius: 5px;
}

.service_card ul,
.check_list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service_card li,
.check_list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.service_card li::before,
.check_list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: 64px;
  align-items: center;
}

.about_copy .button {
  margin-top: 28px;
}

.about_media {
  position: relative;
}

.about_media img {
  display: block;
  width: 100%;
  min-height: 520px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow_deep);
}

.about_media.is_logo_panel {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 31, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 36%, rgba(216, 162, 38, 0.2), transparent 18rem),
    linear-gradient(145deg, var(--green), var(--navy));
  box-shadow: var(--shadow_deep);
}

.about_media.is_logo_panel img {
  width: min(78%, 420px);
  height: auto;
  min-height: 0;
  padding: 28px;
  border-radius: 24px;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.3));
}

.about_media.is_logo_panel .about_badge {
  right: 22px;
  bottom: 22px;
}

.about_media.is_map_panel {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 31, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(216, 162, 38, 0.12), transparent 18rem),
    var(--page);
  box-shadow: var(--shadow_deep);
}

.about_media.is_map_panel img {
  width: min(68%, 360px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  box-shadow: none;
}

.about_media.is_map_panel .about_badge {
  right: 24px;
  bottom: 24px;
}

.about_badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 230px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.about_badge strong {
  display: block;
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
}

.about_badge span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.trust_band {
  padding: 82px max(18px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 162, 38, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--green), var(--navy));
}

.trust_band h2,
.trust_band .eyebrow {
  color: var(--cream);
}

.trust_grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust_card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 248, 231, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.trust_card:hover {
  border-color: rgba(216, 162, 38, 0.34);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.trust_card h3 {
  color: var(--cream);
}

.trust_card p {
  color: rgba(255, 248, 231, 0.78);
}

.process {
  padding: 82px max(18px, calc((100% - var(--max)) / 2));
  background: var(--soft);
}

.process_grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process_step {
  text-align: center;
}

.process_step span {
  display: inline-grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--green_2);
  color: var(--cream);
  font-size: 1.55rem;
  font-weight: 900;
}

.project_grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.project_card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: var(--shadow);
}

.project_card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease;
}

.project_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(15, 28, 23, 0.84));
}

.project_card div {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
  color: var(--cream);
}

.project_card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.project_card h3 {
  margin: 0;
  color: var(--cream);
}

.project_card:hover img {
  transform: scale(1.04);
}

.project_card:hover {
  box-shadow: var(--shadow_deep);
  transform: translateY(-3px);
}

.review_band {
  padding: 82px max(18px, calc((100% - var(--max)) / 2));
  background: var(--soft);
}

.review_grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review_card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  box-shadow: 0 5px 18px rgba(20, 24, 19, 0.06);
}

.review_card::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.review_card blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.68;
}

.review_card cite {
  color: var(--green_2);
  font-style: normal;
  font-weight: 900;
}

.contact {
  padding-top: 64px;
}

.contact_cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1000px;
  margin: 0 auto 34px;
}

.contact_card {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 38px 28px;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}

.contact_card span {
  font-size: 1.22rem;
  font-weight: 900;
}

.contact_card strong {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact_card em {
  width: 100%;
  font-style: normal;
}

.estimate_form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  color: var(--ink);
  padding: 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green_2);
  box-shadow: 0 0 0 3px rgba(29, 90, 53, 0.12);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form_note {
  margin: 0;
}

.site_footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 34px;
  align-items: start;
  padding: 48px max(18px, calc((100% - var(--max)) / 2));
  background: var(--navy);
  color: var(--cream);
}

.site_footer p {
  margin-bottom: 0;
  color: rgba(255, 248, 231, 0.72);
}

.footer_brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer_brand img {
  width: 70px;
  height: 48px;
}

.footer_links,
.footer_social {
  display: grid;
  gap: 12px;
}

.footer_links a,
.footer_social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 248, 231, 0.78);
  text-decoration: none;
}

.footer_social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer_credit {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 231, 0.14);
  color: rgba(255, 248, 231, 0.66);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-align: right;
}

.mobile_action_bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms ease var(--reveal-delay, 0ms);
}

.reveal.is_visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero_slides {
    min-height: 420px;
  }

  .service_grid,
  .trust_grid,
  .process_grid,
  .review_grid,
  .contact_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site_footer {
    grid-template-columns: 1fr;
  }

  .footer_credit {
    text-align: left;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

  .site_header {
    padding: 12px 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand_logo {
    width: 50px;
    height: 50px;
  }

  .nav_toggle {
    display: grid;
  }

  .site_nav {
    position: absolute;
    top: 100%;
    right: 14px;
    display: none;
    min-width: 220px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--page);
    box-shadow: var(--shadow);
  }

  .site_nav.is_open {
    display: flex;
  }

  .site_nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
    padding: 24px 14px 58px;
  }

  .hero_slides {
    min-height: 300px;
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 66px 0;
  }

  .service_grid,
  .trust_grid,
  .process_grid,
  .project_grid,
  .review_grid,
  .contact_cards,
  .estimate_form {
    grid-template-columns: 1fr;
  }

  .service_card {
    min-height: 0;
    padding: 28px;
  }

  .project_card {
    min-height: 290px;
  }

  .about_media img {
    min-height: 340px;
  }

  .about_media.is_logo_panel {
    min-height: 360px;
  }

  .about_media.is_logo_panel img {
    width: min(82%, 300px);
    padding: 16px;
  }

  .about_media.is_map_panel {
    min-height: 360px;
  }

  .about_media.is_map_panel img {
    width: min(58%, 220px);
  }

  .about_badge {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .full {
    grid-column: auto;
  }

  .mobile_action_bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(18, 53, 31, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(18, 53, 31, 0.22);
    backdrop-filter: blur(16px);
  }

  .mobile_action_bar a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--soft);
    color: var(--green);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile_action_bar a:last-child {
    background: var(--green);
    color: var(--cream);
  }
}
