
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background: #F7F6F2;
      color: #1A1A18;
      font-size: 17px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    :root {
      --pink: #FF1F8E;
      --pink-light: #FFE8F4;
      --pink-mid: #FF6DB6;
      --black: #4D4D4B;
      --gray-dark: #3D3D3A;
      --gray-mid: #888780;
      --gray-light: #D8D6CE;
      --cream: #F7F6F2;
      --white: #FFFFFF;
      --radius: 16px;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Saira', sans-serif;
      font-weight: 600;
      line-height: 1.15;
    }

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

    p {
      color: var(--gray-dark);
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 68px;
      padding: 0 20px;
      background: #F7F6F2;
      border-bottom: 1px solid #D8D6CE;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 100;
    }

    .nav-logo {
      font-weight: 600;
      font-size: 1.2rem;
      display: flex;
      gap: 5px;
      align-items: flex-end;
      color:  var(--pink);
    }

    /* LINKS */
    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #4D4D4B;
      font-size: 0.9rem;
    }

    .nav-cta {
      background: #4D4D4B;
      color: white;
      padding: 8px 18px;
      border-radius: 999px;
    }

    .nav-links a.nav-cta {
      color: white;
    }

    /* BURGER */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .burger span {
      width: 24px;
      height: 2px;
      background: #4D4D4B;
      display: block;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .burger {
        display: flex;
      }

      .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #F7F6F2;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        display: none;
      }

      .nav-links.active {
        display: flex;
      }
    }

    /* ── HERO ── */
    .team-hero {
      padding: 140px 40px 80px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .overline {
      font-family: 'Roboto', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--pink);
      display: block;
      margin-bottom: 20px;
    }

    .team-hero h1 {
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      color: var(--black);
      margin-bottom: 24px;
      max-width: 16ch;
    }

    .team-hero h1 em {
      font-style: italic;
      color: var(--pink);
    }

    .team-hero p {
      font-size: 1.1rem;
      max-width: 52ch;
      color: var(--gray-dark);
    }

    /* ── CORE TEAM ── */
    .section-block {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 100px;
    }

    .block-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gray-mid);
      border-bottom: 1px solid var(--gray-light);
      padding-bottom: 16px;
      margin-bottom: 64px;
    }

    .team-members {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .member {
      display: grid;
      grid-template-columns: 1fr 160px;
      gap: 60px;
      align-items: start;
      padding: 56px 0;
      border-bottom: 1px solid var(--gray-light);
      position: relative;
      transition: background 0.2s;
    }

    .member:last-child {
      border-bottom: none;
    }

    .member--flip {
      grid-template-columns: 160px 1fr;
    }

    .member--flip .member-text {
      order: 2;
    }

    .member--flip .member-photo {
      order: 1;
    }

    .member-text {}

    .member-name {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      color: var(--black);
      margin-bottom: 8px;
    }

    .member-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--pink-light);
      color: var(--pink);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .member-bio {
      font-size: 0.95rem;
      line-height: 1.75;
      color: var(--gray-dark);
      max-width: 58ch;
    }

    .member-bio strong {
      color: var(--black);
      font-weight: 600;
    }

    .member-roles {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .role-chip {
      background: var(--white);
      border: 1px solid var(--gray-light);
      color: var(--gray-dark);
      font-size: 0.78rem;
      padding: 4px 12px;
      border-radius: 100px;
    }

    .member-photo {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--gray-light);
      flex-shrink: 0;
      background: #ECEAE4;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .member-photo svg {
      width: 100%;
      height: 100%;
    }

    .member--flip .member-bio {
      margin-left: auto;
    }

    /* ── BEIRAT ── */
    .advisors-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      background: var(--gray-light);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .advisor-card {
      background: var(--white);
      padding: 40px;
      transition: background 0.2s;
    }

    .advisor-card:hover {
      background: var(--cream);
    }

    .advisor-num {
      font-family: 'Saira', sans-serif;
      font-size: 3rem;
      font-weight: 600;
      color: var(--pink-light);
      line-height: 1;
      margin-bottom: 20px;
      transition: color 0.3s;
    }

    .advisor-card:hover .advisor-num {
      color: var(--pink);
    }

    .advisor-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 12px;
    }

    .advisor-card p {
      font-size: 0.88rem;
      color: var(--gray-mid);
      line-height: 1.7;
      max-width: none;
      margin: 0;
    }

    .advisor-card p strong {
      color: var(--gray-dark);
    }

    /* ── CTA STRIP ── */
    .team-cta {
      background: var(--black);
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .team-cta::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 31, 142, 0.18) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .team-cta h2 {
      color: var(--white);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      margin-bottom: 16px;
      position: relative;
    }

    .team-cta p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 1rem;
      margin-bottom: 36px;
      position: relative;
    }

    .btn-primary {
      background: var(--pink);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      position: relative;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 31, 142, 0.35);
    }

    /* ── FOOTER ── */
    footer {
      background: #111110;
      padding: 48px 40px 32px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 32px;
      border-bottom: 1px solid #2A2A28;
    }

    .footer-brand {
      font-family: 'Saira', sans-serif;
      color: var(--white);
      font-size: 1.2rem;
      font-weight: 700;
    }

    .footer-links {
      display: flex;
      gap: 32px;
    }

    .footer-links a {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.45);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--white);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      padding-top: 28px;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.25);
    }

    @media (max-width: 450px) {
      .footer-bottom {
        flex-direction: column;
        gap: 20px;
      }

      .footer-inner {
        flex-direction: column;
        gap: 10px;
        justify-items: center;
        align-items: start;
      }

      .footer-links {
        gap: 5px;
        flex-direction: column;
      }
    }

    /* ── FADE IN ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade {
      opacity: 0;
      animation: fadeUp 0.65s ease forwards;
    }

    .fade:nth-child(1) {
      animation-delay: 0.05s;
    }

    .fade:nth-child(2) {
      animation-delay: 0.15s;
    }

    .fade:nth-child(3) {
      animation-delay: 0.25s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {

      .member,
      .member--flip {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .member--flip .member-photo {
        order: -1;
      }

      .member-photo {
        width: 120px;
        height: 120px;
      }

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

      .team-hero,
      .section-block {
        padding-left: 20px;
        padding-right: 20px;
      }
    }