/* ════════════════════════════════════════
   SHAWN CONRAD — Site Stylesheet
   Dark & Premium Personal Brand
   ════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --bg:          #080808;
  --bg-2:        #0e0e0e;
  --bg-card:     #111111;
  --bg-card-2:   #161616;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.3);

  --gold:        #C9A84C;
  --gold-light:  #E2C070;
  --gold-dim:    rgba(201,168,76,0.12);

  --white:       #FFFFFF;
  --gray-100:    #E8E8E8;
  --gray-300:    #AAAAAA;
  --gray-500:    #666666;
  --gray-700:    #2A2A2A;

  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-italic: 'Cormorant Garamond', serif;

  --radius:      12px;
  --radius-lg:   20px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:  0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container:   1200px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

strong { font-weight: 600; color: var(--white); }
em.gold-italic {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05em;
}

/* ─── Scroll Progress Bar ─── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: var(--scroll-progress, 0%);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #000;
  will-change: transform;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform   0.6s  cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 18px rgba(201,168,76,0.18);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.6rem 1.25rem;
}
.btn--ghost:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 0.9375rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Section Patterns ─── */
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--gray-300);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Hero: CSS keyframe entrance (no JS needed) ─── */
.hero__eyebrow { animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.hero__name    { animation: fadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.hero__roles   { animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both; }
.hero__sub     { animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both; }
.hero__ctas    { animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.76s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.nav__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color var(--transition);
}
.nav__logo:hover { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray-300);
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.nav__mobile a {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray-100);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

/* Hero background slideshow */
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 35% center;
  animation: heroSlide 14s ease-in-out infinite;
  opacity: 0;
  z-index: 0;
  transform: scaleX(-1);
  will-change: transform;
}
.hero__slide--2 { animation-delay: 6s; }
@keyframes heroSlide {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  46%  { opacity: 1; }
  54%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.96) 0%,
    rgba(8,8,8,0.88) 30%,
    rgba(8,8,8,0.45) 58%,
    rgba(8,8,8,0.1) 100%
  );
  z-index: 1;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero__glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero__content {
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero__name {
  font-family: var(--font-head);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.75rem;
  position: relative;
  display: inline-block;
}
/* Gold shimmer sweep — fires once after hero fades in */
.hero__name::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(201,168,76,0.5) 50%, transparent 75%);
  background-size: 250% 100%;
  background-position: -100% 0;
  pointer-events: none;
  animation: nameShimmer 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.6s 1 forwards;
}
@keyframes nameShimmer {
  0%   { background-position: -100% 0; opacity: 1; }
  100% { background-position: 250% 0;  opacity: 0; }
}

.hero__roles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.role-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-dim);
  letter-spacing: 0.04em;
}

.role-divider {
  color: var(--gray-500);
  font-size: 1.25rem;
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--gray-300);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  z-index: 2;
}
.hero__scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gray-500), transparent);
}

/* ════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.trust-strip__label {
  flex-shrink: 0;
  padding: 0 0 0 2rem;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
}

.marquee { overflow: hidden; flex: 1; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
  transition: color var(--transition);
}
.marquee__track span:hover { color: var(--gray-300); }
.marquee__track .dot { color: var(--gold); font-size: 0.5rem; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   STATS
   ════════════════════════════════════════ */
.stats {
  padding: 5rem 0;
  background: var(--bg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }

.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
  display: inline;
}
.stat__plus {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  display: inline;
}
.stat__label {
  font-size: 0.8125rem;
  color: var(--gray-300);
  font-weight: 500;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

.about__img-wrap {
  position: relative;
}

.about__img-wrap img,
.about__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about__img-placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-family: var(--font-head);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

.about__img-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
}

.about__text { display: flex; flex-direction: column; gap: 1.25rem; }
.about__text p { color: var(--gray-300); font-size: 1.0625rem; line-height: 1.8; }

.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-300);
  line-height: 1.5;
}
.credential__icon { color: var(--gold); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }

/* ════════════════════════════════════════
   PHOTO MARQUEE (scrolling billboard)
   ════════════════════════════════════════ */
.photo-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 0.75rem 0;
}

.photo-marquee__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: photoScroll 40s linear infinite;
}
.photo-marquee__track:hover { animation-play-state: paused; }

@keyframes photoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.photo-marquee__item {
  flex-shrink: 0;
  width: 260px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}

.photo-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              filter     0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-marquee__item:hover img {
  transform: scale(1.06);
  filter: grayscale(40%) contrast(1.05);
}

/* Crop helpers for specific marquee photos */
.photo-marquee__item img.crop-upper      { object-position: center 5%; }
.photo-marquee__item img.crop-top        { object-position: center top; }
.photo-marquee__item img.crop-left       { object-position: 25% center; }
.photo-marquee__item img.crop-upper-face { object-position: center 30%; }
.photo-marquee__item img.crop-mid-face   { object-position: center 38%; }

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1rem;
}

/* ════════════════════════════════════════
   VIDEO GRID
   ════════════════════════════════════════ */
.videos {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow   0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform    0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.15);
}

.video-card__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
}

.video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── YouTube click-to-play facade ── */
.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #000;
  overflow: hidden;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              filter  0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.82);
}
.yt-facade:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.72);
  border: 2px solid rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.yt-facade:hover .yt-play {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.12);
}
.yt-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--bg-card);
  color: var(--gray-500);
  font-family: var(--font-head);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1rem;
}
.video-placeholder__icon {
  font-size: 1.75rem;
  color: var(--gray-700);
}

@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
  .photo-marquee__item { width: 200px; height: 140px; }
}

/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.services {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 2.75rem;
  position: relative;
  transition: background var(--transition);
}
.service-card:hover { background: var(--bg-card-2); }

.service-card__num {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-card__icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--white);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card__list li {
  font-size: 0.875rem;
  color: var(--gray-500);
  padding-left: 1rem;
  position: relative;
}
.service-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ════════════════════════════════════════
   HIP-HOP LEGACY
   ════════════════════════════════════════ */
