:root {
  --ink: #172126;
  --muted: #58676b;
  --line: #d9e0dd;
  --paper: #f7f5ef;
  --white: #ffffff;
  --teal: #007c80;
  --teal-dark: #025d61;
  --plum: #5b314f;
  --coral: #c45b42;
  --gold: #c8a951;
  --pantone-p30-15-c: #d8702c;
  --pantone-3025-c: #004f71;
  --pantone-5503-u: #94b7bc;
  --shadow: 0 20px 60px rgba(23, 33, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--pantone-5503-u);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 33, 38, 0.08);
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: max-content;
  color: var(--pantone-p30-15-c);
  text-decoration: none;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  color: var(--pantone-p30-15-c);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language-switch button {
  width: 42px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.language-switch button.is-active {
  color: var(--white);
  background: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: clamp(110px, 14vw, 180px) clamp(18px, 5vw, 72px) clamp(72px, 10vw, 120px);
  overflow: hidden;
  background: var(--pantone-5503-u);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(10, 25, 29, 0.82), rgba(10, 25, 29, 0.48) 48%, rgba(10, 25, 29, 0.18));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  max-width: 820px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: var(--pantone-p30-15-c);
}

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

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

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--pantone-p30-15-c);
}

.button.primary:hover {
  background: #b95d22;
}

.button.secondary {
  color: var(--white);
  border-color: var(--pantone-p30-15-c);
  background: var(--pantone-p30-15-c);
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto 46px;
}

.intro .section-heading h2 {
  color: var(--pantone-3025-c);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}

.intro-grid p {
  color: var(--muted);
  font-size: 20px;
}

.proof-points {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-points div {
  padding: 24px;
  background: var(--white);
}

.proof-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--pantone-p30-15-c);
  font-size: 34px;
  line-height: 1;
}

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

.services {
  color: var(--pantone-3025-c);
  background: #fff1e1;
}

.services .eyebrow {
  color: var(--pantone-p30-15-c);
}

.service-list {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 79, 113, 0.18);
}

.service-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(18px, 4vw, 56px);
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 79, 113, 0.18);
}

.service-item span {
  color: var(--pantone-p30-15-c);
  font-weight: 800;
}

.service-item p {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--muted);
}

.image-band {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 360px;
}

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

.clients {
  background: var(--white);
}

.clients .section-heading h2 {
  color: var(--pantone-3025-c);
}

.client-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1240px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.client-grid article {
  min-height: 260px;
  padding: 30px;
  background: var(--pantone-5503-u);
}

.client-grid p,
.person p,
.contact p,
.expertise-list {
  color: var(--muted);
}

.expertise {
  background: #ebe7dc;
}

.expertise .section-heading h2 {
  color: var(--pantone-3025-c);
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  max-width: 1240px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  background: rgba(23, 33, 38, 0.16);
  border: 1px solid rgba(23, 33, 38, 0.16);
}

.expertise-list li {
  min-height: 170px;
  padding: 24px;
  color: var(--pantone-3025-c);
  background: #fff1e1;
}

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

.team .section-heading h2 {
  color: var(--pantone-3025-c);
}

.person {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 280px;
  background: var(--white);
}

.person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.person div {
  padding: 30px;
}

.person p:not(.role) {
  color: var(--pantone-3025-c);
}

.role {
  margin-bottom: 16px;
  color: var(--coral);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1384px;
  margin: 0 auto;
}

.contact-copy h2 {
  margin-bottom: 18px;
  color: var(--pantone-3025-c);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--pantone-3025-c);
}

.site-footer p {
  margin: 0;
}

.legal-notice {
  max-width: 760px;
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.legal-notice p:first-child {
  color: var(--white);
  font-weight: 800;
}

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

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .section-heading,
  .intro-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .client-grid,
  .team-grid,
  .expertise-list {
    grid-template-columns: 1fr;
  }

  .person {
    grid-template-columns: 180px 1fr;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band img {
    min-height: 260px;
  }
}

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

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .site-nav {
    gap: 8px 14px;
    font-size: 13px;
  }

  .language-switch button {
    width: 36px;
  }

  .hero {
    min-height: 740px;
    padding: 120px 18px 60px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .person {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .person img {
    height: 260px;
  }

  .contact-form,
  .client-grid article,
  .person div,
  .proof-points div,
  .expertise-list li {
    padding: 22px;
  }

  .site-footer,
  .legal-notice {
    text-align: left;
  }
}
