:root {
  --paper: #f7f4ee;
  --paper-soft: #efe8df;
  --ink: #171717;
  --ink-soft: #3f3d3a;
  --muted: #716d68;
  --line: #ded7cd;
  --copper: #c98b6d;
  --copper-dark: #9e6044;
  --charcoal: #111111;
  --white: #fffaf2;
  --container: 1160px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 1.1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.4rem, 11vw, 9.4rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.6rem;
}

em {
  color: var(--copper);
  font-style: italic;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: clamp(88px, 11vw, 160px) 0;
}

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

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-soft {
  background: var(--paper-soft);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button-row,
.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0 28px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: normal;
}

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

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

.button-dark:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.button-accent {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

.button-accent:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button-light-outline {
  border-color: rgba(255, 250, 242, 0.55);
  color: var(--white);
}

.button-light-outline:hover {
  background: var(--white);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 8px clamp(22px, 5vw, 78px);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-nav.is-open {
  background: rgba(247, 244, 238, 0.94);
  box-shadow: 0 1px 18px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.image-hero + .site-header,
.page-ovene .site-header:not(.is-scrolled),
.page-moderation .site-header:not(.is-scrolled),
.page-digital .site-header:not(.is-scrolled),
.page-podcast .site-header:not(.is-scrolled) {
  color: var(--white);
}

.brand {
  font-family: var(--serif);
  font-size: 1rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.nav-link {
  position: relative;
  color: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link-button {
  border: 1px solid currentColor;
  padding: 7px 15px;
}

.nav-link-button::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 3px 0;
  background: currentColor;
}

.home-hero {
  min-height: 760px;
  padding: 86px 0 120px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(440px, 1fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
}

.home-hero h1 {
  font-size: clamp(3.8rem, 8.2vw, 7.2rem);
}

.hero-copy {
  padding-top: 52px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 420px;
  margin: 26px 0 28px;
}

.hero-portrait {
  margin: 0;
  border: 1px solid var(--line);
}

.hero-portrait img {
  width: 100%;
  height: min(70vw, 560px);
  object-fit: cover;
  object-position: 50% 28%;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
}

.split-intro {
  align-items: start;
}

.section-copy {
  max-width: 620px;
}

.section-copy h2 {
  margin-bottom: 30px;
}

.section-copy blockquote,
.testimonials blockquote {
  margin: 28px 0 0;
  border-left: 2px solid var(--copper);
  padding-left: 22px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.framed-media {
  margin: 0;
  border: 1px solid var(--line);
  padding: 0;
}

.framed-media img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
}

.framed-media.wide img {
  aspect-ratio: 1.46;
}

.framed-media.media-top img {
  object-position: center top;
}

.center-heading {
  text-align: center;
}

.center-heading h2 {
  margin-bottom: 60px;
}

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

.pillar-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #1f1c19;
}

.pillar-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.84));
  content: "";
}

.pillar-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  opacity: 0.72;
}

.pillar-card div {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.pillar-card h3 {
  margin-bottom: 14px;
}

.pillar-card p:not(.eyebrow) {
  font-size: 0.94rem;
}

.pillar-card a {
  color: var(--copper);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.logo-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 68px 0;
  color: #b6aea3;
  text-align: center;
}

.logo-strip p {
  margin-bottom: 32px;
  color: #9e968e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-strip div {
  display: flex;
  width: max-content;
  min-width: 100%;
  justify-content: space-around;
  gap: 80px;
  padding: 0 32px;
  font-family: var(--serif);
  font-size: 1.03rem;
}

.testimonials {
  min-height: 640px;
}

.quote-mark {
  margin: 20px 0;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 4rem;
}

.testimonial-track {
  position: relative;
  min-height: 230px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonials blockquote {
  border: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 1.35rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.82rem;
}

.testimonial-controls button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.testimonial-controls button:hover {
  border-color: var(--ink);
}

.quote-credit {
  margin-top: 30px;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}

.quote-credit span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.image-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 120px 0 86px;
  background-color: var(--charcoal);
  background-position: center center;
  background-size: cover;
  color: var(--white);
}

.image-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.62));
  content: "";
}

.image-hero .container {
  position: relative;
  z-index: 1;
}

.image-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  overflow-wrap: normal;
}

.image-hero p:not(.eyebrow) {
  max-width: 650px;
}

.hero-ovene {
  background-image: url("../images/MOK_4454.avif");
}

.hero-stage {
  background-image: url("../images/DSC_0789.avif");
}

.hero-podcast {
  background-image: url("../images/joy mido women podcaster kenya (2).avif");
  background-position: center center;
}

