:root {
  --black: #100b00;
  --green: #85cb33;
  --alice: #e8f1f2;
  --white: #ffffff;
  --ink: #151515;
  --muted: #5f696d;
  --line: #dbe4e5;
  --surface: #f7faf9;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(133, 203, 51, 0.5);
  outline-offset: 4px;
}

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

.brand {
  width: min(248px, 48vw);
  padding-top: 10px;
}

.brand img {
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: #2d3436;
  font-size: 0.96rem;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--green);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 82px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(72px, 9vw, 126px) clamp(18px, 6vw, 84px);
  color: var(--white);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 11, 0, 0.9), rgba(16, 11, 0, 0.34) 52%, rgba(16, 11, 0, 0.18)),
    linear-gradient(0deg, rgba(16, 11, 0, 0.35), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.eyebrow,
.section-label {
  margin: 0 0 15px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7.7vw, 6.6rem);
  font-weight: 800;
  line-height: 0.91;
  max-width: 840px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.hero-content p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.hero-metrics {
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  bottom: clamp(22px, 4vw, 50px);
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: min(560px, 70vw);
}

.hero-metrics div {
  width: 150px;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-metrics div:hover {
  transform: translateY(-3px);
  background: var(--white);
}

.hero-metrics strong {
  color: var(--green);
  font-size: 0.9rem;
}

.hero-metrics span {
  font-weight: 800;
  line-height: 1.1;
}

.statement {
  display: grid;
  grid-template-columns: 90px minmax(0, 900px);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 4vw, 28px);
}

.statement-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--black);
  box-shadow: 10px 10px 0 var(--green);
}

.statement-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.statement p {
  margin: 0;
  font-size: clamp(1.5rem, 3.1vw, 2.7rem);
  font-weight: 700;
  line-height: 1.08;
}

.section,
.carousel-section,
.vision,
.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 106px) clamp(18px, 4vw, 28px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.intro p:last-child,
.vision-content p,
.slide p,
.service-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.carousel-section {
  max-width: none;
  background: var(--alice);
}

.carousel-heading,
.carousel,
.carousel-dots {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: 1.2rem;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  background: var(--green);
}

.carousel {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  opacity: 0;
  visibility: hidden;
  transform: translateX(32px);
  transition: opacity 360ms ease, transform 360ms ease, visibility 360ms ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.slide img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.slide div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
}

.slide span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  background: var(--green);
  color: var(--black);
  font-weight: 800;
}

.slide h3 {
  font-size: clamp(1.48rem, 1.75vw, 2rem);
  overflow-wrap: anywhere;
}

.carousel-dots {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 42px;
  height: 5px;
  padding: 0;
  border: 0;
  background: rgba(16, 11, 0, 0.2);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--black);
}

.vision {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: 0;
  align-items: stretch;
  max-width: none;
  background: var(--black);
}

.vision-content {
  min-width: 0;
  max-width: 680px;
  justify-self: end;
  padding: clamp(42px, 7vw, 92px) clamp(22px, 5vw, 70px);
  color: var(--white);
  background: var(--black);
}

.vision-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  overflow-wrap: normal;
  word-break: normal;
}

.vision-content p {
  color: rgba(255, 255, 255, 0.76);
}

.vision-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.vision-panel article {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(22px, 3vw, 34px);
  background: #ffffff;
  color: var(--black);
}

.vision-panel article:nth-child(2) {
  background: var(--green);
}

.vision-panel article:nth-child(4) {
  background: #dff0cf;
}

.vision-panel svg {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.vision-panel h3 {
  font-size: 1.28rem;
}

.vision-panel p {
  margin-bottom: 0;
  color: #3d453a;
  font-size: 0.98rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}

.service-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-grid span {
  display: block;
  width: 46px;
  height: 6px;
  margin-bottom: 34px;
  background: var(--green);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 6vw, 84px);
  color: var(--white);
  background: var(--black);
}

.footer img {
  width: min(250px, 60vw);
}

.footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

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

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 760px;
    align-items: start;
  }

  .hero-metrics {
    left: clamp(18px, 5vw, 68px);
    right: auto;
    max-width: calc(100% - 36px);
    flex-wrap: wrap;
  }

  .statement,
  .intro,
  .vision,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .carousel {
    min-height: 760px;
  }

  .slide img {
    height: 390px;
    min-height: 390px;
  }

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

  .footer address {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .brand {
    width: min(230px, 66vw);
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .hero {
    min-height: 740px;
  }

  .hero-note {
    min-width: auto;
    width: calc(100% - 36px);
  }

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

  .carousel-heading {
    align-items: start;
    flex-direction: column;
  }

  .carousel {
    min-height: 720px;
  }

  .slide {
    transform: none;
  }

  .slide img {
    height: 280px;
    min-height: 280px;
  }

  .vision-panel,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .vision-content h2 {
    font-size: clamp(1.65rem, 8.4vw, 2.35rem);
  }

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

  .hero-metrics div {
    width: 100%;
    min-height: auto;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 60;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.94);
  }

  .brand {
    width: min(224px, 62vw);
    padding-top: 0;
  }

  .hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 124px;
    padding-bottom: 42px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-metrics {
    position: relative;
    inset: auto;
    width: min(100%, 320px);
    max-width: 320px;
    margin-top: 28px;
  }

  .menu-toggle {
    width: 46px;
    height: 42px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid var(--black);
    background: var(--white);
    color: var(--black);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .site-header .nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(16,11,0,.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-header .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid var(--line);
  }

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