/* ===== Design System ===== */
:root {
    --bg: #fafaf8;
    --bg-alt: #f2f1ed;
    --surface: #fefdfb;
    --border: #e8e6e1;
    --border-light: #f0eeea;
    --text: #1a1a1a;
    --text-secondary: #6b6b6b;
    --text-tertiary: #7a7a7a;
    --accent: #1a1a1a;
    --accent-soft: #f5f4f0;
    --green: #22c55e;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* GPU layer promotion for animated elements */
.nav,
.mobile-menu,
.nav-toggle span {
    transform: translateZ(0);
    backface-visibility: hidden;
}

::selection {
    background: var(--text);
    color: var(--bg);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; }

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ===== Skip Link ===== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--text);
    color: var(--bg);
    font-size: 0.85rem;
    font-weight: 500;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Custom Cursor ===== */
.cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--text);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    will-change: transform;
    transition: transform 0.25s var(--ease), opacity 0.25s;
}

.cursor-dot.hover {
    transform: scale(4);
    opacity: 0.15;
}

@media (pointer: coarse) {
    .cursor-dot { display: none; }
}

/* ===== Nav ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
    transition: padding 0.4s var(--ease), background-color 0.4s var(--ease), border-color 0.3s;
    will-change: padding, background-color;
}

.nav.scrolled {
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--text);
    color: var(--bg);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s var(--ease);
}

.nav-cta:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: 0.3s var(--ease);
}

.nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text);
    transition: opacity 0.2s;
}

.mobile-menu a:hover {
    opacity: 0.5;
}

/* ===== Hero ===== */
.hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 0 0;
    position: relative;
    overflow: hidden;
}

@supports not (min-height: 100dvh) {
    .hero { min-height: 100vh; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 48px;
}

.hero h1 .line {
    display: block;
}

.hero h1 em {
    font-style: italic;
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
}

.hero-sub {
    max-width: 440px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg);
    background: var(--text);
    padding: 14px 32px;
    border-radius: 50px;
    white-space: nowrap;
    transition: 0.3s var(--ease);
    flex-shrink: 0;
}

.hero-cta-btn:hover {
    opacity: 0.85;
    gap: 14px;
    transform: translateY(-1px);
}

/* Marquee */
.hero-marquee {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-tertiary);
}

.marquee-track .sep {
    color: var(--border);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Work ===== */
.work {
    padding: 120px 0 0;
}

.section-intro {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 64px;
}

.section-num {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
}

.section-intro h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
}

/* Project rows */
.project-showcase {
    display: flex;
    flex-direction: column;
}

.project {
    border-top: 1px solid var(--border);
    padding: 64px 0;
    position: relative;
}

.js .project {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .project.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.project-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.project-num {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: block;
}

.project-meta h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.project-meta p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 380px;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    background: var(--accent-soft);
    padding: 6px 14px;
    border-radius: 50px;
}

.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--text);
    padding-bottom: 2px;
    transition: 0.3s var(--ease);
}

.inline-cta:hover {
    gap: 12px;
}

/* Browser mockup */
.visual-browser {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    will-change: transform;
}

a.project:hover .visual-browser {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 24px 80px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.04);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg);
}

.bar-dots {
    display: flex;
    gap: 6px;
}

.bar-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
}

.bar-url {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    background: var(--surface);
    padding: 5px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
}

.browser-body {
    min-height: 300px;
}

/* CP Preview — real hero photo */
.cp-preview {
    height: 320px;
    background: url('cp-hero.webp') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.cp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(30,61,51,0.55) 0%,
        rgba(30,61,51,0.3) 35%,
        rgba(0,0,0,0.15) 60%,
        rgba(30,61,51,0.6) 100%);
    display: flex;
    flex-direction: column;
}

.cp-nav-mock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.cp-logo {
    font-family: 'Instrument Serif', serif;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.01em;
}

.cp-links {
    font-size: 0.42rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
}

.cp-book-btn {
    background: #C4956A;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.4rem;
}

.cp-hero-mock {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 0 24px;
}

.cp-hero-mock small {
    font-size: 0.42rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #D4AD8A;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 3px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.cp-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem;
    color: white;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cp-title strong {
    color: #D4AD8A;
    font-weight: 400;
}

.cp-subtitle {
    font-size: 0.48rem;
    color: rgba(255,255,255,0.8);
    max-width: 280px;
    line-height: 1.5;
}

.cp-ctas {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.cp-btn-primary {
    background: #C4956A;
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.44rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(196,149,106,0.4);
}

.cp-btn-secondary {
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.44rem;
    border: 1px solid rgba(255,255,255,0.25);
}

/* Placeholder */
.visual-placeholder {
    height: 300px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
}

.visual-placeholder span {
    font-family: 'Instrument Serif', serif;
    font-size: 4rem;
    color: var(--border);
}

.project-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--text);
    transition: width 0.6s var(--ease);
}

a.project:hover .project-hover-line {
    width: 100%;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;
    align-items: start;
}

