:root {
    --cream-light:  #FAF6EF;
    --teal:         #2C5752;
    --teal-light:   #3D7A6E;
    --teal-deep:    #1D4845;
    --sand:         #C4A77C;
    --text-soft:    #6A8080;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;
}

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

html, body { height: 100%; }

body {
    min-height: 100dvh;
    background-color: var(--cream-light);
    font-family: var(--font-body);
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(29, 72, 69, 0.11) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.wip-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wip-logo {
    width: clamp(280px, 46vw, 480px);
    display: block;
}

.wip-tagline {
    font-size: clamp(10px, 1.8vw, 12px);
    font-weight: 300;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-top: -1.4rem;
}

.wip-soon {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-soft);
    margin-top: 2.2rem;
    letter-spacing: 0.02em;
}

.wip-footer {
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
    text-align: center;
}

.wip-address {
    font-size: 10.5px;
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
    opacity: 0.75;
    white-space: nowrap;
}

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

@media (max-width: 480px) {
    .wip-tagline { margin-top: -0.8rem; letter-spacing: 0.22em; }
}

@media (prefers-reduced-motion: reduce) {
    .wip-wrap, .wip-tagline, .wip-soon, .wip-footer { animation: none; }
}
