:root {
  --color-primary: var(--colors-primary, #4f46e5);
  --color-primary-dark: var(--colors-primary-dark, #312e81);
  --color-surface: var(--colors-surface, #ffffff);
  --color-surface-alt: var(--colors-surface-alt, #f6f7fb);
  --color-text: var(--colors-text-primary, #111827);
  --color-text-muted: var(--colors-text-secondary, #6b7280);
  --font-display: var(--typography-font-display, "Segoe UI", "Helvetica Neue", Arial, sans-serif);
  --font-body: var(--typography-font-body, "Segoe UI", "Helvetica Neue", Arial, sans-serif);
  --shadow-soft: var(--shadows-soft, 0 24px 60px rgba(15, 23, 42, 0.08));
  --radius-lg: var(--radius-lg, 1.5rem);
  --radius-pill: var(--radius-pill, 9999px);
  --yvb-site-shell: min(1320px, calc(100% - 96px));
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body.vibe-site {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-surface-alt);
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

.vibe-progress {
  display: none;
}

.vibe-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(79, 70, 229, 0.08);
}

/* Push non-hero page content below the fixed header */
.vibe-main--landing:not(:has(.vibe-hero:first-child)) {
  padding-top: 79px;
}
body:not(.home) .vibe-main--landing {
  padding-top: 80px;
}

.vibe-header__inner,
.vibe-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.vibe-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}

.vibe-brand__mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.vibe-brand__logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

.vibe-nav__menu,
.vibe-footer__menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vibe-nav__menu a,
.vibe-footer__menu a,
.vibe-footer__copy {
  color: var(--color-text-muted);
}

.vibe-footer__credit {
  width: 100%;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(107, 114, 128, 0.18);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

.vibe-main--landing {
  min-height: 100vh;
}

.vibe-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.18), transparent 30%),
    linear-gradient(135deg, #111827 0%, #312e81 55%, #4f46e5 100%);
}

.vibe-hero__content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-headline {
  margin: 1.25rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-sub {
  max-width: 44rem;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
}

.vibe-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-cta--primary {
  background: #fff;
  color: var(--color-primary-dark);
}

.hero-cta--secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-cta:hover {
  transform: translateY(-2px);
}

.vibe-content-area {
  padding: 5rem 0;
}

.vibe-content-card {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.vibe-content-card > :first-child {
  margin-top: 0;
}

.vibe-content-card > :last-child {
  margin-bottom: 0;
}

.vibe-footer {
  padding: 1.5rem 0;
  background: #fff;
  border-top: 1px solid rgba(79, 70, 229, 0.08);
}

@media (max-width: 991px) {
  .vibe-header__inner,
  .vibe-footer__inner {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .vibe-nav__menu,
  .vibe-footer__menu,
  .vibe-hero__actions {
    justify-content: center;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .vibe-content-card {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Utility page hero (inner pages, search, archive, single post hero)
   ========================================================================== */

.vibe-page-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, var(--color-surface-alt) 0%, var(--color-surface) 100%);
  border-bottom: 1px solid rgba(79, 70, 229, 0.07);
}

.vibe-page-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.vibe-page-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

.vibe-page-hero__meta,
.vibe-page-hero__desc {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.vibe-page-hero__desc {
  max-width: 48rem;
}

/* ==========================================================================
   Post listing (index, archive, search results)
   ========================================================================== */

.vibe-post-listing {
  padding: 4rem 0 5rem;
}

.vibe-post-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vibe-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(15, 23, 42, 0.12);
}

.vibe-post-card__thumb {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.vibe-post-card__img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vibe-post-card:hover .vibe-post-card__img {
  transform: scale(1.04);
}

.vibe-post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  gap: 0.5rem;
}

.vibe-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.vibe-post-card__type {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.vibe-post-card__cats a {
  color: var(--color-primary);
}

.vibe-post-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.vibe-post-card__title a {
  color: var(--color-text);
  transition: color 0.18s;
}

.vibe-post-card__title a:hover {
  color: var(--color-primary);
}

.vibe-post-card__excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vibe-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: gap 0.18s;
}

.vibe-read-more:hover {
  gap: 0.65rem;
  color: var(--color-primary);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.vibe-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.vibe-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.vibe-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.vibe-pagination .page-numbers:hover,
.vibe-pagination .page-numbers:focus {
  background: rgba(79, 70, 229, 0.07);
  color: var(--color-primary);
}

.vibe-pagination .page-numbers.current {
  background: var(--color-primary);
  color: #fff;
}

/* ==========================================================================
   404 page
   ========================================================================== */

.vibe-utility-hero {
  padding: 7rem 0 6rem;
  text-align: center;
}

.vibe-utility-hero__inner {
  max-width: 44rem;
  margin: 0 auto;
}

.vibe-utility-hero__code {
  display: block;
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.vibe-utility-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.vibe-utility-hero__body {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.vibe-utility-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.vibe-utility-search {
  max-width: 30rem;
  margin: 0 auto;
}

.vibe-utility-search__label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Generic button (used in 404 and utility pages)
   ========================================================================== */

.vibe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.vibe-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.vibe-btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.vibe-btn--outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

/* ==========================================================================
   No results state
   ========================================================================== */

.vibe-no-results {
  text-align: center;
  padding: 4rem 0;
  max-width: 36rem;
  margin: 0 auto;
}

.vibe-no-results p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Single post
   ========================================================================== */

.vibe-post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.vibe-post-hero__date {
  color: var(--color-text-muted);
}

.vibe-post-featured {
  padding: 0 0 2.5rem;
}

.vibe-post-featured__img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.vibe-post-body {
  padding: 3rem 0 5rem;
}

.vibe-prose {
  max-width: 52rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text);
}

.vibe-prose h2,
.vibe-prose h3,
.vibe-prose h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.vibe-prose p {
  margin-bottom: 1.25rem;
}

.vibe-prose img {
  border-radius: var(--radius-lg);
  max-width: 100%;
}

.vibe-prose a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vibe-post-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(79, 70, 229, 0.08);
}

.vibe-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.vibe-post-tags a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(79, 70, 229, 0.07);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
}

.nav-previous,
.nav-next {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vibe-nav-arrow {
  font-size: 1.1rem;
}

.vibe-nav-label {
  font-weight: 600;
  color: var(--color-text);
}

/* ==========================================================================
   Inner page: content section (page.php default mode)
   ========================================================================== */

.vibe-page-content {
  padding: 4rem 0 5rem;
}

/* ==========================================================================
   Inner page CTA strip
   ========================================================================== */

.vibe-inner-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
}

.vibe-inner-cta__inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.vibe-inner-cta__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.vibe-inner-cta__body {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

.vibe-inner-cta__btn {
  background: #fff;
  color: var(--color-primary);
  border: none;
  font-weight: 700;
}

.vibe-inner-cta__btn:hover,
.vibe-inner-cta__btn:focus {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
}

/* ── Feature alternating rows ───────────────────────────────────────────── */

.vibe-feature-alt {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.vibe-feature-alt__header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.vibe-feature-alt__title {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
}

.vibe-feature-alt__rows {
  display: flex;
  flex-direction: column;
}

.vibe-feature-alt__row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0 1.75rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  align-items: start;
}

.vibe-feature-alt__rows > :last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vibe-feature-alt__num {
  display: none;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.22;
  padding-top: 0.15rem;
}

.vibe-feature-alt__icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.vibe-feature-alt__icon svg {
  width: 100%;
  height: 100%;
}

.vibe-feature-alt__heading {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text);
}

.vibe-feature-alt__body {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .vibe-feature-alt__num {
    font-size: 3rem;
  }
}

/* ============================================================
   YORKTOWN EVB — CINEMATIC POLISH (added 2026-05-07)
   Layered on the Pika Vibe baseline. Tokens only — no raw hex.
   Honors prefers-reduced-motion in JS reveals.
   ============================================================ */

.vibe-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.vibe-reveal.is-visible { opacity: 1; transform: none; }

.vibe-header { transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; }
.vibe-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px -16px rgba(15, 23, 42, 0.18);
}

.vibe-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.vibe-nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 991px) {
  .vibe-nav__toggle { display: flex; }
  .vibe-nav { display: none; }
  .vibe-nav.is-open {
    display: block;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--color-surface);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.18);
  }
  .vibe-nav__menu { flex-direction: column; align-items: stretch; gap: 0; }
  .vibe-nav__menu li { padding: 0.65rem 0; border-bottom: 1px solid rgba(15,23,42,0.06); }
}

/* Hero — cinematic dark gradient with light orbs and animated mesh */
.vibe-hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(1100px 700px at 75% 15%, rgba(99, 102, 241, 0.55), transparent 55%),
    radial-gradient(900px 600px at 10% 95%, rgba(236, 72, 153, 0.32), transparent 60%),
    radial-gradient(700px 500px at 90% 90%, rgba(16, 185, 129, 0.22), transparent 55%),
    linear-gradient(140deg, #050816 0%, #0b0f2a 35%, #1a1244 70%, #2b1a5f 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.vibe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.vibe-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% -10%;
  height: 60%;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Hero with real background image */
.vibe-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.vibe-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.vibe-hero--has-image::before {
  /* Darker radial overlay so centered text reads over the photo */
  background:
    radial-gradient(ellipse 80% 90% at 40% 55%, rgba(5, 8, 22, 0.78) 0%, rgba(5, 8, 22, 0.4) 60%, rgba(5, 8, 22, 0.08) 100%),
    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: auto, 80px 80px, 80px 80px;
}
.vibe-hero--has-image::after { display: none; }

.vibe-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.vibe-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: vibe-hero-float 16s ease-in-out infinite;
}
.vibe-hero__orb--a { width: 420px; height: 420px; top: -120px; left: -80px; background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.vibe-hero__orb--b { width: 360px; height: 360px; bottom: -160px; right: -80px; background: linear-gradient(135deg, #ec4899, #f472b6); animation-delay: -5s; }
.vibe-hero__orb--c { width: 280px; height: 280px; top: 35%; right: 18%; background: linear-gradient(135deg, #10b981, #06b6d4); opacity: 0.4; animation-delay: -10s; }

@keyframes vibe-hero-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -30px, 0) scale(1.06); }
}

.vibe-hero > .vibe-shell { position: relative; z-index: 1; }
.vibe-hero__content { color: #fff; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
  animation: vibe-pulse 2.4s ease-in-out infinite;
}
@keyframes vibe-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7.2vw, 5.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 1.4rem auto 1.25rem;
  max-width: 14ch;
  background: linear-gradient(180deg, #ffffff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}
.vibe-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.hero-cta--primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6 60%, #ec4899);
  background-size: 220% 100%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: 0 16px 36px -12px rgba(139, 92, 246, 0.7), inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero-cta--primary:hover { transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 24px 48px -14px rgba(236, 72, 153, 0.65); }
.hero-cta--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}
.hero-cta--secondary:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.4); }

/* Hero scroll indicator */
.vibe-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  z-index: 1;
}
.vibe-hero__scroll::before {
  content: "";
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: vibe-scroll-hint 1.8s ease-in-out infinite;
}
@keyframes vibe-scroll-hint {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 12px); opacity: 0.2; }
}

/* Inner page hero band + breadcrumb */
.vibe-page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--color-surface-alt) 0%, var(--color-surface) 100%);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.vibe-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.75rem;
}
.vibe-page-hero__desc { color: var(--color-text-muted); max-width: 60ch; }

.vibe-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.vibe-breadcrumb a { color: var(--color-text-muted); transition: color 0.25s ease; }
.vibe-breadcrumb a:hover { color: var(--color-primary); }
.vibe-breadcrumb__current { color: var(--color-text); font-weight: 600; }
.vibe-breadcrumb--floating { padding: 1rem 1.5rem 0; }

/* Services / coaches grid */
.vibe-services { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--color-surface); }
.vibe-section-header { margin: 0 auto 2.75rem; max-width: 56rem; text-align: center; }
.vibe-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  letter-spacing: -0.01em;
  margin: 0.4rem 0 0.75rem;
}
.vibe-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}
.vibe-section-sub { color: var(--color-text-muted); }

.vibe-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.vibe-service-card {
  background: var(--color-surface);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.vibe-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.18);
  border-color: rgba(79, 70, 229, 0.2);
}
.vibe-service-card__media {
  aspect-ratio: 1 / 1;
  background: var(--color-surface-alt);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vibe-service-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.vibe-service-card:hover .vibe-service-card__img { transform: scale(1.04); }
.vibe-service-card__placeholder { color: var(--color-text-muted); opacity: 0.4; }
.vibe-service-card__body { padding: 1.5rem; }
.vibe-service-card__body h3 { font-family: var(--font-display); margin: 0 0 0.25rem; font-size: 1.25rem; }
.vibe-service-card__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}
.vibe-service-card__desc { color: var(--color-text-muted); line-height: 1.6; margin: 0; }
.vibe-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--color-secondary);
  font-weight: 800;
  text-decoration: none;
}
.vibe-service-card__link:hover { gap: 0.7rem; }
.yvb-coach-bios {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, #fff, rgba(250, 248, 244, 0.96));
}
.yvb-coach-bios__shell {
  display: grid;
  gap: 1.5rem;
}
.yvb-coach-bio {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 54px -38px rgba(10, 42, 74, 0.45);
}
.yvb-coach-bio h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0 0 1rem;
}
.yvb-coach-bio p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 1rem;
}
.yvb-coach-bio p:last-child { margin-bottom: 0; }

/* Features grid card meta + link */
.pika-fg__card-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}
.pika-fg__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.3s ease, color 0.3s ease;
}
.pika-fg__card-link:hover { gap: 0.7rem; }
.pika-fg__card-link--static {
  cursor: default;
  text-decoration: none;
}
.pika-fg__card-link--static:hover { gap: 0.4rem; }

/* Feature alternating with row images */
.vibe-feature-alt__rows { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 4.5rem); }
.vibe-feature-alt__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: 0;
  border: 0;
}
.vibe-feature-alt__row--reverse .vibe-feature-alt__media { order: 2; }
.vibe-feature-alt__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--color-surface-alt);
  box-shadow: 0 24px 48px -24px rgba(15, 23, 42, 0.2);
}
.vibe-feature-alt__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.vibe-feature-alt__row:hover .vibe-feature-alt__img { transform: scale(1.03); }
.vibe-feature-alt__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-surface-alt), rgba(79, 70, 229, 0.1));
}
.vibe-feature-alt__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.15;
}
.vibe-feature-alt__body { color: var(--color-text-muted); line-height: 1.7; margin: 0 0 1.25rem; }
.vibe-feature-alt__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.3s ease;
}
.vibe-feature-alt__cta:hover { gap: 0.7rem; }

@media (max-width: 768px) {
  .vibe-feature-alt__row { grid-template-columns: 1fr; }
  .vibe-feature-alt__row--reverse .vibe-feature-alt__media { order: 0; }
}

/* Logo cloud */
.vibe-social-proof { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--color-surface-alt); }
.vibe-logo-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.vibe-logo-cloud__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid rgba(15,23,42,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.vibe-logo-cloud__item:hover { transform: translateY(-2px); border-color: rgba(79, 70, 229, 0.25); }
.vibe-logo-cloud__item strong { font-family: var(--font-display); font-size: 1.05rem; }
.vibe-logo-cloud__item span { font-size: 0.8rem; color: var(--color-text-muted); }

/* CTA banner */
.vibe-cta { padding: clamp(3rem, 6vw, 5rem) 0; }
.vibe-cta__panel {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 32px 64px -24px rgba(79, 70, 229, 0.45);
}
.vibe-cta__panel::before,
.vibe-cta__panel::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.vibe-cta__panel::before { top: -120px; left: -80px; }
.vibe-cta__panel::after { bottom: -160px; right: -80px; background: rgba(255, 255, 255, 0.05); }
.vibe-cta__copy { position: relative; }
.vibe-cta__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0.4rem 0 0.5rem;
}
.vibe-cta__copy p { opacity: 0.9; max-width: 50ch; margin: 0 auto 1.5rem; }
.vibe-cta__copy .vibe-eyebrow { color: rgba(255,255,255,0.75); }
.vibe-cta__actions { position: relative; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary, .cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}
.cta-btn-primary { background: #fff; color: var(--color-primary); }
.cta-btn-primary:hover { transform: translateY(-2px); }
.cta-btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.cta-btn-secondary:hover { transform: translateY(-2px); background: rgba(255,255,255,0.2); }

/* Inner page CTA */
.vibe-inner-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-surface-alt);
  border-top: 1px solid rgba(15,23,42,0.06);
}
.vibe-inner-cta__inner { text-align: center; max-width: 56rem; margin: 0 auto; }
.vibe-inner-cta__heading { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 0.5rem; }
.vibe-inner-cta__body { color: var(--color-text-muted); margin: 0 0 1.5rem; }
.vibe-inner-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease;
}
.vibe-inner-cta__btn:hover { transform: translateY(-2px); }

/* Testimonials grid polish */
.vibe-testimonials { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--color-surface); }
.vibe-section-heading--center { text-align: center; max-width: 56rem; margin: 0 auto 2.5rem; }
.vibe-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface-alt);
  border: 1px solid rgba(15,23,42,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -24px rgba(15, 23, 42, 0.16); }
