/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #131313;
  --bg2:      #1a1a1a;
  --fg:       #ffffff;
  --muted:    #888888;
  --accent:   #C41E1E;
  --accent-d: #9e1818;
  --font:     'Cormorant Garamond', Georgia, serif;
  --sans:     'Montserrat', Arial, sans-serif;
  --gap:      2px;
  --nav-h:    64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav-links a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 0;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 60%, rgba(19,19,19,1) 100%);
  z-index: 1;
}

.hero > *:not(.hero-video):not(.hero-placeholder):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: clamp(360px, 52vw, 680px);
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  margin: 24px 0;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--font);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 40px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.2s;
  position: relative;
  z-index: 2;
}

.hero-cta:hover { background: var(--accent-d); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: var(--accent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; }
}

/* ─── SECTION LABEL ─────────────────────────────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 60px 40px 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #222;
}

/* ─── WORK GRID ─────────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  padding: 0 0 var(--gap);
}

.work-item {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.65);
}

.work-item:hover img { transform: scale(1.04); filter: brightness(0.45); }

.work-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(4px);
  transition: transform 0.3s ease;
}

.work-item:hover .work-info { transform: translateY(0); }

.work-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.work-cat {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.work-meta {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─── HERO AWARDS ───────────────────────────────────────────── */
.hero-awards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.award-tooltip--down {
  top: calc(100% + 12px);
  bottom: auto;
}

.award-tooltip--down::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: #333;
}

/* ─── AWARDS STRIP ─────────────────────────────────────────── */
.awards-strip {
  padding: 48px 40px 52px;
  background: var(--bg2);
  text-align: center;
  border-bottom: 1px solid #1e1e1e;
}

.awards-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.awards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.award-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.award-icon {
  width: 36px;
  height: 44px;
  color: var(--muted);
  transition: color 0.2s;
}

.award-icon--featured {
  color: var(--accent);
  width: 42px;
  height: 50px;
}

.award-item:hover .award-icon { color: var(--fg); }
.award-item:hover .award-icon--featured { color: var(--accent); filter: brightness(1.2); }

.award-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  border: 1px solid #333;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}

.award-tooltip strong {
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}

.award-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #333;
}

.award-item:hover .award-tooltip { opacity: 1; }

@media (max-width: 768px) {
  .awards-strip { padding: 40px 20px; }
  .awards-row { gap: 32px; }
}

/* ─── ABOUT STRIP ───────────────────────────────────────────── */
.about-strip {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-strip h2 {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.about-strip p {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: #ccc;
  margin-bottom: 16px;
}

/* ─── CONTACT SECTION ───────────────────────────────────────── */
.contact-section {
  background: var(--bg2);
  padding: 80px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-align: center;
}

.contact-section .contact-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #222;
  border: 1px solid #333;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group select { appearance: none; cursor: pointer; }

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

.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--accent-d); }

.contact-direct {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-direct a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.contact-direct a:hover { color: var(--accent); }

/* ─── PROJECT PAGE ──────────────────────────────────────────── */
.project-hero {
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--bg2);
  overflow: hidden;
  margin-top: var(--nav-h);
}

.project-hero img { filter: brightness(0.75); width: 100%; height: 100%; object-fit: cover; }

.project-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.project-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.project-title {
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.project-meta-row {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #222;
}

.project-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-value {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--fg);
}

.project-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg2);
  margin: 48px 0;
}

.project-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.credits-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #222;
}

@media (max-width: 768px) {
  .project-content { padding: 40px 20px 80px; }
  .project-meta-row { flex-wrap: wrap; gap: 20px; }
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  border-top: 1px solid #1e1e1e;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
}

footer p {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

footer a:hover { color: var(--accent); }

/* ─── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 20px; }
  .work-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-label { padding-left: 20px; padding-right: 20px; }
  .about-strip,
  .contact-section { padding-left: 20px; padding-right: 20px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}
