/* ============================================================
   GOLUBOVSKI.COM — Design System
   Clean, minimal, Apple-inspired
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* --- Variables --- */
:root {
  --black:      #111111;
  --white:      #ffffff;
  --off-white:  #f5f5f7;
  --border:     #e5e5e5;
  --text-2:     #555555;
  --text-3:     #888888;
  --max-w:      1100px;
  --pad-section: 96px;
  --radius:     16px;
}

/* --- Utilities --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.025em;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo-mark {
  flex-shrink: 0;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--black);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  transition: opacity 0.2s, transform 0.15s !important;
}
.nav-cta:hover { opacity: 0.82 !important; transform: translateY(-1px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { opacity: 0.82; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 4px; height: 4px;
  background: var(--text-3);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(3.25rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--black);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* Photo */
.hero-photo-wrap {
  position: relative;
}
.hero-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  display: block;
}
.hero-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.hero-photo-badge-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.hero-photo-badge-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.4;
}

/* ============================================================
   LOGO BAR
   ============================================================ */
.logo-bar {
  padding: 56px 0;
  background: var(--off-white);
}
.logo-bar-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 32px;
}
.logo-bar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.logo-bar-row img {
  height: 26px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
}
.logo-bar-row img:hover {
  opacity: 0.75;
  filter: grayscale(0);
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.section { padding: var(--pad-section) 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--black); color: var(--white); }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  display: block;
}
.section-dark .section-eyebrow { color: rgba(255,255,255,0.35); }

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--black);
}
.section-dark .section-title { color: var(--white); }

.section-body {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 560px;
}
.section-dark .section-body { color: rgba(255,255,255,0.6); }

/* ============================================================
   WHO I WORK WITH
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.who-text .section-body { margin-bottom: 32px; }
.who-items { display: flex; flex-direction: column; gap: 16px; }
.who-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.who-icon {
  width: 36px; height: 36px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.who-item-text h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.who-item-text p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* ============================================================
   SERVICES / WORK TOGETHER
   ============================================================ */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.service-num {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-3);
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  align-self: flex-start;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px;
}
.testimonial-quote {
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  margin-bottom: 28px;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   ABOUT INLINE
   ============================================================ */
.about-inline-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
.about-inline-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}
.about-inline-text h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--black);
}
.about-inline-text p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.principle-item {
  background: var(--off-white);
  border-radius: 10px;
  padding: 18px 20px;
}
.principle-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.principle-item span {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ============================================================
   WHAT I'M BUILDING
   ============================================================ */
.building-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.building-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 24px;
}
.building-dot {
  width: 6px; height: 6px;
  background: #34c759;
  border-radius: 50%;
  flex-shrink: 0;
}
.building-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.building-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.building-card-name {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 4px;
}
.building-card-tagline {
  font-size: 0.875rem;
  color: var(--text-3);
}
.building-card-icon {
  width: 48px; height: 48px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}
.building-card-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.building-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.building-link:hover { gap: 10px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 112px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--black);
}
.cta-section p {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  padding: 52px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.02em;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.speaking-hero-img {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.speaking-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.page-hero {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--black);
  max-width: 700px;
}
.page-hero-sub {
  font-size: 1.125rem;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 36px;
}

/* ============================================================
   SPEAKING PAGE
   ============================================================ */
.talk-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: var(--pad-section) 0;
  border-bottom: 1px solid var(--border);
}
.talk-block:last-of-type { border-bottom: none; }
.talk-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.talk-block h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}
.talk-block p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 16px;
}
.talk-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.talk-meta-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
}
.talk-meta-label {
  font-weight: 600;
  color: var(--black);
  min-width: 100px;
}
.talk-meta-value { color: var(--text-2); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-bio-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  padding: var(--pad-section) 0;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}
.about-bio h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--black);
}
.about-bio p {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.credential-item {
  padding: 24px;
  background: var(--off-white);
  border-radius: 12px;
}
.credential-item h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.credential-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.credential-item li {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.credential-item li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--text-3);
}

/* ============================================================
   PRESS PAGE
   ============================================================ */
.press-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.press-item:first-child { border-top: none; }
.press-source {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.press-date {
  font-size: 0.8125rem;
  color: var(--text-3);
}
.press-item h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 12px;
}
.press-item h2 a { transition: opacity 0.2s; }
.press-item h2 a:hover { opacity: 0.65; }
.press-item p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
}
.press-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  margin-top: 16px;
  transition: gap 0.2s;
}
.press-read-link:hover { gap: 10px; }

/* ============================================================
   VIDEO CARDS
   ============================================================ */
.video-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.09);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.video-card:hover .video-thumb img { transform: scale(1.03); }
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  transition: background 0.2s;
}
.video-card:hover .video-play-overlay { background: rgba(0,0,0,0.45); }
.video-play-btn {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.video-play-btn svg {
  margin-left: 3px;
}
.video-info {
  padding: 18px 20px 20px;
}
.video-source {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.video-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  letter-spacing: -0.015em;
}
/* Playlist embed */
.playlist-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  background: #000;
}
.playlist-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --pad-section: 64px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-wrap { max-width: 320px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-grid-4 { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-inline-grid { grid-template-columns: 1fr; }
  .about-inline-img { max-width: 320px; }
  .building-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .about-bio-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
  .talk-block { grid-template-columns: 1fr; gap: 40px; }
  .press-item { grid-template-columns: 1fr; gap: 16px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   VIDEO MODAL (lightbox)
   ============================================================ */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0,0,0,0.6);
}
.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  opacity: 0.75;
  transition: opacity 0.2s;
  line-height: 1;
}
.video-modal-close:hover { opacity: 1; }
.video-card[data-video-id] { cursor: pointer; }

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.nav-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--black);
  border-radius: 8px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-menu-btn:hover { background: var(--off-white); }
.nav-menu-btn svg { display: block; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 198;
  flex-direction: column;
  padding: 16px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
  transition: opacity 0.15s;
}
.mobile-menu a:hover { opacity: 0.6; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu-cta {
  margin-top: 32px !important;
  border-bottom: none !important;
  text-align: center;
  justify-content: center;
  font-size: 1rem !important;
  padding: 15px 32px !important;
  background: var(--black);
  color: var(--white) !important;
  border-radius: 100px;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s !important;
}
.mobile-menu-cta:hover { opacity: 0.82 !important; }

/* ============================================================
   ABOUT RECOGNITION GRID (responsive)
   ============================================================ */
.about-recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-recognition-grid { grid-template-columns: 1fr; gap: 48px; }
}

.spotify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ============================================================
   RESPONSIVE — NAV & MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
}
@media (max-width: 600px) {
  :root { --pad-section: 40px; }
  .container { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .stats-grid { padding: 0 20px; gap: 0; }
  .footer-inner { padding: 0 20px; }
  .hero { padding: 32px 0 40px; }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero h1 { margin-bottom: 16px; }
  .hero-sub { margin-bottom: 24px; font-size: 1rem; }
  .hero-photo-wrap { max-width: 100%; }
  .logo-bar-row { gap: 20px 32px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-grid-4 { grid-template-columns: 1fr; }
  .page-hero { padding: 28px 0 24px; }
  .page-hero h1 { margin-bottom: 12px; }
  .page-hero .section-eyebrow { margin-bottom: 10px; }
  .page-hero-sub { margin-bottom: 20px; }
  .speaking-hero-img { height: 240px; }
  .section-title { margin-bottom: 12px; }
  .spotify-grid { grid-template-columns: 1fr; gap: 32px; }
}
