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

:root {
    --bg: #0d0d0d;
    --text: #ffffff;
    --accent: #dc2626;
    --muted: #4b5563;
}

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;
    opacity: 0.6;
    pointer-events: none;
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 2.2rem;
    letter-spacing: 1px; text-transform: lowercase;
}
.logo span { color: var(--accent); font-style: italic; }

.nav-cta {
    text-decoration: none; color: var(--text);
    font-size: 0.7rem; font-weight: 600;
    padding: 12px 28px; border: 1px solid var(--accent);
    text-transform: uppercase; letter-spacing: 2px;
    transition: 0.4s;
}
.nav-cta:hover { background: var(--accent); color: white; box-shadow: 0 0 20px rgba(220, 38, 38, 0.4); }

.hero {
    height: 70vh;
    display: flex; flex-direction: column;
    justify-content: center; padding: 0 6%;
    position: relative; z-index: 1;
}

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

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 700; line-height: 0.85;
    margin: 0; letter-spacing: -2px;
}

.hero-p {
    margin-top: 40px; font-size: 1.2rem;
    color: #9ca3af; max-width: 480px;
    line-height: 1.6; font-weight: 300;
}

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

.card {
    padding: 80px 6%;
    background: var(--bg);
    border-radius: 0;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
}
.card:hover { background: rgba(220, 38, 38, 0.05); }

.circle-indicator {
    width: 10px; height: 10px;
    border-radius: 50%; background: var(--accent);
    margin-bottom: 30px;
    box-shadow: 0 0 10px var(--accent);
}

h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

p { color: #6b7280; font-size: 1rem; line-height: 1.6; margin: 0; }

footer {
    padding: 20px 6%;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.65rem; color: #4b5563;
    letter-spacing: 2px; text-transform: uppercase;
    position: relative; z-index: 1;
}

footer div { margin-bottom: 6px; }
