@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@300;400;500&family=Inter:wght@300;400&display=swap');

:root {
  --bg: #0c0c0c;
  --fg: #efefef;
  --mid: #888888;
  --faint: #1e1e1e;
  --hover: #c8c8c8;
  --nav-height: 64px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

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

img { display: block; width: 100%; object-fit: cover; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--faint);
}

.nav-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  transition: color 0.2s;
}

.nav-logo:hover { color: var(--mid); }

.nav-logo.gradient {
  background: linear-gradient(90deg, #c94a1a, #e8821a, #f5b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

.nav-links a.active {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: linear-gradient(90deg, #c94a1a, #e8821a, #f5b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── PAGE WRAPPER ─── */
.page {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* ─── HOME ─── */
.home-hero {
  position: relative;
  height: calc(100vh - var(--nav-height));
  overflow: hidden;
  min-width: 1200px;
}

.home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.home-hero-text {
  position: absolute;
  bottom: 48px;
  left: 40px;
  right: 40px;
  z-index: 2;
}

.home-hero-text h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg);
  mix-blend-mode: normal;
}

.home-hero-text .subtitle {
  margin-top: 14px;
  margin-left: 6px;
  font-family: 'Archivo Black', 'Arial Unicode MS', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #c94a1a, #e8821a, #f5b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ─── ABOUT ─── */
.about-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px;
}

.page-eyebrow {
  font-size: 11px;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #c94a1a, #e8821a, #f5b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  padding: 12px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--faint);
}

.about-page h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.about-page p, .about-left p {
  font-size: 13px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 12px;
}

.about-page p strong, .about-left p strong {
  color: var(--fg);
  font-weight: 400;
}

.about-credits {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--faint);
}

.about-credits h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #c94a1a, #e8821a, #f5b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--faint);
}

.credits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

.credit-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--faint);
  gap: 16px;
}

.credit-row .credit-name {
  font-size: 13px;
  font-family: 'Archivo Black', sans-serif;
  background: linear-gradient(90deg, #c94a1a, #e8821a, #f5b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.credit-row .credit-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

/* ─── VIDEO ─── */
.video-page {
  padding: 20px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
  margin-top: 48px;
  align-items: start;
}

.video-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--faint);
  margin-bottom: 16px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  
}

.video-item:hover .video-thumb img {
  transform: scale(1.04);
  
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.play-btn::after {
  content: '';
  border-left: 18px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.video-item:hover .play-btn { opacity: 1; }

.video-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #c94a1a, #e8821a, #f5b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 0;
}

.video-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0;
}

/* ─── PHOTOS ─── */
.photos-page {
  padding: 20px 40px 80px;
}

.photo-tabs {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: #0c0c0c;
  display: flex;
  gap: 10px;
  padding: 12px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--faint);
}

.tab-btn {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.tab-btn:hover { color: var(--fg); }

.tab-btn.active {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  background: linear-gradient(90deg, #c94a1a, #e8821a, #f5b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tab-sep {
  font-size: 26px;
  font-family: 'Arial Unicode MS', 'Segoe UI', Arial, sans-serif;
  user-select: none;
  display: inline-block;
  position: relative;
  top: -2px;
  background: linear-gradient(90deg, #c94a1a, #e8821a, #f5b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-text .subtitle .cross {
  display: inline-block;
}

.photo-grid {
  columns: 3;
  column-gap: 8px;
}

.photo-grid-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  cursor: pointer;
}

.photo-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.photo-grid-item:hover img {
  transform: scale(1.04);
}

.photo-grid-item:hover img {
  transform: scale(1.03);
  
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  color: var(--mid);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--fg); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--mid);
  font-size: 32px;
  cursor: pointer;
  padding: 16px;
  transition: color 0.2s;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--fg); }

/* ─── CONTACT ─── */
.contact-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 40px;
}

.contact-page h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-page .contact-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-email-link {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--fg);
  border-bottom: 1px solid var(--mid);
  padding-bottom: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.contact-email-link:hover {
  color: var(--hover);
  border-color: var(--fg);
}

.contact-social {
  margin-top: 64px;
  display: flex;
  gap: 32px;
}

.contact-social a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}

.contact-social a:hover { color: var(--fg); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {

  /* NAV - fixed size, never changes */
  nav {
    padding: 0 16px;
    height: 56px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    font-size: 11px;
    white-space: nowrap;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links a {
    font-size: 9px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .nav-links a.active {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  /* HOME */
  .home-hero { min-width: 0; }
  .home-hero-text { left: 20px; right: 20px; bottom: 32px; }
  .home-hero-text h1 { font-size: 52px; }
  .home-hero-text .subtitle { font-size: 10px; letter-spacing: 0.1em; }

  /* ABOUT - show full page, 2 col credits */
  .about-wrap { grid-template-columns: 1fr 1fr; height: auto; min-width: 0 !important; min-height: 0; }
  .about-left { padding: 16px 16px 32px; overflow: visible; justify-content: flex-start; }
  .about-right { height: auto; position: relative; top: 0; overflow: hidden; }
  .about-right img { width: 100%; height: auto; margin: 0; }
  .about-credits { margin-top: 16px; }
  .credits-list { grid-template-columns: 1fr 1fr; gap: 8px 16px; }

  /* PHOTOS */
  .photos-page { padding: 16px 16px 60px; }
  .photo-tabs { gap: 12px; padding: 8px 0; flex-wrap: nowrap; overflow-x: auto; }
  .tab-btn { font-size: 9px; white-space: nowrap; }
  .tab-sep { font-size: 10px; }
  .photo-grid { columns: 2; column-gap: 6px; }

  /* VIDEO */
  .video-page { padding: 24px 16px; }
  .video-grid { grid-template-columns: 1fr; }

  /* CONTACT - stack photo then text */
  .contact-hero { min-width: 0 !important; height: auto; position: relative; }
  .contact-photo { position: relative; top: auto; right: auto; bottom: auto; width: 100%; height: 50vh; }
  .contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .contact-text { position: relative; bottom: auto; left: auto; padding: 32px 20px; gap: 24px; width: 100%; }
  .contact-email { font-size: 14px; }
  .contact-social-label { font-size: 12px; }
  .contact-icon-wrap .si { font-size: 18px; }
}

@media (max-width: 480px) {
  .photo-grid { columns: 1; }
}
