:root {
  --orange: #f3701e;
  --blue: #0a3d5c;
  --cream: #eeebe4;
  --warm-white: #f5f2ec;
  --dark: #1c1b18;
  --mid: #6b6560;
  --rule: rgba(28,27,24,0.1);
  --hero-blue: #1fb1e7;
  --dark-20: rgba(28,27,24,0.2);
  --dark-70: rgba(28,27,24,0.7);
  --r-sm: 8px;
  --r-md: 14px;
  --r-full: 100px;
}

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

body {
  background: var(--warm-white);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── FAB ─── */
.fab {
  position: fixed;
  bottom: 36px; right: 36px;
  z-index: 200;
  display: flex; align-items: center;
  background: var(--dark); color: white;
  text-decoration: none;
  height: 52px;
  padding: 0 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 8px 32px var(--dark-20);
  overflow: hidden;
  border-radius: var(--r-full);
  opacity: 0.85;
  transition: background 0.3s, box-shadow 0.3s, opacity 0.3s, padding 0.3s, transform 0.3s;
}
.fab.fab-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.fab:hover {
  background: var(--blue);
  box-shadow: 0 12px 40px rgba(10,61,92,0.4);
  opacity: 1;
  padding: 0 20px 0 24px;
}

.fab-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--hero-blue);
  margin-right: 12px; flex-shrink: 0;
  transition: opacity 0.25s, width 0.3s, margin 0.3s;
}
.fab:hover .fab-dot {
  opacity: 0;
  width: 0;
  margin-right: 0;
}

.fab-label {
  display: inline-block;
  transition: transform 0.35s ease;
}
.fab:hover .fab-label {
  transform: translateX(-4px);
}

.fab-arrow {
  display: flex; align-items: center;
  width: 0; overflow: hidden;
  opacity: 0;
  margin-left: 0;
  transition: width 0.35s ease, opacity 0.25s ease, margin 0.35s ease;
}
.fab:hover .fab-arrow {
  width: 20px;
  opacity: 1;
  margin-left: 10px;
}

/* ─── HERO V2 ─── */
.hero-v2 {
  display: flex;
  width: 100%;
  height: 680px;
  overflow: hidden;
  padding: 0;
}

.hero-v2-photo-panel {
  flex: 0 0 33.333%;
  max-width: 480px;
  position: relative;
  background: var(--hero-blue);
  overflow: hidden;
}

.hero-v2-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: rotate(-4.78deg) scale(1.12);
  transform-origin: 50% 50%;
}

.hero-v2-photo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 78% 22%;
  filter: grayscale(1) contrast(1.05);
  mix-blend-mode: multiply;
}

.hero-v2-content {
  flex: 1;
  background: linear-gradient(68.49deg, var(--hero-blue) 11.23%, #0687b6 98.93%);
  display: flex;
  flex-direction: column;
  padding: 56px 60px 48px 43px;
  justify-content: space-between;
}

.hero-v2-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.54px;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 7px;
}

.hero-v2-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(72px, 8.9vw, 128px);
  line-height: 1.024;
  color: white;
  margin: 0 0 16px;
  white-space: nowrap;
}

.hero-v2-tagline-wrap {
  display: flex;
  align-items: stretch;
  gap: 23px;
}

.hero-v2-bar {
  width: 7px;
  background: rgba(28, 27, 24, 0.3);
  flex-shrink: 0;
}

.hero-v2-tagline {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: white;
  margin: 0;
  max-width: 560px;
}

.hero-v2-logos {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-v2-logos-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 48px);
}

