/* =================================================================
   KHUSH MUTHA — v3 · BOLD · INTERACTIVE · PHOTO-FORWARD
   ================================================================= */

:root {
  --cream:        #f4ead3;
  --cream-deep:   #e9deba;
  --cream-soft:   #fbf4dd;
  --ink:          #0d0d0d;
  --ink-soft:     #2a2a2a;
  --muted:        #8a847a;

  --orange:       #ff5722;
  --orange-deep:  #d83a08;
  --blue:         #2950ff;
  --blue-deep:    #1029cc;
  --lime:         #c5e93b;
  --lime-deep:    #99c01f;
  --pink:         #ff3aa1;
  --pink-deep:    #cc1c7a;
  --yellow:       #ffce47;
  --magenta:      #b8157a;

  --f-display:    'Bricolage Grotesque', 'Inter Tight', system-ui, sans-serif;
  --f-italic:     'Instrument Serif', 'Times New Roman', serif;
  --f-body:       'Inter Tight', system-ui, sans-serif;
  --f-mono:       'JetBrains Mono', ui-monospace, monospace;

  --max:          1340px;
  --gutter:       max(20px, 4vw);
  --section-pad:  clamp(56px, 8vw, 110px);

  --r-xl:         28px;
  --r-md:         18px;
  --r-sm:         10px;

  --ease:         cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-family: var(--f-italic); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
strong { font-weight: 700; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--orange); color: var(--cream); }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--ink); color: var(--cream); padding: 10px 14px; z-index: 9999; border-radius: 6px; }

/* =========== CURSOR =========== */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [data-magnetic], canvas { cursor: none; }
  .cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    transform: translate3d(-50%, -50%, 0); will-change: transform;
  }
  .cursor-dot { width: 8px; height: 8px; background: var(--ink); border-radius: 50%; transition: transform .15s var(--ease), background .2s ease; }
  .cursor-ring { width: 32px; height: 32px; border: 1.5px solid var(--ink); border-radius: 50%; transition: width .25s var(--ease), height .25s var(--ease), background .25s ease, border-color .25s ease; }
  body.cursor-hover .cursor-ring { width: 64px; height: 64px; background: var(--orange); border-color: var(--ink); mix-blend-mode: difference; }
  body.cursor-hover .cursor-dot { background: var(--cream); transform: translate3d(-50%,-50%,0) scale(.4); }
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--orange); z-index: 9998; transition: width .1s linear;
}

/* =========== NAV =========== */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px var(--gutter); pointer-events: none; }
#nav {
  pointer-events: auto;
  max-width: var(--max);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px 8px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.nav-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.02em;
}
.mark-glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--orange); color: var(--ink);
  border-radius: 8px;
  font-family: var(--f-italic); font-style: italic;
  font-size: 22px; line-height: 1; position: relative; font-weight: 400;
}
.mark-glyph::after {
  content: ''; position: absolute; bottom: 5px; right: 4px;
  width: 5px; height: 5px; background: var(--ink); border-radius: 50%;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  font-size: 11px; font-family: var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
}
.nav-links a {
  padding: 8px 12px; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
  color: rgba(244, 234, 211, 0.7);
}
.nav-links a:hover { color: var(--cream); background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--ink) !important;
  padding: 8px 16px !important;
  font-weight: 700;
}
.nav-cta:hover { background: var(--lime) !important; }
@media (max-width: 980px) { .nav-links li:nth-child(-n+5) { display: none; } }

/* =========== FLOATING STICKY CTA =========== */
.float-cta {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 99;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 4px 4px 0 var(--orange);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .25s var(--ease), background .25s ease;
  transform: translateY(8px);
}
.float-cta.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.float-cta:hover { background: var(--orange); color: var(--ink); border-color: var(--ink); transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.fc-pulse { display: inline-block; width: 8px; height: 8px; background: var(--lime); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(197,233,59,.35); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(197,233,59,.35); }
  50% { box-shadow: 0 0 0 9px rgba(197,233,59,.05); }
}

/* =========== SECTION FRAME =========== */
section { position: relative; z-index: 1; }
.section-label {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--cream);
  padding: 8px 14px; border-radius: 999px;
}
.section-label.on-light { background: var(--ink); color: var(--cream); }
.section-label.on-dark  { background: var(--cream); color: var(--ink); }

/* Sticker */
.sticker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--cream);
}
.sticker-orange { background: var(--orange); color: var(--ink); }
.sticker-blue   { background: var(--blue); color: var(--cream); }
.sticker-lime   { background: var(--lime); color: var(--ink); }
.sticker-pink   { background: var(--pink); color: var(--ink); }
.sticker-yellow { background: var(--yellow); color: var(--ink); }
.sticker-ink    { background: var(--ink); color: var(--cream); }

