:root {
  --ink: #18202a;
  --muted: #657181;
  --line: #dce3ea;
  --paper: #f7f8f6;
  --white: #ffffff;
  --green: #2f6f5e;
  --blue: #256a9a;
  --gold: #b78b3b;
  --red: #a85049;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 6vw;
  background: rgba(247, 248, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--green);
  border-radius: 6px;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 80px 6vw 96px;
  background:
    linear-gradient(115deg, rgba(47, 111, 94, 0.12), transparent 42%),
    linear-gradient(25deg, rgba(183, 139, 59, 0.15), transparent 36%);
}

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

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-copy {
  max-width: 660px;
  color: #465160;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 6px;
  font-weight: 720;
}

.button.primary {
  color: white;
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  background: transparent;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard {
  width: min(100%, 520px);
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(24, 32, 42, 0.16);
}

.dashboard-top {
  display: flex;
  gap: 7px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-top span {
  width: 10px;
  height: 10px;
  background: var(--line);
  border-radius: 50%;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.metric-grid div,
.insight-row {
  padding: 16px;
  background: #f4f7f8;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.metric-grid strong {
  display: block;
  font-size: 26px;
}

.metric-grid small {
  color: var(--muted);
}

.chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 178px;
  padding: 20px;
  background: linear-gradient(180deg, #f8fbfb, #eef3f1);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.chart span {
  flex: 1;
  min-width: 24px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 4px 4px 0 0;
}

.insight-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.insight-row p {
  margin: 0;
  color: #415060;
  font-size: 14px;
}

.pulse {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(183, 139, 59, 0.15);
}

.section {
  padding: 88px 6vw;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

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

.service-grid img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.section-heading p,
.service-grid p,
.company-copy p,
.contact p,
.band p {
  color: var(--muted);
}

.band {
  padding: 88px 6vw;
  color: white;
  background: #24352f;
}

.band .eyebrow {
  color: #d7b773;
}

.band-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 56px;
  align-items: start;
}

.band p {
  color: #dce7e3;
  font-size: 17px;
}

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

.product-grid article {
  min-height: 190px;
  padding: 26px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.product-grid strong {
  display: block;
  margin-bottom: 16px;
  color: #d7b773;
  font-size: 22px;
}

.product-grid p {
  margin: 0;
  color: #dce7e3;
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: start;
}

.facts {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts div {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 0;
}

.facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.facts dd {
  margin: 6px 0 0;
  font-weight: 680;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 40px;
  margin: 0 6vw 72px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

address {
  display: grid;
  gap: 12px;
  color: #43505f;
  font-style: normal;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-nav {
  display: flex;
  gap: 18px;
  font-weight: 680;
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 24px;
  }

  .nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
  }

  .hero,
  .band-content,
  .company,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 56px 24px 72px;
  }

  .section,
  .band {
    padding: 64px 24px;
  }

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

  .contact {
    margin: 0 24px 56px;
    padding: 28px;
  }

  footer {
    flex-direction: column;
    padding: 24px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 34px;
  }

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

  .chart {
    height: 140px;
    gap: 8px;
  }
}
