:root {
  --ink: #111216;
  --soft-ink: #323232;
  --paper: #f5f4f0;
  --white: #ffffff;
  --aqua: #17cdd2;
  --green: #00b876;
  --line: rgba(17, 18, 22, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 102px;
  padding: 16px clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 18, 22, 0.1);
  backdrop-filter: blur(18px);
  transition: min-height 250ms ease, box-shadow 250ms ease;
}

.site-header.scrolled {
  min-height: 78px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-mark {
  width: 64px;
  height: 64px;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: clamp(22px, 2.2vw, 33px);
  font-weight: 300;
  line-height: 1;
}

.brand-name strong {
  color: var(--ink);
  font-weight: 600;
}

.brand-name {
  color: #555;
}

.brand-name > span {
  font-size: 0.68em;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.site-header .brand-name {
  display: grid;
  gap: 1px;
}

.site-header .brand-name > span {
  color: #aaa;
  font-size: 0.58em;
  letter-spacing: 0.08em;
}

.brand-tagline {
  margin-top: 1px;
  color: var(--aqua);
  font-size: 9px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
  font-size: 14px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--ink);
  padding: 14px 20px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 180px clamp(24px, 9vw, 150px) 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,10,13,.94) 0%, rgba(8,10,13,.8) 42%, rgba(8,10,13,.2) 78%),
    url("assets/nairobi-cbd-skyline.jpg") center 68% / cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: min(720px, 60%);
}

.hero .eyebrow {
  color: var(--aqua);
}

.hero h1 {
  color: var(--white);
}

.hero-copy {
  color: #eeeeee;
}

.hero .button-dark {
  color: var(--ink);
  background: var(--aqua);
  border-color: var(--aqua);
}

.hero .button-dark:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.eyebrow {
  margin: 0 0 28px;
  color: #007f6a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  margin-bottom: 30px;
  color: var(--soft-ink);
  font-size: clamp(56px, 6.2vw, 98px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 36px;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.4;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #007e69;
  border-color: #007e69;
}

.scroll-cue {
  position: absolute;
  right: 5vw;
  bottom: 40px;
  z-index: 2;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 160px) clamp(24px, 7vw, 110px);
}

.section-number {
  position: absolute;
  top: 50px;
  right: 7vw;
  color: #aaa9a4;
  font-size: 12px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  background: var(--white);
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 42%;
  height: 42%;
  border-top: 2px solid var(--aqua);
  border-right: 2px solid var(--green);
}

.about-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

h2 {
  margin-bottom: 34px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.about-content {
  max-width: 650px;
}

.about-content .lead {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.45;
}

.about-content > p:not(.eyebrow, .lead) {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  gap: 48px;
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
}

.trust-strip {
  padding: 0 clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.trust-strip p {
  min-height: 120px;
  margin: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 25px);
}

.trust-strip p:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip span {
  color: #008a71;
  font-family: var(--sans);
  font-size: 11px;
}

.practice {
  color: var(--white);
  background: var(--ink);
}

.practice .eyebrow {
  color: var(--aqua);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 330px;
  color: #aaa;
  line-height: 1.7;
}

.practice-list {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.practice-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 200ms ease, padding 200ms ease, background 200ms ease;
}

.practice-item:focus-visible {
  outline-offset: -4px;
}

.practice-item:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--ink);
  background: linear-gradient(90deg, var(--aqua), var(--green));
}

.practice-item span {
  color: #888;
  font-size: 12px;
}

.practice-item:hover span {
  color: var(--ink);
}

.practice-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 400;
}

.practice-item p {
  max-width: 720px;
  margin: 9px 0 0;
  color: #999;
  font-size: 15px;
  line-height: 1.6;
  transition: color 200ms ease;
}

.practice-item:hover p {
  color: rgba(17, 18, 22, 0.78);
}

.practice-item b {
  font-size: 22px;
  font-weight: 400;
}

.consultation-banner {
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(17, 18, 22, 0.92), rgba(17, 18, 22, 0.68)),
    url("assets/naim-uddin-lxhOIQQHRvQ-unsplash.jpg") center 48% / cover;
}

.consultation-banner > div {
  max-width: 900px;
}

.consultation-banner .eyebrow {
  color: var(--aqua);
}

.consultation-banner h2 {
  margin-bottom: 0;
}

.consultation-banner .button {
  white-space: nowrap;
}