/* w-pulse (used inside stickers + tags) */
.w-pulse {
  display: inline-block; width: 8px; height: 8px;
  background: var(--lime); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(197,233,59,.3);
  animation: pulse 2.4s infinite;
}
.sticker-lime .w-pulse { background: var(--ink); box-shadow: 0 0 0 4px rgba(13,13,13,.15); }

/* =========== HERO =========== */
.hero {
  min-height: 96vh;
  padding: 120px var(--gutter) 70px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
}
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}
.hero-title .line { display: block; }
.hero-title .accent-orange { color: var(--orange); font-family: var(--f-italic); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.hero-title .underline { position: relative; display: inline-block; }
.hero-title .underline::after {
  content: ''; position: absolute; bottom: 4px; left: -4px; right: -4px; height: 14px;
  background: var(--lime); z-index: -1; border-radius: 4px;
  transform: rotate(-1deg);
}
.hero-sub {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: var(--ink);
  max-width: 500px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.hero-sub strong { font-weight: 700; background: var(--yellow); padding: 1px 6px; border-radius: 4px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 24px; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  padding: 14px 22px; border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  border: 2px solid var(--ink);
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--orange); color: var(--ink); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.btn-ghost { background: var(--cream); color: var(--ink); }
.btn-ghost:hover { background: var(--lime); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }

.hero-coords { font-family: var(--f-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.12em; font-weight: 600; }
.hero-coords #localTime { background: var(--ink); color: var(--lime); padding: 2px 6px; border-radius: 4px; }

/* PHOTO-TILT CARD (the new hero centerpiece) */
.hero-right { position: relative; perspective: 900px; }
.photo-tilt {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform .25s var(--ease);
  will-change: transform;
}
.photo-card {
  position: relative;
  border-radius: var(--r-xl);
  border: 3px solid var(--ink);
  overflow: hidden;
  background: var(--blue);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1.5deg);
  transition: transform .25s var(--ease);
}
.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
  transform: translateZ(40px);
}
.photo-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--ink); color: var(--cream);
  padding: 10px 14px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  font-weight: 700;
  border-top: 2px solid var(--cream);
}
.photo-bar .dot-sep { color: var(--orange); }
.photo-corner {
  position: absolute; top: 12px; right: 12px;
  background: var(--orange); color: var(--ink);
  font-family: var(--f-display); font-weight: 800;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  border: 2px solid var(--ink);
  letter-spacing: -0.02em;
}
.photo-corner span { font-family: var(--f-mono); font-size: 11px; opacity: .7; font-weight: 600; }

/* Floating photo stickers */
.ph-sticker {
  position: absolute;
  font-family: var(--f-mono); font-weight: 700;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--cream);
  white-space: nowrap;
  z-index: 3;
  transition: transform .35s var(--ease);
  transform-style: preserve-3d;
}
.ph-1 { top: -18px; left: -18px; background: var(--orange); transform: rotate(-7deg) translateZ(60px); }
.ph-2 { top: 12%;  right: -54px; background: var(--lime); transform: rotate(8deg) translateZ(80px); }
.ph-3 { bottom: 24%; left: -72px; background: var(--pink); transform: rotate(-9deg) translateZ(70px); }
.ph-4 { bottom: -8px; right: -14px; background: var(--ink); color: var(--cream); transform: rotate(6deg) translateZ(50px); }
.ph-5 { top: 48%; left: -38px; background: var(--yellow); transform: rotate(-12deg) translateZ(90px); font-size: 18px; padding: 10px 14px; }

.scroll-hint {
  position: absolute; bottom: 18px; left: var(--gutter);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft); display: flex; align-items: center; gap: 10px; font-weight: 600;
}
.scroll-hint-line {
  display: inline-block; width: 36px; height: 2px; background: currentColor; position: relative; overflow: hidden;
}
.scroll-hint-line::after {
  content: ''; position: absolute; top: 0; left: -36px; width: 36px; height: 2px;
  background: var(--orange); animation: slide 2s infinite var(--ease);
}
@keyframes slide { 0% { left: -36px; } 100% { left: 100%; } }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; perspective: none; }
  .photo-tilt { max-width: 320px; }
  .scroll-hint { display: none; }
  .ph-sticker { font-size: 10px; padding: 7px 11px; }
  .ph-2 { right: -20px; }
  .ph-3 { left: -16px; }
  .ph-5 { left: -10px; }
}

