/* ════════════════════════════════════════════════════
   JASON BARNES — Personal Site  |  style.css
   ════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --bg:           #080810;
  --surface:      #0D0D1A;
  --surface-alt:  #101022;
  --border:       rgba(255,255,255,0.07);
  --accent:       #00D4FF;
  --accent-rgb:   0, 212, 255;
  --gold:         #C8A96E;
  --gold-rgb:     200, 169, 110;
  --text:         #F0F0F8;
  --text-muted:   #6868A0;
  --radius:       16px;
  --radius-sm:    10px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --dur:          0.35s;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ─── CURSOR GLOW ─── */
#cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.12s ease;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; }
h4, h5 { font-family: var(--font-display); font-weight: 700; }
h1 { font-size: clamp(4rem, 10vw, 9rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fira Code', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, var(--accent) 0%, #7FE8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #F0D090 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 7rem 0; }
.section--surface { background: var(--surface); }
.section--alt { background: var(--surface-alt); }
.section__header { text-align: center; margin-bottom: 4rem; }
.section__header p { max-width: 50ch; margin: 1rem auto 0; color: var(--text-muted); font-size: 1.0625rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: #000;
}
.btn--primary:hover {
  background: #33DEFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.4);
}
.btn--gold {
  background: var(--gold);
  color: #000;
}
.btn--gold:hover {
  background: #D9BA80;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--gold-rgb), 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.btn--outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
}
.btn--outline-accent:hover {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.125rem 2.5rem; font-size: 1rem; }

/* ─── TAGS ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.tag--cyan {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
}
.tag--gold {
  background: rgba(var(--gold-rgb), 0.12);
  border-color: rgba(var(--gold-rgb), 0.35);
  color: var(--gold);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}
.nav--scrolled {
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
  letter-spacing: 0.02em;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--text); }
.nav__cta { flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,8,16,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 999;
}
.nav__mobile-link {
  display: block;
  text-align: center;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__mobile-link:hover { color: var(--text); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,16,0.3) 0%, rgba(8,8,16,0.2) 30%, rgba(8,8,16,0.7) 65%, rgba(8,8,16,1) 100%),
    radial-gradient(ellipse 70% 80% at 80% 40%, rgba(var(--accent-rgb),0.06), transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 60%, rgba(var(--gold-rgb),0.04), transparent 50%);
}
.hero__scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.012) 2px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero__eyebrow-text {
  font-family: 'Fira Code', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.hero__eyebrow-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}
.hero__title {
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.hero__scroll-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════
   IDENTITY STRIP
══════════════════════════════════════════ */
.identity {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.identity__track {
  display: flex;
  animation: identityScroll 30s linear infinite;
  width: max-content;
}
.identity__track:hover { animation-play-state: paused; }
.identity__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 3rem;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}
.identity__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.identity__icon svg { color: var(--accent); }
.identity__icon--gold {
  background: rgba(var(--gold-rgb), 0.1);
  border-color: rgba(var(--gold-rgb), 0.25);
}
.identity__icon--gold svg { color: var(--gold); }
.identity__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.identity__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}
@keyframes identityScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__photo-wrap {
  position: relative;
}
.about__photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__photo-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.4), rgba(var(--gold-rgb),0.2), transparent 60%);
  z-index: -1;
}
.about__photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(8,8,16,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--gold-rgb),0.3);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
}
.about__photo-badge-title {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.about__photo-badge-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.about__content h2 { margin-bottom: 1.5rem; }
.about__bio { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2rem; }
.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.about__cred {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease);
}
.about__cred:hover { border-color: rgba(var(--accent-rgb), 0.3); }
.about__cred-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__cred-icon svg { color: var(--accent); }
.about__cred-text { font-size: 0.9375rem; font-weight: 500; }
.about__cred-sub { font-size: 0.8125rem; color: var(--text-muted); }
.about__contact-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   WHAT I DO
══════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.services__grid--6 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
}
.service-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb),0.05), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.service-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(var(--accent-rgb),0.1);
}
.service-card:hover::before { opacity: 1; }
.service-card--gold::before {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--gold-rgb),0.08), transparent 70%);
}
.service-card--gold:hover {
  border-color: rgba(var(--gold-rgb), 0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(var(--gold-rgb),0.15);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card__icon svg { color: var(--accent); }
.service-card--gold .service-card__icon {
  background: rgba(var(--gold-rgb), 0.1);
  border-color: rgba(var(--gold-rgb), 0.25);
}
.service-card--gold .service-card__icon svg { color: var(--gold); }
.service-card__num {
  font-family: 'Fira Code', monospace;
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.875rem; }
.service-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.service-card__link {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--dur) var(--ease);
}
.service-card:hover .service-card__link { gap: 0.7rem; }
.service-card--gold .service-card__link { color: var(--gold); }

/* ══════════════════════════════════════════
   ACCOMPLISHMENTS
══════════════════════════════════════════ */
.accomplishments__highlight {
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.08) 0%, rgba(var(--gold-rgb),0.03) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.25);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 4rem);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.accomplishments__highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),0.06), transparent 70%);
  pointer-events: none;
}
.accomplishments__guinness {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.accomplishments__guinness-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #F0D090);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 40px rgba(var(--gold-rgb), 0.3);
}
.accomplishments__guinness-badge svg { color: #000; }
.accomplishments__guinness-year {
  font-family: 'Fira Code', monospace;
  font-size: 0.6875rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accomplishments__highlight-content h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.875rem; }
.accomplishments__highlight-content p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; max-width: 60ch; }

