/* =============================================
   MO PORTFOLIO — Design System v4
   Senior · Premium · Calm · Trustworthy
   ─────────────────────────────────────────────
   COLOR SYSTEM
   ─────────────────────────────────────────────
   PRIMARY   #0B1F3B  Deep blue    — hero, nav, dark sections, primary btns
   ACCENT    #D6B98C  Soft sand    — CTAs, tags, hover, key highlights ONLY
                                    (max 2 uses visible at once)
   BG        #FAFAF8  Off-white    — page background
   SURFACE   #FFFFFF  Pure white   — cards, panels
   SECTION   #F4F3EF  Warm grey   — alternate rows
   TEXT      #0A0A0A  Near-black   — primary text
   MUTED     #7A7A7A  Mid grey    — secondary text, body copy
   LIGHT     #ADADAD  Light grey  — captions, labels, icons
   DIVIDER   #E8E8E6  Cool grey   — borders, dividers
   ─────────────────────────────────────────────
   TYPOGRAPHY
   Headlines  Satoshi → Helvetica Neue → Arial  geometric, confident
   Body       Inter                             clean, neutral, readable
   ─────────────────────────────────────────────
   TYPE SCALE
   H1  clamp(3.2rem, 6.5vw, 6.5rem)  Satoshi 700  lh 0.95  ls -0.03em
   H2  clamp(2rem, 4vw, 4rem)        Satoshi 700  lh 1.05  ls -0.025em
   H3  clamp(1.2rem, 2vw, 1.8rem)    Satoshi 600  lh 1.2   ls -0.015em
   H4  1rem                           Satoshi 700  lh 1.3   ls -0.01em
   p   clamp(0.95rem, 1.4vw, 1.05rem) Inter 400   lh 1.75
   sm  0.875rem                        Inter 500   labels
   xs  0.7rem                          Inter 700   eyebrows, tags (uppercase)
   ─────────────────────────────────────────────
   ACCENT RULES
   ✓  Primary CTA button (one per section)
   ✓  Active nav underline
   ✓  Project domain tags
   ✓  Pull-quote left border
   ✓  Hover accent on links in dark sections
   ✗  Never body text
   ✗  Never large background fills
   ✗  Never more than 2 visible simultaneously
   ============================================= */

:root {
  /* Colors */
  --blue:      #0B1F3B;
  --blue-mid:  #162E55;
  --sand:      #D6B98C;
  --sand-dark: #C4A070;

  --bg:        #FAFAF8;
  --surface:   #FFFFFF;
  --section:   #F4F3EF;

  --ink:       #0A0A0A;
  --muted:     #7A7A7A;
  --light:     #ADADAD;
  --divider:   #E8E8E6;

  /* Semantic aliases (used in components) */
  --bg-dark:      var(--blue);
  --text:         var(--ink);
  --text-muted:   var(--muted);
  --text-light:   var(--light);
  --gold:         var(--sand);
  --gold-light:   var(--sand-dark);
  --border:       var(--divider);
  --border-dark:  #D0CECC;
  --bg-white:     var(--surface);
  --bg-section:   var(--section);

  /* Typography */
  --font-head: 'Satoshi', 'Helvetica Neue', 'Arial', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-sans: var(--font-body);
  --font-serif: var(--font-head);

  /* Layout */
  --max-width: 1280px;
  --gutter: clamp(20px, 5vw, 80px);

  /* Motion */
  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: 0.28s var(--ease);
  --t-slow: 0.5s var(--ease-out);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Type scale ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
}
h1 {
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.018em;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  color: var(--muted);
  line-height: 1.8;
}
h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--sand);
}

/* Eyebrow — Inter 500 uppercase xs */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section    { padding: clamp(80px, 12vw, 160px) 0; }
.section-sm { padding: clamp(48px, 7vw, 80px) 0; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.nav.scrolled {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--divider);
  padding: 16px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  transition: color var(--t);
}
.nav__logo span { color: var(--sand); }
.nav.scrolled .nav__logo { color: var(--blue); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
  position: relative;
  letter-spacing: 0.01em;
}
.nav__links a:hover,
.nav__links a.active { color: #fff; }
.nav.scrolled .nav__links a { color: var(--muted); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active { color: var(--ink); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--sand);
  border-radius: 2px;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.85) !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  padding: 8px 20px;
  border-radius: 2px;
  transition: background var(--t), color var(--t), border-color var(--t) !important;
  position: relative;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.6) !important;
}
.nav.scrolled .nav__cta {
  color: var(--blue) !important;
  border-color: var(--blue) !important;
}
.nav.scrolled .nav__cta:hover {
  background: var(--blue) !important;
  color: #fff !important;
}

