:root {
  --green: #123d22;
  --green-dark: #0a2b17;
  --green-light: #1d5a31;
  --black: #101110;
  --ink: #1e211f;
  --muted: #626963;
  --line: #dfe4df;
  --soft: #f3f5f1;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(16, 24, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4rem, 8vw, 7.6rem);
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

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

p {
  margin: 0;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--black);
  background: var(--white);
  border-color: #cfd6cf;
}

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(12, 32, 18, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand img {
  width: 150px;
  max-height: 68px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-phone {
  display: grid;
  justify-items: end;
  line-height: 1.15;
}

.header-phone span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--green);
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  padding: 92px 0 86px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 61, 34, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(18, 61, 34, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f2f5f0 100%);
  background-size: 56px 56px, 56px 56px, auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-lead {
  max-width: 700px;
  margin-top: 26px;
  color: #4f5751;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: #4d554f;
  font-size: 0.9rem;
  font-weight: 700;
}

.proof-row span {
  position: relative;
  padding-left: 18px;
}

.proof-row span::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero-visual {
  position: relative;
  min-width: 0;
  border: 1px solid #cfd8cf;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-logo-wrap {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 40px;
  background:
    radial-gradient(circle at 50% 20%, rgba(18, 61, 34, 0.08), transparent 38%),
    #ffffff;
}

.hero-logo-wrap img {
  width: min(540px, 100%);
}

.hero-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--white);
  background: var(--green-dark);
}

.hero-contact-bar div {
  display: grid;
}

.hero-contact-bar span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-contact-bar a {
  flex: 0 0 auto;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 800;
}

.quick-contact {
  color: var(--white);
  background: var(--black);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.quick-contact-grid > div {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-contact-grid > div:last-child {
  border-right: 0;
}

.quick-contact-grid span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-contact-grid a,
.quick-contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 64px;
}

.split-heading > p {
  color: var(--muted);
  font-size: 1.07rem;
}

.centered {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--green);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.service-item p {
  max-width: 780px;
  margin-top: 8px;
  color: var(--muted);
}

.process-section {
  color: var(--white);
  background: var(--green-dark);
}

.process-section h2,
.process-section h3,
.process-section .eyebrow {
  color: var(--white);
}

.process-section .eyebrow {
  opacity: 0.66;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid article {
  min-height: 290px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  display: block;
  margin-bottom: 64px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.process-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.about-section {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 88px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.value-list {
  border-top: 1px solid #cfd8cf;
}

.value-list > div {
  display: grid;
  gap: 7px;
  padding: 24px 0;
  border-bottom: 1px solid #cfd8cf;
}

.value-list strong {
  color: var(--black);
  font-size: 1.05rem;
}

.value-list span {
  color: var(--muted);
}


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

.estimate-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
}

.estimate-section h2,
.estimate-section .eyebrow {
  color: var(--white);
}

.estimate-section > .container > div:first-child > p:not(.eyebrow),
.estimate-grid > div:first-child > p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
}

.direct-contact {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.direct-contact a {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.direct-contact span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact strong {
  overflow-wrap: anywhere;
}

.estimate-form {
  padding: 34px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.estimate-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 700;
}

.estimate-form input,
.estimate-form textarea {
  width: 100%;
  border: 1px solid #cfd6cf;
  border-radius: 8px;
  outline: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfb;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.estimate-form input:focus,
.estimate-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 61, 34, 0.12);
}

.estimate-form textarea {
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.faq-section {
  padding: 104px 0;
  background: var(--soft);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #cfd8cf;
}

.faq-list details {
  border-bottom: 1px solid #cfd8cf;
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  list-style: none;
  color: var(--black);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  color: var(--green);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 52px 24px 0;
  color: var(--muted);
}

.final-cta {
  padding: 74px 0;
  color: var(--white);
  background: var(--green);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta .eyebrow {
  opacity: 0.65;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-light {
  color: var(--green-dark);
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.site-footer {
  padding: 64px 0 24px;
  color: var(--white);
  background: #0b0c0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 48px;
}

.footer-brand img {
  width: 180px;
  padding: 8px;
  border-radius: 12px;
  background: var(--white);
}

.footer-brand p {
  max-width: 430px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.66);
  overflow-wrap: anywhere;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
}

.mobile-call-button {
  display: none;
}

@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-grid,
  .split-heading,
  .about-grid,
  .estimate-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .about-grid,
  .estimate-grid {
    gap: 54px;
  }

  .split-heading {
    gap: 24px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .quick-contact-grid > div:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section,
  .faq-section {
    padding: 76px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 124px;
  }

  .site-nav {
    top: 74px;
  }

  .hero {
    padding: 64px 0 60px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-actions,
  .final-cta-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .final-cta-actions .button,
  .estimate-form .button {
    width: 100%;
  }

  .proof-row {
    display: grid;
    gap: 10px;
  }

  .hero-logo-wrap {
    min-height: 280px;
    padding: 22px;
  }

  .hero-contact-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-item {
    grid-template-columns: 52px 1fr;
  }

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

  .process-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid article > span {
    margin-bottom: 32px;
  }

  .area-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .estimate-form {
    padding: 24px 18px;
  }

  .final-cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .mobile-call-button {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 90;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--white);
    background: var(--green);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    font-weight: 800;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}
