/* ── Play & Sing Like a Pro — v2 one-pager additions ─────────── */

/* Team building stats */
.tb-stats { display: flex; align-items: center; gap: 28px; margin-bottom: 40px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .tb-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tb-stats > div[style*="width: 1px"] { display: none; }
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
section[id], footer { scroll-margin-top: 74px; }
#level-2 { scroll-margin-top: 100px; }

/* Hero v2 centered */
.hero-v2 { padding: 100px 0 88px; }
.hero-v2-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  margin: 18px 0 0;
  line-height: .96;
}

/* Smart Guitar callout (inside About) */
.sg-callout {
  background: var(--ink-900);
  border-radius: var(--r-2xl);
  padding: 40px 0 0 48px;
  display: grid;
  grid-template-columns: 72px 1fr 340px;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sg-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 80% at 20% 50%, rgba(177,131,245,.18), transparent 65%),
    radial-gradient(40% 60% at 85% 30%, rgba(250,139,50,.14), transparent 60%);
  pointer-events: none;
}
.sg-callout-icon {
  width: 72px; height: 72px;
  border-radius: var(--r-lg);
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-pop-purple);
}
.sg-callout-icon .lucide { width: 34px; height: 34px; }
.sg-callout-content { position: relative; z-index: 1; }
.sg-callout-chips {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}
.sg-callout-guitar {
  position: relative;
  z-index: 1;
  height: 360px;
  align-self: flex-end;
  flex-shrink: 0;
}
.sg-callout-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  text-align: center;
}

/* Workshop level cards */
.level-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  width: 100%;
}
.level-card {
  background: var(--surface);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-bounce), box-shadow var(--dur-base);
  min-width: 0;
  max-width: 100%;
}
.level-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.level-card.featured { outline: 3px solid var(--orange-300); }
.level-card.level-card-purple { outline: 3px solid var(--purple-300); }
.level-card.level-card-purple .level-card-badge .lucide { color: var(--purple-400); }
.level-card-top {
  height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 0 32px;
  position: relative;
  overflow: visible;
}
.level-card-num {
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(255,255,255,.18);
  line-height: 1;
  position: absolute;
  right: 20px; bottom: -14px;
  font-weight: 900;
  user-select: none;
}
.level-card-badge {
  position: relative; z-index: 1;
  transform: translateY(50%);
  background: var(--surface);
  border-radius: var(--r-pill);
  padding: 9px 20px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  color: var(--ink-900);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 7px;
}
.level-card-badge .lucide { width: 15px; height: 15px; color: var(--purple-400); }
.level-card.featured .level-card-badge .lucide { color: var(--orange-500); }
.level-card-body { padding: 40px 32px 32px; overflow-wrap: break-word; word-break: break-word; }
.level-card-body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1;
  color: var(--ink-900);
  margin: 0 0 10px;
}
.level-card-body .desc {
  font-size: 15px; color: var(--ink-500);
  line-height: 1.65; margin: 0 0 20px; max-width: none;
}
.level-card-features {
  list-style: none; padding: 0;
  margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.level-card-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-700);
}
.level-card-features li .lucide { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }
.level-card-platform {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--ink-300);
  margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: .08em;
}
.level-card-platform .lucide { width: 13px; height: 13px; }

/* Resource cards */
.resource-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.resource-card {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-base) var(--ease-bounce), box-shadow var(--dur-base);
  display: flex; flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}
.resource-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(36,27,51,.18); }
.resource-card-top {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.resource-card-icon {
  width: 76px; height: 76px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.28);
  display: flex; align-items: center; justify-content: center;
  color: #fff; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.resource-card-icon .lucide { width: 38px; height: 38px; }
.resource-card-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.resource-card-body {
  background: var(--surface);
  padding: 28px 32px 32px;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 10px;
}
.resource-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--ink-900);
  margin: 0;
  line-height: 1.1;
}
.resource-card-body p {
  font-size: 15px; color: var(--ink-500);
  line-height: 1.65; margin: 0; max-width: none;
}
.resource-card-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700;
  margin-top: 6px;
  transition: gap var(--dur-fast) var(--ease-bounce);
}
.resource-card:hover .resource-card-link { gap: 11px; }
.resource-card-link .lucide { width: 16px; height: 16px; }

