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

:root {
    --bg: #f7f6f2;
    --ink: #1a1814;
    --ink2: #4a4740;
    --ink3: #8a8580;
    --accent: #c8441a;
    --border: rgba(26,24,20,0.1);
    --radius: 3px;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
}

html, body { height: 100%; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Subtle dot grid */
    background-image: radial-gradient(circle, rgba(26,24,20,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* ── HEADER ── */
header {
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
}
.header-right {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink3);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.construction-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

/* ── MAIN ── */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
}

.center {
    max-width: 640px;
    width: 100%;
}

/* Eyebrow */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.1s;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--ink3);
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.2s;
}
h1 em {
    font-style: italic;
    color: var(--accent);
}

.tagline {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.35s;
}

/* ── CTA ── */
.cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.5s;
}

.btn-portfolio {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--bg);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s, gap 0.2s;
}
.btn-portfolio:hover {
    background: var(--accent);
    gap: 0.9rem;
}
.btn-portfolio svg {
    transition: transform 0.2s;
}
.btn-portfolio:hover svg {
    transform: translateX(2px);
}

.or-divider {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink3);
    letter-spacing: 0.08em;
}

.wip-note {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink3);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── STATUS STRIP ── */
.status-strip {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.65s;
}
.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--ink3);
}
.s-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.s-dot.green {
    background: #3dbf6e;
    box-shadow: 0 0 0 3px rgba(61,191,110,0.18);
    animation: pulse 2.5s ease-in-out infinite;
}
.s-dot.amber {
    background: #e8c84a;
    box-shadow: 0 0 0 3px rgba(232,200,74,0.18);
    animation: pulse-amber 2.5s ease-in-out infinite;
}
.s-dot.dim { background: var(--ink3); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(61,191,110,0.18); }
    50%       { box-shadow: 0 0 0 6px rgba(61,191,110,0.06); }
}
@keyframes pulse-amber {
    0%, 100% { box-shadow: 0 0 0 3px rgba(232,200,74,0.18); }
    50%       { box-shadow: 0 0 0 6px rgba(232,200,74,0.06); }
}

/* ── FOOTER ── */
footer {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
}
footer span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink3);
    letter-spacing: 0.06em;
}
footer a {
    color: var(--ink3);
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    header, footer { padding: 1.5rem 1.25rem; }
    main { padding: 2rem 1.25rem; }
    .status-strip { gap: 1rem; }
    .cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .or-divider { display: none; }
}