:root {
  --bg: #1c1c1e;
  --bg-alt: #242426;
  --text: #f5f5f5;
  --muted: #a0a0a3;
  --accent: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: rgba(28, 28, 30, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.nav-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-socials a {
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s ease;
  display: flex;
}

.nav-socials a:hover, .nav-socials a:focus-visible {
  opacity: 1;
}

.nav-socials svg {
  width: 18px;
  height: 18px;
}

.nav-socials a[aria-label="IMDb"] svg {
  width: 26px;
  height: 13px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

nav a:hover, nav a:focus-visible, nav a.active {
  opacity: 1;
}

@media (max-width: 700px) {
  nav {
    padding: 1rem 1rem;
    gap: 0.75rem;
  }
  .nav-links { gap: 1rem; }
  nav a { font-size: 0.75rem; }
  .nav-name { font-size: 0.85rem; letter-spacing: 0.1em; }
  .nav-socials { gap: 0.6rem; }
  .nav-socials svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  .nav-name { display: none; }
}

main {
  flex: 1;
}

section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

#showreel {
  padding: 9rem 2.5rem 5rem;
  min-height: auto;
}

.video-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.play-btn:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.08);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

#showreel .video-wrapper {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: none;
  aspect-ratio: 16 / 9;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

p {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.kit-list {
  list-style: none;
  max-width: 500px;
  width: 100%;
  text-align: left;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.kit-list li {
  padding: 0.85rem 0;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover, .social-links a:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.contact-email {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.contact-email a {
  color: var(--text);
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  background-color: var(--bg);
}
