:root {
  --bg: #ffffff;
  --bg-soft: #f6f8f6;
  --ink: #101820;
  --muted: #52605d;
  --line: #dfe5e1;
  --green: #005b35;
  --green-dark: #003c25;
  --green-soft: #e9f3ed;
  --amber: #d99417;
  --footer: #111c21;
  --shadow: 0 18px 50px rgba(10, 23, 20, 0.14);
  --radius: 8px;
  --header-height: 84px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.lock-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-height);
  padding: 0 clamp(20px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.05;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}

.nav a,
.site-footer a {
  color: inherit;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--green);
}

.header-call {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(0, 91, 53, 0.2);
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.header-call:hover,
.button-primary:hover,
.form-submit:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgba(0, 91, 53, 0.24);
  transform: translateY(-1px);
}

.header-call svg,
.button svg,
.quick-contact svg,
.contact-methods svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: stretch;
  gap: clamp(36px, 5vw, 68px);
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.hero-copy {
  max-width: 640px;
  padding: clamp(108px, 12vh, 164px) 0 clamp(42px, 6vw, 72px);
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 650px;
  font-size: clamp(46px, 6.2vw, 82px);
}

h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.hero-copy p,
.section-intro p,
.contact-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button-primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 12px 32px rgba(0, 91, 53, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--green);
}

.button-secondary:hover {
  color: var(--green);
  background: var(--green-soft);
  transform: translateY(-1px);
}

.quick-contact {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}

.quick-contact a,
.contact-methods a {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 14px;
}

.quick-contact svg,
.contact-methods svg {
  color: var(--green);
}

.hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  height: min(760px, calc(100svh - var(--header-height) - 28px));
  min-height: 560px;
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(16, 24, 32, 0.14), rgba(16, 24, 32, 0));
  pointer-events: none;
}

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

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 91, 53, 0.035), transparent 42%),
    var(--bg);
}

.services-section,
.service-area-section,
.faq-section,
.contact-section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 48px);
}

.services-section,
.service-area-section,
.faq-section {
  max-width: 1180px;
  margin: 0 auto;
}

.section-intro {
  max-width: 620px;
}

.section-intro h2::after,
.contact-copy h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 18px;
  background: var(--amber);
}

.section-intro p {
  margin-top: 18px;
  font-size: 18px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 6vw, 78px);
  row-gap: 0;
  margin-top: 36px;
}

.service-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 19px;
  font-weight: 820;
  cursor: pointer;
}

.service-row:hover,
.service-row:focus-visible {
  color: var(--green);
}

.service-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--green);
}

.service-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-arrow {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  justify-self: end;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.service-detail {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 238px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(10, 23, 20, 0.06);
}

.service-detail h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.12;
}

.service-detail p,
.service-area-content p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.service-action {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-self: end;
  align-items: center;
  margin-top: auto;
  color: var(--green);
  font-size: 15px;
  font-weight: 850;
}

.service-action:hover {
  color: var(--green-dark);
}

.service-area-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 56px);
  margin-top: 34px;
  align-items: start;
}

.service-area-content p {
  max-width: 690px;
  font-size: 18px;
  line-height: 1.7;
}

.keyword-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 12px 14px;
  color: var(--ink);
  background: var(--green-soft);
  border: 1px solid rgba(0, 91, 53, 0.16);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 760;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  padding: 0 22px 22px;
  line-height: 1.7;
}

.service-page-main {
  background: var(--bg);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 48px);
}

.service-hero-copy {
  display: grid;
  gap: 24px;
}

.service-eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-hero h1 {
  font-size: clamp(42px, 5.8vw, 76px);
}

.service-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
}

.service-callout {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-callout strong {
  font-size: 22px;
  line-height: 1.2;
}

.service-callout span {
  color: rgba(255, 255, 255, 0.84);
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 6vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px) clamp(64px, 8vw, 104px);
}

.service-copy {
  display: grid;
  gap: 34px;
}

.service-copy h2,
.service-sidebar h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
}

.service-copy p,
.service-copy li,
.service-sidebar p,
.service-sidebar li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-copy ul,
.service-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.service-sidebar {
  display: grid;
  gap: 22px;
  align-content: start;
}

.sidebar-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sidebar-panel h2 {
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(44px, 7vw, 88px);
  max-width: 1180px;
  margin: 0 auto;
}

.contact-copy {
  padding-top: 26px;
}

.contact-copy p {
  max-width: 360px;
  margin-top: 26px;
  font-size: 19px;
}

.contact-methods {
  display: grid;
  gap: 18px;
  margin-top: 44px;
  font-size: 19px;
  font-weight: 720;
}

.response-note {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  color: var(--muted);
}

.response-note svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--amber);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.response-note strong,
.response-note span {
  display: block;
}

.response-note strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 10px;
  align-content: start;
}

.contact-form label {
  margin-top: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bdc9c3;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 124px;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 91, 53, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 750;
}

.thanks-main {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(64px, 10vw, 112px) clamp(20px, 5vw, 48px);
  background:
    linear-gradient(90deg, rgba(0, 91, 53, 0.06), transparent 52%),
    var(--bg);
}

.thanks-section {
  width: min(760px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thanks-section h1 {
  max-width: 720px;
}

.thanks-section > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.45;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.thanks-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 44px clamp(20px, 5vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 91, 53, 0.34), transparent 32%),
    var(--footer);
}

.site-footer > div,
.site-footer nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.site-footer strong {
  font-size: 18px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer nav {
  grid-auto-flow: column;
  gap: 28px;
  font-weight: 720;
}

:focus-visible {
  outline: 3px solid rgba(217, 148, 23, 0.65);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    gap: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .nav {
    display: none;
  }

  .header-call {
    min-height: 44px;
    padding: 0 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 44px;
    padding-bottom: clamp(36px, 6vw, 54px);
  }

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

  .hero-media {
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 0;
    border-left: 0;
  }

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

  .service-detail-grid,
  .service-area-content,
  .service-hero,
  .service-content {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-top: 0;
  }

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

  .site-footer nav {
    grid-auto-flow: row;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    height: auto;
    min-height: 72px;
    padding-block: 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand span:last-child {
    max-width: 180px;
  }

  .header-call {
    font-size: 0;
    width: 44px;
    padding: 0;
  }

  .header-call-text {
    width: auto;
    padding: 0 14px;
    font-size: 14px;
  }

  .header-call svg {
    width: 21px;
    height: 21px;
  }

  .hero {
    gap: 30px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-contact {
    font-size: 16px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-row {
    min-height: 76px;
    font-size: 17px;
  }

  .contact-methods {
    font-size: 16px;
  }

  .service-detail {
    min-height: 0;
    padding: 20px;
  }

  .service-area-content p,
  .service-copy p,
  .service-copy li,
  .service-sidebar p,
  .service-sidebar li {
    font-size: 16px;
  }

  .faq-list summary {
    padding: 18px;
    font-size: 16px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .service-hero {
    padding-top: 48px;
  }

  .service-callout,
  .sidebar-panel {
    padding: 20px;
  }

  .thanks-actions {
    flex-direction: column;
  }
}

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