.hh-legacy {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.hh-legacy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-top: 3rem;
}
.hh-legacy__block h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hh-legacy__block p {
  color: var(--gray-300);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.hh-legacy__quote {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding: 0.25rem 0 0.25rem 2rem;
}
.hh-legacy__quote-attr {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gray-400);
  letter-spacing: 0.01em;
}
.hh-legacy__block-inner {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.hh-legacy__block-text {
  flex: 1;
  min-width: 0;
}
.hh-legacy__block-text p + p {
  margin-top: 1rem;
}
.hh-legacy__portrait,
.hh-legacy__portrait--mono {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.hh-legacy__portrait {
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  border: 2px solid var(--gold);
}
.hh-legacy__portrait--mono {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  background: var(--bg-card);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hh-legacy__portraits {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 600px) {
  .hh-legacy__block-inner { flex-direction: column; }
}
/* Show credits grid */
.hh-shows-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.25rem 0 1rem;
}
.hh-show-badge {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 0.375rem 0.5rem;
  flex-shrink: 0;
}
.hh-show-badge__logo {
  width: 54px;
  height: 36px;
  object-fit: contain;
  filter: invert(1) opacity(0.75);
}
.hh-show-badge__logo--light {
  filter: none;
}
.hh-show-badge__label {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  line-height: 1.2;
  text-align: center;
}
.hh-show-badge__abbr {
  font-family: var(--font-head, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.03em;
}

.hh-legacy__attribution {
  font-size: 0.65rem;
  color: var(--gray-600);
  margin-top: 2.5rem;
  text-align: right;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .hh-legacy__grid { grid-template-columns: 1fr; }
  .hh-legacy__quote { font-size: 1.1rem; padding-left: 1.25rem; }
}

/* ════════════════════════════════════════
   MUSIC SPOTLIGHT
   ════════════════════════════════════════ */
.music-spotlight {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.music-spotlight__embed {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.music-spotlight__embed iframe {
  display: block;
  border-radius: 12px;
}

/* ════════════════════════════════════════
   AI PORTFOLIO
   ════════════════════════════════════════ */
.portfolio {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: 'AI';
  position: absolute;
  top: -2rem; right: -2rem;
  font-family: var(--font-head);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(201,168,76,0.025);
  pointer-events: none;
  line-height: 1;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow   0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
.portfolio-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
}


.portfolio-card__tag {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.portfolio-card__title {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.portfolio-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-300);
  line-height: 1.75;
  flex: 1;
}
.portfolio-card__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.portfolio-card__stack span {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--gray-300);
}
.portfolio-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
}
.portfolio-card__status {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.portfolio-card--cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border-color: var(--border-gold);
  justify-content: center;
}
.portfolio-card--cta .portfolio-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.portfolio-card--cta h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.portfolio-card--cta p {
  font-size: 0.9375rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   FOR TEAMS
   ════════════════════════════════════════ */
.forteams {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.forteams::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.forteams__header {
  margin-bottom: 4rem;
}
.forteams__header .section-sub { max-width: 640px; }

.forteams__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.forteams__quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  line-height: 1.6;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.75rem;
}

.forteams__narrative {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.forteams__narrative p {
  font-size: 1.0625rem;
  color: var(--gray-300);
  line-height: 1.8;
}

.forteams__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.forteams__skills-label {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.skill-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  transition: border-color var(--transition), color var(--transition);
}
.skill-tag:hover { border-color: var(--border-gold); color: var(--gold); }

.skill-tag--primary {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  color: var(--gold-light);
  font-weight: 600;
}

.proof-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proof-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition);
}
.proof-item:hover { border-color: var(--border-gold); }

.proof-item__icon {
  color: var(--gold);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.proof-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.proof-item span {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ════════════════════════════════════════
   CLIENTS
   ════════════════════════════════════════ */
.clients {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.client-item {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color var(--transition), background var(--transition);
}
.client-item:hover {
  background: var(--bg-card-2);
  color: var(--gold);
}

/* ════════════════════════════════════════
   PODCAST
   ════════════════════════════════════════ */
.podcast-section {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

/* Two-column layout: player left, episode list right */
.podcast__player-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
  margin-top: 3.5rem;
}

/* Left column: iframe + now-playing title */
.podcast__main { display: flex; flex-direction: column; gap: 1rem; }

.podcast__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.podcast__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.podcast__now-playing {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-100);
  line-height: 1.4;
}

/* Right column: scrollable episode list */
.podcast__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
}
.podcast__list::-webkit-scrollbar { width: 3px; }
.podcast__list::-webkit-scrollbar-track { background: transparent; }
.podcast__list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Individual episode card (button) */
.podcast__ep {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.podcast__ep:hover {
  border-color: var(--gold);
  background: rgba(212, 167, 93, 0.05);
}
.podcast__ep.active {
  border-color: var(--gold);
  background: rgba(212, 167, 93, 0.08);
}
.podcast__ep img {
  width: 72px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.podcast__ep-title {
  font-size: 0.78rem;
  color: var(--gray-300);
  line-height: 1.4;
}
.podcast__ep.active .podcast__ep-title {
  color: var(--gold);
}

/* Footer CTA */
.podcast__footer {
  margin-top: 2.5rem;
  text-align: center;
}

/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */
.testimonials {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testimonials__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.testi-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: var(--border-gold); }

.testi-card__quote {
  font-family: var(--font-italic);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 0.5rem;
}
.testi-card p {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-card__author { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.testi-card__name {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}
.testi-card__role { font-size: 0.8125rem; color: var(--gray-500); margin-top: 0.2rem; }

.testimonials__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════
   WHY SHAWN
   ════════════════════════════════════════ */
.why {
  padding: 7rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.why-card__line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.875rem;
}
.why-card p { font-size: 0.9375rem; color: var(--gray-300); line-height: 1.75; }

/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
.contact {
  padding: 7rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}

.contact__text { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__text p { color: var(--gray-300); font-size: 1.0625rem; line-height: 1.8; }

.contact__info { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 0.5rem; }
.contact__info-item { display: flex; flex-direction: column; gap: 0.25rem; }
.contact__info-label {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__info-item a {
  font-size: 1rem;
  color: var(--gray-300);
  transition: color var(--transition);
}
.contact__info-item a:hover { color: var(--white); }

.contact__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gray-500);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.social-link:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: var(--gold-dim);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-300);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem 1.125rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; }
.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='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group select option { background: #111; color: var(--white); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__logo {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__links a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__copy {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ─── Scroll to Top ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 500;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-top: 1px solid var(--border); }
  .portfolio__grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card--cta { grid-column: 1 / -1; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .about__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .about__media { max-width: 380px; }
  .services__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .podcast__player-wrap { grid-template-columns: 1fr; }
  .podcast__list {
    max-height: none;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    padding-right: 0;
  }
  .podcast__ep { flex-direction: column; min-width: 150px; align-items: flex-start; }
  .podcast__ep img { width: 100%; height: 84px; }
  .why__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .about__credentials { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  .hero__name { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .trust-strip { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 1.25rem; }
  .trust-strip__label { padding: 0; }

  .stats__grid { border-radius: var(--radius); }
  .portfolio__grid { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  section { padding: 4.5rem 0 !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__roles { gap: 0.5rem; }
  .role-divider { display: none; }
  .clients__grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   HIRING MANAGER RESUME OVERLAY
   Activated by JS when URL contains #resume
   ═══════════════════════════════════════════════ */
.resume-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 9999;
  overflow-y: auto;
  padding: 0;
}
.resume-overlay.active { display: block; }
.resume-overlay__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10000;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              color       0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.resume-overlay__close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.resume-overlay__doc {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 3rem 6rem;
  color: var(--text);
}
.resume-doc__header {
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}
.resume-doc__name {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}
.resume-doc__title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.resume-doc__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.resume-doc__contact a { color: var(--text-muted); text-decoration: none; }
.resume-doc__contact a:hover { color: var(--gold); }
.resume-doc__section { margin-bottom: 2.5rem; }
.resume-doc__section-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}
.resume-doc__job { margin-bottom: 1.75rem; }
.resume-doc__job-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}
.resume-doc__job-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.resume-doc__job-company {
  font-size: 0.875rem;
  color: var(--gold);
}
.resume-doc__job-dates {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.resume-doc__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.resume-doc__bullets li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}
.resume-doc__bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.15em;
}
.resume-doc__skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.resume-doc__skill-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.resume-doc__skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.resume-doc__skill-tags span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  color: var(--text);
}
.resume-doc__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .resume-overlay__doc { padding: 4rem 1.5rem 5rem; }
  .resume-doc__name { font-size: 2rem; }
  .resume-doc__skills-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   PERSONA GATEWAY
   ════════════════════════════════════════ */
.gateway {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gateway::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/shawn-headshot-pro.png');
  background-size: cover;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
}
.gateway.gateway--exit {
  opacity: 0;
  pointer-events: none;
}
.gateway.gateway--hidden {
  display: none;
}

.gateway__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  text-align: center;
  animation: gatewayFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes gatewayFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gateway__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.gateway__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.gateway__sub {
  color: var(--gray-400);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.gateway__choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.gateway__choice {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background   0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform    0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow   0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.gateway__choice:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.12);
}
.gateway__choice:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.gateway__choice-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.gateway__choice-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.gateway__choice-hint {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.gateway__skip {
  background: none;
  border: none;
  color: rgba(255,255,255,0.13);
  font-size: 0.72rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
  letter-spacing: 0.04em;
}
.gateway__skip:hover { color: rgba(255,255,255,0.32); }

/* Persona switcher chip (bottom of page) */
.persona-switcher {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  display: none;
}
.persona-switcher:hover { color: var(--gold); border-color: var(--border-gold); }
/* Switcher only visible in admin mode — not for regular visitors */
body.is-admin.has-persona .persona-switcher { display: block; }

/* ── Persona-driven section visibility ── */

/* Sections that are persona-specific get hidden by default when a persona is active */
body.has-persona .persona-section { display: none !important; }
body.has-persona .persona-section.persona-active { display: block !important; }

/* All non-persona sections always show */
.persona-always { display: block !important; }

/* ─── HERO SLIDE FOCAL POINT RULES ───────────────────────────────────────
   The hero overlay gradient is dark-left → transparent-right.
   Shawn's face must land in the RIGHT half (clear area), away from text.
   scaleX(-1) is set globally on .hero__slide — override with transform:none
   on any slide where the subject is naturally on the RIGHT of the original photo.
   ──────────────────────────────────────────────────────────────────────── */

/* Sports slide 1: tennis court — landscape 6000×3368, cover creates ~400px X overflow.
   Shawn is ~center of frame; use left-biased position (no flip) to land him at ~65-70% from left. */
body[data-persona="sports"] .hero__slide:not(.hero__slide--2) {
  background-image: url('../images/shawn-tennis-court.jpg') !important;
  background-position: 5% 12%;
  transform: none !important;
}
/* Sports slide 2: harbor — face right of center in original → remove flip */
body[data-persona="sports"] .hero__slide--2 {
  background-image: url('../images/shawn-harbor.jpg') !important;
  background-position: 65% 25%;
  transform: none !important;
}

/* Hire: harbor, sole static slide — face right, no flip, no animation */
body[data-persona="hire"] .hero__slide:not(.hero__slide--2) {
  background-image: url('../images/shawn-harbor.jpg') !important;
  background-position: 65% 25%;
  transform: none !important;
  animation: none !important;
  opacity: 1 !important;
}
body[data-persona="hire"] .hero__slide--2 {
  display: none !important;
}

/* Book slide 1: B&W collage — flip horizontally so Shawn lands in right half (clear of text) */
body[data-persona="book"] .hero__slide:not(.hero__slide--2) {
  background-position: 65% center;
  transform: scaleX(-1) !important;
}
/* Legacy slide 1: B&W collage — no flip, center-right position */
body[data-persona="legacy"] .hero__slide:not(.hero__slide--2) {
  background-position: 60% center;
  transform: scaleX(-1) !important;
}
/* Book slide 2: Acting.jpg — face right of center in original → remove flip */
body[data-persona="book"] .hero__slide--2 {
  background-position: 65% 18%;
  transform: none !important;
}
/* Legacy slide 2: Acting.jpg — flip so Shawn lands in right half (clear of text) */
body[data-persona="legacy"] .hero__slide--2 {
  background-position: 35% 18%;
  transform: scaleX(-1) !important;
}

/* Persona highlight — gold left-border glow on focal section */
.persona-highlight {
  position: relative;
}
.persona-highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.35);
  animation: persona-bar-in 0.6s ease both;
}
@keyframes persona-bar-in {
  from { opacity: 0; transform: scaleY(0.4); }
  to   { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 600px) {
  .gateway__choices { grid-template-columns: 1fr; }
  .gateway__heading { font-size: 1.8rem; }
}

/* ─── Sports Featured Reel ─────────────────────────────────────── */
.sport-reel__sub {
  max-width: 640px;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.sport-reel__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
}
.sport-reel__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ─── Mobile hero: recenter focal point on portrait screens ─── */
@media (max-width: 768px) {
  /* Default collage — stays centered */
  .hero__slide { background-position: center center; }

  /* Hire & sports harbor — face is right-of-center in original photo */
  body[data-persona="hire"] .hero__slide:not(.hero__slide--2),
  body[data-persona="sports"] .hero__slide--2 {
    background-position: 70% 20%;
  }

  /* Sports tennis court — face/body framing */
  body[data-persona="sports"] .hero__slide:not(.hero__slide--2) {
    background-position: 60% 20%;
  }
}
