:root {
  --green: #0b6f43;
  --green-deep: #062b1f;
  --green-soft: #e8f4ed;
  --blue: #315f75;
  --blue-soft: #e6f0f3;
  --amber: #f0b429;
  --red: #c83f32;
  --ink: #101815;
  --muted: #56645d;
  --line: #dce6df;
  --surface: #f5f8f3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 43, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.footer-inner,
.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  width: min(1200px, calc(100% - 40px));
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.brand-mark span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  background: var(--green);
}

.brand-mark span:nth-child(2) {
  background: var(--amber);
}

.brand-mark span:nth-child(3) {
  background: var(--red);
}

.brand-name {
  color: var(--ink);
  font-size: 1.06rem;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #26332e;
  font-size: 0.95rem;
  font-weight: 600;
}

.primary-nav a,
.header-cta {
  text-decoration: none;
}

.header-cta,
.button {
  display: inline-flex;
  gap: 10px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  background: var(--green);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--green-deep);
}

.hero picture,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture {
  width: min(76%, 1240px);
  right: auto;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 22%, rgba(50, 186, 113, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(4, 28, 20, 0.04) 0%, rgba(4, 28, 20, 0.1) 42%, rgba(4, 28, 20, 0.62) 58%, rgba(4, 28, 20, 0.94) 72%, rgba(4, 28, 20, 1) 100%),
    linear-gradient(0deg, rgba(4, 28, 20, 0.34), rgba(4, 28, 20, 0.02));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  align-items: stretch;
  padding: 32px 0 28px;
}

.hero-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1100px) {
  .hero-panel {
    transform: translateX(32px);
  }
}

.hero-copy {
  width: min(650px, 100%);
  margin-left: auto;
  color: var(--white);
}

@media (min-width: 1100px) {
  .hero-copy {
    width: min(610px, 100%);
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero .eyebrow {
  color: #bdf5d2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin: 0 0 22px;
  border: 1px solid rgba(96, 226, 146, 0.36);
  border-radius: 999px;
  background: rgba(6, 43, 31, 0.44);
  color: #e6f6ec;
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #59d889;
  box-shadow: 0 0 0 5px rgba(89, 216, 137, 0.16);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 650px;
  font-size: 3.2rem;
}

h1 span {
  color: #62d886;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.2rem;
}

.hero-lede {
  max-width: 560px;
  margin: 20px 0 0;
  color: #e4f4ea;
  font-size: 1.12rem;
}

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

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-light {
  background: #2fbe73;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(47, 190, 115, 0.2);
}

.button-ghost,
.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
  background: rgba(4, 28, 20, 0.18);
}

.hero-plan-card {
  display: none;
}

.hero-plan-card h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.15rem;
}

.hero-plan-card ul {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hero-plan-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 17px 0;
}

.hero-plan-card li:first-child {
  border-top: 0;
}

.hero-plan-card svg {
  width: 30px;
  height: 30px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-plan-card strong {
  display: block;
  color: var(--green-deep);
  font-size: 0.95rem;
  line-height: 1.25;
}

.hero-plan-card span {
  color: #314239;
  font-size: 0.88rem;
  line-height: 1.4;
}

.hero-stats {
  display: grid;
  width: min(880px, 100%);
  margin-left: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.hero-stats div {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  padding: 18px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div:first-child {
  border-left: 0;
}

.stat-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 222, 138, 0.55);
  border-radius: 50%;
  color: #5bdd91;
}

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

.hero-stats strong {
  color: #5bdd91;
  font-size: 1.18rem;
  line-height: 1.1;
}

.hero-stats span:not(.stat-icon) {
  color: #ecf6ef;
  font-size: 0.9rem;
  line-height: 1.25;
}

section:not(.hero) {
  padding: 86px 0;
}

.qualification-band {
  background: var(--surface);
}

section.qualification-band {
  padding: 52px 0 70px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 26px;
}

.qualification-grid,
.services-grid,
.projects-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

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

.qualification-card,
.service-card,
.project-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.qualification-card,
.service-card {
  padding: 28px;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.rating-chip-green {
  background: var(--green-soft);
  color: var(--green);
}

.rating-chip-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.qualification-card h3,
.service-card h3,
.project-card h3 {
  margin-top: 16px;
}

.qualification-card p,
.service-card p,
.project-card p,
.about-grid p,
.contact-section p {
  color: var(--muted);
}

.about-section {
  background: var(--green-deep);
  color: var(--white);
}

.about-section .section-kicker {
  color: #6ee29a;
}

.about-section p {
  color: #c4d8cd;
}

.about-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}

.team-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
}

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

