    /* ============================================
    CSS Variables
    ============================================ */

    :root {
        --header-height: 60px;
        --gallery-nav-offset: 20px;
        --gallery-hero-height: 65vh;
        --gallery-mobile-height: 70vh;
    }

    /* ============================================
    Base styles using CSS variables from site settings
    ============================================ */

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        background-color: var(--bg-color);
        color: var(--text-color);
        font-family: var(--font-family);
        font-size: var(--base-font-size);
        margin: 0;
        padding: 0;
        line-height: var(--line-height);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    /* ============================================
    Typography scale
    ============================================ */

    h1 {
        font-size: calc(clamp(1.8rem, 4vw, 2.8rem) * var(--heading-scale));
        line-height: 1.2;
        margin: 0 0 0.5rem;
        letter-spacing: -0.02em;
    }

    h2 {
        font-size: calc(clamp(1.2rem, 2.5vw, 1.6rem) * var(--heading-scale));
        line-height: 1.3;
        margin: 0 0 1rem;
        letter-spacing: -0.01em;
    }

    p {
        margin: 0 0 1rem;
    }

    /* ============================================
    Links
    ============================================ */

    a {
        color: var(--link-color);
        text-decoration: none;
        transition: color 0.2s ease, opacity 0.2s ease;
    }

    .link-underline-always a {
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .link-underline-hover a:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .link-underline-none a,
    .link-underline-none a:hover {
        text-decoration: none;
    }

    a:hover {
        opacity: 0.8;
    }

    a:focus-visible {
        outline: 2px solid var(--link-color);
        outline-offset: 2px;
        border-radius: 2px;
    }

    /* ============================================
    Skip to content (accessibility)
    ============================================ */

    .skip-to-content {
        position: absolute;
        left: -9999px;
        top: 0;
        z-index: 100;
        padding: 0.75rem 1.5rem;
        background: var(--link-color);
        color: var(--bg-color);
        font-weight: 600;
        border-radius: 0 0 4px 0;
    }

    .skip-to-content:focus {
        left: 0;
    }

    /* ============================================
    Layout
    ============================================ */

    .site-wrapper {
        max-width: var(--content-max-width);
        margin: 0 auto;
        padding: calc(var(--page-padding-y) + var(--header-height)) var(--page-padding-x) calc(var(--page-padding-y) * 2);
        flex: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    main {
        flex: 1;
    }

    /* ============================================
    Full-page index gallery
    ============================================ */

    .index-gallery {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .gallery-nav {
        position: fixed;
        top: calc(var(--header-height) + 1rem);
        /* Position nav relative to content area with minimum fallback */
        right: max(1.5rem, calc((100vw - var(--content-max-width)) / 2 + var(--page-padding-x) - var(--gallery-nav-offset) - 10px));
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        z-index: 60;
        align-items: flex-end;
    }

    .gallery-nav-link {
        font-family: 'Playfair Display', Georgia, serif;
        font-style: italic;
        font-size: 1rem;
        color: var(--text-color);
        opacity: 0.5;
        transition: opacity 0.2s ease;
    }

    .gallery-nav-link:hover,
    .gallery-nav-link:focus-visible,
    .gallery-nav-link.active {
        opacity: 1;
        font-weight: 700;
    }

    .gallery-stack {
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
        overflow-y: scroll;
        height: 100vh;
        width: 100%;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .gallery-stack::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .gallery-panel {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        scroll-margin-top: calc(var(--header-height) + 1rem);
        padding-top: 20px;
    }

    .gallery-panel-inner {
        width: 100%;
        max-width: var(--content-max-width);
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-panel .hero-image-wrapper {
        margin: 0;
        max-height: none;
        display: flex;
        align-items: center;
        justify-content: center;
        height: calc(var(--gallery-hero-height) + 30px);
        width: 100%;
        max-width: var(--content-max-width);
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-panel .hero-image {
        max-height: var(--gallery-hero-height);
        width: 100%;
        max-width: 100%;
    }


    article {
        max-width: var(--content-max-width);
        margin: 0 auto;
    }

    /* ============================================
    Hero image
    ============================================ */

    .hero-image-wrapper {
        position: relative;
        width: auto;
        overflow: hidden;
        border-radius: var(--hero-radius);
        margin: 0 0 1rem;
        background: rgba(128, 128, 128, 0.05);
        max-height: calc(var(--hero-max-height));
    }

    .hero-image {
        width: 100%;
        height: auto;
        max-height: var(--hero-max-height);
        display: block;
        opacity: 0;
        transform: translateY(10px) scale(0.99);
        transition: opacity 0.5s ease, transform 0.5s ease;
        box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.4);
    }

    .hero-image.loaded {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* Fallback for browsers without JS */
    noscript .hero-image {
        opacity: 1;
    }

    /* ============================================
    Project metadata
    ============================================ */

    .project-meta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        opacity: 0.65;
        margin-bottom: 0.25rem;
    }

    .project-meta .separator {
        display: inline-block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: currentColor;
        opacity: 0.5;
    }

    /* ============================================
    Project description
    ============================================ */

    .project-description {
        margin: 1.5rem 0 var(--section-spacing);
        font-size: 1.05rem;
        line-height: 1.8;
    }

    /* ============================================
    Project links
    ============================================ */

    .project-links {
        margin-top: var(--section-spacing);
        padding-top: calc(var(--section-spacing) * 0.75);
        border-top: 1px solid rgba(128, 128, 128, 0.2);
    }

    .project-links h2 {
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
        opacity: 0.7;
    }

    .project-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .project-links li a {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1.25rem;
        border: 1px solid var(--link-color);
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 500;
        transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    }

    .button-style-outline .project-links li a,
    .button-style-outline .view-project-link {
        background-color: transparent;
        color: var(--link-color);
    }

    .button-style-outline .project-links li a:hover,
    .button-style-outline .view-project-link:hover {
        background-color: var(--link-color);
        color: var(--bg-color);
    }

    .project-links li a:hover {
        background-color: var(--link-color);
        color: var(--bg-color);
        opacity: 1;
        transform: translateY(-1px);
    }

    .project-links li a::after {
        content: "\2197";
        font-size: 0.8em;
        opacity: 0.6;
    }

    /* ============================================
    Mobile Navigation (Hamburger Menu)
    ============================================ */

    .nav-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 51;
        margin-left: auto;
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-color);
        margin: 5px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* ============================================
    Site Header
    ============================================ */

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 50;
        background-color: var(--bg-color);
        height: var(--header-height);
        max-height: var(--header-height);
        padding: 0;
        border-bottom: var(--header-border-width) solid var(--text-color);
    }

    .header-top {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        height: 100%;
        max-width: var(--content-max-width);
        margin: 0 auto;
        padding: 0 var(--page-padding-x);
    }

    .site-logo {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
    }

    .logo-img {
        width: var(--logo-size);
        height: auto;
        display: block;
    }

    .header-nav {
        display: flex;
        align-items: center;
        gap: var(--nav-spacing);
        flex-wrap: wrap;
        margin-left: auto;
        transition: all 0.3s ease;
    }

    .nav-btn {
        display: inline-block;
        padding: 0;
        font-family: 'Playfair Display', Georgia, serif;
        font-style: italic;
        font-size: 1rem;
        font-weight: 400;
        color: var(--text-color);
        opacity: 0.7;
        transition: opacity 0.2s ease;
    }

    .nav-font-serif .nav-btn {
        font-family: 'Playfair Display', Georgia, serif;
        font-style: normal;
    }

    .nav-font-sans .nav-btn {
        font-family: var(--font-family);
        font-style: normal;
    }

    .nav-btn:hover {
        opacity: 1;
    }

    .nav-btn.active {
        opacity: 1;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    /* ============================================
    Project Grid
    ============================================ */

    .project-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .project-card {
        display: block;
        border-radius: 8px;
        overflow: hidden;
        background: rgba(128, 128, 128, 0.04);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        color: var(--text-color);
    }

    .project-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        opacity: 1;
    }

    .card-image {
        overflow: hidden;
        background: rgba(128, 128, 128, 0.1);
    }

    .card-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .project-card:hover .card-image img {
        transform: none;
    }

    .card-body {
        padding: 1rem 1.25rem 1.25rem;
    }

    .card-body h2 {
        font-size: 1.05rem;
        margin: 0 0 0.35rem;
        line-height: 1.3;
    }

    .card-body .project-meta {
        margin-bottom: 0;
        font-size: 0.75rem;
    }

    /* ============================================
    Placeholder pages
    ============================================ */

    .placeholder-page {
        margin-top: 3rem;
        text-align: center;
        opacity: 0.5;
        font-size: 1.1rem;
    }

    /* ============================================
    Navigation
    ============================================ */

    .back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        margin-bottom: 2rem;
        font-size: 0.9rem;
        font-weight: 500;
        opacity: 0.7;
        transition: opacity 0.2s ease, transform 0.15s ease;
    }

    .back-link:hover {
        opacity: 1;
        transform: translateX(-2px);
    }

    /* ============================================
    View full project link
    ============================================ */

    .view-project-link {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        margin-top: 1.5rem;
        padding: 0.6rem 1.5rem;
        background-color: var(--link-color);
        color: var(--bg-color);
        border-radius: 6px;
        font-size: 0.95rem;
        font-weight: 500;
        transition: opacity 0.2s ease, transform 0.15s ease;
    }

    .view-project-link:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    /* ============================================
    Page Headers
    ============================================ */

    .page-header {
        text-align: center;
        margin-bottom: 2.5rem;
        padding: 0.5rem 0 1.5rem;
        scroll-margin-top: calc(var(--header-height) + 1rem);
    }

    .page-header h1 {
        margin-bottom: 0.75rem;
        scroll-margin-top: calc(var(--header-height) + 1rem);
    }

    .page-description {
        font-size: 1rem;
        opacity: 0.7;
        margin-top: 0.5rem;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    main {
        scroll-margin-top: calc(var(--header-height) + 1rem);
    }

    h1, h2, h3, h4, h5, h6 {
        scroll-margin-top: calc(var(--header-height) + 1rem);
    }

    /* ============================================
    Empty states
    ============================================ */

    .no-projects {
        text-align: center;
        margin-top: 15vh;
        padding: 2rem;
    }

    .no-projects h1 {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .no-projects p {
        opacity: 0.6;
        font-size: 1.1rem;
    }

    /* ============================================
    Index page layout
    ============================================ */

    .index-layout {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: start;
    }

    .index-main {
        min-width: 0;
    }

    .index-caption {
        margin-bottom: 0;
    }

    .index-caption-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-style: italic;
        font-size: 1.05rem;
        text-align: left;
    }

    .index-caption-year {
        font-family: 'Playfair Display', Georgia, serif;
        font-style: italic;
        font-size: 1.05rem;
        text-align: right;
    }

    .index-links-year {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .index-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .index-links a {
        color: var(--text-color);
        opacity: 0.6;
        transition: opacity 0.2s ease;
    }

    .index-links a:hover {
        opacity: 1;
    }

    .index-sidebar {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
        padding-top: 0.5rem;
        position: sticky;
        top: calc(var(--header-height) + 1rem);
    }

    .sidebar-num {
        font-family: 'Playfair Display', Georgia, serif;
        font-style: italic;
        font-size: 1rem;
        color: var(--text-color);
        opacity: 0.45;
        transition: opacity 0.2s ease;
        line-height: 1.6;
    }

    .sidebar-num:hover {
        opacity: 0.8;
    }

    .sidebar-num.active {
        opacity: 1;
        font-weight: 700;
    }

    /* ============================================
    Site Links page
    ============================================ */

    .site-links-list {
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .site-link-item {
        display: flex;
        align-items: baseline;
        gap: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(128, 128, 128, 0.12);
    }

    .site-link-label {
        font-family: 'Playfair Display', Georgia, serif;
        font-style: italic;
        font-size: 1.05rem;
        color: var(--text-color);
    }

    .site-link-desc {
        font-size: 0.8rem;
        opacity: 0.5;
    }

    /* ============================================
    Footer
    ============================================ */

    .site-footer {
        margin-top: calc(var(--section-spacing) * 1.25);
        padding-top: calc(var(--section-spacing) * 0.75);
        border-top: 1px solid var(--text-color);
        text-align: center;
        font-size: 0.8rem;
        opacity: 0.4;
        position: absolute;
        left: -9999px;
        top: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    /* ============================================
    Responsive breakpoints
    ============================================ */

    @media (max-width: 420px) {
        .nav-toggle {
            display: block;
        }

        .header-nav {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            background: var(--bg-color);
            flex-direction: column;
            gap: 1rem;
            padding: 2rem;
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            z-index: 50;
        }

        .header-nav.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .gallery-stack {
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
            overflow-y: scroll;
            height: 100vh;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }

        .gallery-stack::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .nav-btn {
            font-size: 1rem;
            text-align: center;
            width: 100%;
        }
    }

    @media (max-width: 640px) {
        .site-wrapper {
            padding: calc(var(--page-padding-y) + var(--header-height)) calc(var(--page-padding-x) * 0.8) calc(var(--page-padding-y) * 1.5);
            padding-top: calc(var(--header-height) + 1rem);
        }

        .header-top {
            gap: 1rem;
        }

        .header-nav {
            gap: calc(var(--nav-spacing) * 0.6);
        }

        .nav-btn {
            font-size: 0.85rem;
        }

        .logo-img {
            width: calc(var(--logo-size) * 0.8);
            height: auto;
        }

        .index-layout {
            grid-template-columns: 1fr;
        }

        .index-sidebar {
            flex-direction: row;
            gap: 0.75rem;
            position: static;
            justify-content: center;
            margin-top: 1rem;
        }

            .index-caption-title {
            font-size: 1rem;
            text-align: left;
        }

        .nav-btn {
            font-size: 0.9rem;
            color: var(--text-color);
            opacity: 0.7;
        }

        /* Mobile heading protection for all pages */
        h1, h2, h3, h4, h5, h6 {
            visibility: visible !important;
            display: block !important;
            opacity: 1 !important;
        }

        h1 {
            font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
            line-height: 1.2;
            margin: 0 0 1.5rem;
            font-weight: 700;
            color: var(--text-color) !important;
        }

        h2 {
            font-size: clamp(1.4rem, 5vw, 2rem) !important;
            line-height: 1.3;
            margin: 0 0 1rem;
            font-weight: 600;
            color: var(--text-color) !important;
        }

        h3 {
            font-size: clamp(1.2rem, 4vw, 1.5rem) !important;
            line-height: 1.4;
            margin: 0 0 0.75rem;
            font-weight: 600;
            color: var(--text-color) !important;
        }

        .page-header {
            margin-bottom: 1.5rem;
            padding: 0.5rem 0 1rem;
        }

        .page-description {
            font-size: 0.95rem;
        }

        /* Ensure all titles are visible */
        .index-caption-title,
        .card-body h2,
        .no-projects h1,
        .project-title {
            visibility: visible !important;
            opacity: 1 !important;
            color: var(--text-color) !important;
        }

        .project-grid {
            grid-template-columns: 1fr;
        }

        .project-links ul {
            flex-direction: column;
        }

        .project-links li a {
            width: 100%;
            justify-content: center;
        }

        .gallery-stack {
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
            overflow-y: scroll;
            height: 100vh;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }

        .gallery-stack::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .gallery-nav {
            position: fixed;
            flex-direction: column;
            gap: 0.5rem;
            bottom: 1rem;
            right: 1rem;
            z-index: 60;
            background: rgba(255, 255, 255, 0.9);
            padding: 0.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(4px);
            transition: background 0.2s ease;
        }

        .gallery-nav:hover {
            background: rgba(255, 255, 255, 0.95);
        }

        .gallery-nav-link {
            opacity: 1 !important;
        }

        .gallery-panel {
            min-height: var(--gallery-mobile-height);
            scroll-snap-align: start;
            scroll-snap-stop: always;
            scroll-margin-top: calc(var(--header-height) + 1rem);
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gallery-panel .hero-image-wrapper {
            height: auto;
            width: 100%;
            max-width: 100%;
            max-height: 60vh;
        }

        .gallery-panel .hero-image {
            max-height: 60vh;
            width: 100%;
            object-fit: contain;
        }

    .index-gallery {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
        .site-wrapper {
            padding: calc(var(--page-padding-y) + var(--header-height)) 2rem 4rem;
        }
    }

    /* ============================================
    Search Page Styles
    ============================================ */

    .search-form {
        display: flex;
        gap: 0.5rem;
        max-width: 600px;
        margin: 1.5rem 0;
    }

    .search-input {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border: 1px solid var(--text-color);
        background: var(--bg-color);
        color: var(--text-color);
        font-family: var(--font-family);
        border-radius: 4px;
    }

    .search-input:focus {
        outline: 2px solid var(--link-color);
        outline-offset: 2px;
    }

    .search-button {
        padding: 0.75rem 1.5rem;
        background: var(--link-color);
        color: var(--bg-color);
        border: none;
        cursor: pointer;
        font-family: var(--font-family);
        font-size: 1rem;
        border-radius: 4px;
        transition: opacity 0.2s ease;
    }

    .search-button:hover {
        opacity: 0.8;
    }

    .search-results-count {
        font-size: 0.9rem;
        color: var(--text-color);
        opacity: 0.7;
        margin-bottom: 1.5rem;
    }

    .search-help {
        max-width: 600px;
        margin-top: 2rem;
    }

    .search-help ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }

    .search-help li {
        margin: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

    .search-help li::before {
        content: "→";
        position: absolute;
        left: 0;
    }

    /* ============================================
    Tag Display Styles
    ============================================ */

    .project-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .tag {
        display: inline-block;
        padding: 0.25rem 0.5rem;
        font-size: 0.85rem;
        background: var(--text-color);
        color: var(--bg-color);
        border-radius: 3px;
        opacity: 0.7;
    }

    .project-category {
        font-weight: 600;
    }

    /* ============================================
    Project Actions
    ============================================ */

    .project-hero-shadow {
        box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.4);
        border-radius: var(--hero-radius);
        margin: 0 0 1rem;
    }

    .project-actions {
        margin-top: var(--section-spacing);
    }

    .email-button {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border: 1px solid var(--text-color);
        background: transparent;
        color: var(--text-color);
        font-size: 0.9rem;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.2s, color 0.2s;
    }

    .email-button:hover {
        background-color: var(--text-color);
        color: var(--bg-color);
    }