.approach {
  overflow: hidden;
  background: #e9e8e3;
}

.approach::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(23, 205, 210, 0.1);
  border-radius: 50%;
}

.approach-intro {
  max-width: 840px;
  margin-bottom: 80px;
}

.approach-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.feature-card {
  min-height: 390px;
  padding: clamp(28px, 4vw, 55px);
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.feature-card span {
  color: #008a71;
  font-size: 12px;
}

.feature-card h3 {
  margin: auto 0 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
}

.feature-card p {
  color: #555;
  line-height: 1.7;
}

.process {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(0, 184, 118, 0.1), transparent 34%),
    #111216;
}

.process .eyebrow {
  color: var(--aqua);
}

.process .section-heading > p {
  color: #b8b8b8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.process-step {
  min-height: 320px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

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

.process-step > span {
  color: var(--aqua);
  font-size: 12px;
}

.process-step h3 {
  margin: auto 0 20px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.process-step p {
  margin-bottom: 0;
  color: #b8b8b8;
  line-height: 1.7;
}

.insights {
  background: #e9e8e3;
}

.insights .section-heading > p {
  color: #555;
}

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

.insight-card {
  min-height: 450px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-top: 3px solid transparent;
  transition: border-color 220ms ease, transform 220ms ease;
}

.insight-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
}

.insight-category {
  color: #008a71;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 40px 0 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.13;
}

.insight-card > p:not(.insight-category) {
  color: #555;
  line-height: 1.7;
}

.insight-card a {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
}

.insight-card a span {
  margin-left: 25px;
}

.insights-note {
  max-width: 700px;
  margin: 36px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(60px, 9vw, 140px);
  background: var(--white);
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 50px 28px 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2.3vw, 30px);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 27px;
  right: 6px;
  font-family: var(--sans);
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 50px 28px 0;
  color: #555;
  line-height: 1.75;
}