/* ── Available badge ── */
.nav__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.nav__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform 0.15s ease;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
/* Primary — deep blue */
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 1.5px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
}
/* Sand accent — one per dark section */
.btn-accent {
  background: var(--sand);
  color: var(--blue);
  border: 1.5px solid var(--sand);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--sand-dark);
  border-color: var(--sand-dark);
}
/* Ghost — light bg */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--divider);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
/* Ghost on dark bg */
.btn-ghost-dark {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
/* Dark — used on light backgrounds */
.btn-dark {
  background: var(--blue);
  color: #fff;
  border: 1.5px solid var(--blue);
}
.btn-dark:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  box-shadow: 0 4px 16px rgba(11,31,59,0.2);
}
/* Outline — light bg, dark border */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--divider);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
/* Gold — used in dark sections */
.btn-gold {
  background: var(--sand);
  color: var(--blue);
  border: 1.5px solid var(--sand);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--sand-dark);
  border-color: var(--sand-dark);
  box-shadow: 0 4px 16px rgba(214,185,140,0.3);
}
.btn .arrow {
  transition: transform var(--t);
  font-size: 1rem;
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(5px); }

/* ── Chips / Tags / Pills ── */
.tag {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-dark);
  background: rgba(214, 185, 140, 0.12);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(214, 185, 140, 0.3);
}
.tag-blue {
  color: var(--blue);
  background: rgba(11, 31, 59, 0.06);
  border-color: rgba(11, 31, 59, 0.15);
}
.tag-neutral {
  color: var(--muted);
  background: rgba(0,0,0,0.04);
  border-color: var(--divider);
}
.nda-badge {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  background: var(--section);
  border: 1px solid var(--divider);
  padding: 4px 10px;
  border-radius: 2px;
}
.shipped-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D7A4F;
  background: #EAF5EE;
  border: 1px solid #B8DEC6;
  padding: 4px 10px;
  border-radius: 2px;
}
.shipped-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2D7A4F;
  flex-shrink: 0;
}

/* Project blocks — used on Lynk & Co page */
.project-block {
  padding: 32px 0;
  border-top: 1px solid var(--divider);
}
.project-block:first-child {
  border-top: none;
  padding-top: 0;
}
.project-block__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.project-block__title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.project-block__role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
}
.production-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 28px;
}
.pill {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--divider);
  padding: 6px 16px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════
   HOMEPAGE — HERO
   Dark full-bleed. Name last, hook first.
   Proof bar anchors credibility above the fold.
══════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(60px, 9vw, 100px);
}
/* Hero background */
.hero__bg {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 60% at 20% 55%, rgba(214,185,140,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(22,46,85,0.6) 0%, transparent 65%),
    linear-gradient(150deg, #0B1F3B 0%, #0f2848 55%, #162E55 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Optional: video/image background */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;   /* subtle — content first */
}
/* Gradient overlay over media */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(11,31,59,0.85) 0%, rgba(11,31,59,0.3) 70%),
    linear-gradient(to top, rgba(11,31,59,0.9) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
}
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow on dark bg */
.hero__eyebrow {
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
  animation: hero-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero__eyebrow::before { background: rgba(255,255,255,0.3); }
.hero__sub    { animation: hero-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both; }
.hero__proof  { animation: hero-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.1s  both; }
.hero__actions{ animation: hero-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.25s both; }

.hero h1 {
  color: #fff;
  max-width: 900px;
  margin-bottom: 28px;
}
/* Sand accent on key word */
.hero h1 em { color: var(--sand); font-style: normal; }

.hero__sub {
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Proof bar — sits between headline and CTA */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero__proof-num {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  transition: color 0.3s ease;
}
.hero__proof-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero__proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Scroll cue */
/* Unmute button */
.hero__unmute {
  position: absolute;
  bottom: 36px;
  left: var(--gutter);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.hero__unmute:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.hero__unmute--active {
  color: var(--sand);
  border-color: rgba(214,185,140,0.4);
  background: rgba(214,185,140,0.1);
}

/* Contact video */
.contact-video-wrap {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-video-wrap video {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.25);
}
.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: slide-line 2.4s ease-in-out infinite;
}
@keyframes slide-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ══════════════════════════════════════════
   CLIENTS TICKER
══════════════════════════════════════════ */
.ticker-bar {
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  overflow: hidden;
  padding: 16px 0;
  background: var(--surface);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  padding: 0 44px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 44px;
  transition: color var(--t);
}
.ticker-item::after {
  content: '/';
  opacity: 0.25;
  font-weight: 300;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SELECTED WORK
   Editorial grid — each card is a story not a tile
══════════════════════════════════════════ */
.work-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider);
}
.work-intro__right {
  text-align: right;
}
.work-intro__right p {
  font-size: 0.97rem;
  line-height: 1.85;
  max-width: 380px;
  margin-left: auto;
  color: var(--muted);
}

/* Layout: editorial flush stack */
.work-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--divider);
  border: 1px solid var(--divider);
}

