:root {
  color-scheme: light;
  --page: #ece8de;
  --surface: #ffffff;
  --surface-alt: #f6f3eb;
  --ink: #131313;
  --muted: #595959;
  --border: #d9d3c5;
  --accent: #f0dc57;
  --accent-strong: #e5cf39;
  --dark: #080808;
  --dark-soft: #151515;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
  color: var(--ink);
}

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

strong {
  font-weight: 700;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background: var(--surface);
  box-shadow: none;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr minmax(140px, 180px);
  align-items: stretch;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-height: 72px;
  padding: 14px 20px;
  border-right: 1px solid var(--border);
}

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

.brand small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  min-height: 72px;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: #fbf4bf;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.site-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 12px;
  border-right: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--surface);
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #fbf4bf;
}

.site-nav a.is-active {
  background: var(--accent);
}

.header-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 18px;
  background: var(--dark);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

main {
  background: var(--surface);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(380px, 46%);
  min-height: calc(100vh - 72px);
  background: var(--dark);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.28) 100%),
    url("public/heroimage.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.visual-instrument {
  position: absolute;
  inset: -10% auto -14% -12%;
  width: 56%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.25)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 2px, rgba(0, 0, 0, 0.08) 2px 7px),
    linear-gradient(180deg, #898989 0%, #646464 50%, #4c4c4c 100%);
  border-radius: 36% 60% 48% 38% / 18% 28% 72% 64%;
  box-shadow:
    inset -12px 0 0 rgba(255, 255, 255, 0.4),
    inset -36px 0 0 rgba(0, 0, 0, 0.12),
    14px 0 30px rgba(0, 0, 0, 0.28);
  transform: rotate(4deg);
}

.visual-portrait {
  position: absolute;
  left: 28%;
  bottom: -2%;
  width: 56%;
  height: 110%;
  background:
    radial-gradient(circle at 52% 23%, rgba(255, 255, 255, 0.96) 0 2.2%, rgba(122, 122, 122, 0.92) 2.3% 6.4%, rgba(0, 0, 0, 0) 6.5%),
    radial-gradient(circle at 63% 23.5%, rgba(255, 255, 255, 0.88) 0 1.4%, rgba(0, 0, 0, 0) 1.6%),
    radial-gradient(circle at 58% 40%, rgba(255, 255, 255, 0.14) 0 8%, rgba(0, 0, 0, 0) 8.2%),
    linear-gradient(180deg, #ededed 0%, #bdbdbd 28%, #707070 56%, #181818 100%);
  clip-path: ellipse(35% 49% at 52% 42%);
  opacity: 0.9;
  filter: grayscale(1) contrast(1.15);
}

.visual-grain {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0, rgba(255, 255, 255, 0) 18%, rgba(0, 0, 0, 0.22) 56%, rgba(0, 0, 0, 0.52) 100%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 2px, rgba(0, 0, 0, 0.02) 2px 4px);
  opacity: 0.75;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(36px, 6vw, 84px);
  color: #ffffff;
  background: #171717;
}

.hero-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: var(--accent);
}

.hero-kicker {
  color: var(--accent);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 12px 0 16px;
  max-width: 11ch;
  color: var(--accent);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-content p {
  max-width: 31ch;
  margin: 0;
  color: #fbfbfb;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.intro-band {
  padding: 26px 30px 34px;
  background: var(--surface);
}

.intro-band p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 78px 30px;
}

.section-dark {
  background: var(--dark);
  color: #ffffff;
}

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

.section-label {
  display: inline-block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading-light .section-label {
  color: #dcca67;
}

.section-heading-light {
  max-width: 1120px;
}

.section-heading.section-heading-light h2 {
  max-width: 14ch;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
}

.services-section {
  background: #ffffff;
}

.services-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.services-heading .section-label {
  color: #8b7a16;
}

.services-heading h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.06;
}

.services-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(240, 220, 87, 0.55);
  border-radius: 999px;
  background: rgba(240, 220, 87, 0.14);
  color: #7d6c10;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p {
  max-width: 27ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.services-actions {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.services-cta {
  min-width: 170px;
}

.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: var(--accent);
  font-weight: 800;
}

.feature-card h3,
.process-step h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.feature-card p,
.process-step p {
  margin: 0;
  line-height: 1.72;
}

.feature-card p {
  color: var(--muted);
}

.process-step {
  min-height: 250px;
  padding: 30px;
  border-left: 4px solid var(--accent);
  background: var(--dark-soft);
}

.process-step strong {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1.65rem;
}

.process-step p {
  color: #dbdbdb;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 36px 30px;
  background: var(--accent);
}

.contact-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.contact-copy .section-label {
  color: #605100;
}

.contact-strip .button-primary {
  background: var(--dark);
  color: #ffffff;
}

.kenya-section {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  align-items: stretch;
  background: #ffffff;
  color: var(--ink);
}

.kenya-media {
  min-height: 100%;
  background: var(--surface-alt);
}

.kenya-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kenya-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.kenya-copy .section-label {
  color: #8b7a16;
}

.kenya-copy h2 {
  margin: 12px 0 18px;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  color: var(--ink);
}

.kenya-copy p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.site-footer {
  padding: 38px 30px 42px;
  border-top: 1px solid rgba(240, 220, 87, 0.22);
  background: #0d0d0d;
  color: #f3f3f3;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(220px, 1fr));
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-story,
.footer-column p,
.footer-meta p {
  margin: 0;
  color: #cfcfcf;
  line-height: 1.7;
}

.footer-column {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-heading {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  padding-top: 22px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-location {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-tagline {
  color: #ffffff;
  font-weight: 700;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 22px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  margin: 0;
  color: #bcbcbc;
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-legal-links a {
  color: #f3f3f3;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--accent);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-link-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.footer-link-primary:hover,
.footer-link-primary:focus-visible {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 22px;
  padding: 20px 22px;
  border: 1px solid rgba(240, 220, 87, 0.24);
  background: rgba(13, 13, 13, 0.96);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy {
  max-width: 780px;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.98rem;
}

.cookie-copy p {
  margin: 0;
  color: #d2d2d2;
  line-height: 1.7;
}

.cookie-copy a {
  color: var(--accent);
  font-weight: 700;
}

.cookie-accept {
  min-width: 150px;
  white-space: nowrap;
}

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

  .brand,
  .header-login {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 58vh;
  }

  .feature-grid,
  .process-grid,
  .contact-strip,
  .kenya-section {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column {
    padding-left: 0;
    border-left: 0;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .footer-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 72px;
  }

  .brand {
    min-width: 0;
    padding-right: 16px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    border-bottom: 1px solid var(--border);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .site-nav a {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-login {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
  }

  .site-header.is-menu-open .header-login {
    display: flex;
  }

  .hero-visual {
    min-height: 42vh;
  }

  .hero-content {
    padding: 34px 24px 40px;
  }

  .services-heading {
    margin-bottom: 34px;
  }

  .service-card {
    padding: 10px 6px;
  }

  .service-icon {
    margin-bottom: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-card p {
    max-width: none;
  }

  .intro-band,
  .section,
  .contact-strip,
  .kenya-copy,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .kenya-media {
    min-height: 260px;
  }

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

  .footer-bottom,
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-legal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .button,
  .contact-strip .button-primary,
  .footer-link {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    max-width: none;
  }

  .hero-content p {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