.testimonials {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.testimonial-image img {
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  filter: grayscale(0.9) contrast(0.9);
}

.testimonial-content {
  padding: clamp(70px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

blockquote {
  margin: 0 0 44px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 55px);
  line-height: 1.25;
}

.quote-author {
  font-weight: 600;
}

.quote-author span {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 13px;
  font-weight: 400;
}

.quote-controls {
  display: flex;
  gap: 10px;
  margin-top: 54px;
}

.quote-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.quote-controls button:hover {
  color: var(--white);
  background: var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 100%, rgba(0, 184, 118, 0.22), transparent 35%),
    #101115;
}

.contact .eyebrow {
  color: var(--aqua);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: #b8b8b8;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 50px;
  font-size: 16px;
}

.contact-details p {
  margin: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.contact-details p > span:last-child {
  display: grid;
  gap: 4px;
}

.contact-details strong {
  color: #888;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details span {
  color: var(--white);
}

.contact-details a {
  width: fit-content;
  color: var(--white);
  border-bottom: 1px solid transparent;
}

.contact-details a:hover {
  border-color: var(--aqua);
}

.contact-icon,
.footer-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
}

.contact-icon {
  width: 36px;
  height: 36px;
  color: var(--aqua);
  border: 1px solid rgba(23, 205, 210, 0.42);
}

.contact-icon svg,
.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 28px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label span {
  color: #aaa;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #666;
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  padding: 10px 0 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--aqua);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #aaa 50%),
    linear-gradient(135deg, #aaa 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 50%,
    calc(100% - 9px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.contact-form select option {
  color: var(--ink);
  background: var(--white);
}

.contact-form .consent {
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-form .consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--aqua);
}

.contact-form .consent span {
  color: #bbb;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.field-guidance {
  margin: -16px 0 0;
  color: #999;
  font-size: 12px;
  line-height: 1.55;
}

.button-light {
  width: fit-content;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.button-light:hover {
  background: var(--aqua);
}

.form-status {
  min-height: 24px;
  color: var(--aqua);
  font-size: 14px;
}

.contact-alternatives {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: #999;
  font-size: 13px;
}

.contact-alternatives a {
  color: var(--aqua);
  border-bottom: 1px solid rgba(23, 205, 210, 0.45);
}

.site-footer {
  color: #777;
  background: #08090b;
  font-size: 12px;
}

.footer-main {
  padding: clamp(55px, 7vw, 95px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(135px, 0.7fr));
  gap: clamp(35px, 6vw, 90px);
  align-items: start;
}

.footer-intro > p {
  max-width: 330px;
  margin: 25px 0 0;
  color: #888;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: #929292;
  background: transparent;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.footer-column button:hover,
.footer-column a:hover {
  color: var(--white);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-wrap: anywhere;
}

.footer-icon {
  width: 30px;
  height: 30px;
  color: var(--aqua);
  border: 1px solid rgba(23, 205, 210, 0.35);
}

.footer-icon svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  min-height: 68px;
  padding: 20px 24px;
  display: grid;
  place-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

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

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.footer-brand-logo img {
  width: 42px;
  height: 42px;
}

.footer-brand-logo > span {
  display: grid;
  gap: 1px;
  font-size: 1em;
}

.footer-brand-logo small {
  color: #aaa;
  font-size: 0.58em;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.footer-brand-tagline {
  margin-top: 1px;
  color: var(--aqua);
  font-size: 0.52em;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-brand strong {
  font-weight: 600;
}

dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  border: 0;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

dialog::backdrop {
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(5px);
}

.confirmation-page {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 100%, rgba(0, 184, 118, 0.25), transparent 38%),
    var(--ink);
}

.confirmation-card {
  width: min(800px, 100%);
  padding: clamp(40px, 8vw, 90px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.confirmation-card .footer-brand {
  display: inline-block;
  margin-bottom: clamp(70px, 12vw, 140px);
}

.confirmation-card h1 {
  color: var(--white);
  font-size: clamp(48px, 8vw, 92px);
}

.confirmation-card > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 36px;
  color: #c4c4c4;
  font-size: 18px;
  line-height: 1.7;
}

.dialog-content {
  position: relative;
  padding: clamp(38px, 6vw, 70px);
}

.dialog-content h2 {
  font-size: clamp(34px, 5vw, 55px);
}

.dialog-content > p:not(.eyebrow) {
  color: #555;
  line-height: 1.75;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  z-index: 18;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px 12px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #07130c;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #25d366;
  background: #07130c;
  border-radius: 50%;
  font-size: 10px;
}

.detail-page {
  background: var(--white);
}

.detail-nav {
  min-height: 96px;
  padding: 16px clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: var(--ink);
}

.detail-nav .brand-name {
  font-size: clamp(20px, 2vw, 28px);
}

.detail-nav > a:last-child {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--aqua);
  font-size: 13px;
}

.detail-hero,
.article-hero {
  padding: clamp(90px, 12vw, 180px) clamp(24px, 9vw, 150px);
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(8,10,13,.98), rgba(8,10,13,.68)),
    url("assets/nairobi-cbd-skyline.jpg") center / cover;
}

.detail-hero h1,
.article-hero h1,
.detail-error h1 {
  max-width: 1050px;
  color: var(--white);
  font-size: clamp(52px, 8vw, 108px);
}

.detail-hero > p:last-child,
.article-hero > p {
  max-width: 790px;
  color: #ddd;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.55;
}

.article-hero time {
  display: block;
  margin-top: 34px;
  color: #aaa;
  font-size: 12px;
}

.detail-grid {
  padding: clamp(80px, 10vw, 150px) clamp(24px, 9vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(50px, 9vw, 140px);
}

.detail-copy h2,
.prepare-card h2,
.official-sources h2,
.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
}

.detail-copy > p {
  color: #444;
  font-size: 19px;
  line-height: 1.8;
}

.detail-copy ul,
.prepare-card ul {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.detail-copy li,
.prepare-card li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}

.detail-copy li::before,
.prepare-card li::before {
  content: "—";
  margin-right: 14px;
  color: var(--green);
}

.prepare-card {
  align-self: start;
  padding: clamp(30px, 4vw, 52px);
  background: var(--paper);
}

.prepare-card .button {
  margin-top: 36px;
}

.official-sources {
  margin: 0 clamp(24px, 9vw, 150px) clamp(60px, 8vw, 110px);
  padding: 35px 0;
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.official-sources a {
  width: fit-content;
  padding: 10px 0;
  color: #007e69;
}

.official-sources a span {
  margin-left: 12px;
}

.legal-note {
  max-width: 850px;
  margin: 0 clamp(24px, 9vw, 150px) clamp(80px, 10vw, 140px);
  color: #666;
  font-size: 13px;
  line-height: 1.65;
}

.article-body {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 24px;
}

.article-body > section {
  margin-bottom: 68px;
}

.article-body > section p {
  color: #444;
  font-size: 18px;
  line-height: 1.85;
}

.article-body .official-sources {
  margin: 85px 0 45px;
}

.article-disclaimer {
  padding: 24px;
  color: #555;
  background: var(--paper);
  font-size: 14px;
  line-height: 1.65;
}

.detail-error {
  min-height: 70vh;
  padding: 100px clamp(24px, 9vw, 150px);
  color: var(--white);
  background: var(--ink);
}

.detail-footer .footer-main {
  grid-template-columns: minmax(240px, 1.4fr) repeat(2, minmax(180px, 0.8fr));
}

.confirmation-card .footer-brand > span {
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

@media (max-width: 1080px) {
  .site-header {
    min-height: 84px;
  }

  .brand-mark {
    width: 49px;
    height: 49px;
  }

  .brand-tagline {
    display: block;
    max-width: 210px;
    font-size: 9px;
    line-height: 1.25;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    width: 36px;
    height: 36px;
    border: 0;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 6px;
    background: transparent;
    cursor: pointer;
    flex: 0 0 36px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--ink);
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding: 120px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(16px, 4vh, 24px);
    visibility: hidden;
    opacity: 0;
    color: var(--white);
    background: var(--ink);
    transition: opacity 200ms ease, visibility 200ms ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: clamp(27px, 8vw, 38px);
    line-height: 1.1;
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    padding: 12px 18px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    background: var(--aqua);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only) {
    background: var(--white);
  }

  .hero {
    min-height: 850px;
    padding-top: 150px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(8,10,13,.95) 0%, rgba(8,10,13,.76) 58%, rgba(8,10,13,.34) 100%),
      url("assets/nairobi-cbd-skyline.jpg") 58% center/cover;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .about,
  .testimonials,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-image img {
    aspect-ratio: 16 / 11;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

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

  .trust-strip p:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .consultation-banner {
    grid-template-columns: 1fr;
    gap: 35px;
    align-items: start;
  }

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

  .insight-card {
    min-height: 360px;
  }

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

  .process-step {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

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

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

  .faq-heading {
    position: static;
  }

  .feature-card {
    min-height: 320px;
  }

  .testimonial-image img {
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 20px;
  }

  .site-header {
    width: 100vw;
    min-height: 94px;
    padding: 12px 16px;
  }

  .menu-toggle {
    position: absolute;
    top: 28px;
    right: 14px;
  }

  .brand {
    max-width: calc(100vw - 68px);
  }

  .brand-name {
    font-size: 18px;
    white-space: nowrap;
  }

  .brand-tagline {
    max-width: calc(100vw - 115px);
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .hero {
    width: 100vw;
    min-height: 760px;
    padding: 140px 22px 70px;
  }

  .hero-content {
    width: calc(100vw - 44px);
  }

  h1 {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    font-size: clamp(42px, 12vw, 48px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  h1 .headline-tail {
    display: block;
  }

  .hero-copy {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 80px 22px;
  }

  .practice-item {
    grid-template-columns: 38px 1fr auto;
  }

  .practice-item p {
    font-size: 14px;
  }

  .trust-strip {
    padding-inline: 22px;
    grid-template-columns: 1fr;
  }

  .trust-strip p,
  .trust-strip p:nth-child(3) {
    min-height: 95px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-strip p:first-child {
    border-top: 0;
  }

  .consultation-banner {
    padding: 75px 22px;
  }

  .consultation-banner h2 {
    font-size: 40px;
  }

  .testimonial-content {
    padding: 75px 22px;
  }

  .testimonial-image img {
    min-height: 330px;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }

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

  .detail-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float {
    font-size: 0;
    padding: 10px;
  }

  .whatsapp-float span {
    width: 36px;
    height: 36px;
    font-size: 10px;
  }

  .detail-nav {
    min-height: 82px;
    padding-inline: 14px;
  }

  .detail-nav .brand-mark {
    width: 44px;
    height: 44px;
  }

  .detail-nav > a:last-child {
    font-size: 11px;
  }

  .footer-main,
  .detail-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-intro,
  .detail-footer .footer-brand {
    grid-column: auto;
  }

  .footer-column {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .detail-hero,
  .article-hero {
    padding: 85px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
