/* =====================
   LENZO BRAND TOKENS
   ===================== */
:root {
  --ink: #1A1714;
  --warm-dark: #2C2520;
  --denim: #2B4C8C;
  --cornflower: #5B7FD4;
  --powder: #C2D4F8;
  --coral: #F26D51;
  --lime: #C8F24D;
  --cream: #F7F3EC;
  --sand: #E8DECE;
  --warm-gray: #9E9589;
  --warm-white: #FDFAF5;

  --green:       #2E8B4A;

  --font-display: 'Syne', sans-serif;
  --font-mono: 'Azeret Mono', monospace;
  --font-body: 'Epilogue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* =====================
   CURSOR
   ===================== */
.cursor-dot {
  font-size: 28px;
  line-height: 1;
  color: var(--cornflower);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: color 0.4s ease, opacity 0.2s;
  user-select: none;
  animation: cursorSpin 8s linear infinite;
}
body.hovered .cursor-dot {
  color: var(--coral);
  animation-duration: 1.2s;
}

/* =====================
   NAV
   ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 48px;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: transform 0.3s ease;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-logo em { font-style: italic; font-weight: 400; color: var(--denim); }
.nav-logo .dot { color: var(--coral); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { transform: scaleX(1); }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--sand);
}


.hero-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(64px, 11vw, 148px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-roles {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,23,20,0.45);
  margin-bottom: 32px;
}

.role-sep { margin: 0 8px; opacity: 0.4; }

.role-highlight { color: var(--cornflower); }

.hero-rule {
  border: none;
  border-top: 1px solid var(--sand);
  margin-bottom: 28px;
}

.hero-bio-statement {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.72;
  color: rgba(26,23,20,0.68);
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 86px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  animation: heroLineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.line-1 .line-inner { animation-delay: 0.2s; }
.line-2 .line-inner { animation-delay: 0.38s; }

.hero-statement {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 1100px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.highlight-coral { color: var(--coral); }
.highlight-blue  { color: var(--cornflower); }
.highlight-green { color: var(--green); }
.highlight-denim { color: var(--denim); }

.hero-link {
  font-weight: 500;
  text-decoration: none;
  cursor: none;
}
.hero-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.blue-highlight { color: var(--cornflower); }

.title-dot { color: var(--lime); }

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero-bio p {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(26,23,20,0.65);
  max-width: 620px;
}

.hero-bio strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--sand);
  padding-top: 36px;
}

.stat-item {
  flex: 1;
  padding: 0 40px 0 0;
}
.stat-item + .stat-item {
  padding-left: 40px;
  border-left: 1px solid var(--sand);
}
.stat-item:last-child { padding-right: 0; }

.stat-divider { display: none; }

.stat-accent {
  width: 3px;
  height: 22px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.accent-lime { background: var(--lime); }
.accent-cornflower { background: var(--cornflower); }
.accent-coral { background: var(--coral); }

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  color: var(--ink);
}
.stat-num.stat-cornflower { color: var(--cornflower); }
.stat-num.stat-coral { color: var(--coral); }

.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.stat-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.7;
}

.stat-desc strong {
  color: var(--ink);
  font-weight: 500;
}

/* =====================
   SECTION HEADERS
   ===================== */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--coral);
  letter-spacing: 0.08em;
}

.section-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.section-line {
  flex: 1;
  height: 1px;
  background: var(--sand);
}

/* =====================
   WORK GRID
   ===================== */
.work {
  padding: 80px 48px 100px;
  border-bottom: 1px solid var(--sand);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.case-card {
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(26,23,20,0.15);
}

/* Dark cards */
.card-dark { background: var(--ink); color: white; }
.card-coral { background: var(--coral); color: white; }
.card-cream { background: var(--cream); color: var(--ink); border: 1px solid var(--sand); }

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Tags */
.tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  display: inline-block;
}

.tag-powder { background: rgba(194,212,248,0.18); color: var(--powder); border: 1px solid rgba(194,212,248,0.25); }
.tag-lime { background: var(--lime); color: var(--ink); }
.tag-dark-on-coral { background: rgba(0,0,0,0.18); color: rgba(255,255,255,0.85); }
.tag-sand { background: var(--sand); color: var(--warm-gray); }

.card-num-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}
.dark-badge { color: rgba(255,255,255,0.25); }
.ink-badge { color: var(--warm-gray); }

.card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  flex: 1;
}

