:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --accent: #950101; /* Crimson Red */
  --border: #262626;
  --text: #f5f5f5;
  --muted: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  background-color: var(--bg); 
  color: var(--text); 
  font-family: 'Inter', sans-serif; 
  line-height: 1.6;
}

/* Navigation Style */
nav {
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  z-index: 9999;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
}

.red-text { color: var(--accent); }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}

/* Hero Section */
.hero {
  padding: 180px 5% 100px;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.hero h1 em { color: var(--accent); font-style: italic; }

.hero p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Buttons */
.hero-btns { display: flex; gap: 20px; justify-content: center; }
.btn {
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
}

.btn:hover { opacity: 0.8; transform: translateY(-2px); }

/* Grid */
.container { padding: 80px 5%; max-width: 1400px; margin: 0 auto; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.card-link { text-decoration: none; color: inherit; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  height: 100%;
  transition: 0.3s;
}

.card:hover { border-color: var(--accent); }
.card h3 { color: var(--accent); font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 1rem; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.badge {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 1rem;
}

footer {
  padding: 60px 5%;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
}