.team-icon.accent {
  background: #72d78d;
  color: var(--green-deep);
}

.team-icon.warm {
  background: var(--amber);
  color: var(--green-deep);
}

.team-icon.fast {
  background: var(--blue);
  color: var(--white);
}

.team-panel {
  border: 1px solid #1d5a41;
  border-radius: 8px;
  background: #0c3b2a;
  padding: 28px;
}

.team-panel-label {
  margin: 0 0 18px;
  color: #6ee29a;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-capabilities {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-capabilities li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid #1d5a41;
  padding: 20px 0;
}

.team-capabilities li:first-child {
  border-top: 0;
  padding-top: 0;
}

.team-capabilities li:last-child {
  padding-bottom: 0;
}

.team-capabilities h3 {
  margin: 0;
}

.team-capabilities p {
  margin: 6px 0 0;
  color: #c4d8cd;
}

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

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  color: #293a32;
  font-size: 0.95rem;
}

.service-card li {
  position: relative;
  padding-left: 22px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.projects-section {
  background: var(--surface);
}

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

.project-card {
  overflow: hidden;
  box-shadow: none;
}

.project-card picture {
  display: flex;
  height: 224px;
  align-items: center;
  justify-content: center;
  background: #edf2ee;
  border-bottom: 1px solid var(--line);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-body {
  padding: 24px;
}

.project-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.project-title-row h3 {
  margin: 0;
}

.project-title-row span {
  flex: 0 0 auto;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green);
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 800;
}

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

.contact-section .section-kicker {
  color: #c9f7d8;
}

.contact-section p {
  color: #e4f3e9;
  font-size: 1.06rem;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-details span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-details strong {
  color: #c9f7d8;
  font-size: 0.86rem;
}

.contact-details a {
  text-decoration: none;
}

.site-footer {
  background: #07140d;
  color: #a8baaf;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-mark {
  opacity: 0.95;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero picture {
    width: 100%;
    right: 0;
  }

  .hero-image {
    object-position: 18% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 43, 31, 0.9) 0%, rgba(6, 43, 31, 0.72) 54%, rgba(6, 43, 31, 0.38) 100%),
      linear-gradient(90deg, rgba(6, 43, 31, 0.16), rgba(6, 43, 31, 0.68));
  }

  .hero-inner {
    align-items: stretch;
    justify-content: stretch;
    padding: 92px 0 0;
  }

  .hero-panel {
    display: grid;
    gap: 34px;
  }

  .hero-copy {
    width: min(520px, 100%);
    margin-left: auto;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero-badge {
    min-height: 36px;
    margin-bottom: 22px;
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .hero-plan-card {
    display: block;
    width: min(520px, 100%);
    margin-left: auto;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    padding: 24px 28px;
    box-shadow: 0 20px 52px rgba(2, 16, 11, 0.28);
  }

  .hero-stats {
    width: calc(100% + 40px);
    margin: 0 -20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    background: rgba(249, 253, 250, 0.96);
    color: var(--ink);
  }

  .hero-stats div {
    border-left: 1px solid var(--line);
    padding: 24px 18px;
  }

  .hero-stats div:first-child {
    border-left: 0;
  }

  .stat-icon {
    border: 0;
    background: var(--green-soft);
    color: var(--green);
  }

  .hero-stats span:not(.stat-icon) {
    color: var(--ink);
  }

  h2 {
    font-size: 2rem;
  }

  .about-grid,
  .contact-grid,
  .qualification-grid,
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 32px, 1120px);
  }

  .header-inner {
    gap: 12px;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 92px 0 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-badge {
    max-width: 100%;
    white-space: normal;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-plan-card {
    padding: 22px 24px;
  }

  .hero-stats {
    width: calc(100% + 32px);
    margin: 0 -16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats div {
    padding: 22px 16px;
  }

  .hero-stats div:nth-child(odd) {
    border-left: 0;
  }

  section:not(.hero) {
    padding: 64px 0;
  }

  section.qualification-band {
    padding: 44px 0 60px;
  }

  .qualification-card,
  .service-card,
  .project-body {
    padding: 22px;
  }

  .project-title-row {
    display: grid;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
