/* ============================================================
   TOKENS & RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #FAF8F4;
  --surface:     #FFFFFF;
  --text:        #1A1814;
  --muted:       #7A736C;
  --accent:      #E76540;
  --accent-blue: #4A6CF5;
  --undun-orange: #E8614A;

  --border:      rgba(26, 24, 20, 0.08);
  --border-med:  rgba(26, 24, 20, 0.13);

  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   32px;
  --r-pill: 999px;

  --sh-xs: 0 1px 3px rgba(0,0,0,0.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.04);
  --sh-md: 0 6px 24px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --sh-lg: 0 16px 56px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================================
   NAV — top-left, blended
   ============================================================ */
.nav {
  position: fixed;
  top: 28px;
  left: 44px;
  z-index: 1000;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(250, 248, 244, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(26, 24, 20, 0.07);
  border-radius: var(--r-pill);
  padding: 4px 5px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.07);
}

.nav-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

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

.nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.80);
  font-weight: 600;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 48px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* ── Floating blob animations ── */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: rgba(74, 108, 245, 0.10);
  top: -12%;
  right: 8%;
  animation: blobDrift1 16s ease-in-out infinite alternate;
}

.blob-2 {
  width: 340px;
  height: 340px;
  background: rgba(231, 101, 64, 0.09);
  bottom: 0%;
  left: -4%;
  animation: blobDrift2 20s ease-in-out infinite alternate;
}

.blob-3 {
  width: 260px;
  height: 260px;
  background: rgba(74, 108, 245, 0.07);
  bottom: 20%;
  right: 30%;
  animation: blobDrift3 13s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(48px, -36px) scale(1.08); }
}
@keyframes blobDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-28px, 44px) scale(0.92); }
}
@keyframes blobDrift3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(32px, 28px) scale(1.12); }
}

.hero-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  animation: heroFadeUp 0.7s 0.05s ease both;
}

.hero-name {
  font-size: clamp(72px, 9.5vw, 118px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.03em;
  color: var(--text);
  animation: heroFadeUp 0.75s 0.15s ease both;
}

.hero-roles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: heroFadeUp 0.75s 0.28s ease both;
}

.hero-role {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  padding-left: 18px;
  border-left: 2.5px solid var(--accent);
  line-height: 1.5;
}

.hero-role a {
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border-med);
  transition: border-color 0.2s, color 0.2s;
}

.hero-role a:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

.hero-role strong {
  color: var(--text);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.75s 0.40s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: var(--r-pill);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover {
  background: #2D2924;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 24, 20, 0.22);
}

.btn-ghost { background: var(--surface); color: var(--text); border: 1.5px solid var(--border-med); }
.btn-ghost:hover {
  border-color: rgba(26, 24, 20, 0.28);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.hero-media { animation: heroFadeUp 0.80s 0.25s ease both; }

/* ── RECTANGULAR photo frame ── */
.hero-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow:
    0 20px 56px rgba(74, 108, 245, 0.15),
    0 6px 16px rgba(0, 0, 0, 0.09);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE STRIP — logo ticker
   ============================================================ */
.marquee-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-logo {
  display: inline-flex;
  align-items: center;
  margin: 0 52px;
  flex-shrink: 0;
}

.marquee-logo img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  /* normalize all logos: greyscale + muted opacity */
  filter: grayscale(1) opacity(0.40);
  transition: filter 0.25s ease;
}

.marquee-logo img:hover {
  filter: grayscale(0) opacity(0.75);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ============================================================
   SHARED SECTION ELEMENTS
   ============================================================ */
.tag-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-heading {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 0;
}

.work-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 14px 0 16px;
}

.work-title-link {
  color: inherit;
  border-bottom: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.work-title-link:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

.work-body {
  font-size: 16px;
  line-height: 1.80;
  color: var(--muted);
  max-width: 600px;
}

.chip {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  margin: 0 6px 6px 0;
}

.chip-accent {
  color: var(--accent);
  background: rgba(231, 101, 64, 0.06);
  border-color: rgba(231, 101, 64, 0.22);
}

.chip-undun {
  color: var(--undun-orange);
  background: rgba(232, 97, 74, 0.10);
  border-color: rgba(232, 97, 74, 0.25);
}


.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   ABOUT — editorial redesign
   ============================================================ */
.about {
  padding: 128px 0 96px;
  background: var(--surface);
}


/* top row: heading left, bio right */
.about-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

.about-heading-col {
  min-width: 320px;
}

.about-bio {
  font-size: 17px;
  line-height: 1.82;
  color: var(--muted);
  padding-top: 56px; /* align with heading baseline */
  max-width: 520px;
}

/* horizontal pillar strip */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 44px;
}

.about-pillar {
  padding: 0 36px;
  border-right: 1px solid var(--border);
}

.about-pillar:first-child { padding-left: 0; }
.about-pillar:last-child  { padding-right: 0; border-right: none; }

.pillar-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-pillar h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.about-pillar p {
  font-size: 14px;
  line-height: 1.68;
  color: var(--muted);
}

/* ============================================================
   WORK
   ============================================================ */
.work {
  padding: 128px 0;
  background: var(--bg);
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  margin-top: 20px;
  box-shadow: var(--sh-xs);
}

/* ── Untitled card ── */
.untitled-card { border-top: 3px solid var(--accent-blue); }

.untitled-top {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.untitled-wordmark {
  height: 80px;
  width: auto;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.untitled-tags { display: flex; flex-wrap: wrap; }

.untitled-body-text {
  margin-bottom: 32px;
}

/* Large demo video — full width */
.untitled-demo-wrap {
  margin-bottom: 32px;
}

.untitled-demo-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  background: #0a0a0a;
}

/* Ad row: label left, vertical video right */
.untitled-ad-row {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.ad-video-wrap video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  background: #0a0a0a;
}

.ad-label-wrap {
  padding-top: 8px;
}

.ad-label-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.ad-label-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 340px;
}

.ad-video-wrap {
  position: relative;
}

.ad-expand-btn {
  position: absolute;
  bottom: 54px; /* above native controls bar */
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
  z-index: 2;
}

.ad-expand-btn:hover { background: rgba(0, 0, 0, 0.80); }
.ad-expand-btn svg { width: 20px; height: 20px; display: block; }

/* Portrait video modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.video-modal-inner {
  position: relative;
  height: 90vh;
  max-height: 90vh;
  aspect-ratio: 9 / 16;
  max-width: calc(90vh * 9 / 16);
}

.video-modal-inner video {
  width: 100%;
  height: 100%;
  border-radius: var(--r-md);
  background: #000;
  object-fit: contain;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-modal-close:hover { background: rgba(255, 255, 255, 0.30); }

/* ── LMU card ── */
.lmu-card { border-top: 3px solid var(--accent); }

.lmu-header { margin-bottom: 28px; }

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.event-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.event-photo:hover {
  transform: scale(1.025);
  box-shadow: var(--sh-md);
}

/* ── undun card ── */
.undun-card {
  background: var(--surface);
  border: 2.5px solid var(--undun-orange);
  box-shadow: 0 6px 32px rgba(232, 97, 74, 0.12);
}

.undun-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.undun-text { flex: 1; max-width: 520px; }

.undun-body {
  color: var(--muted);
  max-width: 480px;
  margin-top: 16px;
}

.undun-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.undun-logo {
  width: 200px;
  height: auto;
  /* show natural orange color — white bg of PNG blends with white card */
}

/* ============================================================
   CONNECT
   ============================================================ */
.connect { padding: 128px 0; background: var(--text); }
.connect .tag-label { color: var(--accent); }

.connect-heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 14px;
}

