/* Compact header (subpages) */
.compact-header {
    padding: 1rem 0;
}

.compact-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.compact-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.compact-brand img {
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
}

.compact-brand-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1f2937;
}

.dark .compact-brand-name {
    color: #f3f4f6;
}

/* Desktop nav in compact header */
.compact-nav-desktop {
    display: flex;
}

/* Mobile nav in compact header */
.compact-nav-mobile {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.compact-current {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    padding: 0.375rem 0.875rem;
    background-color: #f3f4f6;
    border-radius: 9999px;
}

.dark .compact-current {
    color: #f3f4f6;
    background-color: #374151;
}

.compact-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.compact-hamburger:hover {
    border-color: #9ca3af;
    color: #1f2937;
}

.dark .compact-hamburger {
    background: #1f2937;
    border-color: #374151;
    color: #9ca3af;
}

.dark .compact-hamburger:hover {
    border-color: #6b7280;
    color: #f3f4f6;
}

/* Dropdown */
.compact-dropdown {
    display: none;
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

.compact-dropdown.open {
    display: flex;
}

.dark .compact-dropdown {
    border-top-color: #374151;
}

.compact-dropdown-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.15s, color 0.15s;
}

.compact-dropdown-link:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

.dark .compact-dropdown-link {
    color: #9ca3af;
}

.dark .compact-dropdown-link:hover {
    background-color: #1f2937;
    color: #f3f4f6;
}

@media (max-width: 560px) {
    .compact-nav-desktop {
        display: none;
    }

    .compact-nav-mobile {
        display: flex;
    }
}

/* Full header navigation (home) */
.site-nav {
    display: flex;
    justify-content: center;
}

.site-nav-track {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    background-color: #fff;
    border-radius: 9999px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border: 1px solid #e5e7eb;
}

.dark .site-nav-track {
    background-color: #1f2937;
    border-color: #374151;
}

@media (max-width: 560px) {
    .site-nav-wrap {
        position: relative;
    }

    .site-nav-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 2.5rem;
        background: linear-gradient(to right, transparent, var(--nav-fade, #fff));
        pointer-events: none;
        border-radius: 0 9999px 9999px 0;
        z-index: 1;
        transition: opacity 0.2s;
    }

    .site-nav-wrap.scrolled-end::after {
        opacity: 0;
    }

    .dark .site-nav-wrap::after {
        --nav-fade: #111827;
    }

    .site-nav {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 0.25rem;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav-track {
        flex-shrink: 0;
    }
}

/* Post cards */
.post-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: border-color 0.15s, background-color 0.15s;
}

.post-card:hover {
    background-color: #f9fafb;
    border-color: #e5e7eb;
}

.dark .post-card:hover {
    background-color: #111827;
    border-color: #1f2937;
}

.post-card-content {
    flex: 1;
    min-width: 0;
}

.post-card-meta {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-bottom: 0.375rem;
}

.post-card-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.375rem;
    line-height: 1.4;
}

.dark .post-card-title {
    color: #f3f4f6;
}

.post-card-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .post-card-excerpt {
    color: #9ca3af;
}

.post-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.75rem;
}

.post-card-arrow {
    flex-shrink: 0;
    color: #d1d5db;
    margin-top: 0.25rem;
    transition: color 0.15s, transform 0.15s;
}

.post-card:hover .post-card-arrow {
    color: #6b7280;
    transform: translateX(2px);
}

.dark .post-card-arrow {
    color: #374151;
}

.dark .post-card:hover .post-card-arrow {
    color: #9ca3af;
}

.post-card + .post-card {
    border-top: 1px solid #f3f4f6;
}

.dark .post-card + .post-card {
    border-top-color: #1f2937;
}

/* Blog content typography */
.blog-content {
    color: #374151;
    line-height: 1.8;
    font-size: 1rem;
}

.dark .blog-content {
    color: #d1d5db;
}

.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.dark .blog-content h2 {
    color: #f3f4f6;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.dark .blog-content h3 {
    color: #f3f4f6;
}

.blog-content p {
    margin-bottom: 1.25rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.25rem;
    margin-left: 1.5rem;
}

.blog-content ul {
    list-style-type: disc;
}

