:root {
  --ink: #17201d;
  --muted: #5e6964;
  --paper: #f6f3ee;
  --white: #fffdf8;
  --green: #123f35;
  --green-2: #1f5b4b;
  --brass: #b48a4c;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 18px 55px rgba(12, 24, 21, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 1px 22px rgba(17, 28, 24, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.header-cta,
.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 820;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(180, 138, 76, 0.26), rgba(255, 253, 248, 0.02)),
    rgba(18, 63, 53, 0.5);
  box-shadow: 0 10px 30px rgba(9, 18, 16, 0.2);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand-mark::before {
  inset: 8px;
  border-top: 3px solid var(--brass);
  border-right: 3px solid var(--brass);
}

.brand-mark::after {
  inset: 8px;
  border-left: 3px solid rgba(255, 253, 248, 0.88);
  border-bottom: 3px solid rgba(255, 253, 248, 0.88);
}

.brand-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.brand-name {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-name span {
  font-size: 17px;
}

.brand-name small {
  color: rgba(255, 253, 248, 0.78);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(18, 63, 53, 0.26);
  background:
    linear-gradient(135deg, rgba(180, 138, 76, 0.3), rgba(255, 253, 248, 0.16)),
    var(--green);
}

.site-header.is-scrolled .brand-name small {
  color: var(--muted);
}

.nav {
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
}

.header-cta,
.button,
form button {
  min-height: 44px;
  justify-content: center;
  border-radius: 4px;
  font-weight: 730;
}

.header-actions {
  gap: 12px;
  justify-content: end;
}

.language-switch {
  min-height: 36px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 4px;
  gap: 2px;
}

.language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 28px;
  border: 0;
  border-radius: 3px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
}

.language-switch a[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .language-switch a[aria-pressed="true"] {
  color: var(--white);
  background: var(--green);
}

.header-cta {
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 18, 16, 0.9) 0%, rgba(9, 18, 16, 0.66) 42%, rgba(9, 18, 16, 0.24) 78%),
    linear-gradient(0deg, rgba(9, 18, 16, 0.34), rgba(9, 18, 16, 0.12));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 112px);
  padding-top: 72px;
}

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(36px, 5.1vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 16ch;
}

.lead {
  max-width: 670px;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 253, 248, 0.84);
}

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

.button {
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
}

.button.primary,
form button {
  border: 1px solid var(--brass);
  background: var(--brass);
  color: #16120c;
}

.button.secondary {
  border: 1px solid rgba(255, 253, 248, 0.66);
  color: var(--white);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-strip div {
  min-height: 126px;
  padding: 28px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 17px;
}

.signal-strip span {
  color: var(--muted);
  font-size: 14px;
}

.outcome-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(44px, 7vw, 76px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.84)),
    url("assets/hero-crisis-management.png") center 42% / cover;
  overflow: hidden;
}

.outcome-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(180, 138, 76, 0.08), transparent 38%),
    linear-gradient(180deg, transparent, rgba(18, 63, 53, 0.08));
  pointer-events: none;
}

.outcome-intro,
.outcome-grid {
  position: relative;
  z-index: 1;
}

.outcome-intro h2 {
  max-width: 680px;
  font-size: clamp(25px, 3vw, 38px);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.proof-points div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border-left: 4px solid var(--brass);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 42px rgba(12, 24, 21, 0.12);
  backdrop-filter: blur(8px);
}

.proof-points strong,
.proof-points span {
  display: block;
}

.proof-points strong {
  color: var(--green);
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 0.95;
}

.proof-points span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.outcome-grid article {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(233, 238, 233, 0.82)),
    var(--white);
  box-shadow: 0 16px 44px rgba(12, 24, 21, 0.1);
  backdrop-filter: blur(8px);
}

.outcome-grid strong {
  color: var(--green);
  font-size: 19px;
  line-height: 1.2;
}

.outcome-grid span {
  color: var(--muted);
  font-size: 14px;
}

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

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

h2 {
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cards article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.cards p,
.model-item p,
.band p,
.contact p,
.process span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(48px, 8vw, 128px);
  background: #e9eee9;
}

.split-copy {
  min-width: 0;
}

.split-copy h2 {
  max-width: 10.8ch;
  font-size: clamp(34px, 4.4vw, 58px);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.model-list {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.model-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px;
  border-left: 4px solid var(--brass);
  background: rgba(255, 253, 248, 0.72);
}

.model-item span {
  color: var(--green-2);
  font-weight: 850;
}

.model-item h3,
.model-item p {
  overflow-wrap: anywhere;
}

.band {
  background:
    linear-gradient(90deg, rgba(18, 63, 53, 0.98), rgba(18, 63, 53, 0.9) 52%, rgba(18, 63, 53, 0.72)),
    url("assets/hero-crisis-management.png") center 48% / cover;
  color: var(--white);
}

.band-inner {
  width: min(920px, 100%);
}

.band p {
  max-width: 780px;
  color: rgba(255, 253, 248, 0.77);
  font-size: 18px;
}

.partner-network {
  background:
    linear-gradient(180deg, rgba(243, 238, 230, 0.96), rgba(246, 243, 238, 0.98)),
    url("assets/hero-crisis-management.png") center 65% / cover;
}

.partner-network .section-heading p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
  font-size: 18px;
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 14px;
}

