/* ─────────────────────────────────────────────
   Portfolio · LinkedIn Premium Link
   Palette: black · gold · white  (design system tokens)
   Mobile-first; widens to desktop with grid composure.
   ───────────────────────────────────────────── */

:root {
  --bg: #08080a;
  --bg-2: #101014;
  --bg-3: #16161c;
  --bg-4: #1d1d24;
  --line: #24242c;
  --line-2: #353541;
  --ink: #f6f5ef;
  --ink-2: #c9c7bd;
  --ink-3: #8b8a82;
  --ink-4: #5a5a52;
  --gold: #d9b770;
  --gold-deep: #b8954c;
  --gold-soft: #f0d9a0;
  --gold-glow: rgba(217, 183, 112, 0.18);
  --green: #4ea672;
  --red: #d76a6a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 10px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img { display: block; max-width: 100%; }

/* ─────────────────── Typography ─────────────────── */
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
}
.eyebrow.muted { color: var(--ink-3); }
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 10px 1px 0;
  vertical-align: middle;
}
.h-display {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-wrap: balance;
  margin: 0;
}
.h-display .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05em;
  letter-spacing: 0;
}
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* ─────────────────── Shell ─────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
section { position: relative; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 40%, var(--line-2) 60%, transparent);
  margin: 0 auto;
  max-width: var(--maxw);
}

/* ─────────────────── Top nav ─────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}
.brand-mark .glyph {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.brand-mark .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-top {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}
.brand-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-left: 8px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 2px 6px;
  opacity: 0.9;
}
.nav-links {
  display: none;
  gap: 26px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
  font-family: 'Oswald', sans-serif;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gold); }
@media (min-width: 880px) {
  .nav-links { display: inline-flex; }
}

/* ─────────────────── Buttons ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 2px;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: #16100a;
  transition: transform 0.15s, background 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn .arr {
  display: inline-flex;
  transition: transform 0.2s;
}
.btn:hover .arr { transform: translateX(3px); }
.btn.ghost {
  background: transparent;
  color: var(--gold);
}
.btn.ghost:hover { background: var(--gold-glow); }
.btn.dark {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink);
}
.btn.dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn.sm { padding: 9px 14px; font-size: 11px; letter-spacing: 0.12em; }
.btn.lg { padding: 16px 28px; font-size: 13px; }

/* ─────────────────── Hero ─────────────────── */
.hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 15% 10%, var(--gold-glow), transparent 60%),
    radial-gradient(50% 40% at 90% 90%, rgba(217, 183, 112, 0.08), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
}
@media (min-width: 940px) {
  .hero { padding: 84px 0 96px; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-eyebrow .line {
  flex: 0 0 38px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero h1 .stroke {
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
  font-style: italic;
}
.hero h1 .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95em;
}
.hero p.lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 500px;
}
.hero-meta > div { padding-right: 14px; border-left: 1px solid var(--line); padding-left: 14px; }
.hero-meta > div:first-child { border-left: 0; padding-left: 0; }
.hero-meta .v sup {
  font-size: 0.55em;
  color: var(--gold-soft);
  margin-left: 1px;
  font-weight: 700;
}
.hero-meta .v {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-meta .l {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-top: 7px;
  font-weight: 600;
}

/* Hero video card */
.video-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 940px) {
  .video-card { aspect-ratio: 4 / 5; }
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.video-card .corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 3;
}
.video-card .corner.tl { top: 12px; left: 12px; border-width: 1.5px 0 0 1.5px; }
.video-card .corner.tr { top: 12px; right: 12px; border-width: 1.5px 1.5px 0 0; }
.video-card .corner.bl { bottom: 12px; left: 12px; border-width: 0 0 1.5px 1.5px; }
.video-card .corner.br { bottom: 12px; right: 12px; border-width: 0 1.5px 1.5px 0; }

.video-poster {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, #2a2a33 0%, #0f0f14 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-poster .silhouette {
  width: 64%;
  height: 90%;
  background:
    radial-gradient(ellipse 22% 18% at 50% 28%, #3a3a45 0%, transparent 60%),
    radial-gradient(ellipse 38% 32% at 50% 78%, #2a2a33 0%, transparent 65%);
  opacity: 0.85;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 12px 40px rgba(217, 183, 112, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-btn::before {
  content: "";
  width: 0; height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #16100a;
  margin-left: 5px;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 12px 50px rgba(217, 183, 112, 0.5);
}
.play-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  transform: translate(-50%, -50%);
  animation: pulseRing 2s ease-out infinite;
  z-index: 3;
}
@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}
.video-card .caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 4;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.video-card .caption .ts {
  color: var(--gold);
  margin-right: 10px;
}
.video-card .rec {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.video-card .rec .blink {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%, 50%, 100% { opacity: 1; } 25%, 75% { opacity: 0.2; } }

/* Hero side stamp */
.stamp {
  position: absolute;
  right: -10px;
  top: 30px;
  transform: rotate(8deg);
  z-index: 5;
  border: 1.5px solid var(--gold);
  padding: 8px 16px;
  background: rgba(8, 8, 10, 0.85);
}
.stamp .t {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.stamp .b {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ─────────────────── Marquee / brand strip ─────────────────── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: scroll 38s linear infinite;
  width: max-content;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--ink-2);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo:hover { opacity: 1; color: var(--gold); }
.brand-logo .badge {
  width: 26px; height: 26px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.brand-logo.serif {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 22px;
}
.brand-logo.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}

/* ─────────────────── Section header ─────────────────── */
.section {
  padding: 80px 0;
}
@media (min-width: 940px) {
  .section { padding: 110px 0; }
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 48px;
  align-items: end;
}
@media (min-width: 800px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.section-head h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  margin: 8px 0 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-head h2 .accent {
  font-family: 'Caveat', cursive;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05em;
}
.section-head .blurb {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
}
.section-head .blurb .muted-strong { color: var(--ink); font-weight: 500; }

/* ─────────────────── Services ─────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px 26px 26px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.service:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.service .num {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 30px;
}
.service h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.service p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 18px;
  line-height: 1.55;
  flex: 1;
}
.service .deliverables {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px dashed var(--line-2);
  padding-top: 14px;
}
.service .deliverables li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  padding: 3px 0;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service .deliverables li::before {
  content: "→";
  color: var(--gold);
  flex: 0 0 auto;
}

/* ─────────────────── Case studies ─────────────────── */
.cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 880px) { .cases { grid-template-columns: repeat(3, 1fr); } }
.case {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.case:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.case .case-img {
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.case .case-img .ph-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case .case-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8, 8, 10, 0.7);
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.case-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.case-body .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case-body .client {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.case-body .year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
}
.case-body h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}
.case-body p.summary {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
.case-metric {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.case-metric .m .v {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.01em;
}
.case-metric .m .v sup { font-size: 0.55em; color: var(--gold-soft); margin-left: 1px; }
.case-metric .m .l {
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-top: 6px;
}

/* Generated artwork inside case-img */
.art-1 {
  background:
    radial-gradient(circle at 30% 30%, var(--gold-glow) 0%, transparent 50%),
    repeating-linear-gradient(135deg, var(--bg-3) 0 12px, var(--bg-4) 12px 13px);
}
.art-1::before {
  content: "";
  position: absolute;
  inset: 28%;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}
.art-1::after {
  content: "";
  position: absolute;
  inset: 38%;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.art-2 {
  background:
    linear-gradient(180deg, #14140f 0%, #0c0c0a 60%, #16100a 100%);
}
.art-2::before {
  content: "";
  position: absolute;
  left: 12%; top: 18%;
  right: 12%; bottom: 18%;
  background:
    linear-gradient(180deg, transparent 60%, var(--gold) 60%, var(--gold) 62%, transparent 62%),
    linear-gradient(180deg, transparent 40%, var(--gold-deep) 40%, var(--gold-deep) 41%, transparent 41%);
  border: 1px solid var(--gold);
}
.art-3 {
  background:
    radial-gradient(ellipse at top, var(--bg-4) 0%, var(--bg) 70%);
}
.art-3::before, .art-3::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.art-3::before {
  left: 20%; right: 20%;
  top: 30%; height: 1px;
}
.art-3::after {
  left: 50%;
  top: 30%; bottom: 30%;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* ─────────────────── Work grid ─────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work-item {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.work-item.tall { aspect-ratio: 3 / 5; }
.work-item.wide { aspect-ratio: 5 / 4; }
.work-item:hover { transform: translateY(-3px); }
.work-item:hover .work-cover { opacity: 1; }
.work-item:hover .work-art { transform: scale(1.04); }
.work-art {
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}
.work-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 30%, rgba(8,8,10,0.85) 80%, rgba(8,8,10,0.95) 100%);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.work-cover .client {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
}
.work-cover h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  margin: 6px 0 0;
  letter-spacing: -0.01em;
}
.work-cover .scope {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.work-art.a {
  background:
    radial-gradient(circle at 60% 40%, #2a2a32 0%, #0a0a0c 70%),
    var(--bg);
}
.work-art.a::before {
  content: "";
  position: absolute;
  left: 20%; right: 20%;
  top: 22%; bottom: 36%;
  border: 1.5px solid var(--gold);
}
.work-art.a::after {
  content: "";
  position: absolute;
  left: 30%; right: 30%;
  top: 32%; bottom: 46%;
  background: var(--gold);
  opacity: 0.18;
}
.work-art.b {
  background:
    conic-gradient(from 220deg at 50% 50%, #1a1a22, #0a0a0c, #1a1a22),
    var(--bg);
}
.work-art.b::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 60%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle, transparent 60%, var(--gold-glow) 100%);
}
.work-art.c {
  background:
    repeating-linear-gradient(45deg, #15151b 0 18px, #0c0c10 18px 36px);
}
.work-art.c::before {
  content: "";
  position: absolute;
  inset: 22%;
  background: var(--bg);
  border: 1px solid var(--gold);
}
.work-art.c::after {
  content: "01";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
}
.work-art.d {
  background:
    linear-gradient(135deg, #1d1d24 0%, #0c0c12 100%);
}
.work-art.d::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 50%; height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(-30deg);
  box-shadow: 0 14px 0 var(--gold-deep), 0 28px 0 var(--ink-3);
}
.work-art.e {
  background: var(--bg-3);
}
.work-art.e::before {
  content: "";
  position: absolute;
  left: 12%; right: 12%;
  top: 18%;
  height: 58%;
  background:
    linear-gradient(180deg, var(--bg-4) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-2);
}
.work-art.e::after {
  content: "";
  position: absolute;
  left: 22%; right: 22%;
  top: 30%;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 12px 0 var(--gold), 0 24px 0 var(--ink-3), 0 36px 0 var(--ink-3);
}
.work-art.f {
  background: radial-gradient(ellipse at 30% 30%, #20202a 0%, #08080c 80%);
}
.work-art.f::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 78%; aspect-ratio: 1;
  background:
    conic-gradient(from 0deg, var(--gold-deep) 0deg, var(--gold) 90deg, var(--gold-deep) 180deg, var(--gold) 270deg, var(--gold-deep) 360deg);
  -webkit-mask: radial-gradient(circle, transparent 38%, #000 39%, #000 40%, transparent 41%);
          mask: radial-gradient(circle, transparent 38%, #000 39%, #000 40%, transparent 41%);
}

/* Logo tile (Florida Civics Prep) */
.work-art.logo-tile {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18% 8%;
}
.work-art.logo-tile img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
/* let the logo breathe at rest; reveal full caption on hover */
.work-item:has(.logo-tile) .work-cover {
  opacity: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0) 30%, rgba(8,8,10,0.92) 75%, rgba(8,8,10,0.98) 100%);
}
.work-item:has(.logo-tile):hover .work-cover { opacity: 1; }

/* ─────────────────── Reel ─────────────────── */
.reel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .reel { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .reel { grid-template-columns: repeat(4, 1fr); } }
.clip {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.clip:hover { border-color: var(--gold); transform: translateY(-2px); }
.clip-art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.clip-art.a { background: radial-gradient(circle at 50% 30%, #2a2a35 0%, #0a0a0c 75%); }
.clip-art.b { background: linear-gradient(160deg, #20201a 0%, #0a0a0c 100%); }
.clip-art.c { background: radial-gradient(circle at 30% 70%, #2a2226 0%, #0a0a0c 70%); }
.clip-art.d { background: linear-gradient(20deg, #16161e 0%, #0a0a0c 70%); }
.clip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.clip-meta {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  bottom: 16px;
}
.clip-meta .label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.clip-meta .title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  margin-top: 4px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.clip .play-mini {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.7);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.clip .play-mini::before {
  content: "";
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--gold);
  margin-left: 2px;
}
.clip .duration {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink);
  background: rgba(8,8,10,0.7);
  border: 1px solid var(--line-2);
  padding: 3px 7px;
  letter-spacing: 0.04em;
}

/* ─────────────────── Career arc / timeline ─────────────────── */
.timeline-section { background: var(--bg-2); }
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.timeline-rail {
  position: absolute;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 12%, var(--gold) 88%, transparent 100%);
  opacity: 0.35;
  left: 11px; top: 0; bottom: 0;
  width: 1px;
  z-index: 0;
}
.tl-step {
  position: relative;
  padding: 18px 0 22px 38px;
  border-bottom: 1px dashed var(--line);
}
.tl-step:last-child { border-bottom: 0; }
.tl-dot {
  position: absolute;
  left: 6px;
  top: 24px;
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  z-index: 2;
}
.tl-step:nth-child(2n+2) .tl-dot { background: var(--gold); }
.tl-year {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}
.tl-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
}
.tl-sub {
  margin-top: 6px;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.5;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

@media (min-width: 880px) {
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 24px; padding-top: 26px; }
  .timeline-rail {
    left: 0; right: 0; top: 28px; bottom: auto;
    height: 1px; width: auto;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 8%, var(--gold) 92%, transparent 100%);
  }
  .tl-step {
    padding: 0 12px 0 0;
    border-bottom: 0;
  }
  .tl-dot {
    position: relative;
    left: 0; top: 0;
    margin-bottom: 22px;
  }
  .tl-year { font-size: 16px; }
  .tl-title { font-size: 18px; min-height: 46px; }
}

/* ─────────────────── Testimonials ─────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 880px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
.testimonials.four { grid-template-columns: 1fr; }
@media (min-width: 720px)  { .testimonials.four { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .testimonials.four { grid-template-columns: repeat(4, 1fr); } }
.testimonial {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 36px 32px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 26px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 86px;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.testimonial blockquote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  margin: 24px 0 0;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.testimonial .signoff {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #3a3a45 0%, #1a1a22 70%);
  border: 1px solid var(--gold);
  flex: 0 0 44px;
  position: relative;
  overflow: hidden;
}
.t-avatar::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -10%;
  transform: translateX(-50%);
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: #2a2a33;
}
.testimonial .who {
  display: flex;
  flex-direction: column;
}
.testimonial .who .n {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.testimonial .who .r {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
}
.testimonial .who .r .co {
  color: var(--gold);
  font-weight: 600;
}

/* ─────────────────── Press strip ─────────────────── */
.press {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
@media (min-width: 720px) { .press { grid-template-columns: repeat(4, 1fr); } }
.press-cell {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 130px;
}
.press-cell:nth-child(2n) { border-right: 0; }
@media (min-width: 720px) {
  .press-cell:nth-child(2n) { border-right: 1px solid var(--line); }
  .press-cell:nth-child(4n) { border-right: 0; }
  .press-cell:nth-child(n+5) { border-bottom: 0; }
}
.press-cell:last-child { border-right: 0; border-bottom: 0; }
.press-cell .pub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.press-cell .pub.sans {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}
.press-cell .pub.mono {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.press-cell .headline {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
  margin-top: auto;
}
.press-cell .when {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─────────────────── About strip ─────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 880px) {
  .about { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  max-width: 420px;
}
.about-portrait .silhouette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 20% 16% at 50% 30%, #3a3a45 0%, transparent 60%),
    radial-gradient(ellipse 38% 35% at 50% 80%, #2a2a33 0%, transparent 65%),
    radial-gradient(ellipse at 50% 50%, #1a1a22 0%, #08080c 85%);
}
.about-portrait .stamp-lt {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.about-portrait .stamp-rb {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.about-text h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  margin: 12px 0 18px;
  letter-spacing: -0.02em;
}
.about-text p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.about-text p strong {
  color: var(--ink);
  font-weight: 600;
}
.signature {
  margin-top: 26px;
  font-family: 'Caveat', cursive;
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
}
.creds {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cred-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  padding: 5px 9px;
  background: var(--bg-2);
}
.cred-tag .k { color: var(--gold); margin-right: 6px; }

/* ─────────────────── Final CTA ─────────────────── */
.final-cta {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(217, 183, 112, 0.1) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 720px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.final-cta::before { top: 0; }
.final-cta::after { bottom: 0; }
.final-cta-inner { text-align: center; max-width: 820px; margin: 0 auto; padding: 0 22px; }
.final-cta h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 18px 0 22px;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.final-cta h2 .script {
  font-family: 'Caveat', cursive;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1em;
}
.final-cta p {
  color: var(--ink-2);
  font-size: 17px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.final-cta .lines {
  margin: 22px auto 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.final-cta .lines span {
  display: inline-block;
  margin: 0 14px;
}
.final-cta .lines .gold { color: var(--gold); }

/* ─────────────────── Footer ─────────────────── */
.foot {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.foot-col h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col li a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.foot-col li a:hover { color: var(--gold); }
.foot-col li .arr { font-family: 'JetBrains Mono', monospace; opacity: 0.5; }
.foot-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot-bottom .ln {
  height: 1px;
  background: var(--gold);
  flex: 0 0 40px;
  opacity: 0.5;
}

/* ─────────────────── Modal (video lightbox) ─────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s;
}
.lightbox-card {
  width: min(880px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--gold);
  position: relative;
  animation: popIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lightbox-card .vidwrap {
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.lightbox-card .vidwrap .silhouette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 12% 18% at 50% 28%, #3a3a45 0%, transparent 60%),
    radial-gradient(ellipse 24% 32% at 50% 75%, #2a2a33 0%, transparent 65%),
    radial-gradient(ellipse at 50% 50%, #14141a 0%, #08080c 85%);
}
.lightbox-card .info {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.lightbox-card .info .t {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  line-height: 1.2;
}
.lightbox-card .info .s {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.lightbox-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 38px; height: 38px;
  background: rgba(8,8,10,0.7);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ink);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ─────────────────── Decorative line frame ─────────────────── */
.frame-rule {
  position: relative;
  text-align: center;
  margin: 0 auto 26px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.frame-rule::before, .frame-rule::after {
  content: "";
  flex: 0 0 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.frame-rule .lozenge {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}

/* utility */
.center { text-align: center; }
.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: block; } }

/* tweaks-aware accent */
[data-accent="champagne"] { --gold: #e7c98a; --gold-deep: #c8a663; --gold-soft: #f5e0a8; }
[data-accent="brass"] { --gold: #c69755; --gold-deep: #9c7438; --gold-soft: #e0b97a; }
[data-accent="ivory"] { --gold: #ebd9b0; --gold-deep: #c9b78d; --gold-soft: #f7eccb; }

/* light mode (rare but tweakable) */
[data-mode="light"] {
  --bg: #faf8f3;
  --bg-2: #ffffff;
  --bg-3: #f1ede4;
  --bg-4: #e8e1cf;
  --line: #e3dbc8;
  --line-2: #c8bc9f;
  --ink: #1a1a16;
  --ink-2: #444038;
  --ink-3: #6c6859;
  --ink-4: #9a957f;
  --gold-glow: rgba(184, 149, 76, 0.18);
}
[data-mode="light"] .nav { background: rgba(250, 248, 243, 0.8); }
[data-mode="light"] .video-poster, [data-mode="light"] .about-portrait .silhouette {
  background:
    radial-gradient(ellipse 22% 18% at 50% 28%, #c8bea4 0%, transparent 60%),
    radial-gradient(ellipse 38% 32% at 50% 78%, #b0a78c 0%, transparent 65%),
    radial-gradient(ellipse at 50% 50%, #e8e1cf 0%, #d4cab0 85%);
}
[data-mode="light"] .btn { color: #1a1308; }
[data-mode="light"] .marquee::before { background: linear-gradient(90deg, var(--bg-2), transparent); }
[data-mode="light"] .marquee::after { background: linear-gradient(-90deg, var(--bg-2), transparent); }

/* ─────────────────── Testimonials · 6-card variant ─────────────────── */
.testimonials.six { grid-template-columns: 1fr; }
@media (min-width: 720px)  { .testimonials.six { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .testimonials.six { grid-template-columns: repeat(3, 1fr); } }

/* ─────────────────── Course catalog ─────────────────── */
.catalog {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 720px)  { .catalog { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .catalog { grid-template-columns: repeat(4, 1fr); } }
.catalog-cell {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
  transition: background .15s;
}
.catalog-cell:hover { background: var(--bg-3); }
.catalog-cell .ctag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.catalog-cell .ctitle {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.catalog-cell .cnote {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  margin-top: auto;
  padding-top: 8px;
  line-height: 1.5;
}

/* ─────────────────── Also (realty + community) ─────────────────── */
.also-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 880px) { .also-grid { grid-template-columns: 1.15fr 1fr; } }
.also-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.also-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft));
}
.also-card .also-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.also-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}
.also-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 20px;
}
.also-card .also-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.also-card .also-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-2);
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.also-card.community {
  background:
    radial-gradient(ellipse at top right, rgba(217, 183, 112, 0.06), transparent 60%),
    var(--bg-2);
}

/* ─────────────────── Hero poster video + lightbox video ─────────────────── */
.video-poster {
  background:
    radial-gradient(ellipse at center, #1a1a22 0%, #0a0a0e 80%);
}
.video-poster .poster-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 0;
}
/* Keep the play button glyph + caption + corners visible above the live video */
.video-card .rec,
.video-card .corner,
.video-card .play-pulse,
.video-card .play-btn,
.video-card .caption {
  z-index: 2;
}
/* Subtle vignette so the play button reads on any frame */
.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.45) 95%);
  pointer-events: none;
  z-index: 1;
}

.lightbox-card .vidwrap {
  aspect-ratio: auto !important;
  min-height: 60vh;
  max-height: 78vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-card .lightbox-video {
  width: 100%;
  height: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
  display: block;
}

/* ─────────────────── About portrait image ─────────────────── */
.about-portrait .portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  filter: contrast(1.02) saturate(0.96);
}
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%),
    radial-gradient(ellipse at top right, rgba(217,183,112,0.10), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.about-portrait .stamp-rb { z-index: 2; }

/* ─────────────────── Channels (social) ─────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px)  { .channels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .channels-grid { grid-template-columns: repeat(3, 1fr); } }

.channel-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft));
}
.channel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.channel-avatar {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.channel-initials {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.channel-id { min-width: 0; }
.channel-id .brand-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.channel-id .brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--ink-3);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.channel-link {
  display: grid;
  grid-template-columns: 28px auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 6px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .15s, background .15s, transform .12s;
}
.channel-link:hover {
  border-color: var(--gold);
  background: #23232b;
  transform: translateX(2px);
}
.channel-link .ic {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.channel-link.plat-linkedin .ic { background: #0a66c2; color: #fff; }
.channel-link.plat-facebook .ic { background: #1877f2; color: #fff; }
.channel-link.plat-tiktok   .ic { background: #000; color: #fff; border: 1px solid var(--line-2); }
.channel-link.plat-instagram .ic {
  background: radial-gradient(circle at 30% 110%, #fdd96a 0%, #f06b3f 35%, #d6356d 55%, #b53288 75%, #6e3eb6 100%);
  color: #fff;
}
.channel-link.plat-x .ic { background: #000; color: #fff; border: 1px solid var(--line-2); }

/* ─────────────────── Receipts (HumRRO 2025) ─────────────────── */
.receipts-section {
  background:
    radial-gradient(ellipse at top, rgba(217,183,112,0.06), transparent 60%),
    var(--bg-2);
  position: relative;
}
.receipts-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold), var(--gold-deep), transparent);
  opacity: 0.6;
}
.receipts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px)  { .receipts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) {
  .receipts-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}
.receipt {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 220px;
}
.receipt::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gold-deep);
  opacity: 0.55;
}
.receipt.rcpt-hero {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(217,183,112,0.16), transparent 65%),
    linear-gradient(180deg, #14140d 0%, #0a0a0a 100%);
  border-color: var(--gold-deep);
}
.receipt.rcpt-hero::before {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft));
  opacity: 1;
  height: 3px;
}
.rcpt-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.rcpt-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.receipt.rcpt-hero .rcpt-num {
  color: var(--gold);
  font-size: clamp(72px, 10vw, 132px);
}
.rcpt-x {
  font-size: 0.55em;
  color: var(--gold);
  font-weight: 600;
  margin-left: 2px;
}
.receipt.rcpt-hero .rcpt-x {
  color: var(--gold-soft);
}
.rcpt-unit {
  font-size: 0.38em;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.rcpt-lab {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.receipt.rcpt-hero .rcpt-lab {
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}

.receipts-cite {
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.receipts-cite .cite-mark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 6px 8px;
  border-radius: 4px;
  text-align: center;
}
.receipts-cite .cite-line {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.receipts-cite .cite-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 6px;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

/* Internal pass-tracking callout — Jason's own system, distinct from HumRRO */
.internal-tracking {
  margin-top: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  position: relative;
  overflow: hidden;
}
.internal-tracking::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-deep), var(--gold));
}
.it-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.it-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
}
@media (max-width: 720px) {
  .it-body { grid-template-columns: 1fr; gap: 14px; }
}
.it-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(46px, 5.5vw, 64px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.it-unit {
  font-size: 0.5em;
  color: var(--gold-soft);
  font-weight: 600;
  margin-left: 2px;
}
.it-lab {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.it-note {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 640px;
}

/* ─────────────────── Case perks (pass guarantee + no-cost partnerships) ─────────────────── */
.case-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}
.perk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px 6px 9px;
  background: rgba(217, 183, 112, 0.08);
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.perk-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1308;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.channel-link .plat-name {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.channel-link .handle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.channel-link .arr {
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
@media (max-width: 480px) {
  .channel-link { grid-template-columns: 28px 1fr auto; }
  .channel-link .handle { display: none; }
}

/* ─────────────────── Case logo tiles ─────────────────── */
.case-logo {
  padding: 12% 14%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.case-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}
.case-logo.logo-light {
  background:
    radial-gradient(ellipse at top, #f7f4eb 0%, #ebe5d0 100%);
}
.case-logo.logo-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(0,0,0,0.025) 20px 21px);
  pointer-events: none;
}
.case-logo.logo-black {
  background: #000;
  padding: 8% 6%;
}
.case-logo.logo-black::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(217,183,112,0.10), transparent 70%);
  pointer-events: none;
}

/* Reuse logo-tile for work grid with our new brand logos */
.work-art.logo-tile-light {
  background:
    radial-gradient(ellipse at top, #f7f4eb 0%, #ebe5d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14% 12%;
}
.work-art.logo-tile-light img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.work-art.logo-tile-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(0,0,0,0.025) 20px 21px);
  pointer-events: none;
}
.work-art.logo-tile-black {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10% 8%;
}
.work-art.logo-tile-black img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.work-art.logo-tile-black::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(217,183,112,0.10), transparent 70%);
  pointer-events: none;
}
