:root {
  color-scheme: light;
  --ink: #151812;
  --muted: #687166;
  --paper: #f7f7f2;
  --soft: #eef1ea;
  --line: #d9ded2;
  --teal: #0f766e;
  --leaf: #264f3f;
  --gold: #b8873d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(21, 24, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(21, 24, 18, 0.34);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 520;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 680;
  font-size: 14px;
}

.nav-cta,
.button.primary {
  background: var(--gold);
  color: #19130a;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 680;
  text-transform: uppercase;
}

.language-switcher span {
  white-space: nowrap;
}

.language-select {
  min-height: 38px;
  max-width: 178px;
  padding: 0 34px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  text-transform: none;
  outline: none;
}

.language-select:focus {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.language-select option {
  color: var(--ink);
  background: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  position: relative;
  color: var(--white);
  background: linear-gradient(90deg, rgba(15, 20, 13, 0.86), rgba(15, 20, 13, 0.42)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 74px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

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

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section.tight {
  padding-top: 34px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--teal);
  font-weight: 740;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.grid-3,
.grid-4,
.split {
  display: grid;
  gap: 18px;
}

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

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

.split {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 42px;
}

.card,
.metric,
.language-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(21, 24, 18, 0.06);
}

.card {
  padding: 24px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.card p,
.metric span,
.language-panel p {
  color: var(--muted);
}

.metric {
  min-height: 142px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric strong {
  color: var(--leaf);
  font-size: 34px;
  line-height: 1;
}

.image-panel {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.band {
  background: var(--leaf);
  color: var(--white);
}

.band .section-kicker,
.band .lead,
.band .card p {
  color: rgba(255, 255, 255, 0.74);
}

.band .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.language-panel {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.language-panel p {
  margin-bottom: 0;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  color: var(--gold);
  font-weight: 780;
}

.step h3 {
  margin-bottom: 4px;
  font-size: 19px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-strip {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.contact-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  min-height: 56vh;
}

.page-hero .hero-inner {
  padding-bottom: 54px;
}

.spec-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.spec-list strong {
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

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

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .language-select {
    flex: 1;
    max-width: none;
  }

  .hero-inner {
    padding-top: 190px;
  }

  .section-head,
  .split,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .contact-strip,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