/* Event cards */
.event-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.event-card {
  background: var(--surface);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-bounce), box-shadow var(--dur-base);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.event-card-top {
  height: 120px;
  display: flex; align-items: center; padding: 0 32px;
  position: relative; overflow: hidden;
}
.event-card-emoji { font-size: 2.8rem; position: relative; z-index: 1; }
.event-card-blob { position: absolute; border-radius: 50%; opacity: .35; }
.event-card-body { padding: 28px 32px 36px; }
.event-card-body h3 {
  font-family: var(--font-body);
  font-size: 22px; font-weight: 700;
  color: var(--ink-900); margin: 0 0 10px;
  text-transform: none; letter-spacing: 0; line-height: 1.2;
}
.event-card-body p {
  font-size: 15px; color: var(--ink-500);
  line-height: 1.65; margin: 0 0 20px; max-width: none;
}
.event-perks {
  list-style: none; padding: 0;
  margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.event-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-700);
}
.event-perks li .lucide { width: 16px; height: 16px; flex-shrink: 0; }
.event-perks li .p-icon { color: var(--purple-500); }
.event-perks li .o-icon { color: var(--orange-500); }

/* founders grid responsive */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.founders-grid-v2 { grid-template-columns: 1fr; gap: 20px; }

/* Horizontal instructor cards */
.instructor-card-h {
  display: flex;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
  transition: transform var(--dur-base) var(--ease-bounce), box-shadow var(--dur-base);
}
.instructor-card-h:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.instructor-h-photo {
  width: 240px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.instructor-h-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.instructor-h-body {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.instructor-h-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--ink-900);
  line-height: 1;
}
.instructor-h-role {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 2px;
}

/* Hero two-column layout */
.hero-v2-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.hero-v2-text { flex: 1; min-width: 0; }
.hero-v2-photo {
  flex: 0 0 auto;
  width: min(42%, 400px);
  height: 520px;
}
.hero-v2-img {
  width: 100%;
  height: 100%;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ── Mobile nav ───────────────────────────────────────────────── */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink-900);
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
  flex-shrink: 0;
}
.nav-burger:hover { background: var(--purple-50); }
.nav-burger .lucide { width: 22px; height: 22px; stroke-width: 2; }
.nav-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px 18px;
  border-top: 1px solid var(--ink-100);
  background: rgba(250,247,253,.97);
  backdrop-filter: blur(14px);
}
.nav-mobile-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink-700);
  padding: 13px 12px;
  text-decoration: none;
  border-radius: var(--r-md);
  transition: background var(--dur-fast), color var(--dur-fast);
  display: block;
}
.nav-mobile-link:hover { background: var(--purple-50); color: var(--purple-600); }

/* ── Responsive overrides ─────────────────────────────────────── */
@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-cta-desktop { display: none !important; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-v2 { padding: 56px 0 48px; }
  .hero-v2-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 340px; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 8px; text-align: center; }

  /* About */
  .founders-grid { grid-template-columns: 1fr; }
  .instructor-card-h { flex-direction: column; }
  .instructor-h-photo { width: 100%; height: 260px; }
  .instructor-h-body { padding: 24px 20px 28px; }

  /* Hero photo */
  .hero-v2-inner { flex-direction: column; gap: 32px; }
  .hero-v2-photo { width: 100%; max-width: 360px; height: 260px; margin: 0 auto; }
  .hero-v2-img { border-radius: var(--r-xl); }
  .hero-v2-text { text-align: center; }
  .hero-v2-text .reassure { justify-content: center; }
  .hero-v2-text .hero-trust { justify-content: center; }
  .hero-v2-text .hero-ctas { justify-content: center; }

  /* Team building mobile */
  #team-building .container { padding-top: 56px !important; padding-bottom: 56px !important; }
  .sg-callout { grid-template-columns: 1fr; padding: 28px 24px; gap: 18px; }
  .sg-callout-icon { display: none; }
  .sg-callout-guitar { display: none; }
  .sg-callout-chips { flex-direction: row; flex-wrap: wrap; gap: 6px; }

  /* Content grids */
  .level-cards, .resource-cards, .event-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-cols { flex-wrap: wrap; gap: 28px; }
}

@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; justify-content: center; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  h2 { font-size: var(--text-3xl); }
  .hero-v2 { padding: 44px 0 40px; }
  .instructor-body { padding: 44px 20px 24px; }
  .level-card-body { padding: 36px 20px 24px; }
  .event-card-body { padding: 20px 20px 28px; }
  .resource-card-body { padding: 20px 20px 24px; }
  .footer-cols { flex-direction: column; }

  /* Hero lead capped width on small screens */
  .hero-v2-text .lead { font-size: var(--text-base); }

  /* Reassure chips wrap neatly */
  .reassure { flex-wrap: wrap; justify-content: center; gap: 8px; }

  /* Team building stats stack — handled by .tb-stats class */

  /* Smart Guitar chips row wrap */
  .sg-callout-chips { flex-direction: row; flex-wrap: wrap; }

  /* Instructor body padding */
  .instructor-h-body { padding: 20px 18px 24px; }

  /* Level card top smaller */
  .level-card-top { height: 80px; }
  .level-card-num { font-size: 6rem; }

  /* Footer tagline smaller */
  .footer-tagline { font-size: 13px; }
}