/* Each project row — horizontal story card */
.project-row {
  display: grid;
  grid-template-columns: 480px 1fr;
  background: var(--surface);
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--t), box-shadow 0.35s var(--ease-out);
  position: relative;
}
.project-row:hover {
  background: #fefefe;
  box-shadow:
    inset 2px 0 0 var(--ink),
    0 12px 48px rgba(0,0,0,0.07);
  z-index: 1;
}
/* Featured row — same width as siblings */
.project-row--featured {
  grid-template-columns: 480px 1fr;
}
/* Coming soon row */
.project-row--soon {
  background: var(--section);
  cursor: default;
}
.project-row--soon:hover {
  border-color: var(--divider);
  box-shadow: none;
}

.project-row__media {
  overflow: hidden;
  background: var(--blue);
  position: relative;
  min-height: 260px;
  /* No aspect-ratio — stretches to match text column height */
}
.project-row--soon .project-row__media {
  background: var(--divider);
  min-height: 260px;
}

.project-row__media img,
.project-row__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: saturate(0.85) brightness(0.98);
}
.project-row:hover .project-row__media img,
.project-row:hover .project-row__media video {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

/* Project number overlay */
.project-row__num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 2px;
}

.project-row__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 48px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-row:hover .project-row__info {
  transform: translateX(6px);
}
.project-row__top { flex: 1; }
.project-row__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.project-row__title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}
.project-row__hook {
  font-family: var(--font-head);
  font-size: 1.06rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.project-row__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
}
.project-row__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  margin-top: 24px;
}
.project-row__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
}
.project-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.project-row:hover .project-row__cta { opacity: 1; transform: translateX(0); }

/* Coming soon overlay */
.project-row__soon-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  color: var(--light);
}
.project-row__soon-icon {
  font-size: 1.4rem;
  opacity: 0.4;
}
.project-row__soon-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   PERSONAL BRAND
   3-column, white bg. Short. Punchy.
══════════════════════════════════════════ */
.brand-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--divider);
  overflow: hidden;
}
.brand-col {
  padding: 52px 44px;
  border-right: 1px solid var(--divider);
  border-top: 2px solid transparent;
  transition: background var(--t), border-top-color 0.35s var(--ease-out);
}
.brand-col:hover {
  background: var(--bg);
  border-top-color: var(--sand);
}
.brand-col:last-child { border-right: none; }
.brand-col__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 24px;
}
.brand-col h3 { margin-bottom: 16px; line-height: 1.18; }
.brand-col p  { font-size: 0.88rem; line-height: 1.8; }

