:root {
  --bg: #f5efe5;
  --paper: rgba(255, 253, 249, 0.9);
  --ink: #132531;
  --muted: #60717b;
  --line: rgba(19, 37, 49, 0.12);
  --gold: #0a9b55;
  --deep: #102a36;
  --shadow: 0 24px 60px rgba(18, 38, 50, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #fbf7f0 0%, #f5efe5 100%);
}

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

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

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

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

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.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,
.section,
.service-card,
.process-list article,
.sector-grid article {
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero,
.section {
  background: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  padding: 48px;
}

.hero-panel {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, var(--deep), #173a49);
  color: white;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin-top: 12px;
  color: white;
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 16px;
}

.section {
  margin-top: 28px;
  padding: 38px;
}

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

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

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

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  max-width: 12ch;
}

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

h3 {
  font-size: 1.18rem;
}

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

.lede,
.section-header p,
.split p,
.cta-band p {
  margin-top: 18px;
  max-width: 66ch;
}

.service-grid,
.process-list,
.sector-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

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

.service-card,
.process-list article,
.sector-grid article {
  background: rgba(255, 255, 255, 0.74);
  padding: 24px;
}

.service-card.featured {
  background: linear-gradient(180deg, #fff6e8 0%, rgba(255, 255, 255, 0.82) 100%);
}

.service-number,
.process-list span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(10, 155, 85, 0.14);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
}

.service-card p,
.process-list p,
.sector-grid p {
  margin-top: 10px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.process-list {
  margin-top: 0;
}

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

.cta-band {
  text-align: center;
}

.cta-band p {
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 20px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  font-weight: 800;
}

@media (max-width: 960px) {
  .hero,
  .split,
  .service-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .hero,
  .section {
    padding: 28px 22px;
  }
}
