.site-shell {
    --bg: #0b0d12;
    --bg-soft: #11141b;
    --surface: rgba(18, 21, 28, 0.88);
    --surface-strong: #151922;
    --surface-muted: rgba(18, 21, 28, 0.72);
    --text: #f2f5f9;
    --text-soft: #9ba6b6;
    --text-faint: #6f7988;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --accent: #e09ebb;
    --accent-strong: #e09ebb;
    --accent-soft: rgba(224, 158, 187, 0.16);
    --accent-pale: rgba(224, 158, 187, 0.14);
    --sage: #87a17e;
    --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 22px 50px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 32px 72px rgba(0, 0, 0, 0.4);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --container: min(1160px, calc(100vw - 3rem));
    --font-body: "Sora", system-ui, sans-serif;
    --font-accent: "Instrument Serif", serif;
    --font-mono: "IBM Plex Mono", monospace;
}

.site-shell *,
.site-shell *::before,
.site-shell *::after {
    box-sizing: border-box;
}

.site-shell {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    color-scheme: dark;
    background:
        radial-gradient(
            circle at top left,
            rgba(222, 122, 71, 0.13),
            transparent 26%
        ),
        radial-gradient(
            circle at top right,
            rgba(117, 88, 167, 0.12),
            transparent 24%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(122, 143, 113, 0.12),
            transparent 28%
        ),
        linear-gradient(180deg, #0d1016 0%, var(--bg) 45%, #090b10 100%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 88%);
}

.site-shell img {
    display: block;
    max-width: 100%;
}

.site-shell a {
    color: inherit;
    text-decoration: none;
}

.site-shell button {
    font: inherit;
}

.site-shell :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.site-shell ::selection {
    background: rgba(224, 158, 187, 0.32);
}

.site-shell .container {
    width: var(--container);
    margin-inline: auto;
}

.site-shell .page-shell {
    position: relative;
    z-index: 1;
}

.site-shell .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-shell .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(8, 10, 14, 0.76);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        background 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.site-shell .site-nav[data-scrolled="true"] {
    background: rgba(10, 12, 17, 0.92);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.site-shell .nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-shell .site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.site-shell .site-brand img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.site-shell .site-brand-copy {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.site-shell .site-brand-name {
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.site-shell .site-brand-tag {
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

.site-shell .nav-shell {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.site-shell .nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-shell .nav-links a,
.site-shell .mobile-nav a,
.site-shell .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition:
        background 150ms ease,
        color 150ms ease,
        transform 150ms ease;
}

.site-shell .nav-links a:hover,
.site-shell .mobile-nav a:hover,
.site-shell .footer-links a:hover {
    /*background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px); */
    color: var(--text);
}

.site-shell .nav-cta,
.site-shell .mobile-nav-cta,
.site-shell .btn-primary,
.site-shell .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 2.95rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--accent-strong);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition:
        transform 150ms ease,
        box-shadow 150ms ease,
        background 150ms ease;
}

.site-shell .nav-cta:hover,
.site-shell .mobile-nav-cta:hover,
.site-shell .btn-primary:hover,
.site-shell .cta-btn:hover {
    transform: translateY(-1px);
    background: #ebb3cb;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.site-shell .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 2.95rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition:
        transform 150ms ease,
        border-color 150ms ease,
        background 150ms ease;
}

.site-shell .btn-secondary:hover {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.06);
}

.site-shell .nav-toggle {
    position: relative;
    display: none;
    width: 2.95rem;
    height: 2.95rem;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
}

.site-shell .nav-toggle-line {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.site-shell .nav-toggle-line:nth-child(1) {
    top: 17px;
}

.site-shell .nav-toggle-line:nth-child(2) {
    top: 23px;
}

.site-shell .nav-toggle-line:nth-child(3) {
    top: 29px;
}

.site-shell .site-nav[data-open="true"] .nav-toggle-line:nth-child(1) {
    transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.site-shell .site-nav[data-open="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.site-shell .site-nav[data-open="true"] .nav-toggle-line:nth-child(3) {
    transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

.site-shell .mobile-nav {
    display: none;
    padding-bottom: 0.4rem;
}

.site-shell .mobile-nav-inner {
    display: grid;
    gap: 0.45rem;
    padding-top: 0.85rem;
}

.site-shell .mobile-nav-inner a {
    min-height: 3rem;
    padding-inline: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.site-shell .mobile-nav-cta {
    margin-top: 0.35rem;
}

.site-shell .home-hero,
.site-shell .page-hero,
.site-shell .legal-page,
.site-shell #hero {
    position: relative;
}

.site-shell .home-hero {
    padding: 9.5rem 0 4rem;
}

.site-shell .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 2.5rem;
    align-items: center;
}

.site-shell .eyebrow,
.site-shell .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--accent-strong);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-shell .eyebrow::before,
.site-shell .section-label::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: 0.45;
}

.site-shell h1,
.site-shell h2,
.site-shell h3 {
    margin: 0;
    color: var(--text);
    letter-spacing: -0.045em;
}

.site-shell h1 {
    max-width: 11ch;
    font-size: clamp(3.1rem, 7vw, 5.4rem);
    font-weight: 700;
    line-height: 0.98;
}

.site-shell h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.02;
}

.site-shell h1 em,
.site-shell h2 em {
    color: var(--accent-strong);
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
}

.site-shell .hero-copy {
    display: grid;
    gap: 1.35rem;
}

.site-shell .hero-desc,
.site-shell .section-heading p,
.site-shell .project-desc,
.site-shell .feature-card p,
.site-shell .spotlight-desc,
.site-shell .footer-note,
.site-shell .legal-section p,
.site-shell .legal-section li {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.site-shell .hero-desc {
    max-width: 58ch;
}

.site-shell .hero-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.site-shell .hero-panel {
    justify-self: end;
    width: min(100%, 30rem);
}

.site-shell .spotlight-card,
.site-shell .project-card,
.site-shell .cta-panel,
.site-shell .metric-card {
    border: 1px solid var(--line);
    background: linear-gradient(
        180deg,
        rgba(20, 24, 32, 0.96),
        rgba(14, 17, 24, 0.92)
    );
    box-shadow: var(--shadow-md);
}

.site-shell .spotlight-card,
.site-shell .project-card,
.site-shell .cta-panel {
    border-radius: var(--radius-lg);
}

.site-shell .spotlight-card {
    display: block;
    padding: 1.75rem;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.site-shell .spotlight-card:hover,
.site-shell .project-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lg);
}

.site-shell .spotlight-label,
.site-shell .metric-label,
.site-shell .project-label,
.site-shell .tag,
.site-shell .card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-shell .spotlight-label,
.site-shell .metric-label,
.site-shell .project-label {
    padding-inline: 0;
    color: var(--text-faint);
    border-radius: 0;
    min-height: auto;
}

.site-shell .spotlight-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.9rem 0 1rem;
}