.testimonial-card h3 { font-family: var(--font-display); margin: 0.5rem 0; font-size: 1.15rem; }
.testimonial-card p { color: var(--color-text-muted); line-height: 1.65; margin: 0 0 1.25rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 700;
}
.testimonial-card__author strong { display: block; font-family: var(--font-display); }
.testimonial-card__author span { font-size: 0.82rem; color: var(--color-text-muted); }
.testimonial-card__stars { display: inline-flex; gap: 2px; color: #f59e0b; margin-bottom: 0.75rem; }

/* ============================================================
   Header — transparent over hero, solid on scroll
   ============================================================ */
body.home .vibe-header,
body.page-id-8 .vibe-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
body.home .vibe-header.scrolled,
body.page-id-8 .vibe-header.scrolled {
  background: rgba(8, 12, 32, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px -16px rgba(0, 0, 0, 0.6);
}
body.home .vibe-header .vibe-brand,
body.home .vibe-header .vibe-nav__menu a,
body.page-id-8 .vibe-header .vibe-brand,
body.page-id-8 .vibe-header .vibe-nav__menu a {
  color: #fff;
}
body.home .vibe-brand__mark,
body.page-id-8 .vibe-brand__mark {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  box-shadow: 0 8px 24px -8px rgba(236, 72, 153, 0.6);
}
body.home .vibe-nav__menu a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s ease;
}
body.home .vibe-nav__menu a:hover { color: #fff; }

/* ============================================================
   Heritage / what-we-do — stat poster
   ============================================================ */
.vibe-what-we-do { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--color-surface); }
.vibe-what-we-do .vibe-grid--2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.vibe-what-we-do .vibe-eyebrow { color: var(--color-primary); }
.vibe-what-we-do h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0.5rem 0 1.25rem;
}
.vibe-what-we-do .vibe-body-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}
.vibe-what-we-do .vibe-feature-list { margin-top: 1.75rem; padding: 0; list-style: none; }
.vibe-what-we-do .vibe-feature-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.85rem;
  font-weight: 600;
  color: var(--color-text);
}
/* Alumni page color rhythm */
.pika-fg--anchor-alumni-grid {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 248, 244, 0.96) 46%, rgba(243, 238, 229, 0.98) 100%),
    linear-gradient(112deg, rgba(10, 42, 74, 0.08) 0%, rgba(10, 42, 74, 0.03) 34%, transparent 34.2%),
    #faf8f4 !important;
  border-top: 5px solid var(--color-secondary, #C8102E);
}
.pika-fg--anchor-alumni-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 46%, rgba(200, 16, 46, 0.08) 46% 46.8%, transparent 46.8%),
    linear-gradient(118deg, transparent 0 62%, rgba(10, 42, 74, 0.08) 62% 62.8%, transparent 62.8%);
  opacity: 0.8;
  pointer-events: none;
}
.pika-fg--anchor-alumni-grid::after {
  content: "";
  position: absolute;
  right: max(-7rem, -8vw);
  bottom: 12%;
  width: min(44rem, 48vw);
  aspect-ratio: 1.85;
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.08);
  transform: rotate(-9deg);
  pointer-events: none;
}
.pika-fg--anchor-alumni-grid > .container-xxl {
  position: relative;
  z-index: 1;
}
.pika-fg--anchor-alumni-grid .pika-fg__heading,
.pika-fg--anchor-alumni-grid .pika-fg__subheading {
  color: var(--color-primary, #0A2A4A);
}
.pika-fg--anchor-alumni-grid .pika-fg__header {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(10, 42, 74, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -42px rgba(10, 42, 74, 0.28);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.pika-fg--anchor-alumni-grid .pika-fg__tag {
  color: var(--color-secondary, #C8102E);
}
.pika-fg--anchor-alumni-grid .pika-fg__subheading {
  color: rgba(14, 14, 16, 0.7);
}
.pika-fg--anchor-alumni-grid .pika-fg__card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)) !important;
  border-color: rgba(10, 42, 74, 0.12) !important;
  color: var(--color-text);
  box-shadow: 0 22px 46px -34px rgba(10, 42, 74, 0.35);
}
.pika-fg--anchor-alumni-grid .pika-fg__card::before {
  background: linear-gradient(90deg, var(--color-secondary, #C8102E), var(--color-primary, #0A2A4A));
}
.pika-fg--anchor-alumni-grid .pika-fg__card-meta {
  color: var(--color-secondary, #C8102E);
}
.pika-fg--anchor-alumni-grid .pika-fg__card-title,
.pika-fg--anchor-alumni-grid .pika-fg__card-num {
  color: var(--color-primary, #0A2A4A);
}
.pika-fg--anchor-alumni-grid .pika-fg__card-text {
  color: rgba(14, 14, 16, 0.68);
}
.pika-fg--anchor-alumni-quotes {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #8f1024 0%, #c8102e 42%, #071f38 100%) !important;
  background-size: 64px 64px, 64px 64px, auto !important;
}
.pika-fg--anchor-alumni-quotes::before {
  content: "";
  position: absolute;
  top: -34%;
  right: -10%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}
.pika-fg--anchor-alumni-quotes > .container-xxl {
  position: relative;
  z-index: 1;
}
.pika-fg--anchor-alumni-quotes .pika-fg__heading,
.pika-fg--anchor-alumni-quotes .pika-fg__subheading {
  color: #fff;
}
.pika-fg--anchor-alumni-quotes .pika-fg__header {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.pika-fg--anchor-alumni-quotes .pika-fg__tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.pika-fg--anchor-alumni-quotes .pika-fg__subheading {
  color: rgba(255, 255, 255, 0.72);
}
.pika-fg--anchor-alumni-quotes .pika-fg__cards {
  max-width: 42rem;
  margin: 0 auto;
  grid-template-columns: 1fr !important;
}
.pika-fg--anchor-alumni-quotes .pika-fg__card {
  text-align: center;
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%) !important;
  box-shadow: 0 30px 70px -42px rgba(0, 0, 0, 0.58);
}
.pika-fg--anchor-alumni-quotes .pika-fg__card-num {
  display: none;
}
.pika-fg--anchor-alumni-quotes .pika-fg__card-meta {
  color: var(--color-secondary);
}
.pika-fg--anchor-alumni-quotes .pika-fg__card-title {
  color: #071f38;
  font-size: clamp(2rem, 8vw, 3rem);
}
.pika-fg--anchor-alumni-quotes .pika-fg__card-text {
  color: rgba(7, 31, 56, 0.62);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yvb-alumni {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7.25rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 248, 244, 0.97) 48%, rgba(244, 240, 232, 0.98) 100%),
    linear-gradient(116deg, transparent 0 40%, rgba(200, 16, 46, 0.07) 40% 40.8%, transparent 40.8%),
    linear-gradient(116deg, transparent 0 64%, rgba(10, 42, 74, 0.07) 64% 64.8%, transparent 64.8%),
    #faf8f4;
  border-top: 5px solid var(--color-secondary, #c8102e);
}

.yvb-alumni::after {
  content: "";
  position: absolute;
  right: max(-8rem, -9vw);
  top: 15%;
  width: min(42rem, 50vw);
  aspect-ratio: 1.9;
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.08);
  transform: rotate(-10deg);
  pointer-events: none;
}

.yvb-alumni > .container-xxl {
  position: relative;
  z-index: 1;
}

.yvb-alumni__header {
  max-width: 820px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.yvb-alumni__eyebrow,
.yvb-alumni-directory__eyebrow,
.yvb-alumni-featured__label {
  color: var(--color-secondary, #c8102e);
}

.yvb-alumni__heading {
  color: var(--color-primary, #0a2a4a);
}

.yvb-alumni__subheading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(14, 14, 16, 0.7);
}

.yvb-alumni__featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.yvb-alumni-featured {
  display: grid;
  grid-template-columns: minmax(12rem, 0.9fr) minmax(0, 1.1fr);
  min-height: 20rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 8px;
  box-shadow: 0 26px 60px -42px rgba(10, 42, 74, 0.36);
}

.yvb-alumni-featured__media {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(10, 42, 74, 0.92), rgba(200, 16, 46, 0.76)),
    var(--color-primary, #0a2a4a);
}

.yvb-alumni-featured__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.yvb-alumni-featured__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
}

.yvb-alumni-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 2.35rem);
}

.yvb-alumni-featured__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.yvb-alumni-featured h3 {
  margin: 0;
  color: var(--color-primary, #0a2a4a);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.yvb-alumni-featured__school {
  margin: 0.85rem 0 0;
  color: var(--color-secondary, #c8102e);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yvb-alumni-featured__text {
  max-width: 28rem;
  margin: 1.05rem 0 0;
  color: rgba(14, 14, 16, 0.68);
  line-height: 1.65;
}

.yvb-alumni-directory {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 60px -44px rgba(10, 42, 74, 0.34);
}

.yvb-alumni-directory__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: end;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(10, 42, 74, 0.12);
}

.yvb-alumni-directory__head h3 {
  margin: 0.25rem 0 0;
  color: var(--color-primary, #0a2a4a);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.yvb-alumni-directory__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(9rem, 1fr));
  gap: 0.6rem;
}

.yvb-alumni-directory__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.1rem;
  color: var(--color-primary, #0a2a4a);
  font-weight: 900;
  text-align: center;
  border: 1px solid rgba(10, 42, 74, 0.24);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.yvb-alumni-directory__tab:hover,
.yvb-alumni-directory__tab:focus-visible {
  border-color: var(--color-primary, #0a2a4a);
  transform: translateY(-1px);
  outline: 0;
}

.yvb-alumni-directory__tab.is-active {
  color: #fff;
  border-color: var(--color-secondary, #c8102e);
  background: var(--color-secondary, #c8102e);
}

.yvb-alumni-directory__panel {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.yvb-alumni-directory__summary {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.yvb-alumni-directory__summary h4 {
  margin: 0;
  color: var(--color-primary, #0a2a4a);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.yvb-alumni-directory__summary p {
  max-width: 58rem;
  margin: 0.45rem 0 0;
  color: rgba(14, 14, 16, 0.66);
  line-height: 1.6;
}

.yvb-alumni-directory__count {
  flex: 0 0 auto;
  color: var(--color-secondary, #c8102e);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yvb-alumni-directory__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(18rem, 1fr));
  gap: 0.9rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.yvb-alumni-directory__item {
  display: grid;
  gap: 0.4rem;
  min-height: 6.35rem;
  padding: 1.1rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.95)),
    #fff;
  border: 1px solid rgba(10, 42, 74, 0.14);
  border-left: 5px solid var(--color-secondary, #c8102e);
  border-radius: 8px;
  box-shadow: 0 14px 34px -30px rgba(10, 42, 74, 0.5);
}

.yvb-alumni-directory__name {
  color: var(--color-primary, #0a2a4a);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.yvb-alumni-directory__school {
  color: rgba(10, 42, 74, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .yvb-alumni__featured-grid,
  .yvb-alumni-featured {
    grid-template-columns: 1fr;
  }

  .yvb-alumni-featured__img,
  .yvb-alumni-featured__placeholder {
    min-height: 18rem;
  }

  .yvb-alumni-directory__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .yvb-alumni-directory__head,
  .yvb-alumni-directory__summary {
    display: grid;
  }

  .yvb-alumni-directory__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .yvb-alumni-directory__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .yvb-alumni-directory__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .yvb-alumni {
    padding: 3.5rem 0;
  }

  .yvb-alumni-directory {
    padding: 1rem;
  }

  .yvb-alumni-directory__tabs,
  .yvb-alumni-directory__list {
    grid-template-columns: 1fr;
  }
}

.vibe-what-we-do .vibe-feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.25rem; height: 2px;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  transform: translateY(-50%);
  border-radius: 2px;
}

.vibe-stat-poster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.vibe-stat-poster::before {
  content: "";
  position: absolute;
  inset: -10% -10% 50% 50%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.18), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.vibe-stat-poster__card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.vibe-stat-poster__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -28px rgba(99, 102, 241, 0.4);
  border-color: rgba(99, 102, 241, 0.18);
}
.vibe-stat-poster__card::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18), transparent 70%);
  pointer-events: none;
}
.vibe-stat-poster__card--1::before { background: radial-gradient(circle, rgba(236, 72, 153, 0.18), transparent 70%); }
.vibe-stat-poster__card--2::before { background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%); }
.vibe-stat-poster__card--3::before { background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%); }
.vibe-stat-poster__card:nth-child(odd) { transform: translateY(0); }
.vibe-stat-poster__card:nth-child(even) { transform: translateY(1.75rem); }
.vibe-stat-poster__card:nth-child(even):hover { transform: translateY(calc(1.75rem - 6px)); }

.vibe-stat-poster__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.4rem;
}
.vibe-stat-poster__card--1 .vibe-stat-poster__num { background: linear-gradient(135deg, #ec4899, #f59e0b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vibe-stat-poster__card--2 .vibe-stat-poster__num { background: linear-gradient(135deg, #10b981, #06b6d4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vibe-stat-poster__card--3 .vibe-stat-poster__num { background: linear-gradient(135deg, #f59e0b, #ef4444); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vibe-stat-poster__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
}

@media (max-width: 768px) {
  .vibe-what-we-do .vibe-grid--2-col { grid-template-columns: 1fr; }
  .vibe-stat-poster__card:nth-child(even) { transform: none; }
  .vibe-stat-poster__card:nth-child(even):hover { transform: translateY(-6px); }
}

/* ============================================================
   Feature alternating — replace placeholder with designed art
   ============================================================ */
.vibe-feature-alt { padding: clamp(4rem, 8vw, 6rem) 0; background: #fff; }
.vibe-feature-alt__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0.5rem 0 0;
}
.vibe-feature-alt__placeholder {
  position: relative;
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.35), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.3), transparent 50%),
    linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #581c87 100%);
  overflow: hidden;
}
.vibe-feature-alt__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.vibe-feature-alt__placeholder::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 65%);
  filter: blur(20px);
}
.vibe-feature-alt__row { row-gap: 0; }
.vibe-feature-alt__row--reverse {
  /* When reverse, swap the grid order so media goes right and content goes left visually. */
}

/* Per-row themed placeholder color shifts so the 4 rows feel distinct */
.vibe-feature-alt__row:nth-child(1) .vibe-feature-alt__placeholder {
  background:
    radial-gradient(circle at 25% 25%, rgba(236, 72, 153, 0.4), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(139, 92, 246, 0.35), transparent 55%),
    linear-gradient(135deg, #1e1b4b, #581c87);
}
.vibe-feature-alt__row:nth-child(2) .vibe-feature-alt__placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.4), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(16, 185, 129, 0.35), transparent 55%),
    linear-gradient(135deg, #0c4a6e, #1e1b4b);
}
.vibe-feature-alt__row:nth-child(3) .vibe-feature-alt__placeholder {
  background:
    radial-gradient(circle at 25% 75%, rgba(245, 158, 11, 0.4), transparent 55%),
    radial-gradient(circle at 75% 25%, rgba(239, 68, 68, 0.35), transparent 55%),
    linear-gradient(135deg, #7c2d12, #1e1b4b);
}
.vibe-feature-alt__row:nth-child(4) .vibe-feature-alt__placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.4), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(20, 184, 166, 0.4), transparent 55%),
    linear-gradient(135deg, #134e4a, #0c4a6e);
}

.vibe-feature-alt__num {
  display: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ============================================================
   Services / coaches — better placeholder, gradient avatars
   ============================================================ */
.vibe-services { background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-alt) 100%); }
.vibe-services__grid {
  display: grid;
  grid-template-columns: repeat(var(--vibe-services-cols, 3), minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 991px) { .vibe-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .vibe-services__grid { grid-template-columns: 1fr; } }
.vibe-service-card { box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.18); }
.vibe-service-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(10,42,74,0.08) 0%, rgba(200,16,46,0.08) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vibe-service-card:nth-child(2n) .vibe-service-card__media { background: linear-gradient(135deg, rgba(10,42,74,0.08), rgba(200,16,46,0.06)); }
.vibe-service-card:nth-child(3n) .vibe-service-card__media { background: linear-gradient(135deg, rgba(200,16,46,0.06), rgba(10,42,74,0.1)); }
.vibe-service-card:nth-child(4n) .vibe-service-card__media { background: linear-gradient(135deg, rgba(10,42,74,0.07), rgba(200,16,46,0.07)); }
.vibe-service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.5), transparent 60%);
  pointer-events: none;
}
.vibe-service-card__placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 40px -16px rgba(99, 102, 241, 0.5);
}
.vibe-service-card__placeholder::before {
  content: attr(data-initials);
  color: #fff;
}
.vibe-service-card:nth-child(2n) .vibe-service-card__placeholder::before { background: linear-gradient(135deg, #ec4899, #f59e0b); }
.vibe-service-card:nth-child(3n) .vibe-service-card__placeholder::before { background: linear-gradient(135deg, #10b981, #06b6d4); }
.vibe-service-card:nth-child(4n) .vibe-service-card__placeholder::before { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.vibe-service-card:nth-child(5n) .vibe-service-card__placeholder::before { background: linear-gradient(135deg, #8b5cf6, #06b6d4); }

.vibe-service-card__placeholder svg { display: none; }

/* Coach initials overlay (rendered with content from data attribute via JS, fallback handled in CSS) */
.vibe-service-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.vibe-service-card__body h3 { font-size: 1.15rem; }

#coaches .vibe-service-card__media,
#girls-coaches-list .vibe-service-card__media,
#boys-coaches-list .vibe-service-card__media {
  width: 100%;
  height: clamp(190px, 20vw, 260px);
  aspect-ratio: auto;
  min-height: 0;
  max-height: none;
}

#coaches .vibe-services__grid,
#girls-coaches-list .vibe-services__grid,
#boys-coaches-list .vibe-services__grid {
  align-items: stretch;
}

#coaches .vibe-service-card,
#girls-coaches-list .vibe-service-card,
#boys-coaches-list .vibe-service-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#coaches .vibe-service-card__body,
#girls-coaches-list .vibe-service-card__body,
#boys-coaches-list .vibe-service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

#coaches .vibe-service-card__toggle,
#coaches .vibe-service-card__link,
#girls-coaches-list .vibe-service-card__toggle,
#girls-coaches-list .vibe-service-card__link,
#boys-coaches-list .vibe-service-card__toggle,
#boys-coaches-list .vibe-service-card__link {
  margin-top: auto;
}

#coaches .vibe-services__grid[data-has-expanded="true"],
#coaches .vibe-services__grid:has(.vibe-service-card.is-expanded),
#girls-coaches-list .vibe-services__grid[data-has-expanded="true"],
#girls-coaches-list .vibe-services__grid:has(.vibe-service-card.is-expanded),
#boys-coaches-list .vibe-services__grid[data-has-expanded="true"],
#boys-coaches-list .vibe-services__grid:has(.vibe-service-card.is-expanded) {
  align-items: start;
}

#coaches .vibe-services__grid[data-has-expanded="true"] .vibe-service-card,
#coaches .vibe-services__grid:has(.vibe-service-card.is-expanded) .vibe-service-card,
#girls-coaches-list .vibe-services__grid[data-has-expanded="true"] .vibe-service-card,
#girls-coaches-list .vibe-services__grid:has(.vibe-service-card.is-expanded) .vibe-service-card,
#boys-coaches-list .vibe-services__grid[data-has-expanded="true"] .vibe-service-card,
#boys-coaches-list .vibe-services__grid:has(.vibe-service-card.is-expanded) .vibe-service-card {
  align-self: start;
  height: auto;
}

#coaches .vibe-service-card__placeholder,
#girls-coaches-list .vibe-service-card__placeholder,
#boys-coaches-list .vibe-service-card__placeholder {
  width: 86px;
  height: 86px;
  font-size: 2rem;
}

#coaches .vibe-service-card__desc,
#girls-coaches-list .vibe-service-card__desc,
#boys-coaches-list .vibe-service-card__desc {
  display: -webkit-box;
  min-height: calc(1.65em * var(--yvb-coach-summary-lines, 8));
  max-height: calc(1.65em * var(--yvb-coach-summary-lines, 8));
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--yvb-coach-summary-lines, 8);
  line-clamp: var(--yvb-coach-summary-lines, 8);
}

