:root {
  --ink: #17211f;
  --muted: #5c6865;
  --line: #dbe3df;
  --paper: #fbfcfa;
  --surface: #ffffff;
  --green: #0f6a5f;
  --green-dark: #0b403b;
  --terracotta: #b85c38;
  --gold: #b58a2a;
  --blue: #2f5f98;
  --shadow: 0 22px 60px rgba(18, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(251, 252, 250, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(26, 35, 33, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1;
}

.brand small {
  max-width: 230px;
  overflow: hidden;
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.78;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.language-switcher {
  display: grid;
  grid-auto-flow: column;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
}

.language-switcher a {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 34px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switcher a.is-active {
  background: currentColor;
  color: var(--green-dark);
}

.site-header.is-solid .language-switcher a.is-active {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-trade.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 24, 21, 0.88) 0%, rgba(8, 24, 21, 0.66) 42%, rgba(8, 24, 21, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 24, 21, 0.85) 0%, rgba(8, 24, 21, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 170px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1b56e;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.25rem, 5.6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.65vw, 1.24rem);
}

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

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

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

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.56);
  color: #fff;
}

.button.outline {
  border-color: var(--green);
  color: var(--green-dark);
}

.hero-facts {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  left: clamp(18px, 4vw, 54px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.hero-facts div {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

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

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 1rem;
}

.hero-facts span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 4vw, 54px);
}

.section-heading {
  width: min(860px, 100%);
  margin-bottom: 38px;
}

.section-heading h2,
.approach h2,
.trust-panel h2,
.contact h2,
.legal-page h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 310px;
  padding: 28px;
  background: var(--surface);
}

.card-index {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--green);
  font-weight: 800;
}

.service-card h3,
.sector-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.service-card p,
.sector-card p,
.approach-copy p,
.contact-info p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.sectors {
  background: #eef3ef;
}

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

.sector-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border-radius: 8px;
  color: #fff;
  box-shadow: var(--shadow);
}

.sector-card::before,
.sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.sector-card::before {
  background-position: center;
  background-size: cover;
  transition: transform 300ms ease;
}

.sector-card::after {
  background: linear-gradient(0deg, rgba(9, 26, 23, 0.86) 0%, rgba(9, 26, 23, 0.34) 58%, rgba(9, 26, 23, 0.06) 100%);
}

.sector-card:hover::before {
  transform: scale(1.04);
}

.sector-card h3,
.sector-card p {
  position: relative;
  z-index: 1;
}

.sector-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.sector-card.agriculture::before {
  background-image: url("assets/sector-consumer.svg");
}

.sector-card.industry::before {
  background-image: url("assets/sector-industry.svg");
}

.sector-card.lab::before {
  background-image: url("assets/sector-health.svg");
}

.sector-card.consumer::before {
  background-image: url("assets/sector-materials.svg");
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: 118px;
}

.approach-copy p {
  max-width: 580px;
  margin-top: 22px;
  font-size: 1.06rem;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  color: var(--green-dark);
  font-size: 1.06rem;
}

.timeline span {
  color: var(--muted);
}

.trust {
  padding-top: 0;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 38px;
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  background: var(--green-dark);
  color: #fff;
}

.trust-panel .eyebrow {
  color: #f1b56e;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list p {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.86);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: #f7f4ee;
}

.contact-info p {
  max-width: 720px;
  font-size: 1.06rem;
}

.company-box {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  font-style: normal;
}

.company-box strong {
  font-size: 1.15rem;
}

.company-box a {
  color: var(--green);
  font-weight: 800;
}

.company-box hr {
  width: 100%;
  height: 1px;
  margin: 12px 0;
  border: 0;
  background: var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.legal-page {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 70px;
}

.legal-page h2 {
  margin-top: 42px;
}

.legal-page a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    grid-column: 1 / -1;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 252, 250, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

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

  .main-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
  }

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

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

  .approach,
  .trust-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .approach-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .language-switcher a {
    min-width: 32px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 116px 0 250px;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 3.35rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-facts div {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

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

  .section {
    padding: 64px 14px;
  }

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

  .service-card {
    min-height: auto;
  }

  .card-index {
    margin-bottom: 28px;
  }

  .sector-card {
    min-height: 310px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-panel,
  .company-box {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
