:root {
  --accent: #B4502E;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #0E0E0E;
  color: #15130F;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: #15130F; color: #F3EFE7; }

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

/* ============ SHELL ============ */

.shell {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #F3EFE7;
}

/* ============ FIXED PHOTO PANEL ============ */

.photo {
  position: relative;
  flex: 0 0 44%;
  width: 44%;
  height: 100%;
  overflow: hidden;
  background: #0E0E0E;
}

.photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.34) 0%,
    rgba(14, 14, 14, 0) 26%,
    rgba(14, 14, 14, 0) 50%,
    rgba(14, 14, 14, 0.82) 100%
  );
}

.photo__name {
  position: absolute;
  left: clamp(26px, 3.4vw, 48px);
  right: clamp(26px, 3.4vw, 48px);
  bottom: clamp(34px, 4vw, 56px);
}

.photo__name h1 {
  margin: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 4.4vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.018em;
  color: #F3EFE7;
}

.photo__rule {
  margin-top: 18px;
  height: 1px;
  width: 46px;
  background: rgba(243, 239, 231, 0.4);
}

.photo__name p {
  margin: 18px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(243, 239, 231, 0.82);
  max-width: 340px;
  font-weight: 400;
}

/* ============ SCROLLING BIO ============ */

.scroll {
  position: relative;
  flex: 1 1 56%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.scroll::-webkit-scrollbar { width: 9px; }
.scroll::-webkit-scrollbar-track { background: transparent; }
.scroll::-webkit-scrollbar-thumb {
  background: rgba(21, 19, 15, 0.16);
  border-radius: 20px;
  border: 3px solid #ffffff;
}
.scroll::-webkit-scrollbar-thumb:hover { background: rgba(21, 19, 15, 0.3); }

.dots {
  position: fixed;
  right: clamp(16px, 2vw, 38px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(21, 19, 15, 0.22);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
}

.dot.is-active {
  background: var(--accent);
  height: 22px;
  border-radius: 5px;
}

.panel {
  min-height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(34px, 5vw, 84px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
}

.panel--centered {
  align-items: center;
  text-align: center;
}

.panel__inner {
  opacity: 0;
  transform: translateY(44px);
  filter: blur(7px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1),
              transform .9s cubic-bezier(.16, 1, .3, 1),
              filter .8s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform, filter;
}

.panel__inner.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: #9A958B;
  margin-bottom: clamp(28px, 3.5vw, 46px);
}

.eyebrow--press { margin-bottom: clamp(22px, 3vw, 34px); }

.lede {
  margin: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.7vw, 37px);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: #15130F;
}

.italic { font-style: italic; }

.body-copy {
  margin-top: clamp(28px, 3.5vw, 44px);
  font-size: 16px;
  line-height: 1.8;
  color: #3A352D;
}

.body-copy p { margin: 0 0 20px; }

.cue {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3vh, 38px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: #9A958B;
}

.cue__arrow {
  font-size: 13px;
  animation: cuebounce 1.8s ease-in-out infinite;
}

@keyframes cuebounce {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* ============ VENTURES ============ */

.venture--link { display: block; border-top: 1px solid rgba(21, 19, 15, 0.14); padding: clamp(22px, 3vw, 34px) 0; }
.venture--bordered { border-top: 1px solid rgba(21, 19, 15, 0.14); border-bottom: 1px solid rgba(21, 19, 15, 0.14); padding: clamp(22px, 3vw, 34px) 0; }

.venture__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.venture__name {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: -0.02em;
}

.venture__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #6B665C;
  white-space: nowrap;
}

.venture__desc {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: #3A352D;
  max-width: 560px;
}

.license {
  margin-top: clamp(20px, 2.6vw, 30px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #9A958B;
}

/* ============ PERSONAL SIDE ============ */

.tags {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: clamp(22px, 3.1vw, 40px);
  line-height: 1.36;
  letter-spacing: -0.01em;
  color: #15130F;
  text-wrap: balance;
}

.tags__slash { color: rgb(194, 182, 164); }

.quote {
  margin: clamp(40px, 5.5vw, 68px) auto 0;
  max-width: 600px;
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: #15130F;
  text-wrap: balance;
}

/* ============ PRESS ============ */

.press {
  display: block;
  border-top: 1px solid rgba(21, 19, 15, 0.14);
  border-bottom: 1px solid rgba(21, 19, 15, 0.14);
  padding: clamp(22px, 3vw, 34px) 0;
  transition: padding-left .35s cubic-bezier(.16, 1, .3, 1);
}

.press:hover { padding-left: 14px; }

.press__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.press__source {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.press__year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6B665C;
}

.press__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.press__headline {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: #15130F;
  max-width: 600px;
}

.press__read {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #6B665C;
  white-space: nowrap;
  padding-top: 6px;
}

.social {
  margin-top: clamp(30px, 4vw, 46px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 28px);
}

.social a {
  color: #6B665C;
  display: inline-flex;
  transition: color .25s, transform .25s;
}

.social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
  .shell { flex-direction: column; height: auto; }
  .photo { position: relative; flex: 0 0 auto; width: 100%; height: 78vh; }
  .scroll { height: auto; overflow: visible; scroll-snap-type: none; }
  .panel { min-height: auto; padding-top: clamp(56px, 9vw, 90px); padding-bottom: clamp(56px, 9vw, 90px); }
  .dots { display: none; }
  .cue { display: none; }
  body { background: #F3EFE7; }
}
