@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,800;1,400&family=Inter:wght@300;600&display=swap');

:root {
    --bg: #fdf8f5;
    --text: #4a1d1d;
    --accent: #e29595;
    --border: rgba(74, 29, 29, 0.1);
}

body, html {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

#canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

nav {
    padding: 40px 6%;
    display: flex; justify-content: space-between; align-items: center;
    position: relative; z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 800; font-size: 1.8rem;
    letter-spacing: 2px; text-transform: uppercase;
}
.logo span { color: var(--accent); font-style: italic; font-weight: 400; }

.nav-cta {
    text-decoration: none; color: var(--bg);
    font-size: 0.75rem; font-weight: 600;
    padding: 14px 32px; letter-spacing: 1px;
    background: var(--text);
    text-transform: uppercase;
    transition: 0.4s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-2px); }

.hero {
    padding: 80px 6% 100px 6%;
    text-align: center;
    position: relative; z-index: 1;
}

.curated-tag {
    font-size: 0.7rem; color: var(--accent);
    text-transform: uppercase; letter-spacing: 4px;
    margin-bottom: 20px; display: block;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 400; line-height: 1.1;
    margin: 0 auto; max-width: 900px;
}

.hero-p {
    margin: 40px auto 0; font-size: 1.1rem;
    color: #7d6e6e; max-width: 500px;
    line-height: 1.8; font-weight: 300;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    border-top: 1px solid var(--border);
    position: relative; z-index: 1;
    background: white;
}

.card {
    padding: 100px 50px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    transition: 0.5s;
}
.card:hover { background: var(--bg); }

.ornament {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--accent);
    margin-bottom: 20px; display: block;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 400;
    margin-bottom: 20px;
}

p { color: #8a7a7a; font-size: 0.95rem; line-height: 1.7; margin: 0; }

footer {
    padding: 20px 6%;
    border-top: 1px solid var(--border);
    font-size: 0.7rem; color: #bcaaaa;
    position: relative; z-index: 1;
}

footer div { margin-bottom: 6px; }