.partner-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 48px rgba(12, 24, 21, 0.1);
  backdrop-filter: blur(10px);
}

.country-grid,
.role-grid {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

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

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

.country-grid span,
.role-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-left: 3px solid var(--brass);
  background: rgba(233, 238, 233, 0.62);
  color: var(--green);
  font-size: 14px;
  font-weight: 760;
}

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

.case-study {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(34px, 6vw, 76px);
  margin-bottom: clamp(54px, 8vw, 96px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 63, 53, 0.97), rgba(31, 91, 75, 0.9)),
    url("assets/hero-crisis-management.png") center 38% / cover,
    var(--green);
  color: var(--white);
  overflow: hidden;
}

.case-study::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  background: linear-gradient(90deg, rgba(180, 138, 76, 0.16), transparent 46%);
  pointer-events: none;
}

.case-study > *,
.case-card {
  position: relative;
  z-index: 1;
}

.case-study h2 {
  font-size: clamp(26px, 3.4vw, 42px);
}

.case-card {
  display: grid;
  gap: 14px;
}

.case-card div {
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-left: 4px solid var(--brass);
  background: rgba(255, 253, 248, 0.08);
}

.case-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 17px;
}

.case-card p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.74);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  border: 1px solid var(--line);
}

.process li {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
  counter-increment: steps;
}

.process li:last-child {
  border-right: 0;
}

.process li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 40px;
  color: var(--brass);
  font-weight: 850;
}

.process strong,
.process span {
  display: block;
}

.process strong {
  margin-bottom: 8px;
  font-size: 19px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 7vw, 92px);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 29, 0.22);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.direct-email {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 820;
}

footer {
  display: grid;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px) 28px;
  color: rgba(255, 253, 248, 0.68);
  background:
    linear-gradient(90deg, #101715, #14231f 52%, #101715),
    #101715;
  font-size: 13px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1.1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 70px);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(180, 138, 76, 0.28);
}

.footer-main > div,
.footer-legal section {
  display: grid;
  gap: 6px;
}

.footer-brand {
  color: var(--white);
  font-size: 17px;
  font-weight: 850;
}

.footer-main a {
  width: fit-content;
  color: var(--brass);
  font-weight: 780;
}

.footer-main p,
.footer-legal p {
  margin-bottom: 0;
}

.footer-main p {
  max-width: 760px;
  justify-self: end;
  color: rgba(255, 253, 248, 0.62);
  font-size: 13px;
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.footer-legal section {
  position: relative;
  padding-left: 16px;
  border-left: 2px solid rgba(180, 138, 76, 0.62);
}

.footer-legal h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 11px;
  line-height: 1.2;
}

.footer-legal p {
  color: rgba(255, 253, 248, 0.58);
  font-size: 10px;
  line-height: 1.4;
}

.thanks-page {
  min-height: 100vh;
  background: var(--green);
  color: var(--white);
}

.thanks {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 56px;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0;
}

.thanks .brand {
  justify-self: start;
}

.thanks-language {
  justify-self: start;
}

.thanks-language a[aria-pressed="true"] {
  color: var(--green);
  background: var(--white);
}

.thanks h1 {
  max-width: 11ch;
}

.thanks .lead {
  color: rgba(255, 253, 248, 0.78);
}

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

  .nav {
    display: none;
  }

  .signal-strip,
  .grid,
  .process ol {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split,
  .case-study,
  .partner-layout,
  .contact,
  .footer-main,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-main p {
    justify-self: start;
  }

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

  .process li:nth-child(2) {
    border-right: 0;
  }
}

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

  .brand-name {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    min-height: 34px;
  }

  .language-switch a {
    min-width: 34px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  h1 {
    max-width: 13ch;
    font-size: 36px;
  }

  .lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .signal-strip,
  .outcome-grid,
  .proof-points,
  .grid,
  .process ol {
    grid-template-columns: 1fr;
  }

  .country-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip div,
  .process li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child,
  .process li:last-child {
    border-bottom: 0;
  }

  .cards article,
  .model-item,
  .partner-panel,
  .case-study,
  form {
    padding: 22px;
  }

  footer {
    gap: 16px;
    padding: 28px 18px 24px;
  }

  .footer-legal {
    gap: 12px;
  }
}