.blog-content ol {
    list-style-type: decimal;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content a {
    color: #2563eb;
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}

.dark .blog-content a {
    color: #60a5fa;
}

.blog-content strong {
    font-weight: 600;
    color: #1f2937;
}

.dark .blog-content strong {
    color: #f3f4f6;
}

.blog-content em {
    font-style: italic;
}

.blog-content blockquote {
    border-left: 3px solid #d1d5db;
    padding-left: 1.25rem;
    font-style: italic;
    color: #6b7280;
    margin: 1.5rem 0;
}

.dark .blog-content blockquote {
    border-left-color: #4b5563;
    color: #9ca3af;
}

.blog-content code {
    background-color: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.dark .blog-content code {
    background-color: #1f2937;
}

.blog-content pre {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.dark .blog-content pre {
    background-color: #1f2937;
}

.blog-content pre code {
    background-color: transparent;
    padding: 0;
}

.blog-content figure {
    margin: 1.5rem 0;
}

.blog-content figure img {
    width: 100%;
    border-radius: 0.5rem;
}

.blog-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.dark .blog-content hr {
    border-top-color: #374151;
}

/* CTA blocks */
.cta-block {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
}

.dark .cta-block {
    border-color: #374151;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: #f3f4f6;
    color: #4b5563;
    margin-bottom: 0.875rem;
}

.dark .cta-icon {
    background-color: #1f2937;
    color: #9ca3af;
}

.cta-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.375rem;
}

.dark .cta-title {
    color: #f3f4f6;
}

.cta-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dark .cta-text {
    color: #9ca3af;
}

.cta-form {
    display: flex;
    gap: 0.5rem;
}

.cta-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #fff;
    color: #1f2937;
    outline: none;
}

.cta-input:focus {
    border-color: #9ca3af;
}

.dark .cta-input {
    background: #111827;
    border-color: #374151;
    color: #f3f4f6;
}

.dark .cta-input:focus {
    border-color: #6b7280;
}

.cta-button,
.blog-content .cta-button-link,
.cta-button-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background-color: #1f2937;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s;
}

.cta-button:hover,
.blog-content .cta-button-link:hover,
.cta-button-link:hover {
    background-color: #374151;
    text-decoration: none;
    color: #fff;
}

.dark .cta-button,
.dark .blog-content .cta-button-link,
.dark .cta-button-link {
    background-color: #f3f4f6;
    color: #1f2937;
}

.dark .cta-button:hover,
.dark .blog-content .cta-button-link:hover,
.dark .cta-button-link:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.cta-social {
    display: flex;
    gap: 0.625rem;
}

.cta-social-link,
.blog-content .cta-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}

.cta-social-link:hover,
.blog-content .cta-social-link:hover {
    border-color: #1f2937;
    background-color: #f9fafb;
    text-decoration: none;
    color: #1f2937;
}

.cta-social-link svg {
    flex-shrink: 0;
    color: #1f2937;
}

.dark .cta-social-link,
.dark .blog-content .cta-social-link {
    color: #e5e7eb;
    background-color: #1f2937;
    border-color: #4b5563;
}

.dark .cta-social-link svg {
    color: #e5e7eb;
}

.dark .cta-social-link:hover,
.dark .blog-content .cta-social-link:hover {
    border-color: #e5e7eb;
    background-color: #374151;
    color: #e5e7eb;
}

@media (max-width: 480px) {
    .cta-form {
        flex-direction: column;
    }

    .cta-social {
        flex-direction: column;
    }
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s;
}

.back-link:hover {
    color: #111827;
}

.dark .back-link {
    color: #9ca3af;
}

.dark .back-link:hover {
    color: #f3f4f6;
}

/* Post meta */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.dark .post-meta {
    color: #9ca3af;
}

.post-meta-dot {
    color: #d1d5db;
}

.dark .post-meta-dot {
    color: #4b5563;
}

/* Post footer nav */
.post-footer-nav {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.dark .post-footer-nav {
    border-top-color: #374151;
}

/* Tag pills */
.tag-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    color: #374151;
    text-decoration: none;
    transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}

.tag-pill:hover {
    border-color: #9ca3af;
    background-color: #f3f4f6;
}

.dark .tag-pill {
    background-color: #1f2937;
    color: #d1d5db;
    border-color: #374151;
}

