*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --teal: #1B4F4A; --teal-light: #2A6B64; --coral: #E8725A;
      --sage: #8AAF9F; --cream: #F7F4EF; --white: #FFFFFF;
      --ink: #2C2C2C; --ink-muted: #6B6B6B; --rule: #D8D3CB;
    }
    body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.6; }

    nav { background: var(--teal); padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; height: 60px; position: sticky; top: 0; z-index: 100; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); text-decoration: none; }
    .nav-logo span { color: var(--coral); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--cream); }

    /* ═══════════════════════════════════════
       SECTION A: CONTRIBUTOR PROFILE PAGE
       /contributors/sarah-johnson
    ═══════════════════════════════════════ */

    .profile-hero { background: var(--teal); padding: 56px 5vw 0; }
    .profile-hero-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: end; padding-bottom: 0; }
    .profile-avatar-wrap { position: relative; }
    .profile-avatar { width: 120px; height: 120px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--white); font-weight: 700; border: 4px solid rgba(255,255,255,0.15); overflow: hidden; }
    .profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .profile-verified { position: absolute; bottom: 4px; right: 4px; width: 28px; height: 28px; background: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; border: 2px solid var(--teal); }
    .profile-info { padding-bottom: 2rem; }
    .profile-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(232,114,90,0.2); color: var(--coral); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 0.8rem; }
    .profile-name { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
    .profile-title { font-size: 0.9rem; color: var(--sage); margin-bottom: 1rem; }
    .profile-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .profile-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); font-size: 0.72rem; font-weight: 500; padding: 4px 10px; border-radius: 20px; }

    /* Profile tabs */
    .profile-tabs { background: var(--teal); border-bottom: 1px solid rgba(255,255,255,0.1); }
    .profile-tabs-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; display: flex; gap: 0; }
    .profile-tab { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage); padding: 14px 20px; border-bottom: 2px solid transparent; text-decoration: none; transition: color 0.2s, border-color 0.2s; }
    .profile-tab:hover, .profile-tab.active { color: var(--cream); border-bottom-color: var(--coral); }

    /* Profile body */
    .profile-wrap { max-width: 1000px; margin: 0 auto; padding: 48px 5vw; display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
    .profile-bio { font-size: 1rem; line-height: 1.8; color: var(--ink); margin-bottom: 2.5rem; }
    .profile-bio p { margin-bottom: 1.2rem; }
    .profile-articles-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--teal); }
    .profile-article-item { display: flex; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid var(--rule); text-decoration: none; color: inherit; transition: background 0.15s; }
    .profile-article-item:last-child { border-bottom: none; }
    .profile-article-thumb { width: 72px; height: 52px; border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
    .profile-article-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.3rem; }
    .profile-article-title { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; line-height: 1.3; color: var(--ink); }
    .profile-article-meta { font-size: 0.72rem; color: var(--ink-muted); margin-top: 0.3rem; }

    /* Sidebar */
    .profile-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.2rem; }
    .sidebar-panel { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.4rem; }
    .sidebar-panel-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--rule); }
    .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .stat-item { text-align: center; padding: 0.8rem; background: var(--cream); border-radius: 4px; }
    .stat-val { font-size: 1.3rem; font-weight: 700; color: var(--teal); display: block; font-family: 'Playfair Display', serif; }
    .stat-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); display: block; margin-top: 2px; }
    .expertise-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .expertise-list li { font-size: 0.82rem; color: var(--ink-muted); display: flex; gap: 0.5rem; align-items: center; }
    .expertise-list li::before { content: '✓'; color: var(--teal); font-weight: 600; font-size: 0.75rem; }
    .social-links { display: flex; flex-direction: column; gap: 0.6rem; }
    .social-link { display: flex; align-items: center; gap: 0.7rem; font-size: 0.82rem; color: var(--teal); text-decoration: none; }
    .social-link:hover { color: var(--coral); }

    /* ═══════════════════════════════════════
       SECTION B: WRITE FOR US PAGE
       /write-for-us
    ═══════════════════════════════════════ */

    .wfu-hero { background: var(--ink); padding: 70px 5vw; text-align: center; }
    .wfu-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.15; }
    .wfu-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 540px; margin: 0 auto 2rem; line-height: 1.7; }
    .wfu-hero-note { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 10px 18px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
    .wfu-hero-note strong { color: var(--coral); }

    .wfu-wrap { max-width: 900px; margin: 0 auto; padding: 60px 5vw; }

    .wfu-section { margin-bottom: 3.5rem; }
    .wfu-section h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--teal); }
    .wfu-section p { font-size: 0.95rem; line-height: 1.8; color: var(--ink-muted); margin-bottom: 1rem; }
    .wfu-section p strong { color: var(--ink); font-weight: 600; }

    /* Who we're looking for */
    .who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.2rem; }
    .who-card { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.4rem; }
    .who-card-icon { font-size: 1.6rem; margin-bottom: 0.6rem; display: block; }
    .who-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
    .who-card p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.55; margin: 0; }

    /* What we don't want */
    .wfu-no-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.8rem; }
    .wfu-no-list li { font-size: 0.88rem; color: var(--ink-muted); display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.5; }
    .wfu-no-list li::before { content: '✗'; color: var(--coral); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

    .wfu-yes-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.8rem; }
    .wfu-yes-list li { font-size: 0.88rem; color: var(--ink-muted); display: flex; gap: 0.6rem; align-items: flex-start; line-height: 1.5; }
    .wfu-yes-list li::before { content: '✓'; color: var(--teal); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

    /* Process steps */
    .process-steps { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.2rem; }
    .process-step { display: flex; gap: 1.4rem; align-items: flex-start; }
    .process-num { width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .process-content h3 { font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 0.3rem; }
    .process-content p { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.55; margin: 0; }

    /* Current contributors */
    .contributors-strip { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.8rem; margin-bottom: 2rem; }
    .contributors-strip h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--ink); }
    .contributors-row { display: flex; gap: 1.4rem; flex-wrap: wrap; }
    .contributor-mini { display: flex; align-items: center; gap: 0.7rem; }
    .contributor-mini-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.85rem; flex-shrink: 0; }
    .contributor-mini-name { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
    .contributor-mini-spec { font-size: 0.72rem; color: var(--ink-muted); }

    /* APPLICATION FORM */
    .application-form { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 2rem; }
    .form-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink); }
    .form-subtitle { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 2rem; line-height: 1.5; }
    .form-group { margin-bottom: 1.4rem; }
    .form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
    .form-label span { color: var(--coral); }
    .form-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--rule); border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--ink); background: var(--cream); outline: none; transition: border-color 0.2s; }
    .form-input:focus { border-color: var(--teal); background: var(--white); }
    .form-input::placeholder { color: var(--ink-muted); }
    textarea.form-input { min-height: 120px; resize: vertical; line-height: 1.6; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-hint { font-size: 0.75rem; color: var(--ink-muted); margin-top: 0.4rem; line-height: 1.4; }
    .form-checkboxes { display: flex; flex-direction: column; gap: 0.6rem; }
    .form-checkbox { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; color: var(--ink); cursor: pointer; }
    .form-checkbox input { width: 16px; height: 16px; accent-color: var(--teal); cursor: pointer; }
    .btn-submit { background: var(--coral); color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; padding: 14px 32px; border: none; border-radius: 4px; cursor: pointer; transition: background 0.2s; width: 100%; margin-top: 0.5rem; }
    .btn-submit:hover { background: #F0957F; }
    .form-footer-note { font-size: 0.75rem; color: var(--ink-muted); text-align: center; margin-top: 1rem; line-height: 1.5; }

    footer { background: var(--ink); padding: 40px 5vw 24px; margin-top: 60px; }
    .footer-logo { font-family: 'Playfair Display', serif; color: white; font-size: 1rem; margin-bottom: 1rem; display: block; text-decoration: none; }
    .footer-logo span { color: var(--coral); }
    .footer-bottom { display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

    .page-divider { max-width: 900px; margin: 0 auto 60px; padding: 0 5vw; }
    .divider-line { border: none; border-top: 2px solid var(--rule); margin: 0; position: relative; }
    .divider-label { text-align: center; margin-top: -12px; }
    .divider-label span { background: var(--cream); padding: 0 1rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }

    @media (max-width: 760px) {
      .profile-hero-inner { grid-template-columns: 1fr; }
      .profile-wrap { grid-template-columns: 1fr; gap: 2rem; }
      .profile-sidebar { position: static; }
      .who-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .nav-links { display: none; }
    }