/* =========================================================
   Tolulope Omoleye-Osindero — site stylesheet
   No animation / motion of any kind, per brand rules.
   ========================================================= */

:root {
  --white: #FFFFFF;
  --ink: #1F1F1F;
  --magenta: #73256C;
  --magenta-light: #F6DBEA;

  --content-max: 720px;
  --nav-height: 88px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Heebo', Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bai Jamjuree', Georgia, serif;
  font-weight: 700;
  color: var(--magenta);
  margin: 0 0 0.6em 0;
  line-height: 1.15;
}

p {
  margin: 0 0 1.2em 0;
  line-height: 1.65;
  font-weight: 300;
}

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

a.text-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

button {
  font-family: 'Heebo', Arial, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

/* -------------------- Eyebrow -------------------- */
.eyebrow {
  font-family: 'Heebo', Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 1.2em;
  display: block;
}

/* -------------------- Top nav -------------------- */
.site-nav {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid rgba(31,31,31,0.08);
  position: relative;
  z-index: 10;
}

.site-nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__logo img {
  height: 36px;
  width: auto;
}

.site-nav__logo-text {
  font-family: 'Bai Jamjuree', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--magenta);
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}

.site-nav__links a[aria-current="page"] {
  color: var(--magenta);
  font-weight: 500;
}

.site-nav__toggle {
  display: none;
}

@media (max-width: 720px) {
  .site-nav__logo img { height: 28px; }

  .site-nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(31,31,31,0.08);
    display: none;
  }

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

  .site-nav__links a {
    padding: 16px 24px;
    border-top: 1px solid rgba(31,31,31,0.06);
  }

  .site-nav__toggle {
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding: 8px;
  }
}

/* -------------------- Sections -------------------- */
.section {
  width: 100%;
}

.section--white { background: var(--white); color: var(--ink); }
.section--magenta-light { background: var(--magenta-light); color: var(--ink); }
.section--magenta { background: var(--magenta); color: var(--white); }

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

.section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 96px 24px;
}

.section__inner--narrowpad { padding: 64px 24px; }

@media (max-width: 720px) {
  .section__inner { padding: 64px 20px; }
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--magenta);
  color: var(--magenta);
  background: transparent;
}

.btn:hover { background: var(--magenta); color: var(--white); }

.btn--solid {
  background: var(--magenta);
  color: var(--white);
}

.btn--solid:hover { background: #5c1d57; }

.section--magenta .btn {
  border-color: var(--white);
  color: var(--white);
}

.section--magenta .btn:hover {
  background: var(--white);
  color: var(--magenta);
}

/* -------------------- Home hero -------------------- */
.hero h1 { font-size: 44px; }
.hero .sub-line { font-size: 18px; font-weight: 300; max-width: 600px; }

@media (max-width: 720px) {
  .hero h1 { font-size: 32px; }
}

/* -------------------- Logo strip -------------------- */
.logo-strip {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 24px 96px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: center;
  align-items: center;
}

.logo-strip span {
  font-family: 'Heebo', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 15px;
  color: rgba(31,31,31,0.55);
  text-transform: uppercase;
}

/* -------------------- Testimonials -------------------- */
.testimonial-grid {
  display: grid;
  gap: 40px;
}

.testimonial blockquote {
  font-family: 'Bai Jamjuree', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 16px 0;
  color: var(--ink);
}

.testimonial cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 300;
  color: rgba(31,31,31,0.65);
  display: block;
}

/* -------------------- Photo grid (Speaking) -------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-grid__item {
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid rgba(31,31,31,0.1);
  position: relative;
  overflow: hidden;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: rgba(31,31,31,0.55);
  color: var(--white);
  font-size: 12px;
  font-weight: 300;
}

@media (max-width: 980px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr; }
}

/* -------------------- Governance / list blocks -------------------- */
.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plain-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(31,31,31,0.12);
  font-weight: 300;
  line-height: 1.6;
}

.plain-list li:last-child { border-bottom: 1px solid rgba(31,31,31,0.12); }

.dash-list { list-style: none; margin: 0; padding: 0; }

.dash-list li {
  padding: 16px 0 16px 24px;
  border-top: 1px solid rgba(31,31,31,0.12);
  font-weight: 300;
  line-height: 1.6;
  position: relative;
}

.dash-list li:last-child { border-bottom: 1px solid rgba(31,31,31,0.12); }

.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--magenta);
}

.dash-list li strong {
  font-weight: 500;
  color: var(--ink);
}

/* -------------------- About hero (two column) -------------------- */
.about-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-hero__portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(115,37,108,0.08);
  overflow: hidden;
}

.about-hero__portrait img {
  width: 100%; height: 100%; object-fit: cover;
}

@media (max-width: 720px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    padding: 64px 20px;
  }
}

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

.insight-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  background: rgba(115,37,108,0.10);
  overflow: hidden;
  margin-bottom: 16px;
}

.insight-card__image img { width: 100%; height: 100%; object-fit: cover; }

.insight-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.insight-card__meta {
  font-size: 13px;
  font-weight: 300;
  color: rgba(31,31,31,0.6);
  margin-top: 10px;
}

.insights-divider {
  border: none;
  border-top: 2px solid var(--magenta);
  margin: 64px 0 40px;
}

.insights-older li {
  padding: 20px 0;
  border-top: 1px solid rgba(31,31,31,0.12);
}

.insights-older li:last-child { border-bottom: 1px solid rgba(31,31,31,0.12); }

.insights-older a { font-weight: 400; }
.insights-older .insight-card__meta { margin-top: 4px; }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid rgba(31,31,31,0.1);
}

.site-footer__links {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px 24px 0;
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
}

.site-footer__links a { font-weight: 400; }

/* -------------------- Modal (dialog) -------------------- */
dialog.modal {
  border: none;
  padding: 0;
  max-width: 520px;
  width: 92vw;
  background: var(--white);
}

dialog.modal::backdrop {
  background: rgba(31,31,31,0.5);
}

.modal__inner {
  padding: 40px;
}

@media (max-width: 560px) {
  .modal__inner { padding: 28px; }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 20px;
  color: var(--ink);
}

.modal { position: relative; }

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: 'Heebo', Arial, sans-serif;
  font-size: 15px;
  border: 1px solid rgba(31,31,31,0.25);
  background: var(--white);
  color: var(--ink);
}

.field textarea { resize: vertical; min-height: 90px; }

/* -------------------- Utility -------------------- */
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.center { text-align: center; }
.small-note {
  font-size: 13px;
  font-weight: 300;
  color: rgba(31,31,31,0.6);
}

.section--magenta .small-note,
.section--magenta p { color: rgba(255,255,255,0.92); }
