:root {
  --green-700: #127c4a;
  --green-600: #16945a;
  --green-100: #e8f5ee;
  --ink-900: #17201c;
  --ink-700: #34423b;
  --ink-500: #607069;
  --line: #d9e2de;
  --paper: #ffffff;
  --soft: #f5f8f6;
  --amber: #c8902f;
  --steel: #5f7480;
  --shadow: 0 18px 60px rgba(18, 33, 27, 0.12);
  --radius: 8px;
  --header-height: 74px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(200, 144, 47, 0.85);
  outline-offset: 4px;
}

.container {
  max-width: 1120px;
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 222, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
}

.brand img {
  width: 156px;
  max-height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 14px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--green-100);
  color: var(--green-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 52px) 0 76px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.56) 100%),
    repeating-linear-gradient(90deg, rgba(18, 124, 74, 0.08) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(95, 116, 128, 0.08) 0 1px, transparent 1px 88px),
    var(--soft);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--green-700), var(--steel), var(--amber));
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: max(24px, 7vw);
  opacity: 0.12;
}

.hero-bg img {
  width: min(640px, 70vw);
  filter: saturate(0.95);
}

.hero-content {
  max-width: 1120px;
}

.hero,
.section {
  scroll-margin-top: var(--header-height);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li,
dd,
dt,
strong {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-900);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 8vw, 5.9rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.55rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
}

.hero-text {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--ink-700);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--green-700);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(18, 124, 74, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-600);
}

.button-secondary {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink-900);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green-700);
  color: var(--green-700);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 46px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-facts dt {
  margin: 0 0 4px;
  color: var(--ink-500);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--ink-900);
  font-weight: 800;
}

.section {
  padding: 86px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: start;
}

.section-intro p,
.contact-info p,
.bim-copy p {
  color: var(--ink-700);
  font-size: 1.05rem;
}

.section-intro p {
  margin: 22px 0 0;
}

.services .section-intro h2 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
}

.services {
  background: var(--paper);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.service-card {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(18, 33, 27, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  border-color: var(--green-700);
  box-shadow: 0 14px 32px rgba(18, 33, 27, 0.1);
  transform: translateY(-2px);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: var(--ink-700);
}

.service-items {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-700);
  list-style: none;
}

.service-items li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.service-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-700);
  transform: translateY(-50%);
}

.service-more {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  color: var(--green-700);
  font-size: 0.94rem;
  font-weight: 900;
}

.scope-hero {
  position: relative;
  padding: calc(var(--header-height) + 56px) 0 74px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 246, 0.88)),
    repeating-linear-gradient(90deg, rgba(18, 124, 74, 0.08) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(95, 116, 128, 0.08) 0 1px, transparent 1px 88px),
    var(--soft);
  scroll-margin-top: var(--header-height);
}

.scope-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green-700), var(--steel), var(--amber));
}

.scope-hero-content {
  max-width: 900px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  color: var(--ink-700);
  font-size: 0.94rem;
  font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--green-700);
}

.scope-hero h1 {
  max-width: 880px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
}

.scope-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--ink-700);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.scope-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: start;
}

.scope-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.scope-summary p {
  margin: 22px 0 0;
  color: var(--ink-700);
  font-size: 1.05rem;
}

.scope-summary h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.scope-card-list {
  display: grid;
  gap: 16px;
}

.scope-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(18, 33, 27, 0.06);
}

.scope-card h3 {
  font-size: 1.08rem;
}

.scope-card p {
  margin: 0;
  color: var(--ink-700);
}

.scope-cta {
  background:
    linear-gradient(90deg, rgba(18, 124, 74, 0.09), rgba(200, 144, 47, 0.1)),
    var(--soft);
}

.scope-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.scope-cta-box p {
  margin: 14px 0 0;
  color: var(--ink-700);
  font-size: 1.05rem;
}

