:root {
    --bg-color: #1a1f2c;
    --text-primary: #f1f1e6;
    --text-secondary: #789083;
    --glow: rgba(199, 127, 91, 0.15);
}

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

body {
    min-height: 100vh;
    overflow: hidden;
    background: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    position: relative;
}

.glow-background {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    right: -10%;
    bottom: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(120, 144, 131, 0.1) 0%, transparent 70%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.landing-shell {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(4.5rem, 12vh, 8rem) 1.5rem 2rem;
}

.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.75rem, 10vw, 9rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--text-primary);
    text-align: center;
    text-wrap: balance;
    text-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

p {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-align: center;
    text-transform: lowercase;
}