.cornflower-text { color: var(--cornflower); }
.lime-text { color: var(--lime); }
.denim-text { color: var(--denim); }

/* Meta rows */
.card-meta-row {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-cream .card-meta-row {
  border-color: var(--sand);
}

.light-meta {
  border-color: rgba(255,255,255,0.25) !important;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}

.card-cream .meta-label { color: var(--warm-gray); }
.light-meta .meta-label { color: rgba(255,255,255,0.5); }

.meta-val {
  font-size: 13px;
  font-weight: 500;
  color: white;
}
.card-cream .meta-val { color: var(--ink); }

.card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.card-desc strong { color: white; font-weight: 400; }
.card-cream .card-desc { color: var(--warm-gray); }
.card-cream .card-desc strong { color: var(--ink); font-weight: 400; }
.card-coral .card-desc { color: rgba(255,255,255,0.8); }
.card-coral .card-desc strong { color: white; font-weight: 400; }

/* CTAs */
.card-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  border-radius: 100px;
  margin-top: auto;
  transition: opacity 0.2s, transform 0.2s;
  align-self: flex-start;
}

.card-cta:hover { opacity: 0.8; transform: translateX(3px); }

.cta-lime { background: var(--lime); color: var(--ink); }
.cta-powder { background: rgba(194,212,248,0.15); color: var(--powder); border: 1px solid rgba(194,212,248,0.3); }
.cta-dark { background: rgba(0,0,0,0.2); color: white; }

/* Stats 2x2 */
.stats-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-stat {
  background: white;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid var(--sand);
}

.mini-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.mini-num.coral-text { color: var(--coral); }
.mini-num.denim-text { color: var(--denim); }

.mini-desc {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.4;
}

/* =====================
   SKILLS
   ===================== */
.skills-section {
  padding: 80px 48px 100px;
  border-bottom: 1px solid var(--sand);
}

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

.skill-card {
  background: white;
  border: 1.5px solid var(--sand);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-card:hover {
  border-color: var(--cornflower);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(91,127,212,0.1);
}

.skill-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blue-icon { background: var(--denim); }
.dark-icon { background: var(--ink); }
.coral-icon { background: var(--coral); }

.skill-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
}

.skill-card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-gray);
  flex: 1;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--sand);
}

.s-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--warm-gray);
  padding: 5px 10px;
  border-radius: 100px;
}

/* =====================
   ABOUT / CONTACT
   ===================== */
.about {
  padding: 80px 48px 100px;
  border-bottom: 1px solid var(--sand);
}

.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--sand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--warm-gray);
  letter-spacing: -0.01em;
  position: sticky;
  top: 100px;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-heading em {
  font-style: normal;
  color: var(--cornflower);
}

.about-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,23,20,0.65);
  margin-bottom: 40px;
  max-width: 520px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 18px 24px;
  background: var(--cream);
  border-radius: 12px;
  border: 1.5px solid var(--sand);
  transition: border-color 0.2s, background 0.2s;
}

.contact-link:hover {
  border-color: var(--coral);
  background: white;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  min-width: 72px;
}

/* =====================
   CONTACT DARK
   ===================== */
.contact-dark {
  background: var(--ink);
  color: white;
  padding: 80px 48px 100px;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: white;
}

.contact-accent {
  font-style: italic;
  color: var(--cornflower);
}

.contact-headline strong {
  color: var(--cornflower);
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}
.contact-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.contact-btn-primary {
  background: var(--cornflower);
  color: white;
}

.contact-btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.contact-btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: white; opacity: 1; }

/* =====================
   FOOTER
   ===================== */
footer {
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-dark {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-logo .dot { color: var(--cornflower); }

.footer-copy, .footer-right {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0.2);
}

/* =====================
   CASE STUDY PAGES
   ===================== */

/* ── Hero ── */
.cs-hero {
  background: var(--cream);
  padding: 120px 48px 64px;
  border-bottom: 1px solid var(--sand);
}

.cs-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.cs-eyebrow-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--coral);
  letter-spacing: 0.1em;
}

.cs-eyebrow-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--sand);
  color: var(--warm-gray);
  border: 1px solid rgba(232,222,206,0.8);
}

.cs-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 900px;
  margin-bottom: 48px;
}

.cs-title-spark {
  display: inline-block;
  color: var(--coral);
  margin-left: 12px;
  font-size: 0.55em;
  vertical-align: super;
  line-height: 1;
}

