:root {
  --ink: #201815;
  --paper: #faf9f5;
  --muted: #6f655d;
  --ochre: #b05b2e;
  --ochre-deep: #773b25;
  --gum: #365849;
  --sage: #e7eee6;
  --sand: #f1eadf;
  --charcoal: #171514;
  --line: rgba(32, 24, 21, 0.14);
  --shadow: 0 24px 60px rgba(32, 24, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(23, 21, 20, 0.74), rgba(23, 21, 20, 0.16));
}

.site-header.scrolled {
  background: rgba(23, 21, 20, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(340px, 68vw);
  padding: 6px 14px 6px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(32, 24, 21, 0.12);
}

.brand-mark img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.brand-name {
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover {
  color: #fff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 64px;
  color: #fff;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 16, 15, 0.88), rgba(18, 16, 15, 0.58) 42%, rgba(18, 16, 15, 0.14) 100%),
    linear-gradient(0deg, rgba(18, 16, 15, 0.62), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-top: 48px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #d99652;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

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

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

.button-primary {
  background: var(--ochre);
  color: #fff;
  box-shadow: 0 14px 34px rgba(119, 59, 37, 0.28);
}

.button-primary:hover {
  background: var(--ochre-deep);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(920px, 100%);
  margin-top: 56px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(23, 21, 20, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 800;
}

.acknowledgement {
  background: var(--charcoal);
  color: #fff;
  padding: 30px 0;
}

.acknowledgement-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

.acknowledgement p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.about {
  background: #fffdf8;
}

.about-copy {
  display: grid;
  gap: 18px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-copy p {
  margin: 0;
}

h2 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.018em;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

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

.service-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(32, 24, 21, 0.06);
}

.service-card p,
.two-column p,
.contact p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--gum);
  font-size: 0.8rem;
  font-weight: 800;
}

.approach {
  background: linear-gradient(180deg, #f6f1e9 0%, #eee4d5 100%);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(32, 24, 21, 0.18);
}

.step:last-child {
  border-bottom: 1px solid rgba(32, 24, 21, 0.18);
}

.step span {
  color: var(--ochre-deep);
  font-weight: 800;
}

.step p {
  margin: 0;
}

.sectors {
  background: #fff;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-list span {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #faf9f5;
  font-weight: 700;
}

.trust {
  background: var(--charcoal);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.trust-list strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
}

.trust-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.why {
  background: #fff;
}

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

.why-grid article {
  min-height: 210px;
  padding: 24px;
  border-top: 5px solid var(--ochre);
  background: var(--gum);
  color: #fff;
}

.why-grid strong,
.why-grid p {
  display: block;
}

.why-grid strong {
  font-size: 1.1rem;
}

.why-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  background: var(--charcoal);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 8vw, 96px);
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-details strong {
  color: #fff;
  font-size: 1.04rem;
}

.contact-details a {
  color: #fff;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form[aria-busy="true"] {
  opacity: 0.82;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 24, 21, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(176, 91, 46, 0.45);
  outline-offset: 3px;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 0;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.success {
  background: var(--sage);
  color: var(--gum);
}

.form-status.error {
  background: #f6e3dd;
  color: var(--ochre-deep);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-footer {
  padding: 24px 0;
  background: #0f0d0c;
  color: rgba(255, 255, 255, 0.72);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(23, 21, 20, 0.78), rgba(23, 21, 20, 0.9)),
    url("assets/hero-country.png") center / cover fixed;
}

.thanks-card {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border-radius: 8px;
  background: rgba(250, 249, 245, 0.96);
  box-shadow: var(--shadow);
}

.thanks-card img {
  width: min(260px, 70%);
  margin-bottom: 42px;
}

.thanks-card h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
}

.thanks-card > p:not(.section-kicker) {
  max-width: 560px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 1.06rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 180px;
  max-width: 42vw;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 2px);
    right: 20px;
    display: none;
    width: min(300px, calc(100vw - 40px));
    padding: 16px;
    border-radius: 8px;
    background: rgba(23, 21, 20, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .why-grid,
  .acknowledgement-grid,
  .two-column,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  .brand {
    gap: 9px;
    max-width: min(255px, 68vw);
    padding: 5px 10px 5px 6px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-name {
    font-size: 0.86rem;
  }

  .hero {
    padding: 112px 14px 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}