/* ══════════════════════════════════════════
   AUTHORITY STRIP
   Dark blue. Numbers + companies. No fluff.
══════════════════════════════════════════ */
.authority {
  background: var(--blue);
  color: #fff;
}
.authority__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.authority__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.authority__stat {
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t);
}
.authority__stat:hover { background: rgba(255,255,255,0.06); }
.authority__stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.35s ease;
}
.authority__stat:hover .authority__stat-num { color: var(--sand); }
.authority__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.authority__right h2 { color: #fff; }
.authority__right h2 em { color: var(--sand); font-style: normal; }
.authority__right p {
  color: rgba(255,255,255,0.5);
  margin: 20px 0 32px;
  font-size: 1rem;
  line-height: 1.75;
}
.authority__companies {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.authority__co {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 16px;
  border-radius: 2px;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.authority__co:hover {
  color: var(--sand);
  border-color: rgba(214,185,140,0.35);
  background: rgba(214,185,140,0.06);
}

/* ══════════════════════════════════════════
   MEDTECH — COMING SOON
   Intentional, not a placeholder.
══════════════════════════════════════════ */
.medtech-soon {
  background: var(--section);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.medtech-soon__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.medtech-soon__left h2 { margin: 16px 0 20px; }
.medtech-soon__left p  { max-width: 440px; }
.medtech-soon__visual {
  aspect-ratio: 4/3;
  background: var(--blue);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.medtech-soon__lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.2);
}
.medtech-soon__lock-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}
.medtech-soon__lock p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
/* Subtle grid pattern on dark bg */
.medtech-soon__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ══════════════════════════════════════════
   CONTACT / CTA
══════════════════════════════════════════ */
.contact-section {
  background: var(--blue);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.contact-section h2 { color: #fff; }
.contact-section h2 em { color: var(--sand); font-style: normal; }
.contact-sub {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  line-height: 1.75;
  margin: 20px 0 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.contact-item__label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}
.contact-item__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--t);
}
a.contact-item__value:hover { color: var(--sand); }

/* ── Connecting thread ── */
.brand-thread {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 calc(100% / 6);  /* align dots to column centres */
}
.brand-thread__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
  transform: scale(0);
  opacity: 0;
}
.brand-thread__line {
  flex: 1;
  height: 1px;
  background: var(--sand);
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
}

/* Animated state */
.brand-thread.animate .brand-thread__dot {
  animation: dot-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.brand-thread.animate .brand-thread__dot--2 {
  animation-delay: 1.1s;
}
.brand-thread.animate .brand-thread__dot--3 {
  animation-delay: 2.2s;
}
.brand-thread.animate .brand-thread__line {
  animation: line-draw 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.brand-thread.animate .brand-thread__line--2 {
  animation-delay: 1.5s;
}

@keyframes dot-pop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes line-draw {
  0%   { transform: scaleX(0); opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}

/* ── Odometer number roll ── */
.hero__proof-num {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero__proof-num.rolling {
  animation: num-roll 0.12s ease-out;
}
@keyframes num-roll {
  0%   { transform: translateY(60%); opacity: 0.3; }
  100% { transform: translateY(0);   opacity: 1; }
}

/* ══════════════════════════════════════════
   CLOSING REEL
══════════════════════════════════════════ */
.reel-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--blue);
}
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,59,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 4vw, 56px);
}
.reel-label {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ── High five button ── */
/* ── Paper plane button ── */
.plane-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color var(--t), color var(--t), transform 0.15s ease;
}
.plane-btn:hover {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
}
.plane-btn:active { transform: scale(0.95); }
.plane-icon {
  font-size: 1rem;
  display: inline-block;
  transition: transform 0.25s ease;
}
.plane-btn:hover .plane-icon {
  transform: translateX(3px) translateY(-3px) rotate(-10deg);
}

/* ── Flying paper plane ── */
.flying-plane {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  font-size: 36px;
  line-height: 1;
  user-select: none;
  animation: plane-arc 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
@keyframes plane-arc {
  0%   { transform: translate(0, 0)     rotate(-20deg) scale(0.8); opacity: 0; }
  10%  { transform: translate(30px, -30px) rotate(-25deg) scale(1);   opacity: 1; }
  45%  { transform: translate(220px,-110px) rotate(-30deg) scale(1.05); opacity: 1; }
  75%  { transform: translate(480px, -60px) rotate(-15deg) scale(0.95); opacity: 1; }
  100% { transform: translate(700px,  40px) rotate(5deg)  scale(0.7); opacity: 0; }
}

/* dotted trail */
.plane-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sand);
  opacity: 0;
  animation: dot-fade 0.8s ease-out forwards;
}
@keyframes dot-fade {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(0.3); }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}
.footer__logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════════
   PROJECT PAGES
══════════════════════════════════════════ */
.project-hero {
  padding: 140px 0 clamp(64px, 9vw, 100px);
  border-bottom: 1px solid var(--divider);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 56px;
  transition: color var(--t), gap var(--t);
}
.back-link:hover { color: var(--ink); gap: 14px; }
.back-link::before { content: '←'; }

