:root {
  --bg: #f5f4f2;
  --text: #111;
  --muted: #666;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  padding: 120px 80px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
}

.hero span {
  font-weight: 400;
}

.subtitle {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-media video {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.section {
  padding: 160px 80px;
  max-width: 1400px;
  margin: auto;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.reel iframe {
  width: 100%;
  height: 500px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  font-size: 1.1rem;
}

article {
  max-width: 800px;
  margin-bottom: 60px;
}

article span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about {
  max-width: 700px;
  font-size: 1.2rem;
}

.contact {
  text-align: center;
}

.email {
  display: inline-block;
  margin: 40px 0;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--text);
}

.links a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
}