/* ============================================================
   BRYAN SKLOVER — PORTFOLIO
   Design language: arena broadcast / game presentation
   Signature: rink-line accent system + production rundown timeline
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&family=Oswald:wght@600;700&display=swap');

:root{
  --bg:        #0A0D12;
  --bg-panel:  #12171F;
  --bg-panel-2:#161C26;
  --line:      #232B37;

  --ice:       #0700B0;   /* blue line accent — Bryan's exact hex, used for dividers/borders */
  --ice-text:  #6C63FF;   /* brighter tint of the same blue, used only where it's rendered as text (for readability on dark bg) */
  --horn:      #FFB749;   /* goal-horn amber, primary CTA */
  --redline:   #B50E27;   /* center-ice red line accent — Bryan's hex */
  --redline-text: #E8433A; /* brighter tint of redline, used only where it's rendered as text (for readability on dark bg) */

  --white:     #F3F6FA;
  --steel:     #8996AA;
  --steel-dim: #5C6779;
  --steel-accent: #9FB0C4;  /* brighter steel gray, used as a visible accent on cards/tags/borders */
  --chrome:    #7C8998;   /* dark chrome silver — used on brand "DONE" */
  --hero-pop:  #4CE35F;   /* electric green — used on hero em text ("Fan Experience") */

  --display: 'Anton', Impact, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }

::selection{ background: var(--chrome); color: #14100A; }

:focus-visible{
  outline: 2px solid var(--ice-text);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

.wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- section divider (signature motif) ---------- */
.rink-divider{
  height: 2px;
  width: 100%;
  background: #000;
}

/* ---------- nav ---------- */
.site-nav{
  position: sticky; top:0; z-index: 50;
  background: rgba(10,13,18,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand{
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--white);
}
.brand span{ color: var(--chrome); }
.nav-links{ display:flex; gap: 34px; align-items:center; }
.nav-links a{
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--ice-text); }
.nav-linkedin{ display:flex; align-items:center; }
.nav-linkedin svg{ display:block; }
.nav-cta{
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--hero-pop);
  border: 1px solid var(--hero-pop);
  color: #14100A !important;
  padding: 8px 16px;
  border-radius: 3px;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.nav-cta:hover{ background: transparent; color: var(--hero-pop) !important; }
.nav-contact{ position: relative; }
.contact-dropdown{
  display:none;
  position:absolute; top:calc(100% + 8px); right:0;
  background: var(--bg-panel); border:1px solid var(--line); border-radius:6px;
  min-width:210px; padding:6px; z-index:60;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.nav-contact.open .contact-dropdown, .cta-contact.open .contact-dropdown{ display:block; }
.contact-dropdown-item{
  display:block; width:100%; text-align:left;
  font-family: var(--mono); font-size:12.5px; text-transform:uppercase; letter-spacing:.06em;
  color: var(--white); background:none; border:none;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor:pointer;
  padding:10px 12px; border-radius:4px;
}
.contact-dropdown-item:hover{ background: var(--bg-panel-2); color: var(--ice-text); }
.cta-contact{ position: relative; display: inline-block; }
.cta-contact .contact-dropdown{ left: 0; right: auto; }

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:32px; height:32px;
  background:none; border:none; padding:0; cursor:pointer;
}
.nav-toggle span{
  display:block; width:100%; height:2px;
  background: var(--ice-text, #fff);
  border-radius:1px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero{
  position: relative;
  padding: 100px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(1100px 460px at 82% -10%, rgba(95,216,255,0.10), transparent 60%),
    radial-gradient(900px 420px at 10% 110%, rgba(255,183,73,0.08), transparent 60%),
    linear-gradient(180deg, rgba(10,13,18,0.52) 0%, rgba(10,13,18,0.72) 55%, rgba(10,13,18,0.87) 100%),
    url('photos/savannah/SGP%20Arena%20View.JPEG');
  background-size: auto, auto, cover, cover;
  background-position: center, center, center, center 30%;
  background-repeat: no-repeat;
}

.hero-space{
  background: none;
  padding-top: 40px;
}

body.space-bg{
  background:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(2200px 1400px at 15% -20%, rgba(95,216,255,0.16), transparent 85%),
    radial-gradient(2000px 1300px at 95% 90%, rgba(181,14,39,0.12), transparent 85%),
    var(--bg);
  background-size: 18px 18px, auto, auto, auto;
  background-attachment: fixed, fixed, fixed, fixed;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
}
.hero-eyebrow{
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice-text);
  display:flex; align-items:center; gap:10px;
  margin-bottom: 22px;
}
.hero-eyebrow::before{
  content:"";
  width:8px; height:8px; border-radius:50%;
  background: var(--redline);
  box-shadow: 0 0 0 3px rgba(232,67,58,0.18);
}
.hero h1{
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hero h1 em{
  font-style: normal;
  color: var(--hero-pop);
}
.hero-sub{
  font-family: var(--mono);
  font-size: clamp(14px, 2vw, 17px);
  color: var(--white);
  max-width: 640px;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.95), 0 2px 6px rgba(0,0,0,0.95), 0 6px 20px rgba(0,0,0,0.9);
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

.btn{
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 3px;
  border: 1px solid transparent;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer;
  display:inline-flex; align-items:center; gap:10px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn-primary{ background: var(--hero-pop); color:#14100A; }
.btn-primary:hover{ transform: translateY(-2px); }
.btn-ghost{ border-color: var(--line); color: var(--white); }
.btn-ghost:hover{ border-color: var(--ice-text); color: var(--ice-text); }

.hero-stats{
  display:grid; grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 1px; background: var(--line);
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: 4px; overflow:hidden;
}
.hero-stats div{
  background: var(--bg-panel);
  padding: 12px 8px 4px;
  text-align: center;
}
.hero-stats-solo{
  display:none;
}
.stat-num{ font-family: var(--display); font-size: clamp(39px, 4.4vw, 54px); color: var(--ice-text); line-height:1; }
.stat-label{ font-family: var(--mono); font-size: 9.5px; text-transform:uppercase; color: var(--steel); letter-spacing:.05em; margin-top:4px; position:relative; top:-10px; }

/* ---------- section shell ---------- */
section{ padding: 88px 0; }
.section-head{ margin-bottom: 48px; max-width: 640px; }
.section-tag{
  font-family: var(--mono); font-size: 14px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color: var(--redline-text); margin-bottom: 14px; display:block;
}
.mobile-break{ display:none; }
.section-head h2{
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  text-transform: uppercase;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.section-head p{ color: var(--steel); font-size: 16px; margin:0; }
.recaps-lede{ max-width:none; white-space:nowrap; }

/* ---------- about ---------- */
.about-grid{
  display:grid; grid-template-columns: 300px 1fr; gap: 56px; align-items:start;
}
.about-photo{
  border-radius: 6px; overflow:hidden; border:1px solid var(--line);
  aspect-ratio: 3/4; object-fit:cover; width:100%;
}
.about-body p{ color: var(--steel); font-size: 16.5px; margin: 0 0 18px; }
.about-body strong{ color: var(--white); }

/* ---------- chapter (stacked career section: text + video + photos) ---------- */
.chapter{ padding: 88px 0; border-bottom: 1px solid var(--line); }
.chapter-eyebrow{
  font-family: var(--mono); font-size:14px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color: var(--chapter-accent, var(--redline-text)); margin-bottom: 14px; display:block;
}
.chapter-title{
  font-family: 'Oswald', sans-serif; font-weight:700; font-size: clamp(28px,4vw,42px); text-transform:uppercase;
  line-height:0.95; margin: 0 0 6px; letter-spacing:.01em;
}
.chapter-role{ font-family: var(--mono); font-size:13px; color: var(--ice-text); letter-spacing:.03em; margin-bottom:2px; }
.chapter-meta{ font-family: var(--mono); font-size:12.5px; color: var(--steel-dim); margin-bottom: 28px; }
.chapter-bullets{ list-style:none; margin:0 0 32px; padding:0; max-width: 760px; }
.chapter-bullets li{
  position:relative; padding-left: 22px; margin-bottom: 12px; color: var(--steel); font-size:15.5px; line-height:1.6;
}
.chapter-bullets li::before{
  content:""; position:absolute; left:0; top:9px; width:8px; height:2px; background: var(--chrome);
}
.chapter-media-note{
  font-family: var(--mono); font-size: 12.5px; color: var(--steel-dim);
  border: 1px dashed var(--steel-accent); border-radius: 4px; padding: 14px 18px; max-width: 760px;
}

/* ---------- spotlight (individually highlighted moment within a chapter) ---------- */
.spotlight{
  margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line);
}
.spotlight-eyebrow{
  font-family: var(--mono); font-size:11.5px; letter-spacing:.12em; text-transform:uppercase;
  color: var(--chapter-accent, var(--chrome)); margin-bottom:8px; display:block;
}
.spotlight-title{
  font-family: 'Oswald', sans-serif; font-weight:700; font-size: clamp(22px,2.8vw,30px); text-transform:uppercase;
  margin: 0 0 14px; letter-spacing:.01em;
}
.spotlight-desc{ color: var(--steel); font-size:15px; max-width:640px; margin-bottom:22px; }
.spotlight-grid{
  display:grid; grid-template-columns: 1.3fr 1fr; gap: 20px; align-items:start;
}
.spotlight-video{ position:relative; aspect-ratio:16/9; background:#000; border-radius:6px; overflow:hidden; border:1px solid var(--line); }
.spotlight-video iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.spotlight-photos{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
.spotlight-photos img{ aspect-ratio:1/1; object-fit:cover; border-radius:4px; border:1px solid var(--line); }

/* ---------- recap tiles (visual click-through chapter cards) ---------- */
.recap-grid{
  display:grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
.recap-tile{
  position:relative; display:block; aspect-ratio: 4/3;
  border-radius: 6px; overflow:hidden; border:1px solid var(--line);
  border-top: 4px solid var(--chapter-accent, var(--steel-accent));
  background: var(--bg-panel);
}
.recap-tile img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease;
}
.recap-tile:hover img{ transform: scale(1.06); }
.recap-tile:not(.no-photo)::before{
  content:"";
  position:absolute; inset:0;
  background: var(--chapter-tint, rgba(95,216,255,0.30));
  pointer-events:none;
}
.recap-tile.no-photo{
  background:
    linear-gradient(135deg, rgba(95,216,255,0.10) 0%, transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px),
    var(--bg-panel-2);
}
.recap-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 35%, rgba(6,8,11,0.94) 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding: 26px;
}
.recap-overlay .recap-eyebrow{
  position:absolute; top:16px; left:16px; margin-bottom:0;
}
.recap-eyebrow{
  font-family: var(--mono); font-size:14px; letter-spacing:.12em; text-transform:uppercase;
  color: #fff; margin-bottom:8px;
  display:inline-block; align-self:flex-start; background: var(--chapter-accent, var(--ice-text));
  padding: 4px 10px; border-radius: 3px;
  transition: opacity .15s ease;
}
a.recap-eyebrow:hover{ opacity: 0.82; }
.chapter-nav-label{ font-family: var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--steel-dim); }
.chapter-nav-pills{ display:flex; flex-wrap:wrap; gap:10px; }
.chapter-nav-short{ display:none; }
.recap-title{
  font-family: 'Oswald', sans-serif; font-weight:700; font-size: clamp(26px,3.2vw,36px); text-transform:uppercase;
  color: var(--white); margin:0 0 6px; letter-spacing:.01em;
}
.recap-meta{ font-family: var(--mono); font-size:12px; color: var(--steel); margin-bottom:10px; }
.recap-cta{
  font-family: var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.05em;
  color: var(--chrome); display:inline-flex; align-items:center; gap:6px;
}
.recap-tile.no-photo.tint{
  background:
    linear-gradient(135deg, var(--chapter-tint, rgba(95,216,255,0.10)) 0%, transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px),
    var(--bg-panel-2);
}

/* ---------- chapter page hero (for standalone recap pages) ---------- */
.chapter-hero{ padding: 40px 0; }
.chapter-hero .back-link{
  font-family: var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.06em;
  color: var(--steel); display:inline-flex; align-items:center; gap:8px; margin-bottom:24px;
}
.chapter-hero .back-link:hover{ color: var(--ice-text); }

/* ---------- rundown (experience timeline) ---------- */
.rundown{ border-top:1px solid var(--line); }
.rundown-row{
  display:grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.rundown-datecol{ display:flex; flex-direction:column; gap:14px; }
.rundown-logos{ display:flex; flex-wrap:wrap; gap:8px; }
.rundown-logo{
  width: 88px; height: 88px;
  flex: 0 0 auto;
  border-radius: 4px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; padding:4px;
}
.rundown-logo img{ max-width:100%; max-height:100%; object-fit:contain; }
.rundown-logo.on-white{ background: #fff; }
.rundown-time{
  font-family: var(--mono); color: var(--ice-text); font-size: 14px; letter-spacing:.02em;
  padding-top: 4px;
}
.rundown-role{
  font-family: 'Oswald', sans-serif; font-weight:700; font-size: 21px; text-transform:uppercase; letter-spacing:.01em;
  margin-bottom: 4px;
}
.rundown-org{ color: var(--chrome); font-family: var(--mono); font-size: 13px; letter-spacing:.04em; margin-bottom:10px; }
.rundown-subhead{
  font-family: var(--mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color: var(--chrome); margin: 40px 0 4px; display:block;
}
.rundown-link{
  display:inline-block; font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.05em;
  color: var(--hero-pop); transition:color .15s ease;
}
.rundown-link:hover{ color: var(--ice-text); }
.rundown-link-row{ display:flex; gap:20px; flex-wrap:wrap; margin-top:12px; }
.rundown-link-row:has(.recap-eyebrow){ justify-content:center; }
.rundown-media-row{
  display:grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "role photo" "org photo" "desc photo" ". chip";
  column-gap:20px;
  align-items:start;
}
.rundown-link-row-right{ justify-content:flex-end !important; padding-right:24px; }
.rundown-audio-note{ font-family: var(--mono); font-size:12px; color: var(--steel-dim); margin-top:12px; }
.rundown-desc{ color: var(--steel); font-size: 15px; max-width: 640px; }
.rundown-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.rundown-tags span{
  font-family: var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:.04em;
  color: var(--steel-accent); border:1px solid var(--steel-accent); padding:4px 9px; border-radius:3px;
}

/* ---------- portfolio / video grid ---------- */
.reel-grid{
  display:grid; grid-template-columns: repeat(2,1fr); gap: 28px;
}
.reel-card{
  background: var(--bg-panel);
  border: 1px solid var(--steel-accent);
  border-radius: 6px;
  overflow: hidden;
}
.reel-frame{ position:relative; aspect-ratio:16/9; background:#000; }
.reel-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.reel-tag{
  position:absolute; top:12px; left:12px;
  background: var(--redline); color:#fff;
  font-family: var(--mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase;
  padding: 4px 8px; border-radius:2px; z-index:2;
}
.reel-info{ padding: 18px 20px 22px; }
.reel-info h3{ font-family: var(--display); font-size:18px; text-transform:uppercase; margin:0 0 8px; letter-spacing:.01em; }
.reel-info p{ color: var(--steel); font-size: 14px; margin:0; }

/* ---------- gallery ---------- */
.gallery-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.vault-row2{ display:contents; }
@media (min-width: 861px){
  .about-grid{ align-items:stretch; }
  .about-photo-wrap{ position:relative; height:100%; overflow:hidden; border-radius:6px; border:1px solid var(--line); }
  .about-photo{ position:absolute; inset:0; width:100%; height:100%; aspect-ratio:auto; border:none; border-radius:0; }
  #gastonia-gallery{ grid-template-columns: repeat(3, 1fr); }
  #savannah-vault-gallery{ grid-template-columns: repeat(3, 1fr); }
  .vault-row2{
    display:flex; grid-column: 1 / -1; justify-content:center; gap:10px; margin-top:10px;
  }
  .vault-row2 .gallery-item{ width: calc((100% - 20px) / 3); flex:0 0 auto; }
  #resume-quotes .quote-row3,
  #sports-quotes .quote-row3{ grid-column: 1 / -1; display:flex; justify-content:center; }
  #resume-quotes .quote-row3 .quote-card,
  #sports-quotes .quote-row3 .quote-card{ width: calc(50% - 12px); flex:0 0 auto; }
}
.gallery-grid img{
  aspect-ratio: 1/1; object-fit: cover; border-radius: 4px;
  border: 1px solid var(--line);
  transition: transform .2s ease;
}
.gallery-grid a:hover img{ transform: scale(1.03); }

.photo-placeholder{
  aspect-ratio: 1/1; border-radius: 4px;
  border: 1px dashed var(--steel-accent);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px),
    var(--bg-panel-2);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  color: var(--steel-dim);
  font-family: var(--mono); font-size: 10.5px; text-transform:uppercase; letter-spacing:.05em;
  text-align:center; padding:10px;
}
.photo-placeholder svg{ width:22px; height:22px; opacity:0.6; }

/* ---------- homepage highlight gallery (click to enlarge) ---------- */
.home-gallery-img{ cursor: zoom-in; }
.gallery-grid-3x3{ grid-template-columns: repeat(3,1fr); }
.gallery-grid-3col{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; }
.gallery-grid-3col a, .gallery-grid-3col > img, .gallery-grid-3col > .gallery-item{ flex:0 0 calc(33.333% - 6.667px); max-width:calc(33.333% - 6.667px); }
.gallery-item img{ width:100%; display:block; }
.gallery-caption{ font-family:var(--mono); font-size:11px; color:var(--white); margin-top:6px; text-align:center; line-height:1.3; }
.gallery-caption-top{ font-family:var(--mono); font-size:11px; color:#38D430; margin-top:6px; text-align:center; line-height:1.3; text-transform:uppercase; letter-spacing:.04em; }
.gallery-caption-top.is-hidden{ visibility:hidden; }
.row-caption-group{
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 14px 12px;
}
.row-caption-group + .row-caption-group{ margin-top:16px; }
.row-caption-group .gallery-grid{ margin-top:0; }
.row-caption-group .gallery-caption-top{ font-size:12px; margin-top:10px; margin-bottom:0; }
.gallery-grid-2col{ display:grid; grid-template-columns: repeat(2,1fr); gap:10px; }
.gallery-grid-3x3 img:hover{ transform: scale(1.03); }
@media (max-width: 860px){
  .gallery-grid-3x3{ grid-template-columns: repeat(2,1fr); }
  #gallery .gallery-grid-3x3 img:last-child{ grid-column: 1 / -1; justify-self: center; max-width: calc(50% - 5px); }
  #savannah-golden-ghosts-gallery img:last-child,
  #savannah-8bit-gallery img:last-child,
  #savannah-vault-gallery .vault-row2 .gallery-item:last-child{ grid-column: 1 / -1; justify-self: center; max-width: calc(50% - 5px); }
  #savannah-arena-gallery > *:last-child{ grid-column: 1 / -1; justify-self: center; max-width: calc(50% - 5px); }
  #gptv-row1-gallery img:last-child,
  #gptv-row2-gallery img:last-child,
  #gptv-row3-gallery > *:last-child{ grid-column: 1 / -1; justify-self: center; max-width: calc(50% - 5px); }
  .gallery-grid-3col a, .gallery-grid-3col > img, .gallery-grid-3col > .gallery-item{ flex:0 0 calc(50% - 5px); max-width:calc(50% - 5px); }
  .chapter-title-row{ display:flex; flex-direction:column; align-items:center; gap:16px; }
  .chapter-title-row .chapter-title{ padding-right:0 !important; }
  .chapter-title-logo{ position:static !important; height:auto !important; max-height:110px !important; }
  #iheart-photo{ max-height:380px !important; }
  .chapter-title-logos{ position:static !important; top:auto !important; right:auto !important; order:-1; justify-content:center !important; align-items:center !important; margin-bottom:4px; }
  .chapter-hero-chip{ justify-content:center; }
  .rundown-link-row-right{ justify-content:center !important; padding-right:0 !important; }
  .chapter-nav-row{ flex-direction:column; justify-content:center; align-items:center; gap:8px; }
  .chapter-nav-pills{ display:grid; grid-template-columns:repeat(2,1fr); gap:8px; width:100%; max-width:320px; }
  .chapter-nav-pills .recap-eyebrow{ display:block; text-align:center; }
  .chapter-nav-row .recap-eyebrow .chapter-nav-full{ display:none; }
  .chapter-nav-row .recap-eyebrow .chapter-nav-short{ display:inline; }
  .hero-sub{ white-space: normal !important; }
}

/* ---------- airchecks / podcast archive ---------- */
.aircheck-grid{ display:flex; flex-direction:column; gap:16px; margin-bottom:8px; }
.aircheck-card{
  display:flex; flex-direction:row; align-items:stretch; gap:20px;
  min-height:196px;
  background: var(--bg-panel); border:1px solid var(--steel-accent); border-radius:6px; padding:22px 28px;
  transition: border-color .15s ease, transform .15s ease;
}
.aircheck-card:hover{ border-color: var(--ice-text); transform: translateY(-2px); }
.aircheck-art{ width:120px; height:120px; object-fit:cover; border-radius:4px; flex-shrink:0; align-self:flex-start; border:1px solid var(--line); }
.aircheck-body{ flex:1 1 auto; min-width:0; display:flex; flex-direction:column; justify-content:space-between; }
.aircheck-ep{ font-family:var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:.1em; color: var(--chrome); margin-bottom:8px; }
.aircheck-card h3{ font-family:'Oswald',sans-serif; font-weight:700; font-size:19px; text-transform:uppercase; margin:0 0 6px; letter-spacing:.01em; color: var(--white); }
.aircheck-meta{ font-family:var(--mono); font-size:12px; color:var(--steel-dim); margin:0 0 10px; }
.aircheck-desc{ font-size:14px; color:var(--steel); margin:0; max-width:640px; }
.aircheck-cta{ font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.05em; color: var(--hero-pop); white-space:nowrap; align-self:flex-end; margin-top:16px; }
@media (max-width: 860px){
  .aircheck-card{ flex-direction:column; }
  .aircheck-art{ width:160px; height:160px; margin:0 auto; }
}

/* ---------- references / quotes ---------- */
.quote-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.quote-card{
  background: var(--bg-panel);
  border: 1px solid var(--steel-accent);
  border-left: 3px solid var(--ice-text);
  border-radius: 4px;
  padding: 28px;
}
.quote-card p{ font-size: 15.5px; color: var(--white); margin:0 0 18px; line-height:1.7; }
.quote-attr{ font-family: var(--mono); font-size: 12px; text-transform:uppercase; letter-spacing:.05em; color: var(--chrome); }
.quote-attr span{ display:block; color: var(--steel-dim); text-transform:none; letter-spacing:0; margin-top:3px; font-size:13px; }

/* ---------- top 5s (fun personal lists) ---------- */
.top5-grid{ display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.top5-card{
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--hero-pop);
  border-radius: 0 6px 6px 0;
  padding: 24px 28px;
}
.top5-card h3{
  font-family: 'Oswald', sans-serif; font-weight:700; font-size:18px; text-transform:uppercase;
  margin: 0 0 14px; letter-spacing:.01em; color: var(--white);
}
.top5-card ol{ margin:0; padding-left:20px; color: var(--steel); font-size:14.5px; line-height:1.85; }
.top5-card ol li::marker{ color: var(--ice-text); font-family: var(--mono); font-weight:700; }
@media (max-width: 860px){
  .top5-grid{ grid-template-columns: 1fr; }
  .top5-card ol{ text-align:left; }
}

/* ---------- CTA panel ---------- */
.cta-panel{
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 56px;
  display:flex; align-items:center; justify-content:space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-panel h3{
  font-family: var(--display); font-size: clamp(24px,3vw,34px); text-transform:uppercase; margin:0 0 8px;
}
.cta-panel p{ color: var(--steel); margin:0; font-size:15px; max-width:440px; }

/* ---------- footer ---------- */
footer{
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-row{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
}
.footer-row .brand{ font-size: 17px; }
.footer-links{ display:flex; align-items:center; gap: 22px; }
.footer-links a{ font-family: var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.06em; color: var(--steel); }
.footer-links a:hover{ color: var(--ice-text); }
.footer-linkedin{ display:flex; align-items:center; }
.footer-linkedin svg{ display:block; }
.footer-meta{ font-family: var(--mono); font-size:11.5px; color: var(--steel-dim); margin-top:18px; }

/* ---------- resume page bits ---------- */
.resume-panel{
  background: var(--bg-panel); border:1px solid var(--steel-accent); border-radius:6px;
  padding: 36px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.resume-panel h3{ font-family: 'Oswald', sans-serif; font-weight:700; text-transform:uppercase; font-size:22px; margin:0 0 6px; }
.resume-panel p{ color: var(--steel); margin:0; font-size:14px; font-family: var(--mono); }

.resume-pages{ margin-top:12px; display:flex; flex-direction:row; flex-wrap:wrap; gap:20px; align-items:flex-start; justify-content:center; }
.resume-page-img{
  width:100%; max-width:400px; flex:1 1 320px; display:block;
  border:1px solid var(--line); border-radius:6px; cursor:zoom-in;
  transition: border-color .15s ease;
}
.resume-page-img:hover{ border-color: var(--ice-text); }

.lightbox-overlay{
  display:none; position:fixed; inset:0; background:rgba(6,8,11,0.94);
  z-index:200; align-items:center; justify-content:center; padding:40px; cursor:zoom-out;
}
.lightbox-overlay.active{ display:flex; }
.lightbox-overlay img{ max-width:100%; max-height:100%; border-radius:4px; }

/* ---------- mixes page ---------- */
.mix-row{
  display:flex; align-items:center; gap:20px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.mix-index{ font-family: var(--mono); color: var(--ice-text); font-size:14px; width:32px; }
.mix-name{ font-family: var(--display); font-size:17px; text-transform:uppercase; flex:1; }
.mix-len{ font-family: var(--mono); color: var(--steel); font-size:13px; }

.track-players{ display:flex; flex-direction:column; gap:12px; margin-top:18px; }
.track-player{ display:flex; align-items:center; gap:18px; padding:12px 18px; background:var(--bg-panel); border:1px solid var(--line); border-radius:6px; }
.track-label{ font-family:var(--mono); font-size:12.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--steel); flex:0 0 150px; }
.track-player audio{ flex:1 1 auto; min-width:0; height:36px; }
@media (max-width: 860px){
  .track-player{ flex-direction:column; align-items:center; gap:8px; padding:14px; }
  .track-player audio{ width:100%; max-width:320px; }
  .track-label{ flex:none; }
}

.mix-embeds{ display:flex; flex-direction:column; gap:22px; }
.mix-embed-label{ font-family: var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.05em; color: var(--steel); margin-bottom:8px; }
.mix-embed-row{ display:flex; gap:16px; align-items:center; }
.mix-art{ width:120px; height:120px; object-fit:cover; border-radius:4px; border:1px solid var(--line); cursor:zoom-in; flex-shrink:0; transition:border-color .15s ease; }
.mix-art:hover{ border-color: var(--ice-text); }
.mix-embed-row iframe{ flex:1 1 auto; min-width:0; border-radius:4px; }
@media (max-width: 860px){
  .mix-embed-row{ flex-direction:column; align-items:stretch; }
  .mix-art{ width:100%; height:auto; aspect-ratio:1/1; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-photo{ max-width: 260px; display:block; margin:0 auto; }
  .reel-grid{ grid-template-columns: 1fr; }
  .quote-grid{ grid-template-columns: 1fr; }
  .mobile-break{ display:block; }
  .chapter{ padding-top: 40px; padding-bottom: 40px; }
  section{ padding-top: 40px; padding-bottom: 40px; }
  .hero-stats{ grid-template-columns: repeat(2,1fr); }
  .hero-stats .stat-desktop-only{ display:none; }
  .hero-stats-solo{
    display:block;
    width: calc(50% - 0.5px);
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow:hidden;
  }
  .hero-stats-solo div{
    background: var(--bg-panel);
    padding: 12px 8px 4px;
    text-align: center;
  }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .recap-grid{ grid-template-columns: 1fr; }
  .spotlight-grid{ grid-template-columns: 1fr; }
  .nav-toggle{ display:flex; }
  .nav-links{
    display:none;
    position:absolute;
    top:100%; left:0; right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    background: rgba(10,13,18,0.98);
    border-bottom:1px solid var(--line);
    padding: 8px 24px 16px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px 0; width:100%; border-bottom:1px solid rgba(255,255,255,0.06); }
  .nav-links a:last-of-type, .nav-links a:nth-last-of-type(2){ border-bottom:none; }
  .nav-linkedin{ width:fit-content; margin:8px auto 4px; padding:0; border-bottom:none; }
  .nav-links .nav-cta{
    width:fit-content;
    padding:10px 22px;
    margin:12px auto 4px;
    border-bottom:none;
    text-align:center;
  }
  .nav-contact{ width:100%; display:flex; flex-direction:column; align-items:center; }
  .contact-dropdown{
    position:static; margin-top:0; box-shadow:none; width:100%; max-width:260px;
    text-align:center;
  }
  .site-nav .wrap{ position:relative; }
  .cta-panel{ padding: 32px; }
  .rundown-row{ grid-template-columns: 1fr; gap: 6px; }
  .rundown-datecol{ flex-direction: column-reverse; align-items: center; margin-bottom: 8px; }
  .rundown-role{ line-height: 1.15; }
  .rundown-role .role-line1, .rundown-role .role-line2, .rundown-role .role-line3{ display: block; }
  .rundown-tags{ justify-content: center; flex-wrap: nowrap; gap: 6px; }
  .rundown-tags span{ font-size: 10px; padding: 4px 7px; }
  #rundown{ padding-bottom: 40px; }
  #references{ padding-top: 40px; }
  .quote-attr .attr-line1, .quote-attr .attr-line2{ display: block; }
  .rundown-media-row{ grid-template-columns: 1fr; grid-template-areas: "role" "org" "desc" "chip" "photo"; justify-items: center; text-align: center; }
  .rundown-media-photo{ width: 220px !important; height: 165px !important; margin-top: 14px; justify-self: center !important; }
  .rundown-media-row .rundown-link-row{ justify-self: center !important; }
  .recaps-lede{ max-width: 480px; white-space: normal; }
  .resume-pages{ flex-direction: column; align-items: center; }
  .resume-page-img{ max-width: 480px; }
  .aircheck-grid{ grid-template-columns: 1fr; }

  /* ---- mobile: center page content site-wide (desktop untouched) ---- */
  section .wrap, header .wrap, footer .wrap, .chapter-hero{
    text-align: center;
  }
  .hero-actions{ justify-content: center; }
  .chapter-bullets{ display:inline-block; text-align:left; margin:0 auto; }
  .rundown-row{ justify-items: center; }
  .rundown-logos{ justify-content: center; }
  .cta-panel{ flex-direction: column; align-items: center; }
  .footer-row{ flex-direction: column; align-items: center; }
  .footer-links{ justify-content: center; }
  .resume-panel{ flex-direction: column; align-items: center; }
  .track-label{ text-align: center; }
}