.connect-sub {
  font-size: 17px;
  color: rgba(250, 248, 244, 0.50);
  margin-bottom: 48px;
}

.connect-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.connect-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  color: var(--bg);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.connect-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateX(6px);
}

.connect-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.connect-icon svg { width: 20px; height: 20px; }

.connect-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }

.connect-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.40);
}

.connect-value { font-size: 15px; font-weight: 500; color: var(--bg); }

.connect-arrow {
  font-size: 18px;
  color: rgba(250, 248, 244, 0.28);
  transition: color 0.2s, transform 0.2s;
}

.connect-item:hover .connect-arrow {
  color: rgba(250, 248, 244, 0.65);
  transform: translateX(4px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}

.footer p {
  font-size: 12px;
  color: rgba(250, 248, 244, 0.28);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-media {
    display: flex;
    justify-content: flex-start;
  }

  .hero-photo-wrap {
    width: 200px;
    aspect-ratio: 3/4;
    border-radius: var(--r-md);
  }

  .hero-roles { max-width: 440px; }
  .hero-ctas { justify-content: flex-start; }

  .about-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-bio { padding-top: 0; }

  .about-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .about-pillar {
    padding: 0 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
  }

  .about-pillar:nth-child(odd)  { padding-left: 0; border-right: 1px solid var(--border); }
  .about-pillar:nth-child(even) { padding-right: 0; }
  .about-pillar:nth-last-child(-n+2) { border-bottom: none; }

  .untitled-ad-row {
    grid-template-columns: 1fr 200px;
    gap: 24px;
  }

  .undun-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .undun-logo-wrap { width: 100%; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .hero { padding: 96px 24px 64px; }
  .container { padding: 0 24px; }
  .nav { left: 20px; top: 20px; }
  .work-card { padding: 32px 24px; }

  .about-pillars {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-pillar {
    padding: 24px 0;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .about-pillar:last-child { border-bottom: none; }

  .event-grid { grid-template-columns: 1fr; gap: 12px; }
  .event-photo { aspect-ratio: 16/9; }

  .untitled-top { flex-direction: column; align-items: flex-start; gap: 16px; }

  .untitled-ad-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ad-video-wrap {
    display: flex;
    justify-content: center;
  }

  .ad-video-wrap video {
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .nav-link { padding: 7px 13px; font-size: 12px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .fade-up,
  .hero-eyebrow, .hero-name, .hero-roles, .hero-ctas, .hero-media {
    opacity: 1; transform: none; animation: none; transition: none;
  }

  .blob { animation: none; }
  .marquee-track { animation: none; }

  .event-photo:hover, .connect-item:hover, .btn:hover {
    transform: none;
  }
}
