:root {
    --bg-color: #0F0F0F;
    --text-primary: #EAEAEA;
    --text-dim: #666666;
    --accent: #D48C9A; /* Logo pink */
    --line-color: #333333;

    --font-heading: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-heading);
    -webkit-font-smoothing: antialiased;
}

/* UTILITIES */
.mono-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

/* HERO */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid var(--line-color);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
}

.headline {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--text-dim);
    font-style: italic;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    border-top: 1px solid var(--line-color);
    padding-top: 1.5rem;
}

.intro-text {
    max-width: 400px;
    line-height: 1.5;
}

/* SPEC SHEET */
.spec-sheet-section {
    padding: 4rem 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.sub-headline {
    font-size: 2rem;
    text-transform: uppercase;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    padding: 2rem 0;
    border-bottom: 1px solid var(--line-color);
}

.spec-row:hover {
    background-color: #1a1a1a;
}

.spec-label {
    color: var(--accent);
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* WORK SECTION (FIXED LOCATION) */
.work-section {
    padding: 4rem 2rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    border: 1px solid #333;
    transition: border-color 0.3s ease;
}

.project-card:hover {
    border-color: var(--accent);
}

.card-image {
    aspect-ratio: 4 / 3;
    background-color: #222;
}

.placeholder-grey {
    background: repeating-linear-gradient(
        45deg,
        #1a1a1a,
        #1a1a1a 10px,
        #222 10px,
        #222 20px
    );
}

.card-info {
    padding: 1.5rem;
}

.card-info h3 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 768px) {
    .spec-row {
        grid-template-columns: 1fr;
    }

    .spec-value {
        font-size: 1.2rem;
    }
}
