:root {
    --ink: #1c2320;
    --ink-soft: #4a5651;
    --paper: #f2f5f4;
    --pattern: rgba(28, 35, 32, 0.07);
    --accent: #2f5c4d;
    --font-display: "Bricolage Grotesque", Georgia, serif;
    --font-body: "Figtree", system-ui, sans-serif;
    --px: 0px;
    --py: 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-body);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

.pattern {
    position: fixed;
    inset: -20%;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at center, var(--pattern) 1.25px, transparent 1.35px),
        radial-gradient(circle at center, var(--pattern) 1.25px, transparent 1.35px);
    background-size: 28px 28px, 28px 28px;
    background-position: var(--px) var(--py), calc(var(--px) + 14px) calc(var(--py) + 14px);
    transform: rotate(-8deg) scale(1.15);
    opacity: 0.95;
}

.stage {
    position: relative;
    z-index: 1;
    height: 100%;
    width: min(42rem, calc(100% - 2.5rem));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 0;
    animation: enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.brand {
    margin: 0 0 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(3.25rem, 11vw, 5.75rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.copy {
    display: grid;
    gap: 0.9rem;
    max-width: 36rem;
}

.copy p {
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    line-height: 1.65;
}

.contact {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    font-style: normal;
    font-weight: 500;
}

.contact a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 35, 32, 0.25);
    padding-bottom: 0.1rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(28, 35, 32, 0.28);
}

@keyframes enter {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .sep {
        display: none;
    }

    .contact {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stage {
        animation: none;
    }
}
