:root {
    --white: #999999;
    --ivory: #bfbfff96;
    --mist: #ffff00;
    --ash: #bdbdb8;
    --slate: #000000;
    --graphite: #2a2a28;
    --ink: #141413;
    --line: rgba(20, 20, 19, 0.12);
    --shadow: 0 32px 60px rgba(20, 20, 19, 0.16);
    --glow: 0 12px 30px rgba(20, 20, 19, 0.08);
}
* { box-sizing: border-box; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(20, 20, 19, 0.08), transparent 45%),
        radial-gradient(circle at 85% 0%, rgba(20, 20, 19, 0.08), transparent 40%),
        linear-gradient(0deg, var(--white), var(--ivory));
    color: var(--ink);
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page {
    width: min(1160px, 92vw);
    margin: 0 auto;
}
.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(180deg, var(--white), var(--ivory));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 18px;
}
.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nav a { color: var(--graphite); }
.nav a:hover { color: var(--ink); }
.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 12px 0 40px;
    align-items: center;
    justify-items: center;
}
h1, h2, h3 {
    font-family: "Playfair Display", serif;
    margin: 0;
    color: var(--ink);
}
h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.2; }
p { color: var(--graphite); line-height: 1.7; }
.lede {
    font-size: 16px;
    margin: 16px auto 28px;
    max-width: 520px;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid var(--graphite);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
}
.btn-ghost:hover { background: rgba(20, 20, 19, 0.08); }
.hero .reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.is-hidden { display: none; }
.section {
    padding: 50px 0;
    border-top: 1px solid var(--line);
}
.section:first-of-type { border-top: none; }
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 24px;
}
.section-title h2 { padding-left: 3px; }
.section-title p {
    margin: 0;
    text-align: right;
    padding-top: 6px;
}
.newsletter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.newsletter input {
    flex: 1 1 240px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 16px;
    font-family: inherit;
    background: white;
}
footer {
    padding: 30px 0 300px;
    text-align: center;
    color: var(--slate);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeIn 0.9s ease forwards;
}
.reveal.delay-1 { animation-delay: 0.1s; }
.reveal.delay-2 { animation-delay: 0.2s; }
.reveal.delay-3 { animation-delay: 0.3s; }
.reveal.delay-4 { animation-delay: 0.4s; }
@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}
.sleep-fade {
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 2s ease;
    z-index: 40;
    display: grid;
    place-items: center;
    text-align: center;
}
.sleep-fade.active {
    opacity: 1;
    animation: sleepBreath 8s ease-in-out infinite;
    pointer-events: auto;
}
.sleep-fade h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(24px, 3.5vw, 40px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f2f2f2;
}
@keyframes sleepBreath {
    0%, 100% { background: #5a5a5a; }
    40% { background: #1c1c1c; }
    60% { background: #000; }
}
@media (max-width: 720px) {
    .topbar-inner { flex-direction: column; gap: 12px; }
    .nav { flex-wrap: wrap; justify-content: center; }
    .hero { padding-top: 40px; }
    .hero-visual { min-height: 300px; }
    .hero-banner { flex-direction: column; text-align: center; }
}