/* =========== TICKER =========== */
.ticker-wrap {
  background: var(--ink); color: var(--cream);
  overflow: hidden; padding: 22px 0;
  position: relative; z-index: 2;
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
}
.ticker {
  display: flex; gap: 36px; align-items: center; white-space: nowrap;
  font-family: var(--f-display); font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 700; letter-spacing: -0.02em;
  animation: tick 50s linear infinite;
}
.ticker .accent { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--orange); }
.ticker .diamond { display: inline-block; width: 8px; height: 8px; background: var(--orange); transform: rotate(45deg); flex-shrink: 0; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========== WHAT I DO =========== */
.do {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.do-head { margin-bottom: 36px; }
.do-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 0.92; letter-spacing: -0.04em;
  margin-top: 14px;
}
.do-title em { font-weight: 400; color: var(--orange); letter-spacing: -0.02em; }
.do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.do-card {
  position: relative;
  padding: 28px 26px 22px;
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.do-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.do-card-1 { background: var(--blue); color: var(--cream); }
.do-card-2 { background: var(--orange); }
.do-card-3 { background: var(--lime); }
.do-card .num { font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; }
.do-card h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1; letter-spacing: -0.025em;
  margin-top: auto;
}
.do-card .tag {
  font-family: var(--f-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.06em;
  background: var(--ink); color: var(--cream);
  padding: 6px 12px; border-radius: 999px; align-self: flex-start;
}
.do-card-1 .tag { background: var(--cream); color: var(--ink); }
@media (max-width: 880px) { .do-grid { grid-template-columns: 1fr; } }

/* =========== TIMELINE =========== */
.timeline-sec {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-pad) var(--gutter);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  z-index: 2;
}
.tl-inner { max-width: var(--max); margin: 0 auto; }
.tl-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 28px;
  margin-bottom: 50px;
}
.tl-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(32px, 5.5vw, 84px);
  line-height: 0.86; letter-spacing: -0.045em;
  margin-top: 14px;
}
.tl-title em { font-weight: 400; color: var(--orange); }
.tl-now-arrow {
  display: flex; align-items: center; gap: 14px;
  color: var(--orange);
  font-family: var(--f-mono); font-size: 12px;
  font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tl-now-label {
  background: var(--orange); color: var(--ink);
  padding: 12px 14px; border-radius: 12px;
  line-height: 1.05;
  border: 2px solid var(--ink);
  text-align: center;
}

/* The visual timeline board */
.tl-board {
  background: rgba(244,234,211,.04);
  border: 1px solid rgba(244,234,211,.1);
  border-radius: var(--r-xl);
  padding: 60px 30px 38px;
  position: relative;
  margin-bottom: 32px;
}
.tl-years {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.18em; font-weight: 700;
  color: var(--cream);
  margin-bottom: 22px;
  position: relative;
}
.tl-years span {
  text-align: left;
  padding-left: 8px;
  border-left: 1px solid rgba(244,234,211,.18);
}
.tl-years span:last-child { color: var(--orange); }

.tl-track {
  position: relative;
  height: 0;
  margin-bottom: 16px;
}
.tl-track-line {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,234,211,.3), transparent);
}
.tl-now-marker {
  position: absolute;
  top: -8px;
  right: 0;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 12px;
  font-weight: 700; letter-spacing: 0.18em;
  color: var(--orange);
}
.tl-now-pulse {
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255,87,34,.3);
  animation: pulse 2s infinite;
}
.tl-now-text {
  background: var(--orange); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
}

/* Role bars positioned by date */
.tl-bars { display: flex; flex-direction: column; gap: 10px; }
.tl-bar {
  position: relative;
  height: 60px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  display: flex; align-items: center; gap: 14px;
  padding: 0 20px;
  margin-left: calc(var(--start, 0) * 1%);
  width: calc((var(--end, 100) - var(--start, 0)) * 1%);
  min-width: 220px;
  transition: transform .3s var(--ease), filter .3s ease;
}
.tl-bar:hover { transform: translate(-2px, -2px); filter: brightness(1.05); }
.tl-bar-slckr { background: var(--blue); color: var(--cream); }
.tl-bar-promunch { background: var(--orange); }
.tl-bar-oltaflock { background: var(--lime); }
.tl-bar-name {
  font-family: var(--f-display); font-weight: 800;
  font-size: 15px; letter-spacing: -0.02em;
}
.tl-bar-role {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  opacity: .85;
}
.tl-bar-tag {
  margin-left: auto;
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em;
  background: var(--ink); color: var(--cream);
  padding: 5px 10px; border-radius: 999px;
}
.tl-bar-tag-now {
  background: var(--cream); color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}

