:root {
  --ink: #15171c;
  --heading: #1a1c22;
  --body-text: #4b505b;
  --page-bg: #f4f2ec;
  --indigo: #3f51c4;
  --indigo-hover: #2c3aa8;
  --indigo-light: #6573e6;
  --indigo-lighter: #8b95f0;
  --glow: rgba(101, 115, 230, 0.28);
  --stripe-a: #20232b;
  --stripe-b: #272b34;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page-bg);
  font-family: 'Newsreader', serif;
  color: var(--heading);
}

.page {
  min-height: 100vh;
  padding-bottom: 90px;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

a { color: inherit; }

/* HERO */
.hero {
  background: var(--ink);
  color: #fff;
}

.hero-inner {
  padding: 30px clamp(24px, 5vw, 64px) 0;
}

.hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
}

.monogram {
  font: 800 17px 'Bricolage Grotesque', sans-serif;
}

.hero-nav {
  display: flex;
  gap: 28px;
  font: 700 11px 'Space Mono', monospace;
  letter-spacing: .12em;
}

.hero-nav a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: end;
}

.hero-copy {
  padding-bottom: 54px;
}

.kicker {
  font: 700 12px 'Space Mono', monospace;
  letter-spacing: .3em;
  color: var(--indigo-lighter);
  margin-bottom: 24px;
}

.hero-copy h1 {
  font: 800 clamp(64px, 8vw, 104px) / 0.9 'Bricolage Grotesque', sans-serif;
  letter-spacing: -.03em;
  margin: 0;
}

.hero-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  font: 600 13px 'Space Mono', monospace;
  color: rgba(255, 255, 255, .55);
}

.hero-contact .dot {
  color: var(--indigo-light);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 28%;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.divider {
  height: 6px;
  background: var(--indigo);
}

/* SECTIONS */
.section {
  scroll-margin-top: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 72px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.section-top {
  padding: 72px 0 64px;
  border-top: 1px solid rgba(0, 0, 0, .12);
  border-bottom: none;
}

.label {
  font: 700 12px 'Space Mono', monospace;
  letter-spacing: .2em;
  color: var(--indigo);
}

.lead {
  font: 500 clamp(26px, 3vw, 34px) / 1.28 'Newsreader', serif;
  letter-spacing: -.01em;
  color: var(--heading);
  margin: 0 0 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.body-text {
  font: 400 17px / 1.7 'Public Sans', sans-serif;
  color: var(--body-text);
  margin: 0;
}

/* STACK */
.stack-grid {
  display: grid;
  gap: 20px;
}

.stack-row.bordered {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 18px;
}

.stack-group {
  font: 600 14px 'Public Sans', sans-serif;
  color: var(--heading);
  margin-bottom: 6px;
}

.stack-values {
  font: 400 16px / 1.6 'Newsreader', serif;
  color: var(--body-text);
}

/* VIDEO CARD */
.vcard {
  cursor: pointer;
  align-self: start;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
  transition: border-color .25s ease;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .1);
  text-align: left;
  font: inherit;
  appearance: none;
}

.vcard:hover {
  border-color: rgba(63, 81, 196, .5);
}

.vcard:hover .vplay {
  transform: scale(1.08);
}

.vcard-small {
  margin-top: 10px;
  max-width: 300px;
}

.vthumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(135deg, var(--stripe-a), var(--stripe-a) 9px, var(--stripe-b) 9px, var(--stripe-b) 18px);
}

.vthumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vglow {
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 160px at 50% 38%, var(--glow), transparent 70%);
}

.vplay {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .4);
}

.vtriangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 4px;
}

.vfooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 15px;
  background: var(--ink);
  color: #fff;
}

.vlabel {
  font: 700 11px 'Space Mono', monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

.vduration {
  font: 600 11px 'Space Mono', monospace;
  color: var(--indigo-lighter);
}

/* CONTACT */
.contact {
  background: var(--ink);
  color: #fff;
}

.contact-inner {
  padding: 80px clamp(24px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.kicker-light {
  margin-bottom: 16px;
}

.contact h2 {
  font: 800 clamp(40px, 6vw, 60px) / 0.95 'Bricolage Grotesque', sans-serif;
  letter-spacing: -.02em;
  margin: 0;
}

.contact-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  font: 600 12px 'Space Mono', monospace;
  color: rgba(255, 255, 255, .5);
}

.contact-row .slash {
  color: rgba(255, 255, 255, .25);
}

.contact-cta {
  font: 600 14px 'Space Mono', monospace;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  padding: 16px 30px;
  border-radius: 999px;
}

/* STICKY BOTTOM NAV */
.bnav {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(21, 23, 28, .86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.bnav a {
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 999px;
  transition: .2s;
}

.bnav a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, .05);
}

.bnav-mono {
  font: 700 12px 'Space Mono', monospace;
  letter-spacing: .04em;
  color: #fff;
}

.bnav a:not(.bnav-mono):not(.bcta) {
  font: 500 13px 'Public Sans', sans-serif;
  color: rgba(255, 255, 255, .7);
}

.bcta {
  font: 600 13px 'Public Sans', sans-serif;
  color: var(--ink) !important;
  background: #fff;
  padding: 9px 18px !important;
}

.bnav a.bcta:hover {
  background: var(--indigo-hover) !important;
  color: #fff !important;
}

/* VIDEO LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(8, 9, 12, .82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  animation: lbFade .25s ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-dialog {
  position: relative;
  width: min(940px, 92vw);
  animation: lbPop .34s cubic-bezier(.2, .8, .2, 1);
}

.lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.lightbox-title {
  font: 700 12px 'Space Mono', monospace;
  letter-spacing: .18em;
  color: var(--indigo-lighter);
}

.lightbox-close {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font: 400 18px 'Public Sans', sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, .12);
}

.lightbox-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

@keyframes lbFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lbPop {
  from { opacity: 0; transform: scale(.92) translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* REVEAL ON SCROLL (progressive enhancement: hidden only once JS confirms it can reveal) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.js [data-reveal][data-shown] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-copy {
    padding-bottom: 24px;
  }

  .hero-photo {
    height: 320px;
    border-radius: 14px;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label br {
    display: none;
  }

  .label {
    display: flex;
    gap: 8px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .vcard {
    max-width: 340px;
  }

  .contact-inner {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-nav {
    gap: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .bnav {
    left: 12px;
    right: 12px;
    transform: none;
    justify-content: space-between;
    width: auto;
  }

  .bnav a {
    padding: 9px 10px;
  }

  .bnav a:not(.bnav-mono):not(.bcta) {
    font-size: 12px;
  }
}