.bim {
  background:
    linear-gradient(90deg, rgba(18, 124, 74, 0.09), rgba(200, 144, 47, 0.1)),
    var(--soft);
}

.bim-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.bim-copy p {
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 42px;
  padding: 10px 12px 10px 42px;
  border-left: 3px solid var(--green-700);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-700);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green-700);
  border-bottom: 2px solid var(--green-700);
  transform: rotate(-45deg);
}

.contact {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 52px;
  align-items: start;
}

.contact-info p {
  margin: 22px 0 0;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-methods a {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  border-color: var(--green-700);
  background: var(--green-100);
}

.contact-methods span {
  color: var(--ink-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--ink-900);
  overflow-wrap: anywhere;
}

.contact-methods a[href*="instagram.com"] strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-methods a[href*="instagram.com"] strong::before,
.footer-social::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at center, transparent 0 3px, currentColor 3.3px 4.8px, transparent 5.1px),
    radial-gradient(circle at 74% 26%, currentColor 0 1.8px, transparent 2px);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row label,
.consent {
  color: var(--ink-700);
  font-size: 0.94rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-900);
  padding: 12px 14px;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-700);
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 124, 74, 0.14);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.consent input {
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--green-700);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.form-note {
  margin: -4px 0 0;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.form-note[data-status="loading"] {
  color: var(--green-700);
  font-weight: 800;
}

.form-note[data-status="error"] {
  color: #9a3412;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.78);
}

.footer-content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: center;
}

.footer-content img {
  width: 124px;
  padding: 8px;
  border-radius: 8px;
  background: var(--paper);
}

.footer-content p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-social {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 8px 12px;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(18, 124, 74, 0.1), rgba(200, 144, 47, 0.12)),
    var(--soft);
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.thanks-panel {
  width: min(680px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.thanks-panel p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-700);
}

.centered-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 8px;
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 42px) 0 66px;
  }

  .hero-bg {
    align-items: flex-start;
    justify-content: center;
    padding: 120px 0 0;
    opacity: 0.08;
  }

  .section-grid,
  .bim-layout,
  .contact-layout,
  .scope-layout,
  .scope-cta-box {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .scope-summary {
    position: static;
  }

  .section-intro,
  .service-list,
  .service-card {
    width: 100%;
    max-width: 100%;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .hero-content,
  .section-intro,
  .service-list,
  .contact-layout,
  .bim-layout,
  .scope-layout,
  .scope-cta-box,
  .footer-content {
    max-width: 100%;
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand img {
    width: 136px;
  }

  .hero {
    padding-bottom: 50px;
  }

  .scope-hero {
    padding: calc(var(--header-height) + 34px) 0 52px;
  }

  .scope-hero h1 {
    font-size: clamp(1.75rem, 7.2vw, 2.25rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .scope-summary h2,
  .scope-cta-box h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .services .section-intro h2 {
    overflow-wrap: anywhere;
  }

  .scope-hero p:not(.eyebrow),
  .scope-summary p,
  .scope-cta-box p {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  h2,
  .services .section-intro h2 {
    font-size: clamp(1.6rem, 7.2vw, 2.05rem);
    line-height: 1.12;
  }

  .section-intro p,
  .contact-info p,
  .bim-copy p {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.74rem;
  }

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

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .button {
    width: 100%;
  }

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

  .section {
    padding: 62px 0;
  }

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

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-card h3 {
    font-size: 1.08rem;
    line-height: 1.14;
  }

  .service-items li {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 20px;
  }

  .form-row.split {
    grid-template-columns: 1fr;
  }

  .thanks-main {
    padding: 18px;
  }

  .thanks-panel {
    padding: 28px 18px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(358px, calc(100% - 32px));
  }

  h2,
  .services .section-intro h2 {
    font-size: clamp(1.5rem, 6.4vw, 1.88rem);
  }

  .hero-text {
    max-width: 100%;
  }
}

@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;
  }
}