/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, video, iframe { display: block; max-width: 100%; }

:root {
  --bg: #000;
  --fg: #fff;
  --muted: #999;
  --line: #1a1a1a;
  --maxw: 1100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "urw-din", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .6; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  font-size: 15px;
}
.nav__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ---------- Hero (muted looping showreel) ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh; /* iOS Safari: stable height, no URL-bar jump */
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  color: #fff;
  z-index: 2;
  animation: bounce 2s infinite;
  text-shadow: 0 2px 6px rgba(0,0,0,.5);
}
.hero__label {
  position: absolute;
  right: 48px;
  bottom: 24px;
  z-index: 3;
  text-align: right;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  animation: heroLabelIn 0.9s ease-out 0.5s forwards;
}
.hero__label-name {
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 31px);
  letter-spacing: 0.05em;
  line-height: 1;
}
.hero__label-role {
  margin-top: 3px;
  margin-right: 5px;
  font-weight: 300;
  font-size: clamp(11px, 1.05vw, 14px);
  letter-spacing: 0.28em;
  opacity: 0.95;
}

@keyframes heroLabelIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 3;
  pointer-events: none;
}
.hero__progress-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: none;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Section common ---------- */
section { padding: 120px 0; }
.section__title {
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin: 0 0 56px;
  text-align: center;
}

/* ---------- Showreel (YouTube embed, large) ---------- */
.showreel {
  background: #000;
  border-top: 1px solid var(--line);
}
.showreel__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border: 1px solid var(--line);
}
.showreel__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- About ---------- */
.about { background: #000; border-top: 1px solid var(--line); }
.about .container {
  max-width: none;
  padding: 0 48px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__media { width: 100%; }
.about__gif {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  background: transparent;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.about__copy { display: flex; flex-direction: column; gap: 20px; }
.about__title {
  margin: 0 0 4px;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-align: left;
}
.about__text {
  margin: 0;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: #b0b0b0;
  text-align: left;
}

/* ---------- Contact ---------- */
.contact {
  background: #000;
  border-top: 1px solid var(--line);
  padding: 56px 0 64px;
}
.contact .section__title { margin-bottom: 32px; }
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
  align-items: flex-start;
}
.contact__list li { margin: 0; padding: 0; border: 0; width: 100%; }
.contact__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.contact__icon {
  width: 28px;
  height: 28px;
  color: #fff;
  flex-shrink: 0;
}
.contact__value {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0;
  line-height: 1.35;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.footer {
  padding: 32px 0 48px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  section { padding: 72px 0; }
  .section__title { margin-bottom: 36px; }
  .hero { min-height: 0; }

  .nav__inner {
    padding: 10px 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .hero__label { right: 20px; bottom: 18px; }
  .nav__avatar { width: 28px; height: 28px; }
  .nav__links { gap: 16px; font-size: 12px; }
  .nav__brand span { display: none; }

  .about .container { padding: 0 20px; }
  .about__grid { grid-template-columns: 1fr; gap: 24px; }

  .contact { padding: 48px 0 56px; }
  .contact .section__title { margin-bottom: 24px; }
  .contact__list { gap: 14px; }
  .contact__icon { width: 22px; height: 22px; }
  .contact__value { font-size: 11px; letter-spacing: 0; }
}

/* Narrow phones: stack contacts vertically so the email never wraps */
@media (max-width: 520px) {
  .contact__list {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .contact__list a { gap: 8px; }
}

@media (max-width: 380px) {
  .nav__links { gap: 12px; font-size: 11px; }
  .contact__icon { width: 22px; height: 22px; }
}
