/* miris.one - The One Meeting */

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

body {
    background-color: #FAFAF8;
    overflow-x: hidden;
}

.the-name {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #FAFAF8;
}

.name {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #1A1A18;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0;
    animation: nameReveal 3s ease-in forwards;
}

@keyframes nameReveal {
    to { opacity: 1; }
}

.the-void {
    min-height: 100vh;
    background: #FAFAF8;
}

.the-statement {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #FAFAF8;
    opacity: 0;
    transition: opacity 2s ease;
}

.the-statement.visible {
    opacity: 1;
}

.statement-inner {
    text-align: center;
    max-width: 560px;
    padding: 0 24px;
}

.mission {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #3A3A38;
    line-height: 1.9;
    margin-bottom: 40px;
}

.values {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.value {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: #8A8A88;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.bar {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: #D0D0CE;
    margin: 0 16px;
    vertical-align: middle;
}

.contact {
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.7rem, 1.1vw, 0.8rem);
    color: #8A8A88;
    letter-spacing: 0.05em;
}

.the-breath {
    min-height: 100vh;
    background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
}