.dark .tag-pill:hover {
    border-color: #6b7280;
    background-color: #374151;
}

.tag-pill.active {
    background-color: #111827;
    color: #fff;
    border-color: #111827;
}

.dark .tag-pill.active {
    background-color: #f3f4f6;
    color: #111827;
    border-color: #f3f4f6;
}

/* 404 page */
.text-404 {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 700;
    color: #d1d5db;
}

.dark .text-404 {
    color: #374151;
}

/* =============================================
   PAGE COMPONENTS
   ============================================= */

/* Page sections */
.page-section {
    padding: 2rem 0;
}

.page-section + .page-section {
    border-top: 1px solid #f3f4f6;
}

.dark .page-section + .page-section {
    border-top-color: #1f2937;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    display: block;
}

.section-label + .section-heading {
    margin-top: -0.75rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.dark .section-heading {
    color: #f3f4f6;
}

.page-intro-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.dark .page-intro-heading {
    color: #f3f4f6;
}

.page-prose {
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.dark .page-prose {
    color: #d1d5db;
}

.page-prose p {
    margin-bottom: 1.25rem;
}

.page-prose a {
    color: #1f2937;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #d1d5db;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.15s;
}

.page-prose a:hover {
    text-decoration-color: #1f2937;
}

.dark .page-prose a {
    color: #e5e7eb;
    text-decoration-color: #4b5563;
}

.dark .page-prose a:hover {
    text-decoration-color: #e5e7eb;
}

.page-cta {
    font-size: 0.9375rem;
    color: #4b5563;
}

.page-cta a {
    color: #1f2937;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #d1d5db;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.15s;
}

.page-cta a:hover {
    text-decoration-color: #1f2937;
}

.dark .page-cta {
    color: #9ca3af;
}

.dark .page-cta a {
    color: #e5e7eb;
    text-decoration-color: #4b5563;
}

/* Quick facts (About) */
.quick-facts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-facts li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.7;
}

.dark .quick-facts li {
    color: #9ca3af;
}

.quick-facts li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #d1d5db;
}

.dark .quick-facts li::before {
    background-color: #4b5563;
}

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

.photo-grid img,
.photo-grid .photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0.75rem;
}

.photo-placeholder {
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #9ca3af;
    border: 1px dashed #d1d5db;
}

.dark .photo-placeholder {
    background-color: #1f2937;
    border-color: #374151;
    color: #6b7280;
}

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

/* Bio section (Work) */
.bio-tabs {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
}

.bio-tab {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s;
    background-color: #f3f4f6;
    color: #4b5563;
}

.bio-tab:hover {
    background-color: #e5e7eb;
}

.bio-tab.active {
    background-color: #1f2937;
    color: #fff;
}

.dark .bio-tab {
    background-color: #374151;
    color: #9ca3af;
}

.dark .bio-tab:hover {
    background-color: #4b5563;
}

.dark .bio-tab.active {
    background-color: #f3f4f6;
    color: #1f2937;
}

.bio-card {
    position: relative;
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.dark .bio-card {
    background-color: #111827;
    border-color: #1f2937;
}

.bio-card-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    white-space: pre-line;
}

.dark .bio-card-text {
    color: #9ca3af;
}

.bio-copy-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.bio-copy-btn:hover {
    border-color: #9ca3af;
    color: #1f2937;
}

.bio-copy-btn.copied {
    color: #059669;
    border-color: #059669;
}

.dark .bio-copy-btn {
    background: #1f2937;
    border-color: #374151;
    color: #9ca3af;
}

.dark .bio-copy-btn:hover {
    border-color: #6b7280;
    color: #e5e7eb;
}

.bio-content {
    display: none;
}

.bio-content.active {
    display: block;
}

/* Venture cards (Work) */
.venture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.venture-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    text-decoration: none;
    transition: border-color 0.15s, background-color 0.15s;
}

.venture-card:hover {
    border-color: #d1d5db;
    background-color: #f3f4f6;
}

.dark .venture-card {
    background-color: #111827;
    border-color: #1f2937;
}

.dark .venture-card:hover {
    border-color: #374151;
    background-color: #1f2937;
}

.venture-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    margin-bottom: 0.875rem;
    overflow: hidden;
}

.dark .venture-card-icon {
    background: #1f2937;
    border-color: #374151;
}