#coaches .vibe-service-card:not(.is-expanded) .vibe-service-card__desc,
#girls-coaches-list .vibe-service-card:not(.is-expanded) .vibe-service-card__desc,
#boys-coaches-list .vibe-service-card:not(.is-expanded) .vibe-service-card__desc {
  margin-bottom: clamp(1rem, 1.4vw, 1.35rem);
}

.vibe-service-card__details {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease 90ms;
}

.vibe-service-card__details-inner {
  padding-top: 1rem;
}

.vibe-service-card__details p {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.25vw + 0.9rem, 1rem);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.vibe-service-card__details p:last-child {
  margin-bottom: 0;
}

.vibe-service-card.is-expanded .vibe-service-card__details {
  opacity: 1;
}

.vibe-service-card__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.vibe-service-card__toggle span[aria-hidden="true"] {
  transition: transform 260ms ease;
}

.vibe-service-card__toggle[aria-expanded="true"] span[aria-hidden="true"] {
  transform: rotate(-90deg);
}

/* ============================================================
   Features grid — grid layout polish (tryouts, news cards)
   ============================================================ */
.pika-fg__cards {
  display: grid !important;
  gap: 1.25rem;
}
.pika-fg--grid .pika-fg__cards,
.pika-fg--default .pika-fg__cards {
  grid-template-columns: repeat(var(--pika-fg-cols, 3), minmax(0, 1fr));
}
@media (max-width: 991px) {
  .pika-fg--grid .pika-fg__cards,
  .pika-fg--default .pika-fg__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .pika-fg--grid .pika-fg__cards,
  .pika-fg--default .pika-fg__cards { grid-template-columns: 1fr; }
}
.pika-fg { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--color-surface); }
.pika-fg__header { text-align: center; max-width: 56rem; margin: 0 auto 2.5rem; }
.pika-fg__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0.5rem 0 0.75rem;
}
.pika-fg__subheading { color: var(--color-text-muted); font-size: 1.05rem; }
.pika-fg__tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}
.pika-fg__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}
.pika-fg__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(99, 102, 241, 0.4);
  border-color: rgba(99, 102, 241, 0.2);
}
.pika-fg__card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #ec4899, #f59e0b);
  background-size: 200% 100%;
  background-position: 0% 50%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: background-position 0.6s ease;
}
.pika-fg__card:hover::before { background-position: 100% 50%; }
.pika-fg--empty-boxes .pika-fg__card--empty {
  min-height: clamp(10rem, 18vw, 14rem);
  background:
    linear-gradient(135deg, rgba(10, 42, 74, 0.035), rgba(200, 16, 46, 0.035)),
    #fff;
  border: 1px dashed rgba(10, 42, 74, 0.24);
  box-shadow: 0 18px 42px -34px rgba(10, 42, 74, 0.45);
}
.pika-fg__card-media { display: none; }
.pika-fg__card-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(15, 23, 42, 0.25);
  margin-bottom: 0.5rem;
}
.pika-fg__card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0;
  margin: 0.35rem 0 0.6rem;
}
.pika-fg__card-text {
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.pika-fg--anchor-boys .pika-fg__card-text,
.pika-fg--anchor-girls .pika-fg__card-text,
.pika-fg--anchor-fall-pathways .pika-fg__card-text,
.pika-fg--anchor-fall-programs .pika-fg__card-text,
.pika-fg--anchor-winter-league .pika-fg__card-text,
.pika-fg--anchor-spring-beach-program .pika-fg__card-text,
.pika-fg--anchor-spring-details .pika-fg__card-text,
.pika-fg--anchor-girls-fundraising .pika-fg__card-text,
.pika-fg--anchor-boys-fundraising .pika-fg__card-text,
.pika-fg--anchor-girls-locations .pika-fg__card-text,
.pika-fg--anchor-boys-locations .pika-fg__card-text {
  white-space: pre-line;
}

/* ============================================================
   Logo cloud — sponsors row, marquee feel
   ============================================================ */
.vibe-social-proof { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.vibe-logo-cloud {
  margin-top: 2rem;
}
.vibe-logo-cloud__item {
  position: relative;
  background: var(--color-surface);
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 1.25rem 1rem;
  text-align: center;
  overflow: hidden;
}
.vibe-logo-cloud__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.vibe-logo-cloud__item:hover::before { opacity: 1; }
.vibe-logo-cloud__item strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.vibe-logo-cloud__item span { display: block; font-size: 0.78rem; color: var(--color-text-muted); margin-top: 0.25rem; letter-spacing: 0.04em; }

/* ============================================================
   Footer polish
   ============================================================ */
.vibe-footer {
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
  background: linear-gradient(180deg, #0a0e26 0%, #050816 100%);
  color: rgba(255, 255, 255, 0.78);
}
.vibe-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
.vibe-footer__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, #fff, #c7d2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vibe-footer__copy { color: rgba(255, 255, 255, 0.6); margin: 0; max-width: 36ch; }
.vibe-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.vibe-footer__menu a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  transition: color 0.3s ease;
}
.vibe-footer__menu a:hover { color: #fff; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .vibe-reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0ms !important; }
}

/* ====================================================================
   YORKTOWN EVB — 2026 REBRAND OVERRIDES
   Navy + Red palette · Fraunces · admin-bar · hover transitions · hero
   Applied last so all overrides take precedence.
   ==================================================================== */

/* ── Color system override ─────────────────────────────────────────── */
:root {
  --color-primary:      #0A2A4A;
  --color-primary-dark: #061a2e;
  --color-secondary:    #C8102E;
  --color-accent:       #C8102E;
  --color-surface:      #FAF8F4;
  --color-surface-alt:  #F4F1EA;
  --color-text:         #0E0E10;
  --color-text-muted:   #5a6073;
  --color-text-on-dark: #FAF8F4;
  --color-border:       rgba(10, 42, 74, 0.12);
  --font-display:       'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:          'Barlow', 'Inter', system-ui, sans-serif;
  --font-mono:          'JetBrains Mono', 'Courier New', monospace;
  --shadow-soft:        0 24px 60px rgba(10, 42, 74, 0.08);
  --radius-lg:          1rem;
}

/* ── WordPress admin bar offset ────────────────────────────────────── */
body.admin-bar .vibe-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .vibe-header { top: 46px; }
}

/* ── Global hover transitions — both in and out ────────────────────── */
a,
button,
[role="button"],
input[type="submit"],
.vibe-service-card,
.pika-fg__card,
.testimonial-card,
.vibe-post-card,
.vibe-logo-cloud__item,
.vibe-btn,
.hero-cta,
.cta-btn-primary,
.cta-btn-secondary,
.vibe-inner-cta__btn,
img {
  transition:
    color              0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background-color   0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color       0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow         0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity            0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform          0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter             0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Image hover scale — smooth in AND out */
.pika-fg__card:hover .pika-fg__card-img,
.vibe-service-card:hover .vibe-service-card__img,
.vibe-feature-alt__row:hover .vibe-feature-alt__img,
.vibe-post-card:hover .vibe-post-card__img {
  transform: scale(1.04);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pika-fg__card-img,
.vibe-service-card__img,
.vibe-feature-alt__img,
.vibe-post-card__img {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Logo — screen-blend on dark home header removes JPG background ── */
body.home .vibe-brand__logo {
  mix-blend-mode: screen;
  filter: brightness(1.6) contrast(1.05);
}

/* ── Header — transparent over home hero, navy when scrolled ─────── */
body.home .vibe-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
body.home .vibe-header.scrolled {
  background: rgba(6, 26, 46, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px -16px rgba(0, 0, 0, 0.5);
}
body.home .vibe-header .vibe-brand,
body.home .vibe-header .vibe-nav__menu a { color: #fff; }
body.home .vibe-nav__menu a { color: rgba(255, 255, 255, 0.78); }
body.home .vibe-nav__menu a:hover { color: #fff; }
body.home .vibe-brand__mark {
  background: var(--color-secondary);
  box-shadow: none;
}
/* Mobile nav on dark home header */
body.home .vibe-nav__toggle span { background: #fff; }
body.home .vibe-nav.is-open {
  background: #061a2e;
  border-top: 1px solid rgba(255,255,255,0.08);
}
body.home .vibe-nav__menu li { border-bottom-color: rgba(255,255,255,0.07); }

/* ── Hero — complete 2026 redesign ─────────────────────────────────── */
.vibe-hero {
  position: relative;
  min-height: 100vh !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #061a2e;
  color: #faf8f4;
  overflow: hidden;
  padding: 0 !important;
  isolation: isolate;
}
/* No-image fallback gradient */
.vibe-hero:not(.vibe-hero--has-image) {
  background:
    radial-gradient(ellipse 42% 92% at -6% 16%, rgba(200, 16, 46, 0.36), rgba(200, 16, 46, 0.16) 34%, transparent 68%),
    radial-gradient(ellipse 36% 72% at 104% 78%, rgba(200, 16, 46, 0.2), transparent 64%),
    radial-gradient(ellipse 60% 80% at 85% 90%, rgba(10, 42, 74, 0.68), transparent 60%),
    linear-gradient(145deg, #061a2e 0%, #0a2a4a 55%, #061a2e 100%);
}
/* Image overlay */
.vibe-hero--has-image::before { display: none; }
.vibe-hero--has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 26, 46, 0.72) 0%,
    rgba(6, 26, 46, 0.42) 40%,
    rgba(6, 26, 46, 0.90) 100%
  );
}
.vibe-hero__bg { position: absolute; inset: 0; z-index: 0; }
.vibe-hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Court lines */
.vibe-hero__court {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.vibe-hero__court-svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 160%;
  max-width: none;
  height: auto;
  transform: translateX(-50%) perspective(900px) rotateX(62deg) scale(1.4);
  transform-origin: bottom center;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.45) 28%, rgba(0,0,0,0.65) 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.45) 28%, rgba(0,0,0,0.65) 62%, transparent 100%);
  color: #fff;
}
/* Grain texture */
.vibe-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.032;
  /* SVG fractal noise grain */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
/* Edge spotlights (no-image fallback) */
.vibe-hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.vibe-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(76px);
  animation: vibe-hero-float 18s ease-in-out infinite;
  will-change: transform;
}
.vibe-hero__orb--a {
  width: min(860px, 54vw);
  height: min(760px, 62vh);
  top: -220px;
  left: max(-370px, -24vw);
  background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.48) 0%, rgba(200, 16, 46, 0.24) 34%, transparent 70%);
}
.vibe-hero__orb--b {
  width: min(720px, 46vw);
  height: min(640px, 58vh);
  right: max(-340px, -22vw);
  bottom: -260px;
  background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.26) 0%, rgba(200, 16, 46, 0.12) 36%, transparent 72%);
  animation-delay: -6s;
}
.vibe-hero__orb--c {
  width: min(520px, 38vw);
  height: min(520px, 46vh);
  top: 18%;
  right: max(-260px, -16vw);
  background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.18) 0%, rgba(200, 16, 46, 0.08) 38%, transparent 72%);
  animation-delay: -11s;
}