.js .about-text {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.js .about-text.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.about-text h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.js .about-details {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.6s var(--ease) 0.12s, transform 0.6s var(--ease) 0.12s;
}

.js .about-details.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.detail-group h4 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.detail-group li {
    font-size: 0.93rem;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
}

.detail-group li:last-child {
    border-bottom: none;
}

.detail-group p {
    font-size: 0.93rem;
    color: var(--text);
}

.avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.avail-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.js .contact-left {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.js .contact-left.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 24px;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.js .contact-right {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.6s var(--ease) 0.1s, transform 0.6s var(--ease) 0.1s;
}

.js .contact-right.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: 0.3s var(--ease);
}

.contact-link:first-child {
    border-top: 1px solid var(--border);
}

.contact-link:hover {
    transform: translateX(12px);
}

.contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    width: 80px;
    flex-shrink: 0;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.contact-link svg {
    color: var(--text-tertiary);
    transition: 0.3s var(--ease);
    flex-shrink: 0;
}

.contact-link:hover svg {
    color: var(--text);
    transform: translate(3px, -3px);
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy, .footer-loc {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }

    .project-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-meta h3 {
        font-size: 2.2rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    /* Hero */
    .hero {
        padding: 104px 0 0;
        min-height: auto;
    }

    .hero-eyebrow {
        margin-bottom: 24px;
        font-size: 0.78rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 28px;
        letter-spacing: -0.02em;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding-bottom: 32px;
    }

    .hero-sub {
        font-size: 0.92rem;
        max-width: 100%;
        line-height: 1.7;
    }

    .hero-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 0.92rem;
    }

    .hero-marquee {
        padding: 16px 0;
    }

    .marquee-track span {
        font-size: 0.7rem;
    }

    /* Section intros */
    .section-intro {
        margin-bottom: 32px;
    }

    .section-intro h2 {
        font-size: 1.25rem;
    }

    /* Work */
    .work {
        padding: 56px 0 0;
    }

    .project {
        padding: 32px 0;
    }

    .project-meta h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .project-meta p {
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .project-tags {
        gap: 6px;
        margin-bottom: 8px;
    }

    .project-tags span {
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .project-inner {
        gap: 24px;
    }

    .project-num {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    /* Browser mockup compact on mobile */
    .browser-bar {
        padding: 10px 14px;
    }

    .bar-dots span {
        width: 7px;
        height: 7px;
    }

    .bar-url {
        font-size: 0.62rem;
        padding: 4px 10px;
    }

    .browser-body {
        min-height: 160px;
    }

    .cp-preview {
        height: 180px;
    }

    .cp-nav-mock {
        padding: 8px 12px;
    }

    .cp-logo {
        font-size: 0.5rem;
    }

    .cp-links {
        display: none;
    }

    .cp-title {
        font-size: 0.95rem;
    }

    .cp-hero-mock small {
        font-size: 0.36rem;
        padding: 2px 8px;
    }

    .cp-hero-mock {
        gap: 5px;
    }

    .cp-subtitle {
        display: none;
    }

    .cp-ctas {
        gap: 5px;
    }

    .cp-btn-primary,
    .cp-btn-secondary {
        font-size: 0.38rem;
        padding: 3px 10px;
    }

    .visual-placeholder {
        height: 100px;
    }

    .visual-placeholder span {
        font-size: 2rem;
    }

    .inline-cta {
        font-size: 0.88rem;
    }

    .next-project .project-meta h3 {
        font-size: 1.35rem;
    }

    /* About */
    .about {
        padding: 56px 0;
    }

    .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 16px;
        line-height: 1.35;
    }

    .about-text p {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .about-layout {
        gap: 40px;
    }

    .about-details {
        gap: 24px;
    }

    .detail-group h4 {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .detail-group li {
        font-size: 0.88rem;
        padding: 7px 0;
    }

    .detail-group p {
        font-size: 0.88rem;
    }

    .avail-badge {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact {
        padding: 56px 0;
    }

    .contact-desc {
        font-size: 0.92rem;
        margin-top: 16px;
        line-height: 1.7;
    }

    .contact-link {
        padding: 24px 0;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .contact-link svg {
        display: none;
    }

    .contact-label {
        width: auto;
    }

    .contact-value {
        font-size: 1rem;
        font-weight: 600;
        overflow-wrap: break-word;
        word-break: normal;
    }

    /* Mobile menu */
    .mobile-menu a {
        font-size: 2rem;
    }

    /* Footer */
    .footer {
        padding: 32px 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer-inner .logo {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .footer-copy, .footer-loc {
        font-size: 0.75rem;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .project-meta h3 {
        font-size: 1.45rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .contact-value {
        font-size: 0.92rem;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .js .project,
    .js .about-text,
    .js .about-details,
    .js .contact-left,
    .js .contact-right {
        opacity: 1;
        transform: none;
    }

    .cursor-dot {
        display: none;
    }
}

/* ===== Print ===== */
@media print {
    .nav, .cursor-dot, .mobile-menu, .hero-marquee, .project-hover-line {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 32px 0;
    }

    .js .project,
    .js .about-text,
    .js .about-details,
    .js .contact-left,
    .js .contact-right {
        opacity: 1;
        transform: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }
}
