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

:root {
    --bg: #f9f7f4;
    --ink: #1a1a18;
    --mid: #7a7a72;
    --rule: #dedad4;
}

html, body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

@media (max-width: 600px) {
    .phone-break { display: none; }
}

.wrap {
    max-width: 560px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}

.wordmark {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: .5rem;
}

.rule {
    width: 40px;
    height: 1px;
    background: var(--rule);
    margin: 0 auto 2rem;
}

.tagline {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(0.525rem, 2.1vw, 0.75rem);
    color: var(--mid);
    line-height: 1;
    margin-bottom: 3rem;
}

.mission {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 2.5rem;
}

.status {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
}

.footer {
    position: fixed;
    bottom: 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rule);
}
.contact {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    margin-top: 1.5rem;
    display: inline-block;
}
.contact:hover {
    color: var(--ink);
}