@media (max-width: 575px) {
  .vibe-hero:not(.vibe-hero--has-image) {
    background:
      radial-gradient(ellipse 76% 68% at -24% 10%, rgba(200, 16, 46, 0.24), rgba(200, 16, 46, 0.1) 34%, transparent 66%),
      radial-gradient(ellipse 48% 64% at 112% 76%, rgba(200, 16, 46, 0.12), transparent 62%),
      linear-gradient(145deg, #061a2e 0%, #0a2a4a 56%, #061a2e 100%);
  }

  .vibe-hero__orb {
    filter: blur(58px);
  }

  .vibe-hero__orb--a {
    width: 520px;
    height: 460px;
    top: -170px;
    left: -330px;
  }

  .vibe-hero__orb--b {
    width: 440px;
    height: 400px;
    right: -300px;
    bottom: -220px;
  }

  .vibe-hero__orb--c {
    width: 340px;
    height: 340px;
    right: -240px;
  }
}
/* Top eyebrow strip */
.vibe-hero__top {
  position: absolute;
  top: clamp(5rem, 9vw, 7rem);
  left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vibe-hero__top-left,
.vibe-hero__top-right {
  font-family: 'JetBrains Mono', var(--font-mono, monospace);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.38);
}
/* Content shell (bottom) */
.vibe-hero > .vibe-shell { display: none !important; } /* hide old centered layout */
.vibe-hero__shell {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}
.vibe-hero__bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: flex-end;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.8rem;
  border-radius: 2px;
  background: #C8102E;
  color: #fff;
  font-family: 'JetBrains Mono', var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-badge::before { display: none !important; }
/* Headline */
.hero-headline {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif !important;
  font-size: clamp(3.8rem, 9vw, 7.5rem) !important;
  font-weight: 900 !important;
  line-height: 0.9 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  color: #faf8f4 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  filter: none !important;
  margin: 0 !important;
  max-width: 14ch !important;
}
/* Subheading */
.hero-sub {
  font-family: 'Inter', var(--font-body, sans-serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(250, 248, 244, 0.7);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 40ch;
}
/* CTA vertical stack */
.vibe-hero__actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.7rem !important;
  align-items: flex-start !important;
}
/* CTA buttons */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 0.875rem 1.75rem;
  font-family: 'Inter', var(--font-body, sans-serif);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-radius: 2px;
  text-decoration: none;
}
.hero-cta--primary {
  background: #C8102E;
  color: #fff !important;
  border: 2px solid #C8102E;
  box-shadow: 0 8px 28px -8px rgba(200, 16, 46, 0.55);
}
.hero-cta--primary:hover {
  background: transparent !important;
  color: #fff !important;
  transform: none !important;
  box-shadow: 0 4px 16px -4px rgba(200, 16, 46, 0.3) !important;
}
.hero-cta--secondary {
  background: transparent;
  color: rgba(250, 248, 244, 0.82);
  border: 2px solid rgba(250, 248, 244, 0.28);
}
.hero-cta--secondary:hover {
  border-color: rgba(250, 248, 244, 0.65) !important;
  background: rgba(250, 248, 244, 0.07) !important;
  color: #fff !important;
  transform: none !important;
}
/* Stats strip */
.vibe-hero__stats-strip {
  display: flex;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(250, 248, 244, 0.1);
  flex-wrap: wrap;
}
.vibe-hero__stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vibe-hero__stat-val {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #faf8f4;
}
.vibe-hero__stat-sfx { font-size: 0.65em; opacity: 0.6; }
.vibe-hero__stat-lbl {
  font-family: 'JetBrains Mono', var(--font-mono, monospace);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.4);
}
/* Scroll indicator */
.vibe-hero__scroll {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(2rem, 4vw, 3rem);
  left: auto;
  z-index: 10;
  width: 44px; height: 44px;
  border: 1px solid rgba(250, 248, 244, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: none;
  text-decoration: none;
}
.vibe-hero__scroll::before { display: none; }
.vibe-hero__scroll::after {
  content: '↓';
  color: rgba(250, 248, 244, 0.5);
  font-size: 0.9rem;
  line-height: 1;
}
.vibe-hero__scroll:hover { border-color: rgba(250, 248, 244, 0.55); background: rgba(250, 248, 244, 0.07); }
.vibe-hero__scroll:hover::after { color: rgba(250, 248, 244, 0.9); }

/* Mobile hero */
@media (max-width: 768px) {
  .vibe-hero__top { display: none; }
  .vibe-hero__bottom-grid { grid-template-columns: 1fr; gap: 2rem; }
  .vibe-hero__shell { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-headline { max-width: 100% !important; }
  .vibe-hero__actions { flex-direction: row !important; flex-wrap: wrap !important; align-items: flex-start !important; }
  .hero-cta { min-width: 0; }
  .vibe-hero__scroll { display: none; }
}

/* ── Body background ────────────────────────────────────────────────── */
body.vibe-site { background: var(--color-surface); }

/* ── Eyebrow color ──────────────────────────────────────────────────── */
.vibe-eyebrow,
.pika-fg__tag { color: var(--color-secondary); }

/* ── Section headings — Barlow Condensed sports font ─────────────────── */
.pika-fg__heading,
.vibe-section-heading,
.vibe-section-header h2,
.vibe-what-we-do h2,
.vibe-feature-alt__title,
.vibe-feature-alt__heading,
.vibe-cta__copy h2,
.vibe-inner-cta__heading,
.testimonial-card h3,
.vibe-page-hero__title,
.vibe-utility-hero__title,
.vibe-post-card__title {
  font-family: 'Barlow Condensed', var(--font-display, 'Arial Narrow', sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
/* Larger scale for section headings to match sports aesthetic */
.pika-fg__heading { font-size: clamp(2rem, 4vw, 3rem); }
.vibe-feature-alt__heading { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
.vibe-what-we-do h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.vibe-cta__copy h2, .vibe-inner-cta__heading { font-size: clamp(2rem, 4vw, 3rem); }

/* ── Card top-bar accent → red ──────────────────────────────────────── */
.pika-fg__card::before {
  background: linear-gradient(90deg, #C8102E, #0A2A4A);
}
.pika-fg__card:hover { border-color: rgba(200, 16, 46, 0.22); box-shadow: 0 24px 60px -28px rgba(200, 16, 46, 0.3); }

/* ── Features-grid anchored sections ─────────────────────────────────── */
/* Tryouts — dark navy background */
.pika-fg--anchor-tryouts {
  background: var(--color-primary) !important;
}
.pika-fg--anchor-tryouts .pika-fg__heading,
.pika-fg--anchor-tryouts .pika-fg__subheading,
.pika-fg--anchor-tryouts .pika-fg__tag { color: rgba(250, 248, 244, 0.9); }
.pika-fg--anchor-tryouts .pika-fg__tag { color: var(--color-secondary); }
.pika-fg--anchor-tryouts .pika-fg__subheading { color: rgba(250, 248, 244, 0.62); }
.pika-fg--anchor-tryouts .pika-fg__card {
  background: rgba(250, 248, 244, 0.06) !important;
  border-color: rgba(250, 248, 244, 0.12) !important;
  color: rgba(250, 248, 244, 0.85) !important;
}
.pika-fg--anchor-tryouts .pika-fg__card::before { background: linear-gradient(90deg, #C8102E, rgba(200,16,46,0.4)); }
.pika-fg--anchor-tryouts .pika-fg__card-meta { color: #C8102E; }
.pika-fg--anchor-tryouts .pika-fg__card-title,
.pika-fg--anchor-tryouts .pika-fg__card-num { color: rgba(250, 248, 244, 0.92); }
.pika-fg--anchor-tryouts .pika-fg__card-text { color: rgba(250, 248, 244, 0.58); }
.pika-fg--anchor-tryouts .pika-fg__card-link { color: rgba(250, 248, 244, 0.75); }
.pika-fg--anchor-tryouts .pika-fg__card:hover {
  background: rgba(250, 248, 244, 0.09);
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 16px 40px -20px rgba(200, 16, 46, 0.35);
}

/* ── Feature list bullets → red ────────────────────────────────────── */
.vibe-what-we-do .vibe-feature-list li::before {
  background: var(--color-secondary);
}

/* ── Stat poster — navy/red accents ────────────────────────────────── */
.vibe-stat-poster__card:hover {
  border-color: rgba(200, 16, 46, 0.2);
  box-shadow: 0 28px 60px -28px rgba(200, 16, 46, 0.28);
}
.vibe-stat-poster__num {
  background: var(--color-secondary);
  -webkit-background-clip: text;
  background-clip: text;
}
.vibe-stat-poster__card--1 .vibe-stat-poster__num { background: var(--color-primary); -webkit-background-clip: text; background-clip: text; }
.vibe-stat-poster__card--2 .vibe-stat-poster__num { background: var(--color-secondary); -webkit-background-clip: text; background-clip: text; }
.vibe-stat-poster__card--3 .vibe-stat-poster__num { background: var(--color-primary); -webkit-background-clip: text; background-clip: text; }
.vibe-stat-poster__card::before { background: radial-gradient(circle, rgba(200,16,46,0.16), transparent 70%); }

/* ── Service card hover → red accent ───────────────────────────────── */
.vibe-service-card:hover {
  border-color: rgba(200, 16, 46, 0.22);
  box-shadow: 0 24px 48px -20px rgba(200, 16, 46, 0.2);
}
.vibe-service-card__role,
.pika-fg__card-meta,
.pika-fg__card-link,
.vibe-feature-alt__cta,
.vibe-read-more { color: var(--color-secondary); }
.vibe-service-card__placeholder {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 16px 40px -16px rgba(200, 16, 46, 0.45);
}

/* ── Feature alternating placeholder → navy/red ─────────────────────── */
.vibe-feature-alt__placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(135deg, #061a2e 0%, #0a2a4a 100%);
}
.vibe-feature-alt__row:nth-child(1) .vibe-feature-alt__placeholder {
  background:
    radial-gradient(circle at 25% 25%, rgba(200, 16, 46, 0.4), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(10, 42, 74, 0.7), transparent 55%),
    linear-gradient(135deg, #061a2e, #0a2a4a);
}
.vibe-feature-alt__row:nth-child(2) .vibe-feature-alt__placeholder {
  background:
    radial-gradient(circle at 70% 30%, rgba(200, 16, 46, 0.3), transparent 55%),
    linear-gradient(135deg, #0a2a4a, #061a2e);
}
.vibe-feature-alt__row:nth-child(3) .vibe-feature-alt__placeholder {
  background:
    radial-gradient(circle at 25% 75%, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(135deg, #061a2e, #0a2a4a);
}
.vibe-feature-alt__row:nth-child(4) .vibe-feature-alt__placeholder {
  background:
    radial-gradient(circle at 70% 25%, rgba(200, 16, 46, 0.28), transparent 55%),
    linear-gradient(135deg, #0a2a4a, #061a2e);
}
.vibe-feature-alt__num {
  display: none;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Testimonial card → navy accent avatar ──────────────────────────── */
.testimonial-card__avatar {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

/* ── CTA banner → navy ──────────────────────────────────────────────── */
.vibe-cta__panel {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 32px 64px -24px rgba(10, 42, 74, 0.45);
}
.cta-btn-primary { color: var(--color-primary); }
.cta-btn-primary:hover { color: var(--color-primary-dark); }

/* ── Inner-page CTA → navy ──────────────────────────────────────────── */
.vibe-inner-cta__btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}
.vibe-inner-cta__btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── Logo-cloud sponsor row ──────────────────────────────────────────── */
.vibe-social-proof { background: var(--color-surface-alt); }
.vibe-logo-cloud__item:hover { border-color: rgba(200, 16, 46, 0.22); }
.vibe-logo-cloud__item::before { background: linear-gradient(135deg, transparent 0%, rgba(200, 16, 46, 0.05) 100%); }

.vibe-logo-cloud__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.vibe-logo-cloud__eyebrow {
  display: block;
  font-size: var(--text-xs, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.vibe-logo-cloud__label {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}
.vibe-logo-cloud__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.vibe-logo-cloud--sponsors .vibe-logo-cloud__track {
  gap: 2rem;
}
.vibe-logo-cloud--sponsors .vibe-logo-cloud__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2rem;
  background: var(--color-surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 8px;
  min-width: 180px;
  max-width: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vibe-logo-cloud--sponsors .vibe-logo-cloud__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.vibe-logo-cloud__img {
  max-width: 180px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.vibe-logo-cloud__link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vibe-logo-cloud__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.vibe-logo-cloud section { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ── Footer — dark navy with brand wordmark ─────────────────────────── */
.vibe-footer {
  background: linear-gradient(180deg, #0a2a4a 0%, #061a2e 100%);
  color: rgba(250, 248, 244, 0.7);
  border-top: none;
}
.vibe-footer__title {
  background: linear-gradient(135deg, #faf8f4, rgba(250,248,244,0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vibe-footer__menu a { color: rgba(250, 248, 244, 0.65); }
.vibe-footer__menu a:hover { color: #faf8f4; }
.vibe-footer__copy { color: rgba(250, 248, 244, 0.5); }

/* ── Pagination — navy colors ───────────────────────────────────────── */
.vibe-pagination .page-numbers:hover,
.vibe-pagination .page-numbers:focus {
  background: rgba(10, 42, 74, 0.07);
  color: var(--color-primary);
}
.vibe-pagination .page-numbers.current { background: var(--color-primary); }

/* ── Post type badge → navy ─────────────────────────────────────────── */
.vibe-post-card__type {
  background: rgba(10, 42, 74, 0.08);
  color: var(--color-primary);
}
.vibe-post-card__title a:hover { color: var(--color-secondary); }
.vibe-read-more:hover { color: var(--color-secondary); }

/* ── 404 / utility — navy gradient ─────────────────────────────────── */
.vibe-utility-hero__code {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
}
.vibe-btn--primary { background: var(--color-primary); }
.vibe-btn--outline { border-color: var(--color-primary); color: var(--color-primary); }

/* ── Post tags → navy ───────────────────────────────────────────────── */
.vibe-post-tags a {
  background: rgba(10, 42, 74, 0.07);
  color: var(--color-primary);
}

/* ── Page hero — inner pages ────────────────────────────────────────── */
.vibe-page-hero {
  background: linear-gradient(180deg, var(--color-surface-alt) 0%, var(--color-surface) 100%);
  border-bottom-color: var(--color-border);
}
.vibe-page-hero__eyebrow { color: var(--color-secondary); }
.vibe-breadcrumb a:hover { color: var(--color-primary); }

/* Header capsule: the menu rail floats in a curved container instead of a full-width bar. */
.vibe-header {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  padding: 12px 0 0;
  pointer-events: none;
}

.vibe-header__inner {
  position: relative;
  width: min(1320px, calc(100% - 48px));
  min-height: 76px;
  padding: 10px 16px 10px 20px;
  border: 1px solid rgba(10, 42, 74, 0.14);
  border-radius: 999px;
  background: rgba(250, 248, 244, 0.92);
  box-shadow: 0 18px 56px rgba(10, 20, 38, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    translate 0.35s ease;
}

.vibe-header.scrolled .vibe-header__inner {
  background: rgba(250, 248, 244, 0.96);
  border-color: rgba(10, 42, 74, 0.18);
  box-shadow: 0 20px 60px rgba(10, 20, 38, 0.18);
}

body.home .vibe-header__inner {
  background: rgba(6, 26, 46, 0.76);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

body.home .vibe-header.scrolled .vibe-header__inner {
  background: rgba(6, 26, 46, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.38);
}

body.home .vibe-header.scrolled {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  .vibe-header {
    padding-top: 10px;
  }

  .vibe-header__inner {
    flex-direction: row;
    justify-content: space-between;
    width: min(100% - 24px, 720px);
    min-height: 66px;
    padding: 8px 12px 8px 14px;
  }

  .vibe-nav {
    display: flex;
    align-items: center;
  }

  .vibe-nav__menu {
    display: none;
  }

  .vibe-nav.is-open {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .vibe-nav.is-open .vibe-nav__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px;
    border: 1px solid rgba(10, 42, 74, 0.12);
    border-radius: 22px;
    background: rgba(250, 248, 244, 0.98);
    box-shadow: 0 24px 50px rgba(10, 20, 38, 0.18);
  }

  .vibe-nav.is-open .vibe-nav__menu li {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(10, 42, 74, 0.08);
  }

  .vibe-nav.is-open .vibe-nav__menu li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 575px) {
  .vibe-header {
    padding-top: 0;
  }

  .vibe-header__inner {
    width: calc(100% - 20px);
  }
}

/* Home2-selected shared chrome: dark floating capsule header and footer. */
.vibe-header {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  padding: 2px 0 0;
  pointer-events: none;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  transition:
    transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 240ms ease;
}

.vibe-header.is-hidden {
  opacity: 0;
  transform: translate3d(0, calc(-100% - 20px), 0);
}

.vibe-header.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.vibe-header__inner {
  width: min(1320px, calc(100% - 96px));
  min-height: 78px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(17, 31, 58, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  transition:
    background-color 280ms ease 40ms,
    border-color 280ms ease 40ms,
    box-shadow 280ms ease 40ms;
}

.vibe-header.scrolled {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

body.home .vibe-header__inner,
body.page-template-template-home2 .vibe-header__inner {
  background: rgba(17, 31, 58, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.vibe-header.scrolled .vibe-header__inner,
body.home .vibe-header.scrolled .vibe-header__inner,
body.page-template-template-home2 .vibe-header.scrolled .vibe-header__inner {
  background: rgba(17, 31, 58, 0.94);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.38);
}

.vibe-brand__logo,
body.home .vibe-brand__logo,
body.page-template-template-home2 .vibe-brand__logo {
  width: auto;
  max-width: 210px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  mix-blend-mode: normal;
}

.vibe-brand__mark,
body.home .vibe-brand__mark,
body.page-template-template-home2 .vibe-brand__mark {
  background: #ed1b2f;
  color: #fff;
  box-shadow: none;
}

.vibe-brand__text,
.vibe-nav__menu a,
body.home .vibe-header .vibe-brand,
body.home .vibe-header .vibe-nav__menu a,
body.page-template-template-home2 .vibe-header .vibe-brand,
body.page-template-template-home2 .vibe-header .vibe-nav__menu a {
  color: #fff;
}

.vibe-nav__menu a {
  border-radius: 999px;
  display: inline-flex;
  font-size: clamp(0.78rem, 0.82vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  position: relative;
  text-transform: uppercase;
  translate: 0 0;
  box-shadow: 0 0 0 0 rgba(237, 27, 47, 0);
  transition:
    translate 220ms ease 40ms,
    background-color 220ms ease 40ms,
    box-shadow 220ms ease 40ms,
    color 220ms ease 40ms;
}

.vibe-nav__menu a:hover,
.vibe-nav__menu a:focus,
body.home .vibe-nav__menu a:hover,
body.page-template-template-home2 .vibe-nav__menu a:hover,
body.page-template-template-home2 .vibe-nav__menu a:focus {
  background: #c8102e;
  box-shadow: 0 0 0 6px rgba(200, 16, 46, 0.28);
  color: #fff;
  translate: 0 -2px;
}

.vibe-nav__menu .current-menu-item > a,
.vibe-nav__menu .current_page_item > a,
.vibe-nav__menu .current-menu-ancestor > a,
.vibe-nav__menu a[aria-current="page"] {
  background: #c8102e;
  box-shadow: 0 0 0 6px rgba(200, 16, 46, 0.28);
  color: #fff;
  opacity: 1;
  translate: 0 -2px;
}

.vibe-header .vibe-nav__menu {
  gap: clamp(0.08rem, 0.22vw, 0.28rem);
}

.vibe-nav__toggle span,
body.home .vibe-nav__toggle span {
  background: #fff;
}

.pika-fg__card-num {
  display: none !important;
}

.vibe-footer {
  background: #081123;
  color: #fff;
  border-top: 0;
}

.vibe-footer__title {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.vibe-footer__copy {
  color: rgba(255, 255, 255, 0.66);
}

.vibe-footer__menu a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 220ms ease 50ms, translate 220ms ease 50ms;
}

.vibe-footer__menu a:hover,
.vibe-footer__menu a:focus {
  color: #fff;
  translate: 0 -1px;
}

.vibe-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 18px;
}

.vibe-footer-social__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 220ms ease 40ms,
    translate 220ms ease 40ms;
}

.vibe-footer-social__link:hover,
.vibe-footer-social__link:focus {
  color: #fff;
  translate: 0 -1px;
}

.vibe-contact-details__icon,
.vibe-footer-social__icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
  -webkit-mask: var(--yvb-social-icon) center / contain no-repeat;
  mask: var(--yvb-social-icon) center / contain no-repeat;
}

.vibe-contact-details__item--facebook,
.vibe-footer-social__link--facebook {
  --yvb-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 8h3V4h-3c-3.3 0-5 2-5 5v2H6v4h3v5h4v-5h3l1-4h-4V9c0-.7.3-1 1-1z'/%3E%3C/svg%3E");
}

.vibe-contact-details__item--instagram,
.vibe-footer-social__link--instagram {
  --yvb-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10c3 0 5 2 5 5v10c0 3-2 5-5 5H7c-3 0-5-2-5-5V7c0-3 2-5 5-5zm0 3c-1.35 0-2 .65-2 2v10c0 1.35.65 2 2 2h10c1.35 0 2-.65 2-2V7c0-1.35-.65-2-2-2H7zm5 3.2A3.8 3.8 0 1 1 12 15.8 3.8 3.8 0 0 1 12 8.2zm0 2.6a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4zM17.6 6.7a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
}

.vibe-contact-details__item--twitter,
.vibe-footer-social__link--twitter {
  --yvb-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M18.2 2h3.2l-7 8 8.2 12h-6.4l-5-7.3L4.8 22H1.6l7.5-8.6L1.3 2h6.6l4.5 6.6L18.2 2zm-1.1 17.9h1.8L6.9 4H5l12.1 15.9z'/%3E%3C/svg%3E");
}

.vibe-contact-details__item--beach,
.vibe-footer-social__link--beach {
  --yvb-social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm6.6 6.3c-2.6.4-4.7 1.5-6.1 3.2a10 10 0 0 0-1.4-6.4 7.1 7.1 0 0 1 7.5 3.2zM5.8 6.2a7 7 0 0 1 2.7-1.5c1.8 2.4 2.3 5.2 1.4 8.2-2.1-1-3.5-3.2-4.1-6.7zm-1.3 3.1c.9 2.7 2.6 4.7 5.1 5.9-1.2 1.1-2.7 1.8-4.5 2.1a7.1 7.1 0 0 1-.6-8zm2.6 10c2.3-.6 4.2-1.8 5.6-3.6 1.8.8 3.8 1 6 .6a7.1 7.1 0 0 1-11.6 3zm12.7-5.6c-2.2.6-4.1.6-5.8-.2 1.2-1.4 3.1-2.4 5.6-2.8.3 1 .4 2 .2 3z'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
  .vibe-header {
    padding-top: 10px;
  }

  .vibe-header__inner {
    flex-direction: row;
    justify-content: space-between;
    width: min(100% - 24px, 720px);
    min-height: 66px;
    padding: 8px 12px 8px 14px;
  }

  .vibe-nav {
    display: flex;
    align-items: center;
  }

  .vibe-nav__menu {
    display: none;
  }

  .vibe-nav.is-open {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .vibe-nav.is-open .vibe-nav__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(8, 17, 35, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  }

  .vibe-nav.is-open .vibe-nav__menu li {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .vibe-nav.is-open .vibe-nav__menu li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 575px) {
  .vibe-header {
    padding-top: 0;
  }

  .vibe-header__inner {
    width: calc(100% - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vibe-header {
    transition: none;
  }
}

/* Shared shell, inner hero, footer CTA, and custom inner-page refinements. */
.vibe-header__inner,
.vibe-footer__inner,
.vibe-shell.container,
.vibe-shell.container-xl,
.vibe-hero__top.container-xl,
.vibe-hero__shell.container-xl {
  width: var(--yvb-site-shell);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.vibe-hero__top.container-xl,
.vibe-hero__shell.container-xl {
  padding-left: 0;
  padding-right: 0;
}

.vibe-main--inner .vibe-page-hero,
body:not(.home) .vibe-page-hero {
  min-height: 0;
  padding: clamp(6.5rem, 10vw, 8rem) 0 clamp(2.25rem, 4vw, 3rem);
}

.vibe-main--inner,
.vibe-main--inner [data-pika-vibe-section],
.vibe-main--inner .vibe-content-area,
.vibe-inner-cta {
  overflow-x: clip;
}

.vibe-main--inner .vibe-hero {
  contain: paint;
  min-height: clamp(430px, 54vh, 580px) !important;
  justify-content: center;
}

.vibe-main--inner .vibe-hero__top {
  top: clamp(5.6rem, 8vw, 6.5rem);
}

.vibe-main--inner .vibe-hero__shell {
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: clamp(5.5rem, 8vw, 6.75rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.vibe-main--inner .vibe-hero__bottom-grid {
  width: 100%;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.vibe-main--inner .hero-headline {
  font-size: clamp(3rem, 6vw, 5rem) !important;
  max-width: 16ch !important;
}

.vibe-main--inner .hero-sub {
  max-width: 50ch;
}

.vibe-main--inner .vibe-hero__stats-strip {
  display: none;
}

.vibe-main--inner #girls-experience.vibe-feature-alt,
.vibe-main--inner #girls-resources.pika-fg,
.vibe-main--inner #girls-locations.pika-fg,
.vibe-main--inner #boys-experience.vibe-feature-alt,
.vibe-main--inner #boys-locations.pika-fg {
  background: #fff !important;
}

.vibe-main--inner #girls-offers.pika-fg,
.vibe-main--inner #boys-offers.pika-fg {
  background: var(--color-surface-alt) !important;
}

.vibe-main--inner #girls-experience .vibe-feature-alt__row,
.vibe-main--inner #boys-experience .vibe-feature-alt__row {
  will-change: opacity, transform, filter;
}

.vibe-main--inner #girls-experience .vibe-feature-alt__rows > :last-child,
.vibe-main--inner #boys-experience .vibe-feature-alt__rows > :last-child {
  border-bottom: 0;
}

.vibe-club-motion-ready #girls-offers .pika-fg__card,
.vibe-club-motion-ready #boys-offers .pika-fg__card,
.vibe-club-motion-ready #girls-locations .pika-fg__card,
.vibe-club-motion-ready #boys-locations .pika-fg__card,
.vibe-club-motion-ready #girls-resources .yvb-girls-resource__panel,
.vibe-club-motion-ready #boys-resources .yvb-girls-resource__panel {
  will-change: opacity, transform, filter;
}

.vibe-main--inner #girls-experience .vibe-feature-alt__media,
.vibe-main--inner #girls-experience .vibe-feature-alt__content > *,
.vibe-main--inner #boys-experience .vibe-feature-alt__media,
.vibe-main--inner #boys-experience .vibe-feature-alt__content > * {
  will-change: opacity, transform;
}

.yvb-girls-resource {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  overflow: hidden;
  background: #fff;
}

.yvb-girls-resource::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 42, 74, 0.14), transparent);
}

.yvb-girls-resource__shell {
  position: relative;
  z-index: 1;
}

.yvb-girls-resource__header {
  max-width: 760px;
  margin: 0 auto clamp(2.25rem, 5vw, 4rem);
  text-align: center;
}

.yvb-girls-resource__title {
  max-width: 17ch;
  margin: 0.5rem auto 0;
  color: #050914;
  font-family: "Barlow Condensed", var(--font-display, "Arial Narrow", sans-serif);
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yvb-girls-resource__intro {
  max-width: 58ch;
  margin: 1rem auto 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.yvb-girls-resource__layout {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.yvb-girls-resource__panel {
  position: relative;
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(10, 20, 38, 0.08);
}

.yvb-girls-resource__panel h3 {
  margin: 0;
  color: #050914;
  font-family: "Barlow Condensed", var(--font-display, "Arial Narrow", sans-serif);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yvb-girls-resource__panel p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.yvb-girls-resource__kicker {
  color: var(--color-secondary) !important;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yvb-girls-resource__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--color-secondary);
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.yvb-girls-resource__link:hover,
.yvb-girls-resource__link:focus {
  gap: 0.75rem;
  color: #9f0d24;
}

.yvb-girls-resource__link--light {
  color: #fff;
}

.yvb-girls-resource__link--light:hover,
.yvb-girls-resource__link--light:focus {
  color: rgba(255, 255, 255, 0.78);
}

.yvb-girls-resource__panel--teams {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: 360px;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #061a2e 0%, #0a2a4a 72%, #101730 100%);
  background-size: 60px 60px, 60px 60px, auto;
}

.yvb-girls-resource__panel--teams::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 52%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.yvb-girls-resource__panel--teams::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -36%;
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.yvb-girls-resource__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 560px;
}

.yvb-girls-resource__panel--teams h3 {
  color: #fff;
  font-size: 3rem;
}

.yvb-girls-resource__panel--teams p:not(.yvb-girls-resource__kicker) {
  color: rgba(250, 248, 244, 0.76);
}

.yvb-girls-resource__visual {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(200, 16, 46, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.yvb-girls-resource__visual::before,
.yvb-girls-resource__visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.yvb-girls-resource__visual::before {
  inset: 1.25rem;
  border-radius: 8px;
}

.yvb-girls-resource__visual::after {
  top: 50%;
  left: 50%;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.yvb-girls-resource__visual-label,
.yvb-girls-resource__visual-sub {
  color: rgba(250, 248, 244, 0.65);
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yvb-girls-resource__visual-main {
  margin: 0.35rem 0;
  color: #fff;
  font-family: "Barlow Condensed", var(--font-display, "Arial Narrow", sans-serif);
  font-size: 4.25rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yvb-girls-resource__meta {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.yvb-girls-resource__meta li,
.yvb-girls-resource__guide-stack span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: rgba(250, 248, 244, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.yvb-girls-resource__split,
.yvb-girls-resource__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.yvb-girls-resource__bottom {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.yvb-girls-resource__panel--coaches,
.yvb-girls-resource__panel--fundraising,
.yvb-girls-resource__panel--alumni {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 300px;
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.yvb-girls-resource__mini-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
  list-style: none;
}

.yvb-girls-resource__mini-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.yvb-girls-resource__mini-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--color-secondary);
}

.yvb-girls-resource__panel--guides {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 300px;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, #c8102e 0%, #a60d25 58%, #061a2e 100%);
}

.yvb-girls-resource__panel--guides h3,
.yvb-girls-resource__panel--guides p,
.yvb-girls-resource__panel--guides .yvb-girls-resource__kicker {
  color: #fff !important;
}

.yvb-girls-resource__panel--guides p:not(.yvb-girls-resource__kicker) {
  color: rgba(255, 255, 255, 0.76) !important;
}

.yvb-girls-resource__guide-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.yvb-girls-resource__guide-stack span {
  background: rgba(255, 255, 255, 0.08);
}

.yvb-girls-resource__panel--fundraising {
  background: var(--color-surface-alt);
}

.yvb-girls-resource__panel--alumni {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  min-height: 300px;
  background: #fff;
}

.yvb-girls-resource__marker {
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.11), transparent 42%),
    #f7f4ee;
}

.yvb-girls-resource__marker span {
  color: var(--color-primary);
  font-family: "Barlow Condensed", var(--font-display, "Arial Narrow", sans-serif);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.yvb-boys-resource .yvb-girls-resource__panel--teams {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #061a2e 0%, #0a2a4a 64%, #141526 100%);
  background-size: 60px 60px, 60px 60px, auto;
}

.yvb-boys-resource__split {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.yvb-boys-resource__panel--fundraising-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 300px;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, #c8102e 0%, #a60d25 52%, #061a2e 100%);
}

.yvb-boys-resource__panel--fundraising-feature h3,
.yvb-boys-resource__panel--fundraising-feature p,
.yvb-boys-resource__panel--fundraising-feature .yvb-girls-resource__kicker {
  color: #fff !important;
}

.yvb-boys-resource__panel--fundraising-feature p:not(.yvb-girls-resource__kicker) {
  color: rgba(255, 255, 255, 0.76) !important;
}

.yvb-boys-resource__alumni {
  min-height: 250px;
}

/* Youth Programs feedback layout */
.vibe-main--inner #fall.vibe-intro,
.vibe-main--inner #winter.vibe-intro,
.vibe-main--inner #spring-beach.vibe-intro {
  position: relative;
  overflow: hidden;
}

.vibe-main--inner #fall.vibe-intro,
.vibe-main--inner #fall-pathways.pika-fg,
.vibe-main--inner #fall-programs.pika-fg {
  --yvb-youth-accent: #c8102e;
  --yvb-youth-accent-soft: rgba(200, 16, 46, 0.13);
  --yvb-youth-band: linear-gradient(180deg, #fff7f8 0%, #ffffff 100%);
}

.vibe-main--inner #winter.vibe-intro,
.vibe-main--inner #winter-league.pika-fg {
  --yvb-youth-accent: #0a2a4a;
  --yvb-youth-accent-soft: rgba(10, 42, 74, 0.16);
  --yvb-youth-band: linear-gradient(180deg, #f2f7fb 0%, #ffffff 100%);
}

.vibe-main--inner #spring-beach.vibe-intro,
.vibe-main--inner #spring-beach-program.pika-fg,
.vibe-main--inner #spring-details.pika-fg {
  --yvb-youth-accent: #2f7f73;
  --yvb-youth-accent-soft: rgba(47, 127, 115, 0.16);
  --yvb-youth-band: linear-gradient(180deg, #f0faf7 0%, #ffffff 100%);
}

.vibe-main--inner #fall.vibe-intro,
.vibe-main--inner #winter.vibe-intro,
.vibe-main--inner #spring-beach.vibe-intro,
.vibe-main--inner #fall-pathways.pika-fg,
.vibe-main--inner #fall-programs.pika-fg,
.vibe-main--inner #winter-league.pika-fg,
.vibe-main--inner #spring-beach-program.pika-fg,
.vibe-main--inner #spring-details.pika-fg {
  background: var(--yvb-youth-band) !important;
  border-top: 5px solid var(--yvb-youth-accent-soft);
}

.vibe-main--inner #fall .vibe-intro__grid,
.vibe-main--inner #winter .vibe-intro__grid,
.vibe-main--inner #spring-beach .vibe-intro__grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 4.8vw, 4.25rem);
}

.vibe-main--inner #winter .intro-image {
  order: 2;
}

.vibe-main--inner #fall .vibe-media-wrapper,
.vibe-main--inner #winter .vibe-media-wrapper,
.vibe-main--inner #spring-beach .vibe-media-wrapper {
  border: 1px solid var(--yvb-youth-accent-soft);
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(10, 42, 74, 0.12);
}

.vibe-main--inner #fall .vibe-intro__img,
.vibe-main--inner #fall .vibe-media-wrapper img,
.vibe-main--inner #winter .vibe-intro__img,
.vibe-main--inner #winter .vibe-media-wrapper img,
.vibe-main--inner #spring-beach .vibe-intro__img,
.vibe-main--inner #spring-beach .vibe-media-wrapper img {
  min-height: clamp(320px, 34vw, 460px);
}

.vibe-main--inner #fall .intro-text h2,
.vibe-main--inner #winter .intro-text h2,
.vibe-main--inner #spring-beach .intro-text h2 {
  margin-bottom: 1rem;
  color: #050914;
  font-family: "Barlow Condensed", var(--font-display, "Arial Narrow", sans-serif);
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vibe-main--inner #fall .vibe-eyebrow,
.vibe-main--inner #winter .vibe-eyebrow,
.vibe-main--inner #spring-beach .vibe-eyebrow,
.vibe-main--inner #fall-pathways .pika-fg__tag,
.vibe-main--inner #fall-programs .pika-fg__tag,
.vibe-main--inner #winter-league .pika-fg__tag,
.vibe-main--inner #spring-beach-program .pika-fg__tag,
.vibe-main--inner #spring-details .pika-fg__tag,
.vibe-main--inner #fall-pathways .pika-fg__card-meta,
.vibe-main--inner #fall-programs .pika-fg__card-meta,
.vibe-main--inner #winter-league .pika-fg__card-meta,
.vibe-main--inner #spring-beach-program .pika-fg__card-meta,
.vibe-main--inner #spring-details .pika-fg__card-meta,
.vibe-main--inner #fall-pathways .pika-fg__card-link,
.vibe-main--inner #fall-programs .pika-fg__card-link,
.vibe-main--inner #winter-league .pika-fg__card-link,
.vibe-main--inner #spring-beach-program .pika-fg__card-link,
.vibe-main--inner #spring-details .pika-fg__card-link {
  color: var(--yvb-youth-accent) !important;
}

.vibe-main--inner #fall .vibe-body-text,
.vibe-main--inner #winter .vibe-body-text,
.vibe-main--inner #spring-beach .vibe-body-text {
  color: var(--color-text);
  font-size: 1rem;
}

.vibe-main--inner #fall .vibe-body-text strong,
.vibe-main--inner #winter .vibe-body-text strong,
.vibe-main--inner #spring-beach .vibe-body-text strong {
  color: inherit;
  font-family: var(--font-body);
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.vibe-main--inner #fall-programs .pika-fg__card,
.vibe-main--inner #fall-pathways .pika-fg__card,
.vibe-main--inner #winter-league .pika-fg__card,
.vibe-main--inner #spring-beach-program .pika-fg__card,
.vibe-main--inner #spring-details .pika-fg__card {
  background: #fff;
  border-color: var(--yvb-youth-accent-soft);
  border-radius: 8px;
  box-shadow: 0 22px 52px -38px rgba(10, 42, 74, 0.4);
}

.vibe-main--inner #fall-programs .pika-fg__card::before,
.vibe-main--inner #fall-pathways .pika-fg__card::before,
.vibe-main--inner #winter-league .pika-fg__card::before,
.vibe-main--inner #spring-beach-program .pika-fg__card::before,
.vibe-main--inner #spring-details .pika-fg__card::before {
  background: var(--yvb-youth-accent);
}

@media (max-width: 991px) {
  .vibe-main--inner #fall .vibe-intro__grid,
  .vibe-main--inner #winter .vibe-intro__grid,
  .vibe-main--inner #spring-beach .vibe-intro__grid {
    grid-template-columns: 1fr;
  }

  .vibe-main--inner #winter .intro-image {
    order: 0;
  }
}

@media (max-width: 640px) {
  .vibe-main--inner #fall .intro-text h2,
  .vibe-main--inner #winter .intro-text h2,
  .vibe-main--inner #spring-beach .intro-text h2 {
    font-size: 2.35rem;
  }

  .vibe-main--inner #fall .vibe-intro__img,
  .vibe-main--inner #fall .vibe-media-wrapper img,
  .vibe-main--inner #winter .vibe-intro__img,
  .vibe-main--inner #winter .vibe-media-wrapper img,
  .vibe-main--inner #spring-beach .vibe-intro__img,
  .vibe-main--inner #spring-beach .vibe-media-wrapper img {
    min-height: 260px;
  }
}

@media (max-width: 991px) {
  .yvb-girls-resource__panel--teams,
  .yvb-girls-resource__split,
  .yvb-girls-resource__bottom {
    grid-template-columns: 1fr;
  }

  .yvb-girls-resource__panel--teams::before,
  .yvb-girls-resource__panel--teams::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .yvb-girls-resource__title {
    font-size: 2.35rem;
  }

  .yvb-girls-resource__panel h3 {
    font-size: 1.75rem;
  }

  .yvb-girls-resource__panel--teams h3,
  .yvb-girls-resource__visual-main {
    font-size: 2.55rem;
  }

  .yvb-girls-resource__panel--teams,
  .yvb-girls-resource__panel--coaches,
  .yvb-girls-resource__panel--fundraising,
  .yvb-girls-resource__panel--alumni,
  .yvb-girls-resource__panel--guides,
  .yvb-boys-resource__panel--fundraising-feature {
    min-height: 0;
    padding: 1.25rem;
  }

  .yvb-girls-resource__visual {
    min-height: 190px;
  }

  .yvb-girls-resource__panel--alumni {
    grid-template-columns: 1fr;
  }
}

.vibe-main--custom-inner .vibe-content-card {
  max-width: none;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(10, 42, 74, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(10, 20, 38, 0.08);
}

.vibe-page-content--contact-top {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  background:
    linear-gradient(180deg, var(--color-surface, #faf8f4) 0%, var(--color-surface-alt, #f4f1ea) 100%);
}

.vibe-page-content--contact-top .vibe-content-card {
  max-width: none;
  padding: 0;
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(10, 20, 38, 0.12);
}

.vibe-contact-form-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.96fr) minmax(0, 1.04fr);
  min-height: 560px;
}

.pika-custom-html-block:has(.vibe-contact-routing-section) {
  background: var(--color-surface, #faf8f4);
}

.vibe-contact-routing-section {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  color: var(--color-text, #081123);
  background: var(--color-surface, #faf8f4);
}

.vibe-contact-routing-section__head {
  max-width: 760px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.vibe-contact-routing-section__head h2 {
  margin: 0;
  color: var(--color-text, #081123);
  font-family: "Barlow Condensed", var(--font-display, "Arial Narrow", sans-serif);
  font-size: clamp(2.75rem, 5.6vw, 4.75rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.vibe-contact-form-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(2rem, 4vw, 3.25rem);
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(237, 27, 47, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(6, 26, 46, 0.97), rgba(10, 42, 74, 0.92));
}

.vibe-contact-form-copy h2 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", var(--font-display, "Arial Narrow", sans-serif);
  font-size: clamp(2.8rem, 6vw, 4.75rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vibe-contact-form-copy p:not(.vibe-contact-kicker) {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.7;
}

.vibe-contact-routing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.vibe-contact-routing__label {
  margin: 0 0 4px;
  color: #c8102e;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vibe-contact-details .vibe-contact-details__label {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vibe-contact-routing__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.25rem, 2.2vw, 1.65rem);
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(10, 20, 38, 0.08);
}

.vibe-contact-routing__card--boys {
  border-color: rgba(200, 16, 46, 0.28);
  background-color: #fff;
  background-image: linear-gradient(180deg, #fff, rgba(250, 248, 244, 0.92));
}

.vibe-contact-routing h3 {
  margin: 0 0 8px;
  color: var(--color-primary, #0a2a4a);
  font-family: "Barlow Condensed", var(--font-display, "Arial Narrow", sans-serif);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.vibe-contact-routing__card p,
.vibe-contact-routing__card li {
  max-width: none;
  color: rgba(8, 17, 35, 0.74);
  font-size: 0.94rem;
  line-height: 1.48;
}

.vibe-contact-routing ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.vibe-contact-routing li {
  position: relative;
  padding-left: 16px;
}

.vibe-contact-routing li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ed1b2f;
  content: "";
  transform: translateY(-50%);
}

.vibe-contact-details {
  display: grid;
  gap: 8px;
  margin-top: clamp(1.25rem, 3vw, 2.75rem);
  padding-top: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.vibe-contact-details p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.55;
}

.vibe-contact-details strong {
  color: #fff;
}

.vibe-contact-details ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.vibe-contact-details li {
  padding-left: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.45;
}

.vibe-contact-details li::before {
  display: none;
}

.vibe-contact-details a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition:
    color 220ms ease 40ms,
    translate 220ms ease 40ms;
}

.vibe-contact-details a:hover,
.vibe-contact-details a:focus {
  color: #fff;
  translate: 4px 0;
}

.vibe-contact-kicker {
  margin: 0;
  color: #ed1b2f;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vibe-contact-form-panel {
  padding: clamp(2rem, 4vw, 3.25rem);
}

.vibe-contact-form-panel .gform_wrapper {
  margin: 0;
}

.vibe-contact-form-panel .gform-theme--framework {
  --gf-ctrl-border-radius: 4px;
  --gf-ctrl-btn-border-radius-primary: 4px;
  --gf-ctrl-btn-bg-color-primary: #c8102e;
  --gf-ctrl-btn-bg-color-hover-primary: #0a2a4a;
  --gf-ctrl-btn-color-primary: #fff;
  --gf-ctrl-label-color-primary: #081123;
}

.vibe-contact-form-panel .gform_required_legend {
  display: none;
}

.vibe-inner-cta {
  padding: 70px 0;
  background: var(--color-surface, #faf8f4);
  border-top: 1px solid rgba(10, 42, 74, 0.08);
  text-align: left;
}

.vibe-inner-cta > .vibe-shell.container-xl {
  width: var(--yvb-site-shell, min(1320px, calc(100% - 96px)));
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.vibe-inner-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  max-width: none;
  margin: 0 auto;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--color-primary, #0a2a4a);
  box-shadow: 0 24px 60px rgba(6, 26, 46, 0.18);
  text-align: left;
}

.vibe-inner-cta__copy {
  max-width: 760px;
  text-align: start;
}

.vibe-inner-cta__kicker {
  margin: 0 0 14px;
  color: var(--color-secondary, #c8102e);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.vibe-inner-cta__heading {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", var(--font-display, "Arial Narrow", sans-serif);
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vibe-inner-cta__body {
  max-width: 64ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.vibe-inner-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}

.vibe-inner-cta__btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1) 40ms,
    background-color 240ms ease 40ms,
    border-color 240ms ease 40ms,
    color 240ms ease 40ms;
}

.vibe-inner-cta__btn:hover,
.vibe-inner-cta__btn:focus {
  transform: translateY(-2px);
}

.vibe-inner-cta__btn--light {
  min-width: 200px;
  background: #fff;
  color: var(--color-primary, #0a2a4a);
}

.vibe-inner-cta__btn--outline {
  min-width: 146px;
  border-color: var(--color-secondary, #c8102e);
  background: var(--color-secondary, #c8102e);
  color: #fff;
  box-shadow: 0 14px 28px rgba(200, 16, 46, 0.24);
}

.vibe-inner-cta__btn--outline:hover,
.vibe-inner-cta__btn--outline:focus {
  border-color: #fff;
  background: #fff;
  color: var(--color-primary, #0a2a4a);
}

.vibe-footer__credit a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 220ms ease 40ms;
}

.vibe-footer__credit a:hover,
.vibe-footer__credit a:focus {
  color: #fff;
}

/* Blog listing/detail polish */
.vibe-post-listing {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--color-surface, #faf8f4);
}

.vibe-post-list {
  align-items: stretch;
}

.vibe-post-card {
  position: relative;
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 70px -46px rgba(8, 17, 35, 0.45);
}

.vibe-post-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, #c8102e, #0a2a4a);
}

.vibe-post-card:hover,
.vibe-post-card:focus-within {
  border-color: rgba(200, 16, 46, 0.24);
  box-shadow: 0 34px 80px -44px rgba(8, 17, 35, 0.55);
}

.vibe-post-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(10, 42, 74, 0.92), rgba(200, 16, 46, 0.72)),
    var(--color-primary, #0a2a4a);
}

.vibe-post-card__img {
  height: 100%;
  min-height: 0;
}

.vibe-post-card__body {
  padding: clamp(1.35rem, 2vw, 1.8rem);
  gap: 0.85rem;
}

.vibe-post-card__meta,
.vibe-post-hero__meta {
  color: #c8102e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.vibe-post-card__meta a,
.vibe-post-hero__meta a {
  color: inherit;
  text-decoration: none;
}

.vibe-post-card__title {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.vibe-post-card__excerpt {
  color: #5d6678;
  line-height: 1.65;
}

.vibe-read-more {
  margin-top: auto;
  color: #c8102e;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 220ms ease 40ms,
    translate 220ms ease 40ms;
}

.vibe-read-more:hover,
.vibe-read-more:focus {
  color: #0a2a4a;
  translate: 4px 0;
}

.vibe-post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.8rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.vibe-post-featured {
  padding: clamp(2rem, 4vw, 3.5rem) 0 0;
  background: var(--color-surface, #faf8f4);
}

.vibe-post-featured__img {
  border-radius: 8px;
  box-shadow: 0 32px 80px -48px rgba(8, 17, 35, 0.6);
}

.vibe-post-body {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: var(--color-surface, #faf8f4);
}

.vibe-post-body .vibe-prose,
.vibe-post-footer {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.vibe-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 42, 74, 0.12);
}

.vibe-post-footer .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vibe-post-footer .nav-previous,
.vibe-post-footer .nav-next {
  display: flex;
}

.vibe-post-footer .nav-next {
  justify-content: flex-end;
  text-align: right;
}

.vibe-post-footer .nav-links a,
.vibe-post-tags a {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  color: #0a2a4a;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.vibe-post-footer .nav-links a:hover,
.vibe-post-footer .nav-links a:focus,
.vibe-post-tags a:hover,
.vibe-post-tags a:focus {
  color: #c8102e;
}

.yvb-team-guides {
  background: var(--color-surface);
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.yvb-team-guides__list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.yvb-team-guides__row {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
}

.yvb-team-guides__row h3 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.yvb-team-guides__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.yvb-team-guides__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  min-width: 8.5rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(200, 16, 46, 0.28);
  border-radius: 8px;
  background: rgba(200, 16, 46, 0.06);
  color: var(--color-primary);
  font-weight: 900;
  text-transform: uppercase;
}

.yvb-team-guides__links a:hover,
.yvb-team-guides__links a:focus {
  border-color: rgba(200, 16, 46, 0.42);
  background: rgba(200, 16, 46, 0.11);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.yvb-team-directory {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: var(--color-surface, #faf8f4);
}

.yvb-team-directory__shell {
  max-width: 1180px;
}

.yvb-team-directory__header {
  max-width: 760px;
  margin: 0 auto clamp(2.4rem, 5vw, 3.6rem);
  text-align: center;
}

.yvb-team-directory__header h2 {
  margin: 0;
  color: var(--color-heading, #0b0c10);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.yvb-team-directory__header p {
  margin: 0.9rem auto 0;
  color: var(--color-text-muted, #667085);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.7;
}

.yvb-team-directory__list {
  display: grid;
  gap: 1rem;
}

.yvb-team-directory__team {
  overflow: hidden;
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 55px -34px rgba(10, 42, 74, 0.32);
}

.yvb-team-directory__team[open] {
  border-color: rgba(200, 16, 46, 0.2);
}

.yvb-team-directory__summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.2fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.25rem;
  padding: 1.15rem clamp(1.1rem, 2vw, 1.5rem);
  cursor: pointer;
  list-style: none;
}

.yvb-team-directory__summary::-webkit-details-marker {
  display: none;
}

.yvb-team-directory__summary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary, #c8102e), var(--color-primary, #0a2a4a));
}

.yvb-team-directory__team-kicker,
.yvb-team-directory__summary-action,
.yvb-team-directory__coach-role {
  color: var(--color-secondary, #c8102e);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.yvb-team-directory__team-name {
  color: var(--color-primary, #0a2a4a);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.yvb-team-directory__summary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(10, 42, 74, 0.14);
  border-radius: 8px;
  color: var(--color-primary, #0a2a4a);
  letter-spacing: 0.08em;
}

.yvb-team-directory__summary-action::after {
  content: "+";
  margin-left: 0.55rem;
  color: var(--color-secondary, #c8102e);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
}

.yvb-team-directory__team[open] .yvb-team-directory__summary-action::after {
  content: "-";
}

.yvb-team-directory__body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
  padding: 0 clamp(1.1rem, 2vw, 1.5rem) clamp(1.1rem, 2vw, 1.5rem);
}

.yvb-team-directory__side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.yvb-team-directory__panel {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(10, 42, 74, 0.1);
  border-radius: 8px;
  background: var(--color-surface, #faf8f4);
}

.yvb-team-directory__panel--roster {
  background: #fff;
}

.yvb-team-directory__panel-head {
  margin-bottom: 1rem;
}

.yvb-team-directory__panel-head .vibe-eyebrow {
  margin-bottom: 0.4rem;
}

.yvb-team-directory__panel-head h3 {
  margin: 0;
  color: var(--color-primary, #0a2a4a);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.yvb-team-directory__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(10, 42, 74, 0.1);
  border-radius: 8px;
  background: #fff;
}

.yvb-team-directory__table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--color-text, #1f2937);
  font-size: 0.94rem;
}

.yvb-team-directory__table--schedule {
  min-width: 460px;
}

.yvb-team-directory__table th,
.yvb-team-directory__table td {
  min-height: 2.65rem;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(10, 42, 74, 0.08);
  text-align: left;
  vertical-align: top;
}

.yvb-team-directory__table th {
  color: var(--color-primary, #0a2a4a);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.yvb-team-directory__table td {
  color: var(--color-text-muted, #667085);
}

.yvb-team-directory__table tbody tr:last-child td {
  border-bottom: 0;
}

.yvb-team-directory__coach-list {
  display: grid;
  gap: 0.8rem;
}

.yvb-team-directory__coach {
  min-height: 5.8rem;
  padding: 0.9rem;
  border: 1px solid rgba(10, 42, 74, 0.1);
  border-radius: 8px;
  background: #fff;
}

.yvb-team-directory__coach h4,
body.vibe-site .vibe-main--inner .yvb-team-directory__coach h4 {
  margin: 0.25rem 0 0;
  color: var(--color-primary, #0a2a4a);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.yvb-team-directory__coach-email {
  min-height: 1.5rem;
  margin: 0.35rem 0 0;
  color: var(--color-text-muted, #667085);
  overflow-wrap: anywhere;
}

@media (max-width: 991px) {
  .yvb-team-directory__body,
  .yvb-team-directory__summary {
    grid-template-columns: 1fr;
  }

  .yvb-team-directory__summary-action {
    justify-self: start;
  }
}

@media (max-width: 575px) {
  .yvb-team-directory__team {
    border-radius: 8px;
  }

  .yvb-team-directory__summary {
    min-height: 0;
    padding: 1rem;
  }

  .yvb-team-directory__body {
    padding: 0 1rem 1rem;
  }

  .yvb-team-directory__panel {
    padding: 1rem;
  }
}

/* Tryouts feedback layout */
.vibe-main--inner:has(#tryout-intro) {
  font-family: var(--font-body);
}

.vibe-main--inner:has(#tryout-intro) .hero-headline,
.vibe-main--inner:has(#tryout-intro) .vibe-hero__stat-val,
.vibe-main--inner:has(#tryout-intro) .vibe-section-heading,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-save__copy h2,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-schedule__program-head h3,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-schedule__group-heading h4,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-schedule__card h5 {
  font-family: var(--font-display) !important;
}

.vibe-main--inner:has(#tryout-intro) .hero-sub,
.vibe-main--inner:has(#tryout-intro) .hero-cta,
.vibe-main--inner:has(#tryout-intro) .vibe-body-text,
.vibe-main--inner:has(#tryout-intro) .intro-text h2,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-save__eyebrow,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-schedule__program-eyebrow,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-schedule__group-heading span,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-schedule__meta,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-schedule__location,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-schedule__desc,
.vibe-main--inner:has(#tryout-intro) .yvb-tryout-registration__tab {
  font-family: var(--font-body);
}

.vibe-main--inner:has(#tryout-intro) .vibe-hero__top-left,
.vibe-main--inner:has(#tryout-intro) .vibe-hero__top-right,
.vibe-main--inner:has(#tryout-intro) .hero-badge,
.vibe-main--inner:has(#tryout-intro) .vibe-hero__stat-lbl {
  font-family: var(--font-mono);
}

.vibe-main--inner #tryout-intro.vibe-intro {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(3rem, 5.8vw, 5.25rem);
  background:
    linear-gradient(90deg, rgba(10, 42, 74, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 42, 74, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
  background-size: 92px 92px, 92px 92px, auto;
}

.vibe-main--inner #tryout-intro .vibe-intro__grid {
  position: relative;
  display: block;
  width: min(100%, 860px);
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  overflow: visible;
  text-align: center;
  color: var(--color-text);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vibe-main--inner #tryout-intro .vibe-intro__grid::before {
  content: none;
}

.vibe-main--inner #tryout-intro .vibe-intro__grid::after {
  content: none;
}

.vibe-main--inner #tryout-intro .intro-image {
  display: none;
}

.vibe-main--inner #tryout-intro .intro-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.vibe-main--inner #tryout-intro .intro-text h2 {
  display: none;
}

.vibe-main--inner #tryout-intro .vibe-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: auto;
  margin: 0;
  padding: 0;
  color: var(--color-secondary);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.vibe-main--inner #tryout-intro .vibe-eyebrow::before,
.vibe-main--inner #tryout-intro .vibe-eyebrow::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  background: currentColor;
}

.vibe-main--inner #tryout-intro .vibe-body-text {
  max-width: 780px;
  margin: 0;
  color: #243447;
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  line-height: 1.72;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.vibe-main--inner #tryout-intro .vibe-body-text p {
  margin: 0;
}

.vibe-main--inner #tryout-intro .vibe-body-text a {
  color: var(--color-secondary);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(200, 16, 46, 0.42);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.18em;
}

@media (max-width: 760px) {
  .vibe-main--inner #tryout-intro .intro-text {
    gap: 0.85rem;
    text-align: center;
  }

  .vibe-main--inner #tryout-intro .vibe-eyebrow {
    justify-self: auto;
  }

  .vibe-main--inner #tryout-intro .vibe-eyebrow::before,
  .vibe-main--inner #tryout-intro .vibe-eyebrow::after {
    width: 1.6rem;
  }
}

.yvb-tryout-save {
  padding: clamp(3.5rem, 7vw, 5.75rem) 0;
  background: var(--color-surface-alt);
}

.yvb-tryout-save__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr) auto;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  background: rgba(10, 42, 74, 0.94);
  color: #fff;
  box-shadow: 0 32px 72px rgba(8, 17, 35, 0.24);
  overflow: hidden;
}

.yvb-tryout-schedule__program-eyebrow,
.yvb-tryout-schedule__group-heading span {
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.yvb-tryout-save__eyebrow {
  margin: 0 0 0.45rem;
}

.yvb-tryout-save__copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.6vw, 3.35rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.yvb-tryout-save__copy p:not(.yvb-tryout-save__eyebrow) {
  margin: 0.85rem 0 0;
  color: rgba(250, 248, 244, 0.78);
  font-size: 1rem;
  font-weight: 400;
}

.yvb-tryout-save__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.yvb-tryout-save__stat {
  min-height: 104px;
  padding: 1rem;
  border: 1px solid rgba(250, 248, 244, 0.13);
  border-radius: 8px;
  background: rgba(250, 248, 244, 0.08);
}

.yvb-tryout-save__stat span {
  display: block;
  color: rgba(250, 248, 244, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yvb-tryout-save__stat strong {
  display: block;
  margin-top: 0.45rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  line-height: 0.95;
}

.yvb-tryout-save__actions,
.yvb-tryout-registration__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.yvb-tryout-save__actions {
  justify-content: flex-end;
}

.yvb-tryout-save__btn,
.yvb-tryout-registration__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 260ms cubic-bezier(.22,.61,.36,1),
    border-color 260ms cubic-bezier(.22,.61,.36,1),
    box-shadow 260ms cubic-bezier(.22,.61,.36,1),
    color 260ms cubic-bezier(.22,.61,.36,1),
    transform 260ms cubic-bezier(.22,.61,.36,1);
}

.yvb-tryout-save__btn {
  min-width: 142px;
  padding: 0.85rem 1.15rem;
}

.yvb-tryout-save__btn--primary {
  border: 2px solid #c8102e;
  background: #c8102e;
  color: #fff;
  box-shadow: 0 16px 32px rgba(200, 16, 46, 0.28);
}

.yvb-tryout-save__btn--outline {
  border: 2px solid rgba(250, 248, 244, 0.28);
  color: #fff;
}

.yvb-tryout-save__btn:hover,
.yvb-tryout-save__btn:focus,
.yvb-tryout-registration__tab:hover,
.yvb-tryout-registration__tab:focus {
  transform: translateY(-2px);
}

.yvb-tryout-schedule {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #fff;
}

.yvb-tryout-schedule__header,
.yvb-tryout-registration__copy {
  max-width: 760px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}

.yvb-tryout-schedule__header h2,
.yvb-tryout-registration__copy h2 {
  margin: 0.5rem 0 0.75rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.yvb-tryout-schedule__header p,
.yvb-tryout-registration__body {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
}

.yvb-tryout-schedule__program {
  position: relative;
  isolation: isolate;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(10, 42, 74, 0.11);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 20px 48px rgba(10, 42, 74, 0.07);
  overflow: hidden;
}

.yvb-tryout-schedule__program::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 7px;
  background: rgba(255, 255, 255, 0.36);
  pointer-events: none;
}

.yvb-tryout-schedule__program--boys {
  border-color: rgba(10, 42, 74, 0.28);
  background: rgba(10, 42, 74, 0.94);
  color: #fff;
  box-shadow: 0 24px 58px rgba(10, 42, 74, 0.22);
}

.yvb-tryout-schedule__program--girls {
  border-color: rgba(200, 16, 46, 0.28);
  background: rgba(200, 16, 46, 0.94);
  color: #fff;
  box-shadow: 0 24px 58px rgba(200, 16, 46, 0.22);
}

.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__program-eyebrow,
.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__group-heading span,
.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__meta,
.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__link,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__program-eyebrow,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__group-heading span,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__meta,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__link {
  color: rgba(255, 255, 255, 0.96);
}

.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__program-head h3,
.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__group-heading h4,
.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__card h5,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__program-head h3,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__group-heading h4,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__card h5 {
  color: #fff;
}

.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__location,
.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__desc,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__location,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__desc {
  color: rgba(255, 255, 255, 0.92);
}

.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__program-head {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__program-head {
  border-bottom-color: rgba(255, 255, 255, 0.24);
}

.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__card,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(3, 8, 20, 0.18);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__card:hover,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__card:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(3, 8, 20, 0.24);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.yvb-tryout-schedule__program + .yvb-tryout-schedule__program {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.yvb-tryout-schedule__program-head {
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(10, 42, 74, 0.11);
}

.yvb-tryout-schedule__program-eyebrow {
  color: var(--color-secondary);
}

.yvb-tryout-schedule__program-head h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.25vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.yvb-tryout-schedule__location {
  max-width: 28ch;
  margin: 0;
  color: var(--color-text-muted);
  font-weight: 400;
  text-align: right;
}

.yvb-tryout-schedule__groups {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.yvb-tryout-schedule__group {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

.yvb-tryout-schedule__group-heading {
  position: sticky;
  top: 110px;
  padding-top: 0.15rem;
}

.yvb-tryout-schedule__group-heading span {
  display: block;
  color: var(--color-secondary);
}

.yvb-tryout-schedule__group-heading h4 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.yvb-tryout-schedule__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.yvb-tryout-schedule__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(10, 42, 74, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 42, 74, 0.06);
  transition:
    border-color 260ms cubic-bezier(.22,.61,.36,1),
    box-shadow 260ms cubic-bezier(.22,.61,.36,1),
    transform 260ms cubic-bezier(.22,.61,.36,1);
}

.yvb-tryout-schedule__card:hover {
  border-color: rgba(200, 16, 46, 0.26);
  box-shadow: 0 20px 44px rgba(10, 42, 74, 0.11);
  transform: translateY(-3px);
}

.yvb-tryout-schedule__meta {
  margin: 0 0 0.55rem;
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yvb-tryout-schedule__card h5 {
  margin: 0 0 0.55rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.yvb-tryout-schedule__desc {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  white-space: pre-line;
}

.yvb-tryout-schedule__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--color-secondary);
  font-weight: 900;
  text-transform: uppercase;
}

.yvb-tryout-registration {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    linear-gradient(180deg, var(--color-surface-alt), var(--color-surface));
}

.yvb-tryout-registration__body p {
  margin: 0;
}

.yvb-tryout-registration__body p + p {
  margin-top: 0.9rem;
}

.yvb-tryout-registration__groups {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.yvb-tryout-registration__group {
  border: 1px solid rgba(10, 42, 74, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 248, 244, 0.96));
  box-shadow: 0 22px 56px rgba(10, 42, 74, 0.08);
  padding: clamp(1.1rem, 3vw, 1.55rem);
}

.yvb-tryout-registration__group-head {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 1rem;
  text-align: center;
}

.yvb-tryout-registration__group-head span {
  color: var(--color-secondary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yvb-tryout-registration__group-head h3 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yvb-tryout-registration__group-head p {
  max-width: 58ch;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.yvb-tryout-registration__tabs {
  max-width: 1080px;
  margin: 0 auto;
  justify-content: center;
}

.yvb-tryout-registration__tab {
  flex: 1 1 220px;
  flex-direction: column;
  gap: 0.32rem;
  min-height: 4.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(10, 42, 74, 0.13);
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 14px 34px rgba(10, 42, 74, 0.06);
  text-align: center;
}

.yvb-tryout-registration__tab span {
  display: block;
  line-height: 1.08;
}

.yvb-tryout-registration__tab small {
  display: block;
  margin-top: 0;
  color: var(--color-text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.yvb-tryout-registration__tab:hover,
.yvb-tryout-registration__tab:focus {
  border-color: rgba(200, 16, 46, 0.34);
  color: var(--color-secondary);
  box-shadow: 0 20px 44px rgba(10, 42, 74, 0.1);
}

.yvb-tryout-registration__tab--disabled {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(10, 42, 74, 0.72);
  cursor: default;
}

.yvb-tryout-registration__tab--disabled:hover,
.yvb-tryout-registration__tab--disabled:focus {
  border-color: rgba(10, 42, 74, 0.13);
  color: rgba(10, 42, 74, 0.72);
  box-shadow: 0 14px 34px rgba(10, 42, 74, 0.06);
  transform: none;
}

#girls-resource-teams,
#girls-resource-coaches,
#girls-resource-team-guides,
#girls-resource-fundraising,
#girls-resource-alumni,
#boys-resource-teams,
#boys-resource-coaches,
#boys-resource-fundraising,
#boys-resource-alumni {
  scroll-margin-top: 120px;
}

.vibe-tryouts-motion-ready .yvb-tryout-save__stat,
.vibe-tryouts-motion-ready .yvb-tryout-schedule__card,
.vibe-tryouts-motion-ready .yvb-tryout-registration__tab {
  will-change: opacity, transform, filter;
}

@media (max-width: 991px) {
  :root {
    --yvb-site-shell: min(100% - 24px, 720px);
  }

  .vibe-inner-cta__inner {
    grid-template-columns: 1fr;
    padding: 34px;
    text-align: center;
  }

  .vibe-inner-cta__copy {
    margin: 0 auto;
  }

  .vibe-inner-cta__actions {
    justify-content: center;
  }

  .vibe-main--inner .vibe-hero {
    min-height: clamp(440px, 62vh, 620px) !important;
  }

  .vibe-main--inner .vibe-hero__shell {
    padding-top: clamp(4.5rem, 15vw, 6rem);
    padding-bottom: clamp(2.5rem, 8vw, 3.5rem);
  }

  .vibe-contact-form-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .vibe-contact-routing {
    grid-template-columns: 1fr;
  }

  .vibe-contact-form-copy h2 {
    max-width: 14ch;
  }

  .vibe-post-footer .nav-links {
    grid-template-columns: 1fr;
  }

  .vibe-post-footer .nav-next {
    justify-content: flex-start;
    text-align: left;
  }

  .yvb-tryout-save__shell {
    grid-template-columns: 1fr;
  }

  .yvb-tryout-save__actions {
    justify-content: flex-start;
  }

  .yvb-tryout-schedule__program-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .yvb-tryout-schedule__location {
    max-width: none;
    text-align: left;
  }

  .yvb-tryout-schedule__group {
    grid-template-columns: 1fr;
  }

  .yvb-tryout-schedule__group-heading {
    position: static;
  }

}

@media (max-width: 575px) {
  :root {
    --yvb-site-shell: calc(100% - 20px);
  }

  .vibe-inner-cta {
    padding: 52px 0;
  }

  .vibe-inner-cta__inner {
    padding: 26px 22px;
  }

  .vibe-inner-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vibe-inner-cta__btn {
    width: 100%;
  }

  .vibe-main--inner .vibe-hero__actions {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .vibe-main--inner .hero-cta {
    width: 100%;
    padding-inline: 1rem;
  }

  .vibe-main--inner .hero-headline {
    max-width: 9.5ch !important;
    font-size: clamp(2.3rem, 12vw, 3rem) !important;
    line-height: 0.98;
  }

  .vibe-main--inner:has(.vibe-contact-form-grid) .hero-headline {
    max-width: 12ch !important;
    font-size: 2.55rem !important;
  }

  .vibe-main--inner .vibe-hero__bottom-grid {
    box-sizing: border-box;
    grid-template-columns: 1fr !important;
    padding-inline: 1rem;
  }

  .vibe-main--inner .vibe-hero__main,
  .vibe-main--inner .vibe-hero__side,
  .vibe-main--inner .hero-sub {
    min-width: 0;
    max-width: 100%;
  }

  .yvb-team-guides {
    padding: 4rem 0;
  }

  .yvb-team-guides__row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .yvb-team-guides__links a {
    flex: 1 1 8rem;
  }

  .vibe-main--inner #tryout-intro .intro-text h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.08;
    max-width: 18ch;
    margin-inline: auto;
    text-wrap: normal;
  }

  .yvb-tryout-save__shell,
  .yvb-tryout-schedule__program {
    padding: 1.1rem;
  }

  .yvb-tryout-save__stats,
  .yvb-tryout-schedule__cards {
    grid-template-columns: 1fr;
  }

  .yvb-tryout-save__btn,
  .yvb-tryout-registration__tab {
    width: 100%;
  }

  .yvb-tryout-registration__tabs {
    gap: 0.9rem;
  }

  .yvb-tryout-registration__tab {
    min-height: 5.25rem;
    padding: 1rem 1.15rem;
    font-size: 0.98rem;
    letter-spacing: 0.05em;
  }

  .yvb-tryout-registration__tab small {
    font-size: 0.8rem;
  }

}

/* Tryouts typography parity with Girls Club. Keep this after responsive overrides. */
.vibe-main--inner #tryout-intro .intro-text h2 {
  color: var(--color-text) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2.8rem, 5.2vw, 4.75rem) !important;
  font-weight: 900 !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.vibe-main--inner #tryout-intro .vibe-body-text {
  color: #243447 !important;
}

.vibe-main--inner #tryout-intro .vibe-body-text a {
  color: var(--color-secondary) !important;
}

.yvb-tryout-schedule__header h2,
.yvb-tryout-registration__copy h2 {
  color: var(--color-text) !important;
}

.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__program-head h3,
.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__group-heading h4,
.yvb-tryout-schedule__program--boys .yvb-tryout-schedule__card h5,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__program-head h3,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__group-heading h4,
.yvb-tryout-schedule__program--girls .yvb-tryout-schedule__card h5 {
  color: #fff !important;
}

@media (max-width: 575px) {
  .vibe-main--inner #tryout-intro .intro-text h2 {
    max-width: 18ch;
    margin-inline: auto;
    font-size: clamp(2.2rem, 10vw, 3.05rem) !important;
    line-height: 1 !important;
  }
}

/* News page newsroom layout */
.pika-fg--anchor-all-news.pika-fg--newsroom {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(10, 42, 74, 0.035) 0 1px, transparent 1px 88px),
    linear-gradient(180deg, #f7f4ef 0%, #ffffff 48%, #eef3f8 100%);
  border-top: 1px solid rgba(10, 42, 74, 0.08);
  border-bottom: 1px solid rgba(10, 42, 74, 0.08);
}

.pika-fg--anchor-all-news.pika-fg--newsroom::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--color-secondary, #c8102e), #f2c14e, var(--color-primary, #0a2a4a));
}

.pika-fg--newsroom .pika-fg__wrapper {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.pika-fg--newsroom .pika-fg__header {
  position: sticky;
  top: 112px;
  max-width: none;
  margin: 0;
  padding: 2rem;
  text-align: left;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%),
    #071f38;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 70px -42px rgba(7, 31, 56, 0.95);
}

.pika-fg--newsroom .pika-fg__header::after {
  content: "3 story lanes";
  display: inline-flex;
  margin-top: 1.4rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pika-fg--newsroom .pika-fg__tag {
  color: #ffffff;
  background: var(--color-secondary, #c8102e);
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
}

.pika-fg--newsroom .pika-fg__heading {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 2.6rem;
}

.pika-fg--newsroom .pika-fg__subheading {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.pika-fg--newsroom .pika-fg__cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.pika-fg--newsroom .pika-fg__card {
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(10, 42, 74, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 55px -34px rgba(10, 42, 74, 0.65);
}

.pika-fg--newsroom .pika-fg__card::before {
  display: none;
}

.pika-fg--newsroom .pika-fg__card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 16, 46, 0.24);
  box-shadow: 0 30px 70px -38px rgba(10, 42, 74, 0.85);
}

.pika-fg--newsroom .pika-fg__card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #071f38;
}

.pika-fg--newsroom .pika-fg__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pika-fg--newsroom .pika-fg__card-num {
  display: none;
}

.pika-fg--newsroom .pika-fg__card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.3rem;
}

.pika-fg--newsroom .pika-fg__card-meta {
  margin: 0 0 0.65rem;
  color: var(--color-secondary, #c8102e);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pika-fg--newsroom .pika-fg__card-title {
  margin: 0 0 0.65rem;
  color: #071f38;
  font-size: 1.25rem;
  line-height: 1.15;
}

.pika-fg--newsroom .pika-fg__card-text {
  color: #4f5d6d;
  font-size: 0.96rem;
}

.pika-fg--newsroom .pika-fg__card-link {
  align-self: flex-start;
  margin-top: 1.1rem;
  color: #071f38;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.pika-fg--newsroom .pika-fg__card-link:hover {
  color: var(--color-secondary, #c8102e);
}

.pika-fg--newsroom .pika-fg__card:first-child {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.pika-fg--newsroom .pika-fg__card:first-child .pika-fg__card-media {
  min-height: 340px;
  aspect-ratio: auto;
}

.pika-fg--newsroom .pika-fg__card:first-child .pika-fg__card-content {
  justify-content: center;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(200, 16, 46, 0.05), transparent 45%),
    #ffffff;
}

.pika-fg--newsroom .pika-fg__card:first-child .pika-fg__card-title {
  font-size: 1.8rem;
}

@media (max-width: 1100px) {
  .pika-fg--newsroom .pika-fg__wrapper {
    grid-template-columns: 1fr;
  }

  .pika-fg--newsroom .pika-fg__header {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .pika-fg--newsroom .pika-fg__header {
    padding: 1.5rem;
  }

  .pika-fg--newsroom .pika-fg__heading {
    font-size: 2.1rem;
  }

  .pika-fg--newsroom .pika-fg__cards,
  .pika-fg--newsroom .pika-fg__card:first-child {
    grid-template-columns: 1fr;
  }

  .pika-fg--newsroom .pika-fg__card:first-child .pika-fg__card-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .pika-fg--newsroom .pika-fg__card:first-child .pika-fg__card-content {
    padding: 1.35rem;
  }

  .pika-fg--newsroom .pika-fg__card:first-child .pika-fg__card-title {
    font-size: 1.35rem;
  }
}

/* News blog listing */
.yvb-news-index {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background:
    repeating-linear-gradient(90deg, rgba(10, 42, 74, 0.035) 0 1px, transparent 1px 88px),
    linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
  border-top: 1px solid rgba(10, 42, 74, 0.08);
  border-bottom: 1px solid rgba(10, 42, 74, 0.08);
}

.yvb-news-index::before {
  display: none;
}

.yvb-news-index > .container-xxl {
  position: relative;
  z-index: 1;
}

.yvb-news-index__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
  margin: 0 auto clamp(2rem, 5vw, 3.8rem);
  text-align: center;
}

.yvb-news-index__tag {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.48rem 0.7rem;
  color: #ffffff;
  background: var(--color-secondary, #c8102e);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.yvb-news-index__heading {
  margin: 0;
  color: #071f38;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yvb-news-index__subheading {
  box-sizing: border-box;
  width: 100%;
  max-width: 680px;
  margin: 1.15rem auto 0;
  padding: 1.05rem 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 52%),
    #071f38;
  border-radius: 8px;
  box-shadow: 0 22px 55px -36px rgba(7, 31, 56, 0.9);
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.yvb-news-index__archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.yvb-news-index__archive-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(10, 42, 74, 0.12);
}

.yvb-news-index__archive-head h3 {
  margin: 0 0 0.35rem;
  color: #071f38;
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yvb-news-index__archive-head p {
  max-width: 46rem;
  margin: 0;
  color: #5f6d7a;
  line-height: 1.6;
}

.yvb-news-index__page-indicator {
  flex: 0 0 auto;
  padding: 0.55rem 0.75rem;
  color: #071f38;
  border: 1px solid rgba(10, 42, 74, 0.18);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.yvb-news-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(10, 42, 74, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 55px -36px rgba(10, 42, 74, 0.72);
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.32s ease, border-color 0.32s ease;
}

.yvb-news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 16, 46, 0.26);
  box-shadow: 0 30px 70px -38px rgba(10, 42, 74, 0.86);
}

.yvb-news-card.is-latest {
  border-color: rgba(200, 16, 46, 0.28);
}

.yvb-news-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #071f38;
  text-decoration: none;
}

.yvb-news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yvb-news-card:hover .yvb-news-card__img {
  transform: scale(1.04);
}

.yvb-news-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 32% 30%, rgba(242, 193, 78, 0.32), transparent 34%),
    linear-gradient(135deg, #071f38, #c8102e);
}

.yvb-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.yvb-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.7rem;
  color: var(--color-secondary, #c8102e);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.yvb-news-card__badge {
  padding: 0.1rem 0.35rem;
  color: #ffffff;
  background: var(--color-secondary, #c8102e);
  border-radius: 4px;
}

.yvb-news-card__title {
  margin: 0 0 0.65rem;
  color: #071f38;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.yvb-news-card__title a,
.yvb-news-card__link {
  color: inherit;
  text-decoration: none;
}

.yvb-news-card__excerpt {
  margin: 0;
  color: #536171;
  font-size: 0.96rem;
  line-height: 1.6;
}

.yvb-news-card__link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.1rem;
  color: #071f38;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.yvb-news-card__link:hover {
  color: var(--color-secondary, #c8102e);
}

.yvb-news-index__empty {
  grid-column: 1 / -1;
  padding: 2rem;
  color: #536171;
  background: #ffffff;
  border: 1px solid rgba(10, 42, 74, 0.1);
  border-radius: 8px;
  text-align: center;
}

.yvb-news-index__loader,
.yvb-news-index__status {
  margin-top: 1.4rem;
  text-align: center;
}

.yvb-news-index__loader span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #071f38;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yvb-news-index__loader span::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid rgba(10, 42, 74, 0.22);
  border-top-color: var(--color-secondary, #c8102e);
  border-radius: 50%;
  animation: yvb-news-spin 0.8s linear infinite;
}

.yvb-news-index__status {
  color: #5f6d7a;
  font-size: 0.92rem;
}

.yvb-news-index__sentinel {
  width: 100%;
  height: 1px;
}

@keyframes yvb-news-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
  .yvb-news-index__header {
    max-width: 700px;
  }

  .yvb-news-index__heading {
    font-size: 3.8rem;
  }

  .yvb-news-index__archive-head h3 {
    font-size: 2.25rem;
  }

  .yvb-news-index__archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .yvb-news-index {
    padding: 4rem 0;
  }

  .yvb-news-index__archive-grid {
    grid-template-columns: 1fr;
  }

  .yvb-news-index__archive-head {
    display: grid;
    align-items: start;
  }

  .yvb-news-index__subheading {
    max-width: calc(100vw - 1.5rem);
    padding: 0.95rem 0.9rem;
    font-size: 0.94rem;
  }

  .yvb-news-index__heading {
    font-size: 3rem;
  }

  .yvb-news-index__archive-head h3 {
    font-size: 1.75rem;
  }

  .yvb-news-card__body {
    padding: 1.15rem;
  }
}

/* Inner page typography contract. Keep this last so page blocks share one system. */
body.vibe-site .vibe-main--inner {
  color: var(--color-text);
  font-family: var(--font-body) !important;
}

body.vibe-site .vibe-main--inner :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

body.vibe-site .vibe-main--inner :is(.hero-headline, .vibe-page-hero__title) {
  font-size: clamp(3.4rem, 6vw, 5.2rem) !important;
  line-height: 0.92 !important;
  text-transform: uppercase !important;
}

body.vibe-site .vibe-main--inner .hero-headline {
  color: var(--color-text-on-dark) !important;
}

body.vibe-site .vibe-main--inner :is(
  .vibe-eyebrow,
  .pika-fg__tag,
  .vibe-contact-kicker,
  .vibe-contact-routing__label,
  .vibe-contact-details__label,
  .yvb-girls-resource__kicker,
  .yvb-news-index__tag,
  .yvb-tryout-save__eyebrow,
  .yvb-tryout-schedule__program-eyebrow,
  .yvb-tryout-schedule__group-heading span,
  .yvb-tryout-schedule__meta,
  .pika-fg__card-meta,
  .vibe-service-card__role,
  .yvb-news-card__meta
) {
  color: var(--color-secondary) !important;
  font-family: var(--font-mono) !important;
  font-size: clamp(0.72rem, 0.55vw, 0.78rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

body.vibe-site .vibe-main--inner :is(
  .intro-text h2,
  .pika-fg__heading,
  .vibe-feature-alt__title,
  .vibe-section-header h2,
  .vibe-what-we-do h2,
  .yvb-girls-resource__title,
  .vibe-contact-routing-section__head h2,
  .vibe-contact-form-copy h2,
  .yvb-tryout-schedule__header h2,
  .yvb-tryout-registration__copy h2,
  .yvb-news-index__heading,
  .vibe-inner-cta__heading
) {
  color: var(--color-text) !important;
  font-size: clamp(2rem, 3vw, 2.25rem) !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
}

body.vibe-site .vibe-main--inner :is(
  .vibe-feature-alt__heading,
  .yvb-girls-resource__panel h3,
  .vibe-contact-routing h3,
  .yvb-team-guides__row h3,
  .yvb-coach-bio h2,
  .vibe-prose h2,
  .vibe-prose h3,
  .yvb-news-index__archive-head h3
) {
  color: var(--color-primary) !important;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem) !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body.vibe-site .vibe-main--inner :is(
  .pika-fg__card-title,
  .vibe-service-card__body h3,
  .testimonial-card h3,
  .yvb-news-card__title
) {
  color: var(--color-primary) !important;
  font-size: clamp(1.3rem, 1.8vw, 1.55rem) !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
}

body.vibe-site .vibe-main--inner .pika-fg__card .pika-fg__card-meta {
  color: var(--color-secondary) !important;
  font-family: var(--font-mono) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

body.vibe-site .vibe-main--inner .pika-fg__card .pika-fg__card-title {
  color: var(--color-primary) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(0.98rem, 1vw, 1.05rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.vibe-site .vibe-main--inner .pika-fg__card .pika-fg__card-text {
  color: var(--color-text-muted) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(0.94rem, 0.2vw + 0.9rem, 1rem) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.vibe-site .vibe-main--inner :is(
  .vibe-body-text,
  .vibe-body-text p,
  .intro-text,
  .intro-text p,
  .vibe-feature-alt__body,
  .vibe-feature-alt__body p,
  .vibe-prose p,
  .vibe-contact-form-copy p:not(.vibe-contact-kicker),
  .vibe-contact-details p,
  .vibe-contact-routing__card p,
  .vibe-contact-routing__card li,
  .yvb-coach-bio p,
  .yvb-tryout-schedule__location,
  .yvb-tryout-schedule__desc,
  .yvb-tryout-registration__body
) {
  color: var(--color-text) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.06rem) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.vibe-site .vibe-main--inner :is(
  .pika-fg__subheading,
  .vibe-section-sub,
  .vibe-page-hero__desc,
  .yvb-girls-resource__intro,
  .pika-fg__card-text,
  .vibe-service-card__desc,
  .yvb-girls-resource__panel p,
  .yvb-news-card__excerpt,
  .yvb-news-index__subheading,
  .yvb-news-index__archive-head p
) {
  color: var(--color-text-muted) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(0.98rem, 0.32vw + 0.9rem, 1.04rem) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.vibe-site .vibe-main--inner :is(
  .vibe-btn,
  .hero-cta,
  .cta-btn-primary,
  .cta-btn-secondary,
  .vibe-inner-cta__btn,
  .yvb-tryout-save__btn,
  .yvb-tryout-registration__tab,
  .yvb-tryout-schedule__link,
  .pika-fg__card-link,
  .yvb-girls-resource__link,
  .yvb-news-card__link
) {
  font-family: var(--font-body) !important;
  font-size: clamp(0.88rem, 0.22vw + 0.84rem, 0.96rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.vibe-site .vibe-main--inner :is(.vibe-body-text strong, .vibe-prose strong, .vibe-feature-alt__body strong) {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 800 !important;
  line-height: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.vibe-site .vibe-main--inner :is(.vibe-inner-cta, .vibe-contact-form-copy) :is(
  .vibe-inner-cta__heading,
  .vibe-inner-cta__body,
  h2,
  p:not(.vibe-contact-kicker)
) {
  color: var(--color-text-on-dark) !important;
}

body.vibe-site .vibe-main--inner :is(
  .yvb-tryout-save__shell,
  .yvb-tryout-schedule__program--boys,
  .yvb-tryout-schedule__program--girls,
  .yvb-girls-resource__panel--teams,
  .yvb-girls-resource__panel--guides,
  .yvb-boys-resource__panel--fundraising-feature
) :is(h2, h3, h4, h5, strong) {
  color: var(--color-text-on-dark) !important;
}

body.vibe-site .vibe-main--inner :is(
  .yvb-tryout-save__shell,
  .yvb-tryout-schedule__program--boys,
  .yvb-tryout-schedule__program--girls,
  .yvb-girls-resource__panel--teams,
  .yvb-girls-resource__panel--guides,
  .yvb-boys-resource__panel--fundraising-feature
) :is(.vibe-body-text, p:not(.vibe-eyebrow):not(.yvb-girls-resource__kicker), .yvb-tryout-schedule__location, .yvb-tryout-schedule__desc) {
  color: rgba(250, 248, 244, 0.78) !important;
}

body.vibe-site .vibe-main--inner :is(
  .yvb-tryout-save__shell,
  .yvb-tryout-schedule__program--boys,
  .yvb-tryout-schedule__program--girls,
  .yvb-girls-resource__panel--teams,
  .yvb-girls-resource__panel--guides,
  .yvb-boys-resource__panel--fundraising-feature
) :is(.vibe-eyebrow, .yvb-tryout-save__eyebrow, .yvb-tryout-schedule__program-eyebrow, .yvb-tryout-schedule__group-heading span, .yvb-tryout-schedule__meta, .yvb-girls-resource__kicker) {
  color: var(--color-secondary) !important;
}

body.vibe-site .vibe-main--inner .yvb-news-index__subheading {
  color: rgba(255, 255, 255, 0.82) !important;
}

@media (max-width: 575px) {
  body.vibe-site .vibe-main--inner :is(.hero-headline, .vibe-page-hero__title) {
    font-size: clamp(2.9rem, 14vw, 3.8rem) !important;
    line-height: 0.96 !important;
  }

  body.vibe-site .vibe-main--inner :is(
    .intro-text h2,
    .pika-fg__heading,
    .vibe-feature-alt__title,
    .vibe-section-header h2,
    .vibe-what-we-do h2,
    .yvb-girls-resource__title,
    .vibe-contact-routing-section__head h2,
    .vibe-contact-form-copy h2,
    .yvb-tryout-schedule__header h2,
    .yvb-tryout-registration__copy h2,
    .yvb-news-index__heading,
    .vibe-inner-cta__heading
  ) {
    font-size: clamp(1.9rem, 8vw, 2.25rem) !important;
    line-height: 1.05 !important;
  }
}

body.vibe-site .vibe-main--inner .pika-fg--anchor-alumni-quotes {
  color: var(--color-text-on-dark) !important;
}

body.vibe-site .vibe-main--inner .pika-fg--anchor-alumni-quotes .pika-fg__heading {
  color: var(--color-text-on-dark) !important;
  text-shadow: 0 16px 34px rgba(6, 26, 46, 0.34);
}

body.vibe-site .vibe-main--inner .pika-fg--anchor-alumni-quotes .pika-fg__subheading {
  color: rgba(250, 248, 244, 0.86) !important;
}

body.vibe-site .vibe-main--inner .pika-fg--anchor-alumni-quotes .pika-fg__tag {
  color: var(--color-text-on-dark) !important;
  background: rgba(6, 26, 46, 0.34) !important;
  border-color: rgba(250, 248, 244, 0.28) !important;
}

body.vibe-site .vibe-main--inner .pika-fg--anchor-alumni-quotes .pika-fg__card-title {
  color: var(--color-primary) !important;
}

body.vibe-site .vibe-main--inner .pika-fg--anchor-alumni-quotes .pika-fg__card-text {
  color: rgba(7, 31, 56, 0.72) !important;
}

/* Team index and detail pages */
.yvb-team-directory--index .yvb-team-directory__list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.yvb-team-directory__row {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
}

body.vibe-site .vibe-main--inner .yvb-team-directory__row h3 {
  margin: 0;
  color: var(--color-primary) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.yvb-team-directory__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.yvb-team-directory__links a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  min-width: 9rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(200, 16, 46, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px -30px rgba(10, 42, 74, 0.55);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.yvb-team-directory__links a span {
  margin-top: 0.35rem;
  color: var(--color-secondary);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.yvb-team-directory__links a:hover,
.yvb-team-directory__links a:focus {
  border-color: rgba(200, 16, 46, 0.46);
  background: rgba(200, 16, 46, 0.08);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.yvb-team-detail {
  overflow: hidden;
  background: #fff;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0 0;
}

.yvb-team-detail.vibe-reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

.yvb-team-detail__shell {
  max-width: 1240px;
}

.yvb-team-detail__header {
  display: flex;
  gap: 1.25rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(10, 42, 74, 0.12);
}

body.vibe-site .vibe-main--inner .yvb-team-detail__header h2 {
  margin: 0.35rem 0 0;
  color: var(--color-primary) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2.25rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
}

.yvb-team-detail__header p {
  max-width: 44rem;
  margin: 0.7rem 0 0;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 0.5vw + 0.92rem, 1.12rem);
  line-height: 1.55;
}

.yvb-team-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(10, 42, 74, 0.14);
  border-radius: 8px;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.yvb-team-detail__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.36fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.yvb-team-detail__roster,
.yvb-team-detail__schedule {
  min-width: 0;
}

.yvb-team-detail__coaches {
  padding: clamp(2rem, 4vw, 3rem);
  background: #deddd9;
  text-align: center;
}

body.vibe-site .vibe-main--inner .yvb-team-detail__section-title {
  margin: 0 0 1.2rem;
  color: #a80f17 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 3.8vw, 3.25rem) !important;
  font-weight: 700 !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
}

.yvb-team-detail__coaches .yvb-team-detail__section-title {
  display: inline-block;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid rgba(168, 15, 23, 0.78);
}

.yvb-team-detail__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--color-text, #1f2937);
  font-size: clamp(0.9rem, 0.25vw + 0.84rem, 1rem);
}

.yvb-team-detail__table th,
.yvb-team-detail__table td {
  height: 2.45rem;
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid rgba(10, 42, 74, 0.11);
  color: rgba(15, 23, 42, 0.72);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.yvb-team-detail__table th {
  color: rgba(9, 18, 33, 0.92);
  font-weight: 800;
}

.yvb-team-detail__table--roster th:nth-child(1),
.yvb-team-detail__table--roster td:nth-child(1) {
  width: 30%;
}

.yvb-team-detail__table--roster th:nth-child(2),
.yvb-team-detail__table--roster td:nth-child(2) {
  width: 8%;
}

.yvb-team-detail__table--roster th:nth-child(3),
.yvb-team-detail__table--roster td:nth-child(3) {
  width: 21%;
}

.yvb-team-detail__table--roster th:nth-child(4),
.yvb-team-detail__table--roster td:nth-child(4) {
  width: 28%;
}

.yvb-team-detail__table--roster th:nth-child(5),
.yvb-team-detail__table--roster td:nth-child(5) {
  width: 13%;
}

.yvb-team-detail__coach-list {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
  margin-top: clamp(1.3rem, 3vw, 2rem);
}

body.vibe-site .vibe-main--inner .yvb-team-detail__coach h4 {
  margin: 0 0 0.55rem;
  color: rgba(9, 18, 33, 0.92) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.18rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

.yvb-team-detail__coach p {
  min-height: 1.35rem;
  margin: 0.25rem 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: clamp(1rem, 0.5vw + 0.92rem, 1.16rem);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.yvb-team-detail__schedule {
  position: relative;
  max-width: 920px;
  margin: clamp(5rem, 8vw, 7rem) auto 0;
  padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(4.5rem, 8vw, 6.5rem);
  text-align: center;
}

.yvb-team-detail__schedule::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: "";
  background: var(--color-surface, #f4f1eb);
  transform: translateX(-50%);
}

.yvb-team-detail__schedule > * {
  position: relative;
  z-index: 1;
}

.yvb-team-detail__table--schedule th,
.yvb-team-detail__table--schedule td {
  text-align: center;
}

.yvb-team-detail__table--schedule th:nth-child(1),
.yvb-team-detail__table--schedule td:nth-child(1) {
  width: 24%;
}

.yvb-team-detail__table--schedule th:nth-child(2),
.yvb-team-detail__table--schedule td:nth-child(2) {
  width: 42%;
}

.yvb-team-detail__table--schedule th:nth-child(3),
.yvb-team-detail__table--schedule td:nth-child(3) {
  width: 34%;
}

.yvb-team-detail [data-pika-vibe-field]:empty::before {
  content: "\00a0";
}

@media (max-width: 991px) {
  .yvb-team-detail__header,
  .yvb-team-detail__top {
    grid-template-columns: 1fr;
  }

  .yvb-team-detail__header {
    display: grid;
    align-items: start;
  }

  .yvb-team-detail__back {
    justify-self: start;
  }
}

@media (max-width: 575px) {
  .yvb-team-directory {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .yvb-team-directory__shell {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .yvb-team-directory--index .yvb-team-directory__list {
    border-top-color: rgba(10, 42, 74, 0.12);
  }

  .yvb-team-directory__row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    align-items: stretch;
    padding: 1.45rem 0;
  }

  body.vibe-site .vibe-main--inner .yvb-team-directory__row h3 {
    font-size: 1.8rem !important;
  }

  .yvb-team-directory__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: 100%;
  }

  .yvb-team-directory__links a {
    width: 100%;
    min-height: 3.65rem;
    min-width: 0;
    padding: 0.8rem 1rem;
    text-align: center;
  }

  .yvb-team-detail {
    padding-top: 3rem;
  }

  .yvb-team-detail__shell {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .yvb-team-detail__header {
    margin-bottom: 2rem;
  }

  .yvb-team-detail__back {
    width: auto;
    min-width: 8.75rem;
  }

  body.vibe-site .vibe-main--inner .yvb-team-detail__section-title {
    margin-bottom: 1rem;
    font-size: 2rem !important;
  }

  .yvb-team-detail__top {
    gap: 2rem;
  }

  .yvb-team-detail__table {
    display: table;
    width: 100%;
    table-layout: fixed;
    font-size: 0.72rem;
  }

  .yvb-team-detail__table thead {
    display: table-header-group;
  }

  .yvb-team-detail__table tbody {
    display: table-row-group;
  }

  .yvb-team-detail__table tr {
    display: table-row;
  }

  .yvb-team-detail__table th,
  .yvb-team-detail__table td {
    display: table-cell;
    min-height: 0;
    height: auto;
    padding: 0.42rem 0.22rem;
    border-bottom: 1px solid rgba(10, 42, 74, 0.13);
    font-size: 0.72rem;
    line-height: 1.2;
    vertical-align: top;
    overflow-wrap: normal;
    word-break: normal;
  }

  .yvb-team-detail__table th {
    padding-top: 0.32rem;
    padding-bottom: 0.42rem;
    font-size: 0.68rem;
    line-height: 1.15;
    overflow-wrap: normal;
    word-break: normal;
  }

  .yvb-team-detail__table--roster th:nth-child(2),
  .yvb-team-detail__table--roster td:nth-child(2),
  .yvb-team-detail__table--roster th:nth-child(5),
  .yvb-team-detail__table--roster td:nth-child(5) {
    text-align: center;
  }

  .yvb-team-detail__table td::before {
    content: none !important;
    display: none;
  }

  .yvb-team-detail__table--schedule td {
    text-align: center;
  }

  .yvb-team-detail__coaches {
    padding: 1.75rem 1rem;
  }

  .yvb-team-detail__schedule {
    max-width: none;
    margin-top: 3.5rem;
    padding-top: 3rem;
    padding-bottom: 4rem;
    text-align: left;
  }

  .yvb-team-detail__schedule .yvb-team-detail__section-title {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .vibe-main--inner .yvb-team-single-hero {
    min-height: auto;
    padding-top: 8.25rem;
    padding-bottom: 2.75rem;
  }

  .vibe-main--inner .yvb-team-single-hero .vibe-hero__shell {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .vibe-main--inner .yvb-team-single-hero .vibe-hero__bottom-grid {
    gap: 1.25rem;
  }

  .vibe-main--inner .yvb-team-single-hero .hero-headline {
    font-size: clamp(3rem, 15vw, 4.25rem) !important;
    line-height: 0.92 !important;
  }

  .vibe-main--inner .yvb-team-single-hero .hero-sub {
    font-size: 1rem;
    line-height: 1.5;
  }

  .vibe-main--inner .yvb-team-single-hero .vibe-hero__actions {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.7rem;
  }

  .vibe-main--inner .yvb-team-single-hero .vibe-hero__actions .btn {
    width: 100%;
    min-height: 3rem;
  }
}

/* Club hero navigation buttons */
.vibe-main--inner:has(#girls-overview) .vibe-hero__actions,
.vibe-main--inner:has(#boys-overview) .vibe-hero__actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
  width: min(100%, 28rem);
  align-items: stretch !important;
}

.vibe-main--inner:has(#girls-overview) .vibe-hero__actions .hero-cta,
.vibe-main--inner:has(#boys-overview) .vibe-hero__actions .hero-cta {
  width: 100%;
  min-width: 0;
  min-height: 3.5rem;
  padding: 0.8rem 1rem;
  text-align: center;
  white-space: normal;
}

@media (max-width: 575px) {
  .vibe-main--inner:has(#girls-overview) .vibe-hero__actions,
  .vibe-main--inner:has(#boys-overview) .vibe-hero__actions {
    grid-template-columns: 1fr !important;
    width: 100%;
  }
}