.hero-v2-logo {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-v2-logo-opensesame,
.hero-v2-logo-floqast,
.hero-v2-logo-cbs,
.hero-v2-logo-transamerica,
.hero-v2-logo-latimes,
.hero-v2-logo-nbc { height: clamp(40px, 4vw, 60px); }
.hero-v2-logo-disney { height: clamp(80px, 8vw, 120px); }

@media (max-width: 768px) {
  .hero-v2 {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .hero-v2-photo-panel {
    display: none;
  }
  .hero-v2-content {
    flex: none;
    width: 100%;
    padding: 40px 28px 48px;
  }
  .hero-v2-name {
    font-size: clamp(52px, 14vw, 72px);
    white-space: normal;
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .hero-v2-tagline {
    font-size: 18px;
  }
  .hero-v2-logos {
    margin-top: 40px;
    gap: 20px;
  }
  .hero-v2-logos-row {
    gap: 20px;
    flex-wrap: wrap;
  }
}

/* ─── SECTION UTILITY ─── */
section { padding: 80px 52px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: 0.93; letter-spacing: 0.01em;
  color: var(--dark); margin-bottom: 52px;
}
.divider { border: none; border-top: 1px solid var(--rule); margin: 0 52px; }
.divider-dark { border-color: rgba(255,255,255,0.06); margin: 0; }

/* ─── BIO ─── */
.bio-section { background: var(--dark); padding-top: 60px; }
.bio-section .section-heading { color: white; }
.bio-grid { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 0 52px; align-items: start; position: relative; overflow: visible; }
.bio-diagonal-line {
  position: relative;
  align-self: stretch;
}
.bio-diagonal-line::after {
  content: '';
  position: absolute;
  top: -8px; bottom: -8px;
  left: 0;
  width: 2px;
  background: rgba(255,255,255,0.2);
  transform: rotate(8deg);
  transform-origin: center;
}
.bio-label {
  font-family: 'Playfair Display SC', serif;
  font-weight: 900;
  font-size: 24px; line-height: 30px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 10px;
}
.bio-text {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.6);
}
.bio-text em { font-style: normal; color: var(--blue); font-weight: 400; }

/* ─── SKILLS LIST ─── */
.skills-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; }
.skill-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  cursor: default;
}
.skill-item:first-child { border-top: 1px solid var(--rule); }
.skill-bullet {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hero-blue);
  flex-shrink: 0;
  margin-top: 6px;
}
.skill-content { display: flex; flex-direction: column; gap: 4px; }
.skill-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 17px; line-height: 1.3;
  color: var(--dark);
}
.skill-desc {
  font-size: 15px; line-height: 1.65;
  color: var(--mid);
}

/* ─── TIMELINE ─── */
.timeline-section { background: var(--dark); }
.timeline-section .section-heading { color: white; }

.timeline-linkedin {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 52px;
  margin-top: -28px;
  transition: color 0.2s;
}
.timeline-linkedin:hover { color: white; }

.timeline {
  position: relative;
  padding-left: 0;
  padding-bottom: 8px;
}
.timeline-line {
  position: absolute;
  left: 140px; top: 0; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.1);
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}
.timeline-item + .timeline-item { border-top: 1px solid rgba(255,255,255,0.06); }
.timeline-item.featured .tl-content { border-left: 3px solid var(--hero-blue); }

.tl-year {
  padding: 36px 32px 36px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-align: right;
  position: relative;
}
.tl-year::after {
  content: '';
  position: absolute;
  right: -5px; top: 46px;
  width: 9px; height: 9px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s, width 0.3s, height 0.3s, right 0.3s;
}
.timeline-item.featured .tl-year::after,
.timeline-item.tl-active .tl-year::after {
  background: var(--hero-blue);
  border-color: var(--hero-blue);
  width: 11px; height: 11px;
  right: -6px;
}

.tl-content {
  padding: 36px 0 36px 48px;
  border-left: 1px solid transparent;
  transition: border-color 0.3s;
}
.timeline-item.tl-active .tl-content {
  border-left: 3px solid var(--hero-blue);
}
.timeline-item.tl-active .tl-company {
  color: white;
}

.tl-company {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.04em;
  color: white; margin-bottom: 4px;
}
.tl-role {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.tl-desc {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
}

/* ─── AI PROJECTS ─── */
.ai-section { background: var(--cream); }
.ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ai-card {
  background: var(--warm-white);
  padding: 44px 36px;
  border-top: 3px solid var(--rule);
  border-radius: var(--r-md);
  position: relative; overflow: hidden;
  transition: border-color 0.2s;
}
.ai-card:hover { border-top-color: var(--blue); }
.ai-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.03em;
  color: var(--dark); margin-bottom: 10px;
}
.ai-card-desc {
  font-size: 15px; line-height: 1.7; color: var(--mid);
}
.ai-card-tag {
  display: inline-block; margin-top: 20px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); padding: 6px 12px;
  border: 1px solid var(--blue);
  border-radius: var(--r-full);
}