.cs-meta-rule {
  border: none;
  border-top: 1px solid var(--sand);
  margin-bottom: 28px;
}

.cs-meta-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.cs-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 48px;
  margin-right: 48px;
  border-right: 1px solid var(--sand);
}
.cs-meta-item:last-child { border-right: none; margin-right: 0; }

.cs-meta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.cs-meta-val {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}

/* Hero entry animations */
.cs-hero .cs-eyebrow {
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.05s forwards;
}
.cs-hero .cs-title {
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.75s cubic-bezier(0.16,1,0.3,1) 0.18s forwards;
}
.cs-hero .cs-meta-rule,
.cs-hero .cs-meta-row {
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}

/* ── 2-col layout ── */
.cs-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 0 48px;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sticky side nav */
.cs-sidenav {
  position: sticky;
  top: 80px;
  align-self: start;
  padding: 56px 32px 56px 0;
  border-right: 1px solid var(--sand);
  height: calc(100vh - 80px);
  overflow-y: auto;
}

.cs-sidenav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-sidenav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 8px 0;
  transition: color 0.2s;
  position: relative;
}

.cs-sidenav-list li a .nav-num {
  color: rgba(158,149,137,0.5);
  font-size: 9px;
  min-width: 18px;
}

.cs-sidenav-list li a::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 16px;
  background: var(--coral);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}

.cs-sidenav-list li a:hover,
.cs-sidenav-list li a.active { color: var(--ink); }
.cs-sidenav-list li a:hover::before,
.cs-sidenav-list li a.active::before { transform: translateY(-50%) scaleY(1); }
.cs-sidenav-list li a.active { font-weight: 500; }

/* Content column */
.cs-content {
  padding: 56px 0 120px 64px;
}

/* ── Sections ── */
.cs-section {
  margin-bottom: 80px;
  scroll-margin-top: 100px;
}

.cs-section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cs-section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--sand);
}

.cs-section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.0;
}

.cs-section p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,23,20,0.7);
  max-width: 720px;
  margin-bottom: 20px;
}
.cs-section p:last-child { margin-bottom: 0; }
.cs-section p strong { font-weight: 600; color: var(--ink); }

.cs-sub-heading {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: 0.01em;
}

.cs-list {
  list-style: none;
  margin: 12px 0 24px;
  max-width: 720px;
}
.cs-list li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26,23,20,0.7);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid rgba(232,222,206,0.5);
}
.cs-list li:last-child { border-bottom: none; }
.cs-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: 12px;
}
.cs-list li strong { font-weight: 600; color: var(--ink); }

.cs-callout {
  background: var(--cream);
  border-left: 3px solid var(--coral);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
  max-width: 720px;
}
.cs-callout p {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: rgba(26,23,20,0.65);
  margin: 0;
  max-width: none;
}
.cs-callout p + p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(232,222,206,0.6);
}

.cs-img-placeholder {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16/9;
  background: var(--cream);
  border-radius: 12px;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px dashed var(--sand);
  position: relative;
  overflow: hidden;
}
.cs-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(232,222,206,0.3) 10px,
    rgba(232,222,206,0.3) 11px
  );
}
.cs-img-placeholder span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  position: relative;
  z-index: 1;
}
.cs-img-placeholder-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  line-height: 1.8;
}
.cs-img-placeholder-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(242,109,81,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(242,109,81,0.2);
}

.cs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  border-radius: 12px;
  overflow: hidden;
  margin: 32px 0;
  max-width: 720px;
}
.cs-stat {
  background: var(--warm-white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cs-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cs-stat-num.coral { color: var(--coral); }
.cs-stat-num.blue  { color: var(--cornflower); }
.cs-stat-num.green { color: var(--green); }
.cs-stat-num.ink   { color: var(--ink); }
.cs-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.cs-stat-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.4;
}

.cs-decisions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 24px 0;
}
.cs-decision {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 24px 28px;
}
.cs-decision-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}
.cs-decision h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.cs-decision p {
  font-size: 14px;
  color: rgba(26,23,20,0.65);
  line-height: 1.7;
  margin: 0;
  max-width: none;
}
.cs-decision p + p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--sand);
}

.cs-section-rule {
  border: none;
  border-top: 1px solid var(--sand);
  margin-bottom: 80px;
}

/* ── Case Study Images ── */
.cs-case-img {
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  margin: 32px 0;
  display: block;
  border: 1px solid var(--sand);
  background: var(--sand);
}

