:root {
    --bg: #f2f0eb; /* True Off-White */
    --bg-alt: #e9e7e2;
    --text: #1a1a1a;
    --accent: #ff3e00; /* Signature Color */
    --meta: #8c8a84;
    --border: #dfddd8;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    cursor: none; 
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* GLOBAL SUBTLE GRAIN */
.noise {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* CUSTOM CURSOR */
#cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--accent);
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#cursor-follower {
    position: fixed;
    width: 30px; height: 30px;
    border: 1px solid var(--text);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-hover #cursor-follower { 
    transform: translate(-50%, -50%) scale(1.8); 
    background: rgba(0,0,0,0.03);
    border-style: dashed;
}

/* NAVIGATION */
nav {
    position: absolute;
    top: 0; width: 100%;
    padding: 40px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    opacity: 0.7; 
    transition: opacity 0.3s var(--ease);
    display: block;
}

.logo-img:not([src]), .logo-img[src=""] {
    display: none;
}

.logo-img:hover {
    opacity: 1;
}

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { 
    text-decoration: none; 
    color: var(--text); 
    font-size: 0.95rem; 
    font-weight: 500;
    transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 0.5; }

/* HERO - INTERACTIVE TYPOGRAPHY */
.hero {
    height: 95vh;
    display: flex;
    align-items: center;
    padding: 0 6%;
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

.hero-title { 
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    max-width: 1100px;
    z-index: 2;
    perspective: 1000px;
}

.ransom { 
    display: inline-block; 
    font-size: clamp(2.5rem, 8vw, 7rem); 
    line-height: 1; 
    transition: transform 0.4s var(--ease), filter 0.3s ease;
    will-change: transform;
    user-select: none;
}

.ransom:hover {
    filter: drop-shadow(4px 4px 0px rgba(255, 62, 0, 0.15));
}

.w1 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; text-transform: uppercase; }
.w2 { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 900; }
.w3 { font-family: 'Special Elite', cursive; }
.w4 { font-family: 'Inter', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -0.05em; }
.w5 { font-family: 'Courier Prime', monospace; color: var(--meta); }
.w6 { font-family: 'Space Grotesk', sans-serif; font-weight: 300; text-transform: uppercase; }
.w7 { font-family: 'Playfair Display', serif; font-weight: 900; color: var(--accent); }

/* PROFESSIONAL SHOWCASE */
.showcase {
    background-color: #ffffff;
    padding: 120px 6%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 60px;
    border-top: 1px solid var(--border);
}

.work-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-thumbnail {
    width: 100%;
    aspect-ratio: 16/11; 
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.work-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1);
    transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
}

.work-item:hover img {
    transform: scale(1.02);
    filter: grayscale(0);
}

.work-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.work-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.work-category {
    font-size: 0.8rem;
    color: var(--meta);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.work-year {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    color: var(--meta);
}

/* FOOTER */
.main-footer {
    padding: 150px 6% 60px 6%;
    background-color: var(--bg);
    border-top: 1px solid var(--border);
}

.cta-text {
    font-size: clamp(3rem, 12vw, 10rem);
    line-height: 0.8;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 80px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.email-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 2px;
    transition: color 0.3s;
}
.email-link:hover { color: var(--accent); }

.footer-meta {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    color: var(--meta);
    text-transform: uppercase;
    text-align: right;
}

.social-links { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 15px;
    justify-content: flex-end;
}
.social-links a { color: var(--text); transition: color 0.3s; }
.social-links a:hover { color: var(--accent); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .showcase { grid-template-columns: 1fr; gap: 60px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 40px; }
    .footer-meta { text-align: left; }
    .social-links { justify-content: flex-start; }
}