.venture-card-icon img {
    width: 20px;
    height: 20px;
}

.venture-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.dark .venture-card-title {
    color: #f3f4f6;
}

.venture-card-url {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.venture-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.dark .venture-card-desc {
    color: #9ca3af;
}

/* Experience cards (shared) */
.exp-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
}

.exp-card:nth-child(odd) {
    background: linear-gradient(135deg, #f3f4f6, #f9fafb);
}

.dark .exp-card:nth-child(odd) {
    background: linear-gradient(135deg, #1f2937, rgba(31,41,55,0.65));
}

.exp-card-inner {
    display: flex;
    gap: 1.25rem;
}

@media (max-width: 480px) {
    .exp-card-inner {
        flex-direction: column;
    }
}

.exp-card-logo {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    margin-top: 0.25rem;
    overflow: hidden;
}

.dark .exp-card-logo {
    background: #374151;
    border-color: rgba(75,85,99,0.65);
}

.exp-card-logo img {
    width: 20px;
    height: 20px;
}

.exp-card-date {
    font-size: 0.8125rem;
    font-style: italic;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.exp-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.dark .exp-card-title {
    color: #f3f4f6;
}

.exp-card-subtitle {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.dark .exp-card-subtitle {
    color: #9ca3af;
}

.exp-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.dark .exp-card-desc {
    color: #9ca3af;
}

.exp-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Expand toggle */
.expand-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
    margin-top: 0.75rem;
}

.expand-toggle:hover {
    color: #1f2937;
}

.dark .expand-toggle {
    color: #9ca3af;
}

.dark .expand-toggle:hover {
    color: #e5e7eb;
}

.expand-toggle svg {
    transition: transform 0.2s;
}

.expand-toggle.open svg {
    transform: rotate(180deg);
}

.expandable {
    display: none;
}

.expandable.open {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Bullet list (Work - What I bring) */
.plain-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plain-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
}

.dark .plain-list li {
    color: #9ca3af;
}

.plain-list li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    color: #9ca3af;
}

/* Offering blocks (Work with Me) */
.offering {
    padding: 2rem 0;
}

.offering + .offering {
    border-top: 1px solid #f3f4f6;
}

.dark .offering + .offering {
    border-top-color: #1f2937;
}

.offering-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.dark .offering-heading {
    color: #f3f4f6;
}

.offering-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.25rem 0;
}

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

.offering-sub-card {
    padding: 1.25rem;
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
}

.dark .offering-sub-card {
    background-color: #111827;
    border-color: #1f2937;
}

.offering-sub-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dark .offering-sub-title {
    color: #f3f4f6;
}

.offering-sub-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.dark .offering-sub-desc {
    color: #9ca3af;
}

.offering-sub-note {
    font-size: 0.8125rem;
    color: #9ca3af;
    font-style: italic;
}

.offering-bullets {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offering-bullets li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
}

.dark .offering-bullets li {
    color: #9ca3af;
}

.offering-bullets li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    color: #9ca3af;
}

.offering-callout {
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
}

.dark .offering-callout {
    background-color: #111827;
    border-color: #1f2937;
}

/* Topic grid (Speaking) */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.25rem 0;
}

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

.topic-card {
    padding: 1.25rem;
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
}

.dark .topic-card {
    background-color: #111827;
    border-color: #1f2937;
}

.topic-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.dark .topic-card-title {
    color: #f3f4f6;
}

.topic-card .quick-facts {
    gap: 0.5rem;
}

.topic-card .quick-facts li {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
}

.dark .topic-card .quick-facts li {
    color: #d1d5db;
}

/* How I work aside */
.how-i-work {
    border-left: 2px solid #e5e7eb;
    padding-left: 1.5rem;
}

.dark .how-i-work {
    border-left-color: #374151;
}

/* Contact CTA */
.contact-cta {
    padding: 2rem 0;
}

.contact-cta-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dark .contact-cta-heading {
    color: #f3f4f6;
}

.contact-cta a {
    color: #1f2937;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #d1d5db;
    text-underline-offset: 3px;
}

.contact-cta a:hover {
    text-decoration-color: #1f2937;
}

.dark .contact-cta a {
    color: #e5e7eb;
    text-decoration-color: #4b5563;
}
