/* ---------- Base ---------- */
:root {
  --bg: #ffffff;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e4e4e4;
  --nav-bg: #161616;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', 'Futura', 'Century Gothic', -apple-system, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Nav ---------- */
.site-nav {
  background: var(--nav-bg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.site-nav .brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-nav .brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav .brand-tag {
  font-size: 12px;
  color: #b7b7b7;
}

.site-nav .nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-links a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #eaeaea;
  transition: color 0.15s ease;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: #ffffff;
  border-bottom: 1px solid #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .site-nav .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    z-index: 20;
  }

  .site-nav .nav-links.open { display: flex; }

  .site-nav .nav-links a {
    padding: 14px 32px;
    border-bottom: 1px solid #2a2a2a;
  }

  .site-nav { position: relative; }
}

/* ---------- Hero (home page) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c0c0c;
}

.hero-bg-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg-frame video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 24px;
}

.hero-content .name {
  font-family: 'Oswald', 'Futura', 'Century Gothic', sans-serif;
  font-size: clamp(30px, 9vw, 112px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  white-space: nowrap;
}

.hero-content h1 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 32px;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 22px;
}

.hero-buttons .btn-outline {
  flex: 0 1 auto;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  padding: 12px 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.social-row {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.social-row a {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.social-row a.icon-imdb {
  font-size: 10px;
}

.social-row a.icon-email {
  font-size: 18px;
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    max-width: 260px;
  }
}

/* ---------- Page shell (all interior pages) ---------- */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.page-title {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  text-align: center;
}

/* ---------- Videos page ---------- */
main.video-reel {
  max-width: none;
  margin: 0;
  padding: 0;
}

.video-hero {
  position: relative;
  height: 92vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c0c0c;
}

.video-hero-media {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  will-change: transform;
}

.video-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.video-hero-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(32px, 7vw, 100px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  padding: 0 32px;
  margin: 0;
}

.video-hero-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  animation: video-hero-bounce 1.8s ease-in-out infinite;
}

@keyframes video-hero-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

.video-embed {
  width: 100%;
}

.video-embed.video-embed-last {
  margin-bottom: 0;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 700px) {
  .video-hero {
    height: 70vh;
  }
}

/* ---------- Credits page ---------- */
.credits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}

.credits-list li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .credits-list { grid-template-columns: 1fr; }
}

/* ---------- Resume page ---------- */
.resume-section {
  margin-bottom: 44px;
}

.resume-section h2 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.resume-entry {
  margin-bottom: 16px;
}

.resume-entry .title {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
}

.resume-entry .detail {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Press page ---------- */
.press-main {
  max-width: 1000px;
}

.press-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.press-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.press-image {
  flex: 0 0 auto;
  width: 240px;
}

.press-image img {
  display: block;
  width: 100%;
  height: auto;
}

.press-copy {
  flex: 1;
  min-width: 0;
}

.press-quote {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}

.press-quote a {
  color: var(--ink);
  text-decoration: none;
}

.press-quote a:hover {
  text-decoration: underline;
}

.press-source {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.press-item .read-more {
  display: inline-block;
  font-size: 13px;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .press-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .press-image {
    width: 100%;
    max-width: 260px;
  }

  .press-quote {
    font-size: 24px;
  }
}

/* ---------- Contact page ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .field { flex: 1; }

.field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #000;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
}

@media (max-width: 500px) {
  .form-row { flex-direction: column; }
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
