:root {
  --ink: #11202a;
  --muted: #566670;
  --sand: #f3efe7;
  --paper: #fffdf9;
  --line: rgba(17, 32, 42, 0.12);
  --accent: #0a9b55;
  --accent-deep: #087e45;
  --deep: #102735;
  --shadow: 0 24px 60px rgba(16, 39, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(10, 155, 85, 0.12), transparent 32%),
    linear-gradient(180deg, #f8f4ec 0%, #fffdfa 34%, #f4efe6 100%);
}

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

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 108px;
  width: auto;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.language-switcher a,
.language-switcher span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switcher a {
  color: var(--muted);
}

.language-switcher span {
  background: var(--ink);
  color: #fff;
}

.hero,
.split-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero {
  padding: 26px 0 38px;
}

.hero-copy,
.hero-panel,
.section,
.reason,
.project-card,
.process-step {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  background: rgba(255, 253, 249, 0.86);
  border-radius: 34px;
  padding: 48px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-deep);
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1,
h2 {
  font-family: "Newsreader", serif;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.94;
  max-width: 10.5ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.08;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: 160ms ease;
}

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

.button.primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--sand);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-panel {
  background: var(--deep);
  color: white;
  border-radius: 34px;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.metric-card,
.grid-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-card {
  padding: 24px;
}

.metric-label,
.metric-copy,
.grid-card p,
.project-type {
  color: rgba(255, 255, 255, 0.76);
}

.metric-title {
  color: white;
  font-family: "Newsreader", serif;
  font-size: 2rem;
  line-height: 1;
  margin: 10px 0 14px;
}

.grid-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-card div {
  padding: 22px;
  min-height: 120px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.grid-card div:nth-child(2n) {
  border-right: 0;
}

.grid-card div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.grid-card span,
.process-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(10, 155, 85, 0.14);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 12px;
}

.section {
  margin-top: 28px;
  background: rgba(255, 253, 249, 0.86);
  border-radius: 34px;
  padding: 38px;
}

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

.section-heading p:last-child {
  margin-top: 14px;
}

.card-grid,
.project-grid,
.process-grid,
.reasons {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

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

.service-card,
.project-card,
.reason,
.process-step {
  padding: 24px;
  border-radius: 24px;
  background: var(--paper);
}

.service-card.accent {
  background: linear-gradient(180deg, #fff4df 0%, #fffdf9 100%);
}

.service-card p,
.project-card p,
.reason p,
.process-step p {
  margin-top: 10px;
}

.split-section {
  margin-top: 28px;
}

.split-copy {
  padding: 10px 8px 10px 6px;
}

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

.projects {
  background: linear-gradient(180deg, rgba(16, 39, 53, 0.97), rgba(12, 30, 40, 0.97));
}

.projects .eyebrow,
.projects h2,
.projects h3 {
  color: white;
}

.projects .project-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.projects .project-card p {
  color: rgba(255, 255, 255, 0.78);
}

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

.cta-band {
  background: linear-gradient(135deg, #17394c 0%, #0e2532 100%);
  color: white;
  text-align: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 60ch;
  margin: 14px auto 0;
}

.cta-band .hero-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .card-grid,
  .project-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section {
    padding: 30px 24px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1200px);
  }

  .topbar {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  h1 {
    max-width: 100%;
  }
}