@media (max-width: 720px) {
  .tl-board { padding: 40px 16px 24px; }
  .tl-bars { gap: 8px; }
  .tl-bar { margin-left: 0; width: 100%; min-width: auto; flex-wrap: wrap; height: auto; padding: 14px 18px; }
  .tl-bar-role { width: 100%; }
}

/* Currently doing summary cards */
.tl-now-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tl-now-card {
  padding: 28px 30px;
  border-radius: var(--r-md);
  border: 3px solid var(--ink);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tl-now-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--cream); }
.tl-now-card-1 { background: var(--lime); color: var(--ink); }
.tl-now-card-2 { background: var(--orange); color: var(--ink); }
.card-flag {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  align-self: flex-start;
  padding: 6px 12px; border-radius: 999px;
}
.tl-now-card h3 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1; letter-spacing: -0.03em;
}
.tl-now-card p { font-size: 14px; line-height: 1.55; max-width: 420px; }
.card-arrow {
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 2px solid var(--ink); padding-bottom: 1px;
  align-self: flex-start;
}
@media (max-width: 720px) { .tl-now-cards { grid-template-columns: 1fr; } }

/* Demoted education one-liner inside Timeline section */
.tl-edu-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  margin-top: 36px; padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream);
}
.tl-edu-label {
  background: var(--orange); color: var(--ink);
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0.18em;
}
.tl-edu-chip { color: var(--cream); opacity: 0.92; }
.tl-edu-dot { color: var(--orange); opacity: 0.7; }
@media (max-width: 720px) { .tl-edu-strip { border-radius: 18px; } .tl-edu-dot { display: none; } }

/* =========== FEATURED CASE — LUMNIX =========== */
.case {
  background: var(--pink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: var(--section-pad) var(--gutter);
  position: relative;
  z-index: 2;
}
.case-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-areas:
    "head results"
    "statement results";
  column-gap: 48px;
  row-gap: 28px;
  align-items: start;
}
.case-head { grid-area: head; display: flex; flex-direction: column; gap: 16px; margin-bottom: 0; }
.case-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(30px, 4.5vw, 60px);
  line-height: 0.92; letter-spacing: -0.045em;
}
.case-title em { font-weight: 400; }
.case-grid { display: contents; }
.case-statement {
  grid-area: statement;
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.4; letter-spacing: -0.015em;
  max-width: 560px;
}
.case-statement em { font-weight: 400; }
.case-built-by {
  display: inline-block; margin-top: 12px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: var(--cream);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 6px 12px;
}
.case-results {
  grid-area: results;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: start;
}
.case-result {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.case-result .rn {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--ink);
}
.case-result .rl {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
}
.case-result-feat .rn { color: var(--orange); }
.case-tag {
  position: absolute; top: 32px; right: var(--gutter);
  background: var(--lime); color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 999px;
  transform: rotate(6deg);
}
@media (max-width: 880px) {
  .case-inner { grid-template-columns: 1fr; grid-template-areas: "head" "statement" "results"; }
  .case-results { grid-template-columns: 1fr 1fr; }
  .case-tag { display: none; }
}