.ai-card-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.ai-card-btns .ai-card-btn { margin-top: 0; }

.ai-card-btn {
  display: inline-block; margin-top: 20px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--blue);
  border-radius: var(--r-full);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.ai-card-btn:hover { background: var(--blue); color: white; }

/* ─── CREATIVE WORK ─── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.work-card {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--cream);
  cursor: pointer;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 32px;
  transition: background 0.3s, transform 0.25s, box-shadow 0.25s;
}
.work-card:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--dark-20);
}
.work-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
  filter: grayscale(0.9) contrast(1.05);
  transform: scale(1.02);
  transition: opacity 0.4s, filter 0.4s, transform 0.5s;
}
.work-card:hover .work-card-img { opacity: 0.5; filter: grayscale(0.5) contrast(1.1); transform: scale(1.05); }
.work-card::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s;
}
.work-card:hover::after { background: rgba(8, 18, 28, 0.72); }
.work-card-body { position: relative; z-index: 2; }
.work-card-bar {
  width: 28px; height: 2px; background: var(--hero-blue);
  margin-bottom: 16px;
  transition: width 0.4s ease;
}
.work-card:hover .work-card-bar { width: 100%; }
.work-card-category {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--hero-blue); line-height: 12px;
  opacity: 0; max-height: 0; margin-bottom: 0; overflow: hidden;
  transition: color 0.3s, opacity 0.25s, max-height 0.3s, margin-bottom 0.3s;
}
.work-card:hover .work-card-category {
  opacity: 1;
  max-height: 40px;
  margin-bottom: 6px;
}
.work-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 24px;
  line-height: 1.1; color: var(--dark);
  transition: color 0.3s;
}
.work-card:hover .work-card-title { color: white; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--blue); color: var(--blue);
  text-decoration: none; padding: 15px 36px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--r-full);
  transition: background 0.2s, color 0.2s, gap 0.2s;
  cursor: pointer; background: none;
}
.btn-outline:hover { background: var(--blue); color: white; gap: 18px; }

/* ─── AWARDS ─── */
.awards-compact {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: center;
}
.awards-image img {
  width: 100%; display: block;
  mix-blend-mode: multiply;
}
.awards-list {
  display: flex; flex-direction: column;
}
.award-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}
.award-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 0.06em;
  color: var(--blue); flex-shrink: 0;
}
.award-title {
  font-size: 15px; font-weight: 400; color: var(--dark);
}
.award-org {
  font-size: 13px; color: var(--mid); text-align: right;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--dark); text-align: center;
  padding: 120px 52px;
}
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92; color: white;
  margin-bottom: 24px;
}
.contact-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 22px; color: rgba(255,255,255,0.45);
  margin-bottom: 52px;
}
.contact-email {
  display: inline-flex; align-items: center; gap: 14px;
  background: transparent; color: var(--hero-blue);
  border: 1px solid var(--hero-blue);
  text-decoration: none; padding: 20px 48px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--r-full);
  transition: background 0.2s, color 0.2s;
}
.contact-email:hover { background: var(--hero-blue); color: white; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 52px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 11px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* ─── TIMELINE TOGGLE ─── */
.timeline-collapsed {
  display: none;
  overflow: hidden;
}
.timeline-collapsed.open {
  display: block;
}
.timeline-expand {
  display: flex; align-items: center; gap: 10px;
  padding: 36px 0 8px 140px;
  margin-top: 8px;
  cursor: pointer;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  user-select: none;
}
.timeline-expand:hover { color: white; }
.timeline-expand svg { transition: transform 0.3s ease; flex-shrink: 0; }
.timeline-expand.open svg { transform: rotate(180deg); }

/* ─── FADE-UP ─── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-diagonal-line { display: none; }
  .skill-name { font-size: 16px; }
  .timeline-line { left: 80px; }
  .timeline-item { grid-template-columns: 80px 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 72px 24px; }
  .divider { margin: 0 24px; }
}

/* ─── CASE STUDY MODAL ─── */
.cs-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 600;
  background: var(--dark-70);
  backdrop-filter: blur(6px);
  will-change: transform;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.cs-overlay.open { display: flex; }

.cs-modal {
  background: var(--warm-white);
  max-width: 1200px;
  width: 100%;
  max-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
}

.cs-header {
  background: var(--dark);
  padding: 36px 52px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-shrink: 0;
  transition: padding 0.3s ease;
}
.cs-header.collapsed {
  padding: 14px 52px;
  align-items: center;
}
.cs-header-inner { flex: 1; overflow: hidden; }

.cs-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hero-blue); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
  transition: opacity 0.2s, max-height 0.3s, margin 0.3s;
  max-height: 40px;
  overflow: hidden;
}
.cs-header.collapsed .cs-eyebrow {
  opacity: 0; max-height: 0; margin: 0;
}
.cs-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--hero-blue);
  flex-shrink: 0;
}