.accomplishments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.accomplishment-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.accomplishment-card:hover {
  border-color: rgba(var(--accent-rgb), 0.25);
  transform: translateY(-4px);
}
.accomplishment-card__source {
  font-family: 'Fira Code', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.accomplishment-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.accomplishment-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0;
}
.stat-item {
  background: var(--surface-alt);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 0.375rem;
}
.stat-item__num--gold { color: var(--gold); }
.stat-item__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   PRESS
══════════════════════════════════════════ */
.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
.press__logo-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.press__logo-chip:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}
.press__logo-chip--featured {
  border-color: rgba(var(--gold-rgb), 0.3);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.06);
}

/* ══════════════════════════════════════════
   VIDEOS
══════════════════════════════════════════ */
.videos__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.videos__small {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.video-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: pointer;
}
.video-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-4px);
}
.video-card__embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.yt-facade {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
  background: #000;
  cursor: pointer;
  padding: 0;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
  display: block;
}
.yt-facade:hover img { transform: scale(1.04); opacity: 0.85; }
.yt-facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.yt-facade__play svg { filter: drop-shadow(0 2px 12px rgba(0,0,0,0.7)); transition: transform 0.2s ease; }
.yt-facade:hover .yt-facade__play svg { transform: scale(1.15); }
.video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-card__label {
  padding: 1.25rem 1.5rem;
}
.video-card__eyebrow {
  font-family: 'Fira Code', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.375rem;
}
.video-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
/* Small video card horizontal layout */
.video-card--small {
  display: grid;
  grid-template-columns: 140px 1fr;
}
.video-card--small .video-card__embed {
  aspect-ratio: unset;
  height: 100%;
  min-height: 80px;
}
.video-card--small .video-card__label {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-card--small .video-card__title { font-size: 0.9375rem; }

/* ══════════════════════════════════════════
   BOOK ME
══════════════════════════════════════════ */
.book {
  position: relative;
  overflow: hidden;
}
.book::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(var(--accent-rgb),0.07), transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 100%, rgba(var(--gold-rgb),0.05), transparent 50%);
  pointer-events: none;
}
.book__content {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.book__content h2 { margin-bottom: 1.25rem; }
.book__content p { color: var(--text-muted); font-size: 1.125rem; margin-bottom: 3rem; max-width: 52ch; margin-left: auto; margin-right: auto; }
.book__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.book__option {
  padding: 0.625rem 1.25rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.book__option:hover, .book__option.active {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.4);
  color: var(--accent);
}
.book__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   LINKS (LSF + CSS)
══════════════════════════════════════════ */
.links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.link-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: transform var(--dur) var(--ease);
  text-decoration: none;
  color: var(--text);
}
.link-card:hover { transform: translateY(-6px); }