.site-shell .spotlight-icon,
.site-shell .project-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 22px;
    background: var(--accent-pale);
    overflow: hidden;
}

.site-shell .spotlight-icon {
    width: 60px;
    height: 60px;
    padding: 0.8rem;
}

.site-shell .spotlight-copy {
    min-width: 0;
    flex: 1;
    display: grid;
    gap: 0.2rem;
}

.site-shell .spotlight-title {
    font-size: 1.95rem;
    line-height: 1;
}

.site-shell .spotlight-meta {
    margin: 0;
    color: var(--text-faint);
    font-size: 0.92rem;
    line-height: 1.4;
}

.site-shell .spotlight-desc {
    margin: 0 0 1.1rem;
}

.site-shell .spotlight-link {
    color: var(--accent-strong);
    font-size: 0.9rem;
    font-weight: 600;
}

.site-shell .section {
    position: relative;
    padding: 5.5rem 0;
}

.site-shell .section-muted {
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-shell .section-heading {
    display: grid;
    gap: 1rem;
    max-width: 46rem;
    margin-bottom: 2.5rem;
}

.site-shell .workflow-section .section-label {
    color: var(--accent-strong);
}

.site-shell .workflow-section .section-label::before {
    background: var(--accent-strong);
}

.site-shell .workflow-section .section-heading {
    gap: 0.7rem;
    max-width: 40rem;
    margin-bottom: 2rem;
}

.site-shell .workflow-section .section-heading h2 {
    max-width: 13ch;
    line-height: 1.05;
}

.site-shell .workflow-section .section-heading p {
    max-width: 36rem;
    line-height: 1.62;
}

.site-shell .principles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.5rem;
}

