:root {
  --bg: #080808;
  --bg-surface: #111111;
  --fg: #f0ede8;
  --fg-muted: #6e6a65;
  --accent: #c8ff00;
  --accent-dim: rgba(200, 255, 0, 0.08);
  --border: rgba(240, 237, 232, 0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 48px 72px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.65;
  font-weight: 300;
}
.hero-right {
  padding-top: 8px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}
.stat-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.stat-block:last-child { border-bottom: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  min-width: 64px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}
.hero-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 16px;
  font-style: italic;
}

/* SECTION LABEL */
.section-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 32px;
}

/* SERVICES */
.services {
  padding: 72px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1200px;
}
.service-card {
  background: var(--bg-surface);
  padding: 36px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: #161616; }
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* FORMAT STRIP */
.formatstrip {
  padding: 48px 48px;
  border-bottom: 1px solid var(--border);
}
.formatstrip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
}
.format-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.format-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.format-sep {
  color: var(--accent);
  font-size: 20px;
}
.format-desc {
  font-size: 14px;
  color: var(--fg-muted);
}
.format-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  margin: 0 40px;
}

/* PROCESS */
.process {
  padding: 72px 48px;
  border-bottom: 1px solid var(--border);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
}
.step {}
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -2px;
  line-height: 1;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 800px; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
  margin-bottom: 40px;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}
.closing-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.footer-meta {
  font-size: 12px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .services { padding: 56px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .formatstrip { padding: 40px 24px; }
  .formatstrip-inner { flex-direction: column; gap: 20px; }
  .format-divider { display: none; }
  .process { padding: 56px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; letter-spacing: -1px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}

/* NAV CTA */
.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  letter-spacing: 0.3px;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO CTAs */
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  letter-spacing: -0.2px;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding: 14px 4px;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--fg); }

/* WHO IT'S FOR */
.whos-it-for {
  padding: 72px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.wif-inner { max-width: 1200px; }
.wif-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 56px;
  color: var(--fg);
}
.wif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.wif-card {
  background: var(--bg-surface);
  padding: 32px 28px;
  transition: background 0.2s;
}
.wif-card:hover { background: #161616; }
.wif-icon {
  color: var(--accent);
  margin-bottom: 18px;
}
.wif-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.wif-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* PRICING */
.pricing {
  padding: 88px 48px;
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; }
.pricing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 56px;
  font-weight: 300;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  align-items: start;
}
.pricing-card {
  background: var(--bg-surface);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card--featured {
  background: #141414;
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}
.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--fg);
  line-height: 1;
}
.price-period {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
}
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}
.pricing-features li.feat-dim {
  color: var(--fg-muted);
  opacity: 0.4;
}
.feat-check {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  letter-spacing: 0.3px;
  transition: opacity 0.15s, background 0.15s;
  margin-top: auto;
}
.pricing-cta--primary {
  background: var(--accent);
  color: #000;
}
.pricing-cta--primary:hover { opacity: 0.85; }
.pricing-cta--outline {
  border: 1px solid var(--border);
  color: var(--fg);
}
.pricing-cta--outline:hover {
  border-color: rgba(240,237,232,0.25);
  background: rgba(240,237,232,0.04);
}

/* FOOTER UPDATED */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 56px 48px 40px;
  border-bottom: 1px solid var(--border);
}
.footer { padding: 0; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 260px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--fg); }
.footer-bottom {
  padding: 20px 48px;
}
.footer-meta {
  font-size: 12px;
  color: #333;
}