.project-hero__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.project-hero h1 { margin-bottom: 24px; max-width: 860px; }
.project-intro {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  max-width: 700px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 52px;
}
.project-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border: 1px solid var(--divider);
  overflow: hidden;
}
.project-meta__item {
  padding: 24px 28px;
  border-right: 1px solid var(--divider);
}
.project-meta__item:last-child { border-right: none; }
.project-meta__label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 6px;
}
.project-meta__value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.project-video {
  aspect-ratio: 16/8;
  background: var(--blue);
  overflow: hidden;
  margin: clamp(48px, 8vw, 80px) 0;
  position: relative;
}
.project-video video,
.project-video iframe { width: 100%; height: 100%; object-fit: cover; }
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.2);
}
.video-placeholder__icon {
  width: 60px; height: 60px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.video-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.case-sidebar {
  position: sticky;
  top: 100px;
}
.case-sidebar__label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 16px;
}
.case-toc { display: flex; flex-direction: column; gap: 10px; }
.case-toc a {
  font-size: 0.84rem;
  color: var(--muted);
  padding-left: 14px;
  border-left: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.case-toc a:hover { color: var(--ink); border-left-color: var(--sand); }

.case-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 64px 0 20px;
  padding-top: 64px;
  border-top: 1px solid var(--divider);
}
.case-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.case-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--ink);
}
.case-content p { margin-bottom: 18px; }
.case-content strong { color: var(--ink); font-weight: 600; }

.img-grid { display: grid; gap: 12px; margin: 40px 0; }
.img-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.img-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.img-frame {
  overflow: hidden;
  background: var(--divider);
  aspect-ratio: 16/10;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame__ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 180px;
}

.pull-quote {
  border-left: 3px solid var(--sand);
  padding: 28px 36px;
  background: var(--surface);
  margin: 48px 0;
}
.pull-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
}
.pull-quote cite {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  font-style: normal;
}

.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--divider);
}
.project-nav__item {
  padding: 28px 32px;
  border: 1px solid var(--divider);
  display: block;
  transition: border-color var(--t), background var(--t);
}
.project-nav__item:hover { border-color: var(--ink); background: var(--surface); }
.project-nav__dir {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 8px;
}
.project-nav__title { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.project-nav__item:last-child { text-align: right; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-hero {
  padding: 160px 0 clamp(80px, 10vw, 120px);
  border-bottom: 1px solid var(--divider);
}
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.about-hero h1 { margin: 20px 0 28px; }
.about-hero h1 em { color: var(--sand); font-style: normal; }
.about-hero__lead {
  font-size: clamp(1.05rem, 1.7vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-hero__img {
  position: sticky;
  top: 100px;
  aspect-ratio: 3/4;
  background: var(--bg);
}
.about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--divider);
  overflow: hidden;
}
.stat {
  padding: 36px 32px;
  border-right: 1px solid var(--divider);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.skill-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  padding: 36px 32px;
}
.skill-card__num {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 20px;
}
.skill-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink);
}
.skill-card ul { display: flex; flex-direction: column; gap: 9px; }
.skill-card li {
  font-size: 0.86rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.skill-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--divider);
  font-size: 0.75rem;
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.26s; }
.delay-4 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.32s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .project-row,
  .project-row--featured { grid-template-columns: 1fr; }
  .project-row__media { aspect-ratio: 16/9 !important; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-col { border-right: none; border-bottom: 1px solid var(--divider); }
  .brand-col:last-child { border-bottom: none; }
  .authority__inner { grid-template-columns: 1fr; }
  .medtech-soon__inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-hero__grid { grid-template-columns: 1fr; }
  .about-hero__img { position: relative; top: 0; aspect-ratio: 16/10; max-width: 100%; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .case-body { grid-template-columns: 1fr; }
  .case-sidebar { display: none; }
}
/* ── Typewriter ── */
.about-hero__eyebrow {
  min-height: 1.3em;
  opacity: 1;
}
.tw-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--sand);
  margin-left: 2px;
  vertical-align: middle;
  border-radius: 1px;
  animation: tw-blink 0.65s step-end infinite;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── LinkedIn rocket ── */
.li-rocket {
  position: fixed;
  pointer-events: none;
  font-size: 1.2rem;
  z-index: 9999;
  opacity: 0;
  line-height: 1;
}
.li-rocket.launch {
  animation: rocket-arc 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes rocket-arc {
  0%   { opacity: 1;   transform: translate(0,    0)    rotate(-45deg); }
  60%  { opacity: 1;   transform: translate(70px, -50px) rotate(-45deg); }
  100% { opacity: 0;   transform: translate(130px, -30px) rotate(-45deg); }
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--sand);
  z-index: 10000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Availability pulse dot ── */
.avail-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  animation: avail-pulse 2.2s ease-in-out infinite;
}
@keyframes avail-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.55); }
  50%       { box-shadow: 0 0 0 5px rgba(76,175,80,0); }
}

/* ── Portrait tilt on hover ── */
.about-hero__img {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center bottom;
}
.about-hero__img:hover {
  transform: rotate(1.8deg) scale(1.015);
  cursor: crosshair;
}

/* ── Skill card number stagger ── */
.skill-card__num {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.skill-card.num-visible .skill-card__num {
  opacity: 1;
  transform: translateY(0);
}

/* ── Magnetic button ── */
.btn { will-change: transform; }

/* ── Easter egg ── */
.design-burst {
  position: fixed;
  pointer-events: none;
  font-size: 1.4rem;
  z-index: 9998;
  animation: burst-out 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes burst-out {
  0%   { opacity: 1; transform: translate(0, 0) scale(0.5); }
  60%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1.1); }
}
.easter-msg {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9998;
  pointer-events: none;
  white-space: nowrap;
}
.easter-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════
   ELEVATION ADDITIONS
   Material Symbols · Outcome tags · Contact icons · Accessibility
   ══════════════════════════════════════ */

/* ── Material Symbols variable tuning ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  vertical-align: middle;
  user-select: none;
  -webkit-user-select: none;
  speak: none;
}

/* ── Outcome tag — IDEO-style evidence signal on project cards ── */
.outcome-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--sand-dark);
  background: rgba(214, 185, 140, 0.07);
  border: 1px solid rgba(214, 185, 140, 0.2);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.outcome-tag .material-symbols-outlined {
  font-size: 0.78rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  opacity: 0.7;
}
.project-row:hover .outcome-tag {
  background: rgba(214, 185, 140, 0.12);
  border-color: rgba(214, 185, 140, 0.35);
}

/* ── Contact item with icon ── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item__icon {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.contact-item:hover .contact-item__icon { color: rgba(255, 255, 255, 0.4); }

/* ── Focus-visible — WCAG AA accessibility ── */
:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }

/* ── Eyebrow line animates on interactive hover ── */
.eyebrow::before {
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
a:hover > .eyebrow::before,
button:hover > .eyebrow::before {
  width: 36px;
}

/* ══════════════════════════════════════
   WOW EFFECTS
   ══════════════════════════════════════ */

/* ── 1. Custom cursor ── */
@media (pointer: fine) {
  * { cursor: none !important; }
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.85);
  pointer-events: none;
  z-index: 99998;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition:
    width  0.32s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.32s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.3s ease,
    border-color 0.3s ease;
  will-change: transform;
}
.cursor-ring.is-project {
  width: 80px;
  height: 80px;
}
.cursor-ring.is-cta {
  width: 56px;
  height: 56px;
  background: rgba(214, 185, 140, 0.12);
  border-color: var(--sand);
}
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.cursor-label.visible { opacity: 1; }

/* ── 2. Hero word-by-word reveal ── */
.hw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.hwi {
  display: inline-block;
  transform: translateY(115%);
  animation: hw-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes hw-in {
  to { transform: translateY(0); }
}

/* ── 3. Marquee statement band ── */
.marquee-band {
  background: var(--blue);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-band__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: band-scroll 55s linear infinite;
}
.marquee-band__item {
  font-family: var(--font-head);
  font-size: clamp(0.68rem, 1.2vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--sand);
  padding: 0 36px;
}
.marquee-band__sep {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
@keyframes band-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 4. Project image clip-path wipe-in ── */
.project-row:not(.project-row--soon) .project-row__media {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.project-row.visible:not(.project-row--soon) .project-row__media {
  clip-path: inset(0 0% 0 0);
}

/* ── Lynk & Co — impact sentence (project pages) ── */
.project-block__impact {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  border-left: 2px solid var(--sand);
  padding-left: 14px;
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── Impact sentence — homepage project cards ── */
.project-row__impact {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  border-left: 2px solid var(--sand);
  padding-left: 14px;
  margin-top: 18px;
  line-height: 1.65;
  opacity: 0.82;
  transition: opacity 0.3s ease;
}
.project-row:hover .project-row__impact {
  opacity: 1;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .work-intro { grid-template-columns: 1fr; }
  .work-intro__right { text-align: left; }
  .work-intro__right p { margin-left: 0; }
  .hero__proof { gap: 20px; }
  .project-nav { grid-template-columns: 1fr; }
  .img-grid.cols-2,
  .img-grid.cols-3 { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer__inner { flex-direction: column; gap: 10px; text-align: center; }
  .project-meta { grid-template-columns: 1fr 1fr; }
  .authority__stats { grid-template-columns: 1fr 1fr; }
}