/* =========== SITES (PROJECTS) =========== */
.projects {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.projects-head { margin-bottom: 36px; }
.projects-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(32px, 5.5vw, 80px);
  line-height: 0.88; letter-spacing: -0.045em;
  margin-top: 14px;
  max-width: 1200px;
}
.projects-title em { font-weight: 400; color: var(--orange); }
.projects-foot {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(13px, 1vw, 15px);
  margin-top: 16px;
  max-width: 660px;
  line-height: 1.5;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.project {
  position: relative;
  padding: 24px 24px 22px;
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 260px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.project:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.project-1 { background: var(--orange); }
.project-2 { background: var(--lime); }
.project-3 { background: var(--cream); }
.project-num { font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; }
.project-name {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1; letter-spacing: -0.03em;
  margin-top: auto;
}
.project-name em { font-weight: 400; }
.project-meta {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.project-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; margin-top: 8px;
}
.project-arrow::after { content: '→'; transition: transform .3s var(--ease); }
.project:hover .project-arrow::after { transform: translateX(4px); }
@media (max-width: 1020px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .projects-grid { grid-template-columns: 1fr; } }

/* =========== EDUCATION =========== */
.edu {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px var(--gutter) var(--section-pad);
}
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.edu-card {
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  padding: 28px 30px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.edu-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
.edu-card-1 { background: var(--ink); color: var(--cream); }
.edu-card-2 { background: var(--cream-soft); }
.edu-stamp {
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  align-self: flex-start;
  background: var(--orange); color: var(--ink);
  padding: 6px 12px; border-radius: 999px;
  border: 2px solid var(--ink);
}
.edu-where {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 0.95; letter-spacing: -0.03em;
}
.edu-where em { font-weight: 400; color: var(--orange); }
.edu-when {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  opacity: .8;
}
.edu-honors {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.edu-honor {
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  border: 2px solid currentColor;
}
.edu-card-1 .edu-honor { color: var(--lime); }
.edu-card-2 .edu-honor { color: var(--ink); background: var(--cream); }

@media (max-width: 720px) { .edu-grid { grid-template-columns: 1fr; } }

/* =========== I'M OPEN =========== */
.open {
  background: var(--orange);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: var(--section-pad) var(--gutter);
  position: relative; z-index: 2;
}
.open-inner { max-width: var(--max); margin: 0 auto; text-align: left; }
.open-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 26px;
}
.open-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(40px, 8vw, 140px);
  line-height: 0.85; letter-spacing: -0.05em;
  display: flex; flex-wrap: wrap; gap: 0 30px;
  align-items: baseline;
}
.open-title em { font-weight: 400; color: var(--ink); }
.open-word { display: inline-block; }
.open-word-orange { color: var(--lime); -webkit-text-stroke: 3px var(--ink); text-stroke: 3px var(--ink); }
.open-spiel {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(14px, 1.2vw, 17px);
  max-width: 700px; line-height: 1.45;
  margin: 30px 0 28px;
}
.open-spiel strong { background: var(--ink); color: var(--cream); padding: 1px 6px; border-radius: 4px; font-weight: 700; }

.open-cta {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--ink); color: var(--cream);
  padding: 22px 32px;
  border-radius: 22px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--cream);
  transition: transform .25s var(--ease), background .25s ease;
}
.open-cta:hover { background: var(--lime); color: var(--ink); transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--ink); }
.open-cta-icon { font-size: 36px; }
.open-cta-main {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(15px, 1.7vw, 22px);
  letter-spacing: -0.02em;
  display: block;
}
.open-cta-sub {
  display: block;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  opacity: .7;
  margin-top: 4px;
}

.open-cta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 8px;
}
.open-bookfor {
  display: flex; flex-direction: column; gap: 0;
  max-width: 420px;
  justify-self: end;
}
.open-bookfor-label {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.open-bookfor-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 18px;
  align-items: baseline;
  border-top: 2px solid var(--ink);
  padding: 12px 0;
}
.open-bookfor-row:last-child { border-bottom: 2px solid var(--ink); }
.open-bookfor-key {
  font-family: var(--f-display); font-weight: 800;
  font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase;
}
.open-bookfor-val {
  font-family: var(--f-display); font-weight: 600;
  font-size: 13px; line-height: 1.35; letter-spacing: -0.01em;
}
@media (max-width: 880px) {
  .open-cta-row { grid-template-columns: 1fr; gap: 28px; }
  .open-bookfor { justify-self: start; }
}

.open-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.open-card {
  background: var(--cream); color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--r-md);
  padding: 22px 24px;
  transition: transform .25s var(--ease), background .25s ease;
}
.open-card:hover { background: var(--lime); transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.open-card h4 {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 8px; color: var(--ink-soft);
}
.open-card p {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(14px, 1.2vw, 17px);
  letter-spacing: -0.02em; line-height: 1.1;
}
@media (max-width: 720px) { .open-grid { grid-template-columns: 1fr; } }

/* =========== FOOTER =========== */
.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 50px var(--gutter) 26px;
  position: relative; z-index: 2;
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(244,234,211,.15);
}
.foot-mark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-weight: 800;
  font-size: 17px; letter-spacing: -0.025em;
}
.foot-col h4 {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.foot-col a, .foot-col p {
  display: block;
  font-family: var(--f-display); font-weight: 600;
  font-size: 15px; letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: rgba(244,234,211,.78);
  transition: color .2s ease;
}
.foot-col a:hover { color: var(--cream); }
.foot-bottom {
  max-width: var(--max); margin: 22px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(244,234,211,.5);
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; gap: 30px; } }

/* =========== REVEAL =========== */
.reveal { opacity: 0; transform: translateY(28px) rotate(-0.7deg); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0) rotate(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* =========== REDUCED MOTION =========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker { animation: none; }
}
