/* Portfolio page — dark cinematic, matches theme.css tokens */

:root {
  --bg: #0A0A08;
  --bg-card: #141410;
  --bg-card-alt: #1C1C17;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #FAFAF7;
  --text-muted: rgba(250, 250, 247, 0.5);
  --text-dim: rgba(250, 250, 247, 0.3);
  --border: rgba(250, 250, 247, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 8, 0.9);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
}

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

.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

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

/* HEADER */
.reel-header {
  text-align: center;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

.reel-header::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reel-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 20px;
}

.reel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 28px;
}

.reel-title .accent { color: var(--accent); }

.reel-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.7;
}

.reel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
}

/* REEL GRID */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.reel-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card-cafe { background: linear-gradient(135deg, #1a1209 0%, #0d0a05 100%); }
.card-stable { background: linear-gradient(135deg, #091a09 0%, #050d05 100%); }
.card-gym { background: linear-gradient(135deg, #09091a 0%, #05050d 100%); }

.reel-scene-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.scene-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.scene-niche {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* VIDEO */
.reel-video-wrap {
  position: relative;
  margin: 16px 16px 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #000;
}

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

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.video-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.video-format {
  font-size: 10px;
  color: var(--text-muted);
}

/* INFO */
.reel-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reel-scene-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1.1;
  color: var(--text);
}

.reel-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.reel-metrics {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* CTA */
.reel-cta {
  background: var(--bg-card);
  padding: 100px 48px;
  text-align: center;
}

.cta-inner { max-width: 700px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #0A0A08;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

/* FOOTER */
.footer {
  background: var(--bg);
  padding: 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-meta {
  font-size: 12px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .reel-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
  }

  .reel-video-wrap {
    aspect-ratio: 9 / 16;
    max-height: 480px;
  }

  .nav { padding: 16px 24px; }
  .reel-header { padding: 60px 24px 40px; }
  .reel-cta { padding: 60px 24px; }
  .footer { padding: 40px 24px; }

  .nav-links { display: none; }
}