/* =============================================================
   Toby Lakeman — Portfolio
   Brand from "Toby Lakeman Resume Aqua 2026" + "TL Print Portfolio 2026 v2"
   Aqua/teal + bold display + clean editorial.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* PALETTE */
  --aqua:        #5FC8C7;
  --aqua-dark:   #2DA8A4;
  --aqua-deep:   #1F8784;
  --aqua-light:  #BDE7E6;
  --aqua-pale:   #EAF7F7;

  --ink:         #161616;
  --ink-2:       #2B2B2B;
  --muted:       #5A5A5A;
  --muted-2:    #8A8A8A;
  --line:        #E5E3DE;
  --line-soft:   #EFEDE8;

  --paper:       #FFFFFF;
  --paper-2:     #F6F4EF;
  --paper-3:     #EDEAE2;

  /* Accent semantic — switches per theme */
  --accent:      var(--aqua-deep);

  /* "Inverse" surfaces — used by stats / contact / footer, always dark */
  --invert-bg:   #0E0E10;
  --invert-bg-2: #18181B;
  --invert-fg:   #FFFFFF;
  --invert-muted:#8A8A8A;

  /* TYPE */
  --font-display: 'Archivo Black', 'Arial Black', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

[data-theme="dark"] {
  --ink:        #FFFFFF;
  --ink-2:      #F5F5F5;
  --muted:      #BABABA;
  --muted-2:    #7E7E7E;
  --line:       rgba(255,255,255,0.10);
  --line-soft:  rgba(255,255,255,0.05);
  --paper:      #0A0A0A;
  --paper-2:    #131313;
  --paper-3:    #1C1C1C;
  --aqua-light: rgba(95,200,199,0.35);
  --aqua-pale:  rgba(95,200,199,0.08);
  /* Dark mode wants the brighter aqua for accent text */
  --accent:     var(--aqua);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
  transition: background 400ms ease, color 400ms ease;
}

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

/* ============== LAYOUT ============== */
.wrap { max-width: 1480px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

section { position: relative; }

/* ============== SHARED TYPE ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--aqua);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400; /* Archivo Black is already black */
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 16px 0 24px;
}
.section-lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
  text-wrap: pretty;
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; } }

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: transparent;
  transition: background 280ms ease, backdrop-filter 280ms ease, border-color 280ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav .brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav .brand .dot { color: var(--aqua); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 200ms ease;
  position: relative;
}
.nav-links a:hover { color: var(--aqua-deep); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--aqua);
  color: #0A0A0A;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms ease, transform 180ms ease;
}
.nav-cta:hover { background: #fff; transform: translateY(-2px); }
.nav-cta svg { transition: transform 200ms ease; }
.nav-cta:hover svg { transform: translateX(2px); }
@media (max-width: 720px) { .nav-cta { padding: 8px 14px; font-size: 10px; } }

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 200ms ease, background 200ms ease;
}
.theme-toggle:hover { transform: rotate(-12deg); background: var(--aqua-pale); }

@media (max-width: 720px) {
  .nav { padding: 14px 22px; }
  .nav-links { display: none; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 64px;
  background: var(--paper);
  overflow: hidden;
}

/* big outlined backdrop wordmark — RESUME-style */
.hero-bg-word {
  position: absolute;
  top: 50px;
  left: -2vw;
  right: -2vw;
  font-family: var(--font-display);
  font-size: clamp(180px, 28vw, 480px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--aqua-light);
  text-stroke: 2px var(--aqua-light);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  text-align: center;
  opacity: 0.85;
}

/* aqua splash block (decorative) — removed */
.hero-splash { display: none; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  padding-top: 24px;
}
@media (max-width: 900px) {
  .hero-inner { padding-top: 60px; }
}

.hero-body {
  padding-top: 24px;
  max-width: 1100px;
}

.hero-reel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin: 36px 0 36px;
  box-shadow: 0 30px 60px -22px rgba(0,0,0,0.55);
}
.hero-reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hero-reel .reel-empty .play { width: 64px; height: 64px; }

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
}
.hero-name .row { display: block; }
.hero-name .lakeman { color: var(--accent); }

.hero-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.hero-tag .sep { color: var(--aqua-dark); margin: 0 12px; }

.hero-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 560px;
  margin: 0 0 36px;
}
.hero-quote em {
  font-style: normal;
  color: var(--accent);
}

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

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #161616;
  background: var(--aqua);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 200ms ease, box-shadow 240ms ease, color 200ms ease;
  text-decoration: none;
}
.btn:hover { background: var(--aqua-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(45,168,164,0.45); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); box-shadow: none; }

.btn--outline {
  background: transparent;
  color: var(--aqua);
  border: 1.5px solid var(--aqua);
}
.btn--outline .arr { background: var(--aqua); color: #0A0A0A; }
.btn--outline:hover { background: var(--aqua); color: #0A0A0A; box-shadow: 0 14px 28px -10px rgba(95,200,199,0.45); }
.btn--outline:hover .arr { background: #0A0A0A; color: var(--aqua); }

.btn .arr {
  display: inline-grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #161616;
  color: var(--aqua);
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.btn:hover .arr { transform: translateX(2px); background: var(--paper); color: var(--aqua-deep); }
.btn--ghost .arr { background: var(--ink); color: var(--paper); }

/* ============== STATS ROW (under hero) ============== */
.stats {
  position: relative;
  z-index: 2;
  margin-top: 96px;
  padding: 36px 40px;
  background: var(--invert-bg-2);
  color: var(--invert-fg);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; margin-top: 48px; }
}
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  color: var(--aqua);
  line-height: 1;
}
.stat .l {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--invert-muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============== CLIENT STRIP ============== */
.clients-block {
  padding: 64px 0 24px;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}
.clients-lead {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 32px;
}
.clients-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: clientsScroll 70s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.client {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.65;
  transition: color 240ms ease, opacity 240ms ease;
}
.client:hover { color: var(--aqua); opacity: 1; }
@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ============== SELECTED WORK ============== */
.work {
  padding: 80px 0 64px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
}

.work-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #ECECE9;
  cursor: pointer;
  transition: transform 360ms cubic-bezier(0.22,1,0.36,1), box-shadow 360ms ease;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -22px rgba(0,0,0,0.45);
}
.work-card .thumb {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ECECE9;
}
.work-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 700ms cubic-bezier(0.22,1,0.36,1);
}
.work-card:hover .thumb img { transform: scale(1.03); }
.work-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 26px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
  color: #fff;
  opacity: 0;
  transition: opacity 280ms ease;
}
.work-card:hover .overlay { opacity: 1; }
.work-card .overlay .num {
  position: absolute;
  top: 22px; left: 26px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--aqua);
  letter-spacing: 0.04em;
}
.work-card .overlay .ttl {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.work-card .overlay .sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-light);
}

/* Always-visible compact caption beneath each tile */
.work-card .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
}
.work-card .cap .t {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
}
.work-card .cap .k {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-light);
}

/* Tile sizes */
.span-6 { grid-column: span 6; aspect-ratio: 3/2; }
.span-4 { grid-column: span 4; aspect-ratio: 3/2; }
.span-3 { grid-column: span 3; aspect-ratio: 3/2; }
.span-8 { grid-column: span 8; aspect-ratio: 3/2; }
.span-12 { grid-column: span 12; aspect-ratio: 21/9; }

@media (max-width: 900px) {
  .span-6, .span-4, .span-3, .span-8, .span-12 { grid-column: span 6; aspect-ratio: 3/2; }
}

/* ============== SHOWREEL ============== */
.reel-block {
  padding: 64px 0 100px;
  background: var(--paper);
}
.reel-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.35);
}
.reel-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.reel-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: radial-gradient(circle at 50% 40%, rgba(95,200,199,0.18), transparent 60%), #0e0e10;
  color: var(--aqua);
}
.reel-empty .play {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--aqua);
  display: grid; place-items: center;
}
.reel-empty span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* secondary video tiles */
.reel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 720px) { .reel-grid { grid-template-columns: 1fr; } }
.reel-tile {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.reel-tile iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-tile .reel-empty .play { width: 56px; height: 56px; }

/* ============== SOCIAL ============== */
.social-block {
  padding: 100px 0;
  background: var(--paper-2);
}
.social-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.social-link:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.social-link .ic { width: 18px; height: 18px; display: inline-block; }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .feed-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .feed-grid { grid-template-columns: repeat(2, 1fr); } }

.feed-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-3);
  cursor: pointer;
  transition: transform 320ms ease, box-shadow 320ms ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  text-decoration: none;
  color: #fff;
}
.feed-tile:hover { transform: translateY(-4px); box-shadow: 0 24px 56px -20px rgba(0,0,0,0.55); }
.feed-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.22,1,0.36,1); }
.feed-tile:hover img { transform: scale(1.05); }
.feed-tile .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted-2);
  font-family: var(--font-display);
  font-size: 28px;
  background: linear-gradient(135deg, var(--aqua-light) 0%, var(--aqua) 100%);
  color: rgba(31,135,132,0.5);
}
.feed-tile .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
}

.feed-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}
.feed-icon svg { width: 28px; height: 28px; }
.feed-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feed-platform {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
}
.feed-handle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.feed-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.feed-cta .arr-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: transform 200ms ease, background 200ms ease;
}
.feed-tile:hover .feed-cta .arr-sm { transform: translateX(3px); background: rgba(255,255,255,0.35); }

/* ============== ABOUT ============== */
.about-block {
  padding: 120px 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-portrait-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.portrait {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-2);
  border: 6px solid var(--paper);
  box-shadow: 0 28px 60px -24px rgba(0,0,0,0.50);
  position: relative;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .portrait { max-width: 320px; margin: 0 auto; }
}

.about-quote-block {
  position: relative;
  padding: 44px 36px;
  background: var(--aqua);
  border-radius: 999px;
  overflow: hidden;
}
.about-quote-block::after { content: none; }
.about-quote-block::before {
  /* spatter */
  content: "";
  position: absolute; inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="240" height="240"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/><feColorMatrix values="0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.35 0"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
  background-size: 240px;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.about-quote-block .q {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.about-quote-block .q em { font-style: normal; color: var(--paper); }

.about-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body .bold-line {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--accent);
  margin: 28px 0 14px;
}
.about-body .hello {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 24px;
}
.about-body .pull-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.65;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 14px 0 24px;
}

/* ============== EXPERIENCE ============== */
.exp-block {
  padding: 120px 0;
  background: var(--paper-2);
}
.exp-list {
  display: flex;
  flex-direction: column;
}
.exp-row {
  display: grid;
  grid-template-columns: 200px 1.4fr 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.exp-row:last-child { border-bottom: 1px solid var(--line); }
.exp-row:hover { background: linear-gradient(90deg, var(--aqua-pale) 0%, transparent 100%); padding-left: 16px; margin-left: -16px; border-radius: 8px 0 0 8px; }
.exp-years {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 4px;
}
.exp-main h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 6px;
}
.exp-main .org {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  margin: 0 0 14px;
}
.exp-main p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  justify-content: flex-end;
}
.exp-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .exp-row { grid-template-columns: 1fr; gap: 10px; }
  .exp-tags { justify-content: flex-start; }
}

/* ============== CAPABILITIES ============== */
.cap-block {
  padding: 120px 0;
  background: var(--paper);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .cap-grid { grid-template-columns: 1fr; } }

.cap-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 8px;
}
.cap-col .hr {
  height: 3px;
  width: 36px;
  background: var(--aqua);
  margin: 0 0 24px;
}
.cap-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.cap-col li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cap-col li .note {
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-left: 4px;
}

/* ============== REFERENCES ============== */
.refs-block {
  padding: 100px 0;
  background: var(--paper-2);
}
.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .refs-grid { grid-template-columns: 1fr; } }
.ref-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease;
}
.ref-card:hover { transform: translateY(-3px); border-color: var(--aqua); }
.ref-card .name {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.ref-card .role-line {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.5;
}
.ref-card .phone {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--aqua);
  padding-bottom: 2px;
  width: fit-content;
  display: block;
}
.ref-card .phone:hover { color: var(--aqua-deep); }
.ref-card .note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-2);
  font-style: italic;
  margin: 10px 0 0;
}

/* ============== CONTACT ============== */
.contact-block {
  position: relative;
  padding: 140px 0;
  background: var(--invert-bg);
  color: var(--invert-fg);
  overflow: hidden;
}
.contact-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(95,200,199,0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(45,168,164,0.12), transparent 55%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact-eyebrow { color: var(--aqua); }
.contact-h {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--invert-fg);
  margin: 16px 0 32px;
}
.contact-h .ac { color: var(--aqua); }
.contact-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}
.contact-row {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 36px);
  text-transform: none;
  color: var(--invert-fg);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: color 200ms ease, border-color 200ms ease;
  overflow-wrap: anywhere;
}
.contact-row:hover { color: var(--aqua); border-bottom-color: var(--aqua); }
.contact-row .lbl {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--invert-muted);
  margin-bottom: 4px;
}

.contact-socials {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-socials .social-link {
  background: transparent;
  color: var(--invert-fg);
  border-color: rgba(255,255,255,0.18);
}
.contact-socials .social-link:hover { background: var(--aqua); color: #161616; border-color: var(--aqua); }

/* ============== FOOTER ============== */
.footer {
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--invert-muted);
  background: var(--invert-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.08em;
}
.footer .brand {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--invert-fg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============== Reveal animation ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============== LIGHTBOX ============== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 64px 48px 48px;
  animation: lbIn 240ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
@keyframes lbIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--aqua);
  color: #0A0A0A;
  border: 0;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, background 200ms ease;
  box-shadow: 0 10px 32px -8px rgba(0, 0, 0, 0.6);
}
.lightbox-close:hover {
  transform: rotate(90deg) scale(1.05);
  background: #fff;
}

.lightbox-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 960px) {
  .lightbox-inner { grid-template-columns: 1fr; gap: 24px; }
  .lightbox { padding: 56px 20px 32px; }
}
.lightbox-img {
  background: #ECECE9;
  border-radius: 12px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.lightbox-meta {
  color: #fff;
  padding: 16px 0;
}
.lightbox-k {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 16px;
}
.lightbox-t {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 16px;
}
.lightbox-client {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}
.lightbox-client strong {
  color: var(--aqua);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lightbox-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #C8C8C8;
  margin: 0;
  max-width: 480px;
}

.lightbox-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  max-width: 480px;
}
.lightbox-fact-lbl {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 4px;
}
.lightbox-fact-val {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.lightbox-cs-section {
  margin-top: 20px;
  max-width: 540px;
}
.lightbox-cs-section h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 8px;
}
.lightbox-cs-section p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #C8C8C8;
  margin: 0;
}

body.lb-open { overflow: hidden; }