/* ── EAP Strip ── */
.eap-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0;
  max-width: 720px;
}
.eap-stat {
  background: var(--warm-white);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.eap-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--coral);
}
.eap-stat-num.blue { color: var(--cornflower); }
.eap-stat-num.ink  { color: var(--ink); }
.eap-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.eap-stat-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.4;
}

/* ── Priority Table ── */
.priority-grid {
  max-width: 720px;
  margin: 28px 0;
  border: 1px solid var(--sand);
  border-radius: 12px;
  overflow: hidden;
}
.priority-header {
  display: grid;
  grid-template-columns: 90px 1fr 72px;
  gap: 16px;
  padding: 10px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}
.priority-header-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.priority-header-label.align-right { text-align: right; }
.priority-row {
  display: grid;
  grid-template-columns: 90px 1fr 72px;
  align-items: center;
  gap: 16px;
  background: var(--warm-white);
  padding: 18px 20px;
  border-bottom: 1px solid var(--sand);
}
.priority-row:last-child { border-bottom: none; }
.priority-row.top { background: var(--warm-white); }
.priority-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
}
.priority-badge.p1 { background: var(--coral); color: white; }
.priority-badge.p2 { background: var(--sand); color: var(--warm-gray); }
.priority-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.priority-title span {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: var(--warm-gray);
  margin-top: 3px;
}
.priority-freq {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--warm-gray);
  white-space: nowrap;
  text-align: right;
}
.priority-freq strong { color: var(--ink); font-weight: 600; }

/* ── Quote Grid ── */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 28px 0;
}
.quote-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(26,23,20,0.7);
  flex: 1;
}
.quote-text strong { font-style: normal; font-weight: 600; color: var(--ink); }
.quote-meta { display: flex; align-items: center; gap: 10px; }
.quote-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--warm-gray);
  flex-shrink: 0;
}
.quote-who {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  line-height: 1.5;
}
.quote-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  background: rgba(242,109,81,0.1);
  color: var(--coral);
  white-space: nowrap;
}

/* ── Org Badges ── */
.cs-org-badges {
  display: flex;
  gap: 10px;
  margin: 20px 0 28px;
  flex-wrap: wrap;
}
.cs-org-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--ink);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cs-org-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cs-org-badge.org-1 .badge-dot { background: var(--coral); }
.cs-org-badge.org-2 .badge-dot { background: var(--lime); }

/* ── Phases ── */
.cs-phases {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 24px 0;
  border: 1px solid var(--sand);
  border-radius: 12px;
  overflow: hidden;
}
.cs-phase {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--sand);
}
.cs-phase:last-child { border-bottom: none; }
.cs-phase-label {
  background: var(--cream);
  padding: 24px 20px;
  border-right: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.cs-phase-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}
.cs-phase-org {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.cs-phase-body {
  background: var(--warm-white);
  padding: 24px;
}
.cs-phase-body p {
  font-size: 14px;
  margin-bottom: 0;
  max-width: none;
}

/* ── Feedback Grid ── */
.cs-feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 28px 0;
}
.cs-feedback-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 20px 22px;
}
.cs-feedback-quote {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(26,23,20,0.7);
  margin-bottom: 14px;
}
.cs-feedback-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs-feedback-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--warm-gray);
  flex-shrink: 0;
}
.cs-feedback-who {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ── 3-col stats modifier ── */
.cs-stats-3 { grid-template-columns: repeat(3, 1fr); }

/* ── PDF Viewer ── */
.cs-pdf-embed {
  width: 100%;
  max-width: 720px;
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sand);
}
.cs-pdf-viewer {
  display: flex;
  flex-direction: column;
}
.cs-pdf-canvas-wrap {
  width: 100%;
  background: var(--cream);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
#pdf-canvas {
  display: block;
  width: 100%;
}
.cs-pdf-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cs-pdf-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  line-height: 0;
}
.cs-pdf-btn:hover:not(:disabled) {
  color: white;
  background: rgba(255,255,255,0.08);
}
.cs-pdf-btn:disabled { opacity: 0.25; cursor: default; }
.cs-pdf-btn svg { width: 15px; height: 15px; }
.cs-pdf-counter {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}

/* =====================
   SELECTED WORK GALLERY
   ===================== */
.sw-section {
  padding: 80px 48px 100px;
  border-bottom: 1px solid var(--sand);
}

.sw-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.sw-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
}

.sw-rule {
  flex: 1;
  height: 1px;
  background: var(--sand);
}

.sw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.sw-card {
  position: relative;
  border-radius: 16px;
  padding: 36px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: none;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--sand);
  min-height: 220px;
}

.sw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(26,23,20,0.12);
}

.sw-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.sw-card:hover::before { opacity: 1; }

.sw-featured {
  grid-column: 1 / -1;
  min-height: 300px;
  padding: 48px 52px;
  background: var(--ink);
  border-color: transparent;
}
.sw-featured::before { background: var(--coral); }

.sw-blue  { background: var(--cream); }
.sw-blue::before  { background: var(--cornflower); }

.sw-coral-card { background: var(--cream); }
.sw-coral-card::before { background: var(--coral); }

.sw-denim { background: var(--cream); }
.sw-denim::before { background: var(--denim); }

.sw-card-top,
.sw-card-bottom { position: relative; z-index: 1; }

.sw-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sw-featured .sw-card-top { margin-bottom: 40px; }

.sw-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--warm-gray);
  transition: color 0.3s;
}
.sw-featured .sw-num { color: rgba(255,255,255,0.35); }
.sw-card:hover .sw-num { color: rgba(255,255,255,0.55); }

.sw-arrow {
  font-size: 18px;
  color: var(--sand);
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), color 0.3s;
}
.sw-featured .sw-arrow { color: rgba(255,255,255,0.25); }
.sw-card:hover .sw-arrow {
  transform: translate(4px, -4px);
  color: rgba(255,255,255,0.7);
}

.sw-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sw-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
  transition: color 0.3s;
}
.sw-featured .sw-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--warm-white);
}
.sw-blue .sw-title,
.sw-coral-card .sw-title,
.sw-denim .sw-title { font-size: clamp(18px, 2vw, 24px); }
.sw-card:hover .sw-title { color: var(--warm-white); }

.sw-teaser {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--warm-gray);
  max-width: 560px;
  transition: color 0.3s;
}
.sw-featured .sw-teaser { color: rgba(255,255,255,0.5); }
.sw-card:hover .sw-teaser { color: rgba(255,255,255,0.75); }

.sw-metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
}

.sw-metric-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.sw-featured    .sw-metric-num { color: var(--coral); }
.sw-blue        .sw-metric-num { color: var(--cornflower); }
.sw-coral-card  .sw-metric-num { color: var(--coral); }
.sw-denim       .sw-metric-num { color: var(--denim); }
.sw-card:hover .sw-metric-num { color: rgba(255,255,255,0.9); }

.sw-metric-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding-top: 2px;
  transition: color 0.3s;
}
.sw-featured .sw-metric-label { color: rgba(255,255,255,0.35); }
.sw-card:hover .sw-metric-label { color: rgba(255,255,255,0.6); }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes heroLineReveal {
  to { transform: translateY(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cursorSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  .hero { padding: 110px 24px 60px; }
  .hero-name { font-size: clamp(64px, 18vw, 120px); }
  .contact-dark { padding: 60px 24px 80px; }
  .contact-headline { font-size: clamp(40px, 10vw, 80px); }
  .contact-actions { flex-direction: column; }
  footer { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .footer-right { display: none; }
  .cs-hero { padding: 100px 24px 48px; }
  .cs-title { font-size: clamp(36px, 8vw, 64px); }
  .cs-layout { grid-template-columns: 1fr; padding: 0 24px; }
  .cs-sidenav { display: none; }
  .cs-content { padding: 40px 0 80px; }
  .cs-stats { grid-template-columns: repeat(2, 1fr); }
  .cs-decisions { gap: 12px; }
  .cs-meta-item { padding-right: 24px; margin-right: 24px; }
  .cs-feedback-grid { grid-template-columns: 1fr; }
  .cs-phase { grid-template-columns: 1fr; }
  .cs-phase-label { border-right: none; border-bottom: 1px solid var(--sand); }
  .cs-stats-3 { grid-template-columns: repeat(2, 1fr); }
  .eap-strip { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .priority-header { grid-template-columns: 70px 1fr; }
  .priority-header-label.align-right { display: none; }
  .priority-row { grid-template-columns: 70px 1fr; }
  .priority-freq { display: none; }
  .sw-section { padding: 60px 24px 80px; }
  .sw-grid { grid-template-columns: 1fr; }
  .sw-featured { grid-column: 1; min-height: 260px; padding: 36px; }
  .sw-card { min-height: 200px; }
}
