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

:root {
  --bg: #0a0a0a;
  --fg: #f5f5f0;
  --accent: #d6d0c4;
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 28px 40px;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  font-weight: 600;
  mix-blend-mode: difference;
}

.topbar .logo {
  color: inherit;
  text-decoration: none;
}

.page-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
  padding-top: 40px;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media iframe,
.hero-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 177.77vh; /* keep 16:9 cover fill */
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: none;
  pointer-events: none;
}

/* GIANTS, the showreel, and the workshop clip are interactive: play inline, no outbound link needed */
#giants-player,
#actor-player,
#workshop-player,
.hero-media video.interactive-player,
.hero-media iframe.interactive-player {
  pointer-events: auto;
}

#actor-player {
  cursor: pointer;
}

.sound-hint {
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.hero-media--placeholder {
  background: linear-gradient(160deg, #161616, #0a0a0a);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-text .role {
  margin-top: 0;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  letter-spacing: 0.35em;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-text .project {
  margin-top: 24px;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-style: italic;
  letter-spacing: 0.05em;
}

.hero-text .placeholder-note {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 34px;
  border: 1px solid var(--fg);
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.cta:hover {
  background: var(--fg);
  color: var(--bg);
}

.hidden-player {
  display: none;
}

.dissolve {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-overlay,
.hero-text {
  transition: opacity 0.8s ease;
}

#full-reel-player {
  pointer-events: auto;
}

.content-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--accent);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-block p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--accent);
  font-size: 0.9rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--fg) !important;
  margin-bottom: 16px !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(245, 245, 240, 0.3);
  color: var(--fg);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background: none;
  cursor: pointer;
}

@media (max-width: 720px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.site-footer {
  padding: 60px 40px;
  text-align: center;
  background: var(--bg);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.site-footer nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

.site-footer nav a:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.7rem;
  opacity: 0.4;
  letter-spacing: 0.08em;
}