/* PRICING NOTE */
.pricing-note {
  margin-top: 36px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.65;
}
.pricing-note a {
  color: var(--fg-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.pricing-note a:hover { color: var(--fg); }

/* RECENT WORK */
.recent-work {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.recent-work-inner { max-width: 1200px; }
.rw-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
  color: var(--fg);
}
.rw-sub {
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 48px;
}
.rw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.rw-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.rw-card:hover { border-color: rgba(200, 255, 0, 0.2); }
.rw-card--placeholder { opacity: 0.7; }
.rw-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 portrait ratio */
  background: #0a0a0a;
  overflow: hidden;
}
.rw-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.rw-card-meta {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
}
.rw-platform {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.rw-platform--tiktok { background: rgba(255,255,255,0.07); color: var(--fg-muted); }
.rw-platform--instagram { background: rgba(255,255,255,0.07); color: var(--fg-muted); }
.rw-platform--youtube { background: rgba(255,255,255,0.07); color: var(--fg-muted); }
.rw-caption {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.4;
}

/* RESULTS STRIP */
.results-strip {
  padding: 56px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.results-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-align: center;
}
.result-value {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
}
.result-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.4;
}
.result-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* RESPONSIVE — new sections */
@media (max-width: 900px) {
  .nav-cta { display: none; }
  .whos-it-for { padding: 56px 24px; }
  .wif-grid { grid-template-columns: 1fr 1fr; }
  .recent-work { padding: 56px 24px; }
  .rw-grid { grid-template-columns: repeat(2, 1fr); }
  .results-strip { padding: 40px 24px; }
  .results-strip-inner { gap: 0; }
  .result-value { font-size: 40px; }
  .pricing { padding: 56px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; padding: 40px 24px 32px; gap: 32px; }
  .footer-links { gap: 32px; }
  .footer-bottom { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-primary { width: 100%; text-align: center; }
  .wif-grid { grid-template-columns: 1fr; }
  .rw-grid { grid-template-columns: 1fr; }
  .results-strip-inner { flex-direction: column; gap: 0; }
  .result-divider { display: none; }
  .result-item { flex-direction: column; }
  .pricing-card { padding: 32px 24px; }
}

/* =============================================================
   /WORK PAGE
   ============================================================= */

/* Hero */
.work-hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}
.work-hero-inner { max-width: 800px; }
.work-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--fg);
}
.work-headline-dim { color: var(--fg-muted); }
.work-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 36px;
}
.work-cta { font-size: 15px; }

/* Filter chips */
.work-grid-section {
  padding: 64px 48px 80px;
  border-bottom: 1px solid var(--border);
}
.work-grid-inner { max-width: 1200px; }
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.work-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  letter-spacing: 0.3px;
}
.work-filter:hover {
  border-color: rgba(240, 237, 232, 0.25);
  color: var(--fg);
}
.work-filter--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}
.work-filter--active:hover {
  opacity: 0.9;
}

/* Card grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-2px);
}

/* Video area */
.work-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 */
  background: #0d0d0d;
  overflow: hidden;
}
.work-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Visible placeholder until real video is loaded */
.work-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a1a1a 100%);
}
/* Hide placeholder when video has src/plays */
.work-video[src] ~ .work-video-placeholder { display: none; }
.work-video-icon {
  font-size: 32px;
  color: var(--accent);
  opacity: 0.4;
}
.work-video-note {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  font-weight: 500;
}
/* Plays on hover — card hover triggers video play */
.work-card:hover .work-video { opacity: 1; }

/* Sample / Client badge */
.work-label-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 2px;
}
.work-label-badge--sample {
  background: rgba(110, 106, 101, 0.25);
  color: var(--fg-muted);
  border: 1px solid rgba(110, 106, 101, 0.35);
  backdrop-filter: blur(4px);
}
.work-label-badge--client {
  background: rgba(200, 255, 0, 0.15);
  color: var(--accent);
  border: 1px solid rgba(200, 255, 0, 0.3);
  backdrop-filter: blur(4px);
}

/* Card body */
.work-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.work-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 3px 8px;
  border-radius: 2px;
}
.work-tag--segment {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(200, 255, 0, 0.2);
}
.work-tag--platform {
  background: rgba(255,255,255,0.05);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.work-tag--style {
  background: rgba(255,255,255,0.03);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.work-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--fg);
  line-height: 1.3;
}
.work-card-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* Metrics */
.work-metrics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.work-metrics li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.work-metric-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
}
.work-metric-val {
  font-size: 12px;
  color: var(--fg);
  font-weight: 500;
  text-align: right;
}

/* Secondary CTA strip */
.work-cta-strip {
  padding: 72px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.work-cta-strip-inner {
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.work-cta-strip-headline {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
}
.work-cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Nav — work link */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
  letter-spacing: 0.2px;
}
.nav-link:hover { color: var(--fg); }
.nav-link--active { color: var(--fg); }

/* Responsive */
@media (max-width: 900px) {
  .work-hero { padding: 56px 24px 48px; }
  .work-grid-section { padding: 48px 24px 64px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-cta-strip { padding: 56px 24px; }
  .work-cta-strip-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-cta { width: 100%; text-align: center; }
  .nav-links { display: none; }
}