:root {
  --bg: #f4f1ec;
  --bg-deep: #ece8e0;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --muted: #6b6862;
  --accent: #ff3b1f;
  --line: #1a1a1a;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.015) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

.serif { font-family: 'Fraunces', Georgia, serif; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(244, 241, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

nav.scrolled { border-bottom-color: rgba(17,17,17,0.08); }

.nav-mark {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.03em;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
}

.nav-mark span { color: var(--accent); }

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

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 0;
  font-size: 11px !important;
}

.nav-cta::after { display: none; }

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 40px 60px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}

.hero-text { position: relative; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--ink);
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 40px;
}

.hero-title .l1 { display: block; }
.hero-title .l2 {
  display: block;
  font-style: italic;
  font-weight: 400;
  margin-left: 0.8em;
}
.hero-title .l3 {
  display: block;
  font-weight: 700;
  text-align: right;
}

.hero-title .ampersand {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(17,17,17,0.15);
}

.meta-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2px;
}

.hero-image-wrap {
  position: relative;
  height: 78vh;
  min-height: 600px;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('/assets/portrait.jpeg');
  background-size: cover;
  background-position: center 20%;
  filter: contrast(1.05) saturate(0.95);
}

.hero-image-frame {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--ink);
  z-index: -1;
}

.hero-image-tag {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: var(--accent);
  color: white;
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-corner {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}

.hero-corner.tr { top: 100px; right: 40px; }
.hero-corner.bl {
  bottom: 30px;
  left: 40px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.marquee-track {
  display: inline-block;
  animation: scroll 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.marquee-track span {
  margin: 0 28px;
  color: var(--accent);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ INTRO BLOCK ============ */
.intro {
  padding: 140px 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 12px;
  position: relative;
}

.section-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.intro-body {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.intro-body em {
  font-style: italic;
  color: var(--accent);
}

.intro-body strong { font-weight: 600; }

/* ============ HOW I WORK ============ */
.work {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.work::before {
  content: 'METHOD';
  position: absolute;
  top: 40px;
  right: -20px;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(180px, 22vw, 380px);
  font-style: italic;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}

.work-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 40px;
}

.work-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 720px;
}

.work-header h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.work-card {
  padding: 48px 32px 56px;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
  transition: background 0.3s;
}

.work-card:last-child { border-right: none; }

.work-card:hover { background: rgba(255,255,255,0.02); }

.work-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

.work-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.work-card h3 em {
  font-style: italic;
  color: var(--accent);
}

.work-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.work-card p em {
  font-style: italic;
  color: var(--accent);
}

/* ============ ABOUT ============ */
.about {
  padding: 160px 40px 80px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}

.about-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: end;
}

.about-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(60px, 10vw, 160px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.about-title .a1 { display: block; }
.about-title .a2 {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin-left: 0.4em;
}

.about-intro {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
  padding-bottom: 12px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 16px;
  margin-bottom: 120px;
}

.ph {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.ph-family {
  grid-column: 1 / 6;
  grid-row: 1 / 4;
  background-image: url('/assets/family.jpeg');
}

.ph-dj1 {
  grid-column: 6 / 10;
  grid-row: 1 / 4;
  background-image: url('/assets/dj-decks.jpeg');
}

.ph-dj2 {
  grid-column: 10 / 13;
  grid-row: 1 / 4;
  background-image: url('/assets/dj-headphones.jpeg');
}

.ph-bf1 {
  grid-column: 1 / 7;
  grid-row: 4 / 8;
  background-image: url('/assets/bendfilm-podium.jpeg');
  background-position: center 25%;
}

.ph-bf2 {
  grid-column: 7 / 13;
  grid-row: 4 / 8;
  background-image: url('/assets/bendfilm-pair.jpeg');
  background-position: center 30%;
}

/* ============ ABOUT NARRATIVE ============ */
.narrative {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 120px;
}

.narrative-side {
  position: sticky;
  top: 120px;
  align-self: start;
}

.narrative-side h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 16px;
}

.narrative-side h3 em {
  font-style: italic;
  color: var(--accent);
}

.narrative-body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 640px;
}

.narrative-body p:first-child::first-letter {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 76px;
  float: left;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--accent);
}

.narrative-body strong {
  font-weight: 600;
  color: var(--ink);
}

.narrative-body em {
  font-style: italic;
  color: var(--ink);
}

/* ============ VIDEO ============ */
.video-section {
  padding: 100px 40px 140px;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.video-header h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.video-header h3 em {
  font-style: italic;
  color: var(--accent);
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ CTA ============ */
.cta {
  background: var(--accent);
  color: var(--bg);
  padding: 120px 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--bg);
  max-width: 1100px;
}

.cta h2 em {
  font-style: italic;
  font-weight: 400;
}

.cta-row {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--bg);
  border: 1px solid var(--bg);
}

.cta-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 60px 40px 32px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}

.footer-brand h4 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

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

.footer-base {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border: 1px solid var(--ink);
    align-items: flex-start;
    min-width: 200px;
  }
  
  .nav-links.show { display: flex; }
  
  .nav-toggle { display: flex; }
  
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 20px 40px;
    gap: 40px;
  }
  .hero-image-wrap { height: 60vh; min-height: 400px; }
  .hero-corner.tr, .hero-corner.bl { display: none; }
  
  .intro {
    grid-template-columns: 1fr;
    padding: 80px 20px;
    gap: 32px;
  }
  
  .work { padding: 80px 20px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { border-right: none; }
  
  .about { padding: 100px 20px 60px; }
  .about-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  
  .photo-grid {
    grid-auto-rows: 60px;
    gap: 10px;
    margin-bottom: 80px;
  }
  
  .narrative {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .narrative-side { position: static; }
  
  .video-section { padding: 60px 20px 80px; }
  
  .cta { padding: 80px 20px; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .cta-tag { text-align: left; }
  
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-base { flex-direction: column; gap: 8px; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: none; }