/* Photo Dividers */
.photo-divider {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.photo-divider img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.7);
}
.photo-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(8,8,16,0.7) 0%,
    rgba(8,8,16,0.3) 40%,
    rgba(8,8,16,0.3) 60%,
    rgba(8,8,16,0.7) 100%
  );
}
.photo-divider__text {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'Fira Code', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.photo-divider__dot { color: var(--accent); opacity: 0.6; }

/* Connect — Instagram + SoundCloud */
.connect__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.connect__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 1rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.connect__card-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}
.connect__card-link {
  margin-left: auto;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
}
.connect__card-link:hover { text-decoration: underline; }
.connect__embed { position: relative; width: 100%; }
.connect__embed iframe {
  display: block;
  width: 100%;
  border: 0;
}
.connect__embed--ig { height: 520px; }
.connect__embed--ig iframe { height: 100%; }
.connect__embed--sc { height: 520px; }
.connect__embed--sc iframe { height: 100%; }
@media (max-width: 880px) {
  .connect__grid { grid-template-columns: 1fr; }
  .connect__embed--ig { height: 560px; }
}
.link-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.link-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.link-card:hover .link-card__bg img { transform: scale(1.05); }
.link-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.97) 0%, rgba(8,8,16,0.75) 50%, rgba(8,8,16,0.45) 100%);
  z-index: 1;
}
.link-card__content {
  position: relative;
  z-index: 2;
}
.link-card__type {
  font-family: 'Fira Code', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.link-card__type--gold { color: var(--gold); }
.link-card h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); margin-bottom: 0.75rem; }
.link-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1.5rem; max-width: 40ch; }
.link-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  transition: gap var(--dur) var(--ease);
}
.link-card:hover .link-card__arrow { gap: 0.8rem; }
.link-card__arrow--gold { color: var(--gold); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact__info h2 { margin-bottom: 1.25rem; }
.contact__info p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2.5rem; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease);
  text-decoration: none;
  color: var(--text);
}
.contact__detail:hover { border-color: rgba(var(--accent-rgb), 0.3); }
.contact__detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { color: var(--accent); }
.contact__detail-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.125rem; }
.contact__detail-value { font-size: 0.9375rem; font-weight: 500; }

/* Form */
.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.875rem 1.125rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236868A0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--surface-alt); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact__form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
#form-status {
  margin-top: 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  display: none;
  text-align: center;
}
#form-status.success {
  display: block;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
}
#form-status.error {
  display: block;
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #FF5050;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.footer__brand span { color: var(--accent); }
.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.footer__socials {
  display: flex;
  gap: 0.5rem;
}
.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--dur) var(--ease);
}
.footer__social:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
}
.footer__legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: right;
}

/* ══════════════════════════════════════════
   GSAP ANIMATION BASE STATES
══════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-fade {
  opacity: 0;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ══════════════════════════════════════════
   SECTION GLOW SEPARATOR
══════════════════════════════════════════ */
.glow-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb),0.4), transparent);
  border: none;
  margin: 0;
}
.glow-sep--gold {
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb),0.35), transparent);
}

/* ══════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line,
  .identity__track { animation: none; }
  .reveal-up, .reveal-fade, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .accomplishments__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .nav__links { gap: 1.5rem; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__photo-wrap { max-width: 400px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .links__grid { grid-template-columns: 1fr; }
  .videos__grid { grid-template-columns: 1fr; }
  .videos__small { display: grid; grid-template-columns: repeat(2, 1fr); }
  .video-card--small { grid-template-columns: 1fr; }
  .video-card--small .video-card__embed { aspect-ratio: 16/9; height: auto; }
  .accomplishments__highlight { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .accomplishments__highlight-content p { margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero__title { font-size: clamp(4rem, 16vw, 6rem); }
  .services__grid { grid-template-columns: 1fr; }
  .accomplishments__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .videos__small { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__legal { text-align: left; }
}

@media (max-width: 600px) {
  .section { padding: 5rem 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .book__ctas { flex-direction: column; align-items: center; }
  /* Prevent horizontal overflow on mobile */
  body { overflow-x: hidden; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  /* Hero: reduce spacing so content fits in viewport */
  .hero { padding-bottom: 3.5rem; min-height: 100dvh; }
  .hero__title { margin-bottom: 1.25rem; }
  .hero__roles { margin-bottom: 1.75rem; gap: 0.5rem; }
  /* Video featured card full-width */
  .video-card { min-width: 0; width: 100%; }
  .videos__grid { gap: 1.5rem; }
  /* Photo dividers shorter on mobile */
  .photo-divider { height: 220px; }
  /* Link cards readable on mobile */
  .link-card { min-height: 260px; }
  /* Connect embeds slightly shorter */
  .connect__embed--ig { height: 420px; }
  .connect__embed--sc { height: 400px; }
  /* Footer stack tighter */
  .footer__inner { gap: 1.5rem; }
}
