:root {
    --bg: #0f0f0f;
    --accent: #d4c5b9;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Glass Navigation */
.glass-nav-container {
    position: fixed;
    top: 20px;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.glass-nav {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    padding: 12px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 20px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--text-main); }

.nav-cta {
    background: var(--text-main);
    color: var(--bg) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero Section */
.hero-minimal {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0f0f0f 100%);
}

.reveal-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 11px;
    margin-bottom: 20px;
    display: block;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

h1 em { font-style: italic; font-weight: 400; color: var(--accent); }

p {
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 16px;
    font-weight: 300;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    padding-bottom: 100px;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.main-feature { grid-column: span 2; background: var(--accent); color: var(--bg); }
.main-feature h3 { font-size: 32px; font-family: 'Playfair Display', serif; }

.photo-slot {
    grid-column: span 1;
    background: url('https://images.unsplash.com/photo-1518191775782-454721c51877?auto=format&fit=crop&w=400&q=80');
    background-size: cover;
}

.stat-box { align-items: center; justify-content: center; text-align: center; }
.big-num { font-size: 50px; font-family: 'Playfair Display', serif; color: var(--accent); }

.text-box { grid-column: span 2; }

/* Footer */
.minimal-footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 12px;
    text-transform: uppercase;
}

.social-links a {
    color: #444;
    text-decoration: none;
    margin-left: 20px;
}