:root {
  --green: #07584e;
  --green-dark: #03483f;
  --green-deep: #023a34;
  --green-accent: #0b8a67;
  --mint: #eaf5f1;
  --mint-strong: #dcefe8;
  --ink: #0b3036;
  --text: #3f565c;
  --line: #dde8e5;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(4, 72, 63, 0.10);
  --radius: 16px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

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

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: 78px 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-accent);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.10em;
  font-weight: 900;
}

.section-kicker.light {
  color: #9ce3c8;
}

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

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(3, 72, 63, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-link {
  width: 210px;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.logo-link img {
  width: 190px;
  height: 94px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 42px 0 36px;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.main-nav a:hover::after {
  background: var(--green-accent);
}

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

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #f9fcfb;
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 590px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(610px, 52%);
  padding: 58px 0;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 5.5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 26px;
  color: #27474d;
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.18s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--green-dark), #08685b);
  box-shadow: 0 10px 26px rgba(3, 72, 63, 0.18);
}

.button-secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #9bc4b8;
}

.button-light {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.opening-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: #375158;
  font-size: 13px;
  line-height: 1.6;
}

.hero-image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 61%;
  height: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #f9fcfb 0%,
    rgba(249, 252, 251, 0.98) 12%,
    rgba(249, 252, 251, 0.88) 23%,
    rgba(249, 252, 251, 0.55) 36%,
    rgba(249, 252, 251, 0.20) 49%,
    rgba(249, 252, 251, 0) 64%
  );
  pointer-events: none;
}

.services-section {
  background: #ffffff;
}

.section-head {
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.section-intro {
  max-width: 470px;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(6, 58, 52, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-content h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 20px;
}

.service-content p {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}

.service-content a {
  margin-top: auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.process-section {
  background: linear-gradient(110deg, #eff8f5 0%, #ffffff 54%, #edf8f4 100%);
}

.process-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(3, 72, 63, 0.08);
  border-radius: var(--radius);
}

.step-number {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #0b7666, var(--green-dark));
  font-weight: 950;
}

.process-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.process-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
}

.jobs-section {
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(21, 151, 117, 0.34), transparent 34%),
    linear-gradient(120deg, var(--green-deep), var(--green) 68%, #08715f);
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.jobs-copy h2 {
  margin-bottom: 22px;
  color: white;
}

.jobs-copy p {
  max-width: 780px;
  color: #e0f1ec;
  font-size: 14px;
  line-height: 1.75;
}

.jobs-highlights {
  display: grid;
  gap: 12px;
}

.jobs-highlights > div {
  padding: 18px 20px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.jobs-highlights strong {
  font-size: 14px;
}

.jobs-highlights span {
  color: #d9eee8;
  font-size: 12px;
}

.why-section {
  background: white;
}

.why-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.why-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
}

.why-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--mint-strong);
  font-weight: 950;
}

.why-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.why-grid p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}

.contact-section {
  background: #f7fbf9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: stretch;
}

.contact-copy {
  padding: 20px 0;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-copy > p {
  max-width: 640px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.contact-email {
  max-width: 590px;
  margin: 24px 0 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #cfe3dd;
  border-radius: 12px;
  background: white;
}

.mail-symbol {
  color: var(--green);
  font-size: 30px;
}

.contact-email span:last-child {
  display: grid;
  gap: 3px;
}

.contact-email small {
  color: #607479;
  font-size: 11px;
}

.contact-email strong {
  color: var(--green-dark);
  font-size: 17px;
}

.contact-card {
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(30, 158, 122, 0.46), transparent 36%),
    linear-gradient(145deg, #075d50, #033f38);
  box-shadow: var(--shadow);
}

.handwritten {
  margin-bottom: auto;
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 29px;
  line-height: 1.15;
  transform: rotate(-4deg);
}

.contact-card h3 {
  margin-bottom: 7px;
  font-size: 23px;
}

.contact-card p:not(.handwritten) {
  margin-bottom: 5px;
  color: #dcefea;
  font-size: 13px;
}

.site-footer {
  padding: 38px 0 24px;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.25fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.footer-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.footer-block {
  display: grid;
  gap: 7px;
  color: #50666b;
  font-size: 12px;
  line-height: 1.5;
}

.footer-block strong {
  margin-bottom: 5px;
  color: var(--green-dark);
  font-size: 13px;
}

.footer-block a:hover {
  color: var(--green-accent);
}

.legal-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.legal-grid details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdfc;
}

.legal-grid summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.legal-content {
  padding: 0 18px 16px;
  color: #50666b;
  font-size: 12px;
  line-height: 1.6;
}

.legal-content p {
  margin-bottom: 0;
}

.copyright {
  margin-top: 20px;
  color: #75878b;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .header-inner {
    gap: 18px;
  }

  .logo-link {
    width: 170px;
  }

  .logo-link img {
    width: 155px;
    height: 88px;
  }

  .main-nav {
    gap: 17px;
    font-size: 12px;
  }

  .hero-image {
    width: 57%;
  }

  .hero-copy {
    width: 55%;
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 84px;
  }

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

  .logo-link {
    width: 145px;
  }

  .logo-link img {
    width: 132px;
    height: 72px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 22px 22px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(0, 50, 45, 0.08);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-bottom: 26px;
  }

  .hero-inner {
    min-height: 0;
    display: block;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 48px 0 26px;
  }

  .hero h1 {
    font-size: clamp(48px, 10vw, 68px);
  }

  .hero-image {
    position: relative;
    width: calc(100% - 32px);
    height: auto;
    aspect-ratio: 3 / 2;
    margin: 0 auto;
    border-radius: 16px;
  }

  .hero-image img {
    position: absolute;
    inset: 0;
  }

  .hero-image-fade {
    background: linear-gradient(
      180deg,
      rgba(249, 252, 251, 0.12) 0%,
      rgba(249, 252, 251, 0) 24%
    );
  }

  .jobs-grid,
  .contact-grid,
  .footer-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-intro {
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .service-content {
    padding: 19px;
  }

  .contact-email {
    align-items: flex-start;
  }

  .contact-email strong {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .footer-logo img {
    width: 130px;
    height: 130px;
  }
}