.hero-digital {
  background-image: url("../images/MOK_4480.avif");
  background-position: center center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px 38px;
  margin-top: 70px;
}

.service-grid article {
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  padding-top: 22px;
}

.service-grid span {
  color: var(--copper);
}

.service-grid h3 {
  margin: 12px 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
}

.service-grid p {
  color: #989087;
  font-size: 0.9rem;
}

.event-list {
  display: grid;
  gap: 0;
  margin-top: 54px;
}

.event-list article,
.hosted-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr auto auto;
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.event-list h3,
.hosted-list h3 {
  color: var(--ink);
  font-size: 1.85rem;
}

.event-list h3 span {
  display: block;
  margin-top: 8px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-list strong {
  color: var(--copper-dark);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 54px;
}

.tag-row span {
  border: 1px solid var(--line);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.partner-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 70px;
  margin-top: 56px;
}

.partner-grid span,
.proof-grid span {
  border-bottom: 1px solid rgba(255, 250, 242, 0.13);
  padding: 0 0 18px 18px;
  position: relative;
}

.proof-grid span {
  border-color: var(--line);
}

.partner-grid span::before,
.proof-grid span::before {
  position: absolute;
  left: 0;
  color: var(--copper);
  content: "+";
}

.centered-statement {
  text-align: center;
}

.centered-statement h2 {
  margin-bottom: 24px;
}

.cta-band {
  padding: clamp(86px, 10vw, 142px) 0;
  text-align: center;
}

.cta-panel {
  max-width: 760px;
}

.cta-panel h2 {
  margin-bottom: 22px;
}

.cta-panel p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  max-width: 560px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 64px;
}

.expertise-grid div {
  display: flex;
  min-height: 76px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  color: #d0c9bf;
}

.expertise-grid span {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
}

.hosted-list {
  margin-top: 48px;
}

.hosted-list article {
  grid-template-columns: 1fr auto;
}

.hosted-list span {
  border: 1px solid #e5d8ce;
  padding: 8px 14px;
  color: var(--copper-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-grid {
  color: var(--ink-soft);
}

.stats-section h2 {
  max-width: 900px;
  margin-bottom: 70px;
}

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

.stat-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-grid div {
  border-top: 1px solid rgba(255, 250, 242, 0.13);
  padding-top: 28px;
  text-align: center;
}

.stat-grid strong {
  display: block;
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.stat-grid span {
  color: #8d867e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-lede {
  max-width: 690px;
  margin-top: 28px;
}

.note-block {
  margin-top: 28px;
  border-left: 2px solid var(--copper);
  padding-left: 24px;
}

.platform-row {
  justify-content: center;
  margin-top: 38px;
}

.site-footer {
  background: var(--charcoal);
  color: #8f877f;
  padding: 92px 0 36px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  max-width: 420px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.site-footer h3 {
  margin-bottom: 22px;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.9fr;
  gap: clamp(48px, 9vw, 120px);
}

.footer-grid p {
  max-width: 340px;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-grid .accent-link {
  color: var(--copper);
  font-weight: 700;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.social-row a {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 82px;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
  padding-top: 28px;
  font-size: 0.78rem;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(4rem, 16vw, 7rem);
  }

  .site-header {
    padding: 8px 20px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    padding: 14px;
    color: var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 14px 10px;
  }

  .nav-link-button {
    margin-top: 8px;
    text-align: center;
  }

  .home-hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 78px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero-portrait img {
    height: 560px;
  }

  .pillar-grid,
  .service-grid,
  .expertise-grid,
  .partner-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .event-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .hero-portrait img {
    height: 430px;
  }

  .image-hero {
    min-height: 540px;
    padding: 104px 0 58px;
  }

  .image-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 13vw, 3.65rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .image-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .button-row,
  .platform-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: auto;
    padding: 14px 16px;
    overflow-wrap: anywhere;
  }

  .pillar-grid,
  .service-grid,
  .expertise-grid,
  .partner-grid,
  .proof-grid,
  .footer-grid,
  .stat-grid,
  .stat-grid.five {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }


  .hosted-list article {
    grid-template-columns: 1fr;
  }

  .hosted-list span {
    width: max-content;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .eyebrow {
    font-size: 0.66rem;
    line-height: 1.45;
  }

  .home-hero h1 {
    font-size: clamp(2.7rem, 15vw, 3.8rem);
  }

  .image-hero h1 {
    font-size: clamp(2.05rem, 12vw, 3rem);
  }

  .image-hero .button {
    font-size: 0.68rem;
  }
}