.cs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.02em; line-height: 1;
  color: white; margin-bottom: 20px;
  transition: font-size 0.3s, margin 0.3s;
}
.cs-header.collapsed .cs-title {
  font-size: 20px;
  margin-bottom: 0;
}

.cs-intro {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  transition: opacity 0.2s, max-height 0.3s, margin 0.3s;
  max-height: 200px;
  overflow: hidden;
}
.cs-header.collapsed .cs-intro {
  opacity: 0; max-height: 0; margin: 0;
}

.cs-close {
  background: none; border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; color: rgba(255,255,255,0.5);
  font-size: 22px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s;
  line-height: 1;
  border-radius: 50%;
}
.cs-close:hover { border-color: white; color: white; }

.cs-body {
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.cs-content-block {
  padding: 40px 72px 0;
}
.cs-content-block + .cs-content-block { padding-top: 24px; }
.cs-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 10px;
}
.cs-content-block p {
  font-size: 16px; line-height: 1.75; color: var(--dark);
}
.cs-persona-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.cs-persona {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
}
.cs-persona img {
  width: 100%; height: auto;
  border-radius: var(--r-sm);
  display: block;
}
.cs-persona-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 15px;
  color: var(--dark); margin-bottom: 6px;
}
.cs-persona-desc {
  font-size: 14px; line-height: 1.65;
  color: var(--mid);
}
.cs-image-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 48px 72px;
}

.cs-image-block {
  position: relative;
  border: 1px solid var(--rule);
  margin-bottom: 32px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.cs-image-block:last-child {
  margin-bottom: 0;
}
.cs-image-block img {
  width: 100%;
  display: block;
}

.cs-image-label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid);
  padding: 16px 24px 14px;
  border-bottom: 1px solid var(--rule);
  background: var(--warm-white);
}
.cs-section-break {
  background: var(--cream);
  padding: 24px 0;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
  border: none;
}
.cs-section-break-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.06em;
  color: var(--dark);
}
.cs-section-break::before {
  content: ''; width: 28px; height: 1px;
  background: var(--blue); flex-shrink: 0;
}
.cs-text-block {
  padding: 52px 60px;
  font-size: 16px; line-height: 1.75; color: var(--dark);
}
.cs-coming-soon {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 60px;
  min-height: 360px;
}
.cs-coming-icon {
  font-size: 40px; color: var(--blue);
  opacity: 0.25; margin-bottom: 28px;
  line-height: 1;
}
.cs-coming-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.04em;
  color: var(--dark); margin-bottom: 20px;
}
.cs-coming-desc {
  font-size: 15px; line-height: 1.75;
  color: var(--mid); max-width: 480px;
  margin-bottom: 12px;
}
.cs-coming-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: white; background: var(--blue);
  text-decoration: none; padding: 14px 28px;
  border-radius: var(--r-full);
  transition: background 0.2s;
}
.cs-coming-cta:hover { background: var(--dark); }

/* ─── FOCUS ─── */
.fab:focus-visible,
.contact-email:focus-visible,
.cs-close:focus-visible,
.work-card:focus-visible,
.btn-outline:focus-visible,
.timeline-expand:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