.site-shell .feature-card {
    display: grid;
    gap: 0.8rem;
    min-width: 0;
    padding: 1.55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(
        180deg,
        rgba(20, 24, 32, 0.96),
        rgba(14, 17, 24, 0.92)
    );
    box-shadow: var(--shadow-sm);
}

.site-shell .feature-card-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.site-shell .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(224, 158, 187, 0.14);
    color: var(--accent-strong);
}

.site-shell .feature-icon svg {
    width: 1.08rem;
    height: 1.08rem;
}

.site-shell .feature-card h3 {
    margin: 0;
    font-size: 1.06rem;
    font-weight: 600;
    line-height: 1.18;
}

.site-shell .feature-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.58;
}

.site-shell .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.site-shell .project-card-link {
    display: block;
    height: 100%;
}

.site-shell .project-card {
    --project-accent: var(--accent-strong);
    --project-accent-rgb: 224, 158, 187;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    height: 100%;
    padding: 1.7rem;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.site-shell .project-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.site-shell .project-card-main {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
    flex: 1;
}

.site-shell .project-icon {
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.site-shell .project-icon-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.site-shell .project-copy {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.site-shell .project-body {
    display: grid;
}

.site-shell .project-title {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.1;
}

.site-shell .project-label {
    margin: 0;
    line-height: 1.35;
}

.site-shell .project-desc {
    margin: 0;
}

.site-shell .project-tag {
    border-color: rgba(var(--project-accent-rgb), 0.22);
    background: rgba(var(--project-accent-rgb), 0.14);
    color: var(--project-accent);
}

.site-shell .project-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.site-shell .project-arrow {
    color: var(--text-faint);
    font-size: 1.15rem;
    transition:
        transform 150ms ease,
        color 150ms ease;
}

.site-shell .project-card:hover .project-arrow {
    transform: translateX(4px);
    color: var(--project-accent);
}

.site-shell .project-card:hover .project-title {
    color: var(--project-accent);
}

.site-shell .tag,
.site-shell .card-tag {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
}

.site-shell .tag-pink {
    border-color: rgba(224, 158, 187, 0.18);
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.site-shell .page-hero {
    padding: 9.5rem 0 3.2rem;
}

.site-shell .page-hero h1 {
    max-width: 9ch;
    margin-top: 1rem;
}

.site-shell #projects-grid {
    padding-bottom: 5rem;
}

.site-shell .cta-panel {
    display: grid;
    justify-items: center;
    gap: 1rem;
    padding: 2.5rem;
    text-align: center;
}

.site-shell .cta-panel p {
    max-width: 38rem;
    margin: 0;
    color: var(--text-soft);
}

.site-shell .legal-page {
    padding: 9.5rem 0 5rem;
}

.site-shell .legal-page-container {
    max-width: 760px;
}

.site-shell .legal-header {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.site-shell .legal-header .eyebrow {
    margin: 0;
}

.site-shell .legal-intro {
    max-width: none;
    margin: 0;
}

.site-shell .legal-content {
    display: grid;
    gap: 2.4rem;
}

.site-shell .legal-section {
    display: grid;
    gap: 0.55rem;
}

.site-shell .legal-section h2 {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.08;
    margin-bottom: 0.15rem;
}

.site-shell .legal-section p,
.site-shell .legal-section li {
    margin: 0;
}

.site-shell .legal-section ul,
.site-shell .legal-section ol {
    padding-left: 1.25rem;
}

.site-shell .legal-link {
    color: var(--text);
    border-bottom: 1px solid var(--line);
    transition:
        color 150ms ease,
        border-color 150ms ease;
}

.site-shell .legal-link:hover {
    color: var(--accent-strong);
    border-bottom-color: var(--accent-strong);
}

.site-shell .error-404-page {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.site-shell .error-404-page .legal-page-container {
    width: 100%;
}

.site-shell .error-404-page .legal-header {
    justify-items: center;
    text-align: center;
}

.site-shell .error-404-page .eyebrow,
.site-shell .error-404-page .hero-actions {
    justify-content: center;
}

.site-shell .error-404-page .legal-intro {
    max-width: 36rem;
}

.site-shell .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.22;
    pointer-events: none;
}

.site-shell .glow-v {
    top: 7rem;
    right: 4rem;
    width: 17rem;
    height: 17rem;
    background: rgba(122, 143, 113, 0.28);
}

.site-shell .glow-p {
    left: 0;
    bottom: 2rem;
    width: 15rem;
    height: 15rem;
    background: rgba(222, 122, 71, 0.24);
}

.site-shell .site-footer {
    position: relative;
    z-index: 2;
    padding: 0 0 2.5rem;
}

.site-shell .footer-shell {
    display: grid;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.site-shell .footer-brand {
    flex-shrink: 0;
}

.site-shell .footer-note {
    max-width: 34rem;
    margin: 0;
}

.site-shell .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.site-shell .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.site-shell .footer-copy {
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-shell .reveal,
.site-shell .reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1024px) {
    .site-shell .hero-grid,
    .site-shell .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-shell .hero-grid {
        grid-template-columns: 1fr;
    }

    .site-shell .hero-copy,
    .site-shell .section-heading {
        max-width: 100%;
    }

    .site-shell .hero-panel {
        justify-self: start;
    }
}

@media (max-width: 900px) {
    .site-shell .nav-shell {
        display: none;
    }

    .site-shell .nav-toggle {
        display: inline-flex;
    }

    .site-shell .site-nav[data-open="true"] {
        background: rgba(10, 12, 17, 0.96);
        border-bottom-color: var(--line);
    }

    .site-shell .site-nav[data-open="true"] .mobile-nav {
        display: block;
    }

    .site-shell .home-hero,
    .site-shell .page-hero,
    .site-shell .legal-page,
    .site-shell #hero,
    .site-shell .section {
        padding-top: 7rem;
    }

    .site-shell .principles-grid,
    .site-shell .projects-grid {
        grid-template-columns: 1fr;
    }

    .site-shell .cta-panel {
        justify-items: start;
        text-align: left;
    }

    .site-shell .cta-panel .hero-actions {
        justify-content: flex-start;
    }

    .site-shell .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .site-shell .footer-brand {
        width: auto;
        justify-content: center;
    }

    .site-shell .footer-links {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .site-shell {
        --container: calc(100vw - 2rem);
    }

    .site-shell h1 {
        max-width: none;
        font-size: 2.8rem;
    }

    .site-shell h2 {
        font-size: 2rem;
    }

    .site-shell .hero-actions,
    .site-shell .cta-panel .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .site-shell .btn-primary,
    .site-shell .btn-secondary,
    .site-shell .cta-btn {
        width: 100%;
    }

    .site-shell .spotlight-card,
    .site-shell .project-card,
    .site-shell .feature-card,
    .site-shell .cta-panel {
        padding: 1.4rem;
    }

    .site-shell .spotlight-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-shell .project-card-header {
        align-items: flex-start;
        gap: 0.8rem;
    }

    .site-shell .project-card-main {
        gap: 0.75rem;
    }

    .site-shell .project-icon-img {
        width: 2.75rem;
        height: 2.75rem;
    }

    .site-shell .project-title {
        font-size: 1.35rem;
    }

    .site-shell .project-card-footer {
        display: none;
    }

    .site-shell .site-footer {
        padding-bottom: 1.75rem;
    }

    .site-shell .footer-shell {
        padding-top: 1.5rem;
    }

    .site-shell .footer-bottom {
        gap: 0.85rem;
    }

    .site-shell .footer-brand img {
        width: 38px;
        height: 38px;
    }

    .site-shell .footer-links {
        gap: 0.4rem 0.5rem;
        justify-content: center;
    }

    .site-shell .footer-links a {
        min-height: 2.35rem;
        padding: 0 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-shell .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .site-shell .nav-links a,
    .site-shell .mobile-nav a,
    .site-shell .footer-links a,
    .site-shell .nav-cta,
    .site-shell .mobile-nav-cta,
    .site-shell .btn-primary,
    .site-shell .btn-secondary,
    .site-shell .cta-btn,
    .site-shell .spotlight-card,
    .site-shell .project-card,
    .site-shell .feature-card,
    .site-shell .cta-panel,
    .site-shell .project-arrow {
        transition: none;
    }
}
