@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --purple: #5b2d8e;
  --purple-dark: #3b1a5c;
  --purple-deep: #1e0f33;
  --blue: #2563eb;
  --blue-soft: #3b82f6;
  --crimson: #e11d48;
  --bg:rgba(91, 45, 168, 0.92);

  --bg-soft: #15121f;
  --card: #1a1625;
  --border: rgba(255,255,255,0.08);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: white;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(233, 30, 99, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo img { height: 36px; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: white; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(91, 45, 142, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.05);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  background: radial-gradient(ellipse at top right, rgba(91,45,142,0.18), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.portrait-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

.portrait-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 6.5rem 0;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.9rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 45, 142, 0.5);
  box-shadow: 0 15px 30px -10px rgba(91, 45, 142, 0.25);
}

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Media Wall */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.media-card {
  aspect-ratio: 16/10;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple);
  box-shadow: 0 15px 30px -10px rgba(91, 45, 142, 0.35);
}

.media-card:hover img {
  transform: scale(1.05);
}

.media-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.media-card .title {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer a:hover { color: white; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4.5rem 0; }
}