    @font-face {
      font-family: 'Neue Kabel';
      src: url('Neue_Kabel_Book.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Neue Kabel';
      src: url('Neue_Kabel_Black.ttf') format('truetype');
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --white: #FFFFFF;
      --bg: #FAFBFC;
      --dark: #2C3E47;
      --slate: #5A7080;
      --slate-light: #5F7A8A;
      --teal: #378080;
      --teal-muted: #5A9E9E;
      --accent: #337676;
      --text: #3A4E58;
      --text-light: #566D7A;
      --border: rgba(90, 160, 160, 0.12);
      --font-head: 'Neue Kabel', 'Outfit', sans-serif;
      --font-body: 'Poppins', sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 6%;
    }

    /* HEADER */
    header {
      padding: 2rem 0 0;
    }

    header .container {
      display: flex;
      flex-direction: column;
    }

    .header-name {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--slate);
      letter-spacing: 0.02em;
    }

    .header-tag {
      font-family: var(--font-body);
      font-size: 0.82rem;
      color: var(--slate-light);
      font-weight: 300;
      letter-spacing: 0.03em;
      margin-top: 0.15rem;
    }

    /* HERO */
    .hero {
      padding: 5rem 0 2rem;
    }

    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4.5vw, 2.8rem);
      font-weight: 900;
      color: #0a4e62;
      line-height: 1.2;
      max-width: 700px;
      letter-spacing: -0.02em;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-sub {
      font-family: var(--font-head);
      font-size: clamp(1.3rem, 2.5vw, 1.6rem);
      font-weight: 700;
      color: var(--teal);
      line-height: 1.5;
      max-width: 620px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-sub-section {
      padding: 0 0 3rem;
    }

    /* VENN DIAGRAM */
    .venn-section {
      padding: 3rem 0 3.5rem;
      display: flex;
      justify-content: center;
    }

    .venn-section svg {
      width: 100%;
      height: auto;
    }

    .venn-quote {
      text-align: center;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-style: italic;
      color: var(--slate-light);
      max-width: 520px;
      margin: -0.5rem auto 2rem;
      line-height: 1.7;
    }

    /* SECTIONS */
    .section {
      padding: 3rem 0;
      border-top: 1px solid var(--border);
    }

    .section-label {
      font-family: var(--font-head);
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--slate-light);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .section-title {
      font-family: var(--font-head);
      font-size: 1.15rem;
      font-weight: 900;
      color: #0a4e62;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      text-align: center;
    }

    .section p {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 620px;
      line-height: 1.85;
      margin-bottom: 0.75rem;
      margin-left: auto;
      margin-right: auto;
      text-align: justify;
    }

    .section-cta {
      display: flex;
      width: fit-content;
      align-items: center;
      gap: 0.35rem;
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--accent);
      text-decoration: none;
      margin-top: 0.75rem;
      margin-left: auto;
      margin-right: auto;
      padding: 0.6rem 1.4rem;
      border: 1.5px solid var(--accent);
      border-radius: 2rem;
      transition: background 0.25s ease, color 0.25s ease, gap 0.2s ease;
    }

    .section-cta:hover {
      background: var(--accent);
      color: #fff;
      gap: 0.65rem;
    }

    /* BIO */
    .bio {
      padding: 3.5rem 0;
      background: #F4F6F7;
    }

    .bio-layout {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .bio-text h2 {
      font-family: var(--font-head);
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 0;
      text-align: center;
    }

    .bio-text p {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.85;
      margin-bottom: 0.75rem;
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
      text-align: justify;
    }

    .bio-text .tedx-note {
      font-weight: 400;
      color: var(--dark);
      font-style: italic;
      text-align: center;
    }

    .bio-photo {
      display: block;
      width: 100%;
      max-width: 620px;
      border-radius: 6px;
      aspect-ratio: 5 / 3;
      object-fit: cover;
      object-position: center 25%;
      background: #E8EEF0;
      margin: 0 auto;
    }

    .bio-photo-placeholder {
      width: 100%;
      border-radius: 6px;
      aspect-ratio: 3/4;
      background: #E8EEF0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--slate-light);
      text-align: center;
      padding: 1rem;
    }

    /* LOGOS SECTIONS */
    .logos-section {
      padding: 2rem 0;
      border-top: 1px solid var(--border);
    }

    .logos-section-title {
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 400;
      color: var(--slate-light);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .logos-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }

    .client-logo {
      width: 130px;
      height: 130px;
      object-fit: contain;
      border-radius: 50%;
      opacity: 0.85;
      transition: opacity 0.2s ease;
    }

    .client-logo:hover {
      opacity: 1;
    }

    .recognition-logo {
      height: 100px;
      width: auto;
      object-fit: contain;
      opacity: 0.85;
      transition: opacity 0.2s ease;
    }

    .recognition-logo.tedx-logo {
      height: 100px;
      max-width: 160px;
      background: #fff;
      padding: 0.6rem 1rem;
      border-radius: 6px;
    }

    .recognition-logo:hover {
      opacity: 1;
    }

    /* CTA */
    .final-cta {
      padding: 4rem 0;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .final-cta h2 {
      font-family: var(--font-head);
      font-size: 1.3rem;
      font-weight: 900;
      color: #0a4e62;
      margin-bottom: 1.5rem;
    }

    .final-cta-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .cta-link {
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--accent);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .cta-link:hover {
      color: var(--dark);
    }

    /* FOOTER */
    footer {
      padding: 2.5rem 0 2rem;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .footer-social {
      display: flex;
      justify-content: center;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #EDF1F3;
      transition: background 0.2s ease;
    }

    .footer-social a:hover {
      background: var(--teal);
    }

    .footer-social a svg {
      width: 16px;
      height: 16px;
      fill: var(--slate);
      transition: fill 0.2s ease;
    }

    .footer-social a:hover svg {
      fill: var(--white);
    }

    .footer-info {
      font-size: 0.82rem;
      color: var(--slate-light);
      line-height: 1.8;
    }

    .footer-info a {
      color: var(--slate-light);
      text-decoration: none;
    }

    .footer-info a:hover {
      color: var(--accent);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero {
        padding: 3.5rem 0 1.5rem;
      }

      .hero-eyebrow {
        font-size: 0.9rem;
      }

      .hero h1 {
        font-size: 1.7rem;
      }

      .hero-sub {
        font-size: 1.15rem;
      }

      .hero-sub-section {
        padding: 0 0 2rem;
      }

      .section-cta {
        font-size: 0.85rem;
        padding: 0.5rem 1.1rem;
      }

      .bio-photo-placeholder,
      .bio-photo {
        max-width: 100%;
        aspect-ratio: 4 / 3;
      }

      .venn-section svg {
        max-width: 380px;
      }

      .final-cta-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      .logos-grid {
        gap: 1.25rem;
      }

      .client-logo {
        width: 100px;
        height: 100px;
      }

      .recognition-logo {
        height: 70px;
      }

      .recognition-logo.tedx-logo {
        height: 70px;
        max-width: 120px;
        padding: 0.4rem 0.7rem;
      }

      .section {
        padding: 2.5rem 0;
      }

      .section-title {
        font-size: 1.05rem;
      }

      .section p {
        font-size: 0.95rem;
      }

      .specialization-line {
        font-size: 0.85rem;
      }

      .proof-stats {
        font-size: 0.85rem;
      }

      .bio-text h2 {
        font-size: 1.15rem;
      }

      .bio-text p {
        font-size: 0.95rem;
      }

      .final-cta h2 {
        font-size: 1.15rem;
      }
    }

    @media (max-width: 380px) {
      .hero-eyebrow {
        font-size: 0.8rem;
      }

      .hero h1 {
        font-size: 1.5rem;
      }

      .hero-sub {
        font-size: 1.05rem;
      }

      .venn-section svg {
        max-width: 300px;
      }

      .section-cta {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
      }

      .client-logo {
        width: 80px;
        height: 80px;
      }

      .recognition-logo {
        height: 55px;
      }

      .recognition-logo.tedx-logo {
        height: 55px;
        max-width: 100px;
      }
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero h1 { animation: fadeUp 0.6s ease-out; }
    .hero-sub { animation: fadeUp 0.6s ease-out 0.1s both; }

    @media (prefers-reduced-motion: reduce) {
      .hero h1, .hero-sub, .hero-eyebrow {
        animation: none;
      }
    }

    /* HERO EYEBROW */
    .hero-eyebrow {
      font-family: var(--font-head);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--slate-light);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 1rem;
      animation: fadeUp 0.6s ease-out;
    }

    /* OFFERING DESCRIPTOR */
    .section-descriptor {
      font-family: var(--font-body);
      font-size: 1rem;
      font-style: italic;
      color: var(--slate-light);
      margin: -0.4rem 0 0.85rem;
      text-align: center;
    }

    /* SPECIALIZATION LINE (set apart, secondary) */
    .specialization-line {
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-style: italic;
      color: var(--text-light);
      max-width: 620px;
      line-height: 1.8;
      margin-top: 2.5rem;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1.1rem;
      border-left: 2px solid rgba(91, 165, 165, 0.3);
      text-align: justify;
    }

    /* LEARNING REALITIES PULL-LINE */
    .pull-line {
      font-family: var(--font-head);
      font-size: clamp(1.2rem, 2.2vw, 1.5rem);
      font-weight: 700;
      color: var(--teal);
      line-height: 1.5;
      max-width: 620px;
      margin-bottom: 1.25rem;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    /* PROOF STATS LINE */
    .proof-stats {
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-style: italic;
      color: var(--text-light);
      max-width: 780px;
      line-height: 1.85;
      margin-bottom: 2.5rem;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

/* SECTION LISTS (bulleted content within .section) */
.section ul {
  max-width: 620px;
  margin: 0 auto 0.75rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.section li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

/* SECTION TABLES (policy tables within .section) */
.section table {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 1.5rem;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
}

.section th,
.section td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.section th {
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .section table {
    font-size: 0.95rem;
  }

  .section th,
  .section td {
    padding: 0.5rem 0.5rem;
  }
}

/* WORKSHOP BLOCKS — updated: title hierarchy + left alignment */
.workshop-block {
  max-width: 620px;
  margin: 0 0 2.5rem;
  text-align: left;
}

.workshop-block:last-child {
  margin-bottom: 0;
}

.workshop-block-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: none;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 0.4rem;
}

.workshop-block p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.workshop-block .section-cta {
  width: 230px;
  justify-content: center;
  white-space: nowrap;
  margin-left: 0;
  margin-right: 0;
}

/* WORKSHOP GRID — three-column layout on desktop, stacked on mobile */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 2rem;
}

.workshop-grid .workshop-block {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.workshop-grid .workshop-block .section-cta {
  margin-top: auto;
}

@media (max-width: 768px) {
  .workshop-grid {
    display: block;
  }

  .workshop-grid .workshop-block {
    display: block;
    margin: 0 0 2.5rem;
  }

  .workshop-grid .workshop-block:last-child {
    margin-bottom: 0;
  }

  .workshop-grid .workshop-block .section-cta {
    margin-top: 0.75rem;
  }
}

/* CLARITY PARTNERSHIP CTAs (home page — two buttons, scoped) */
.clarity-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.clarity-ctas .section-cta {
  width: 230px;
  justify-content: center;
  white-space: nowrap;
}

