/* ============================================================
   CENTRIPETAL VENTURE — Page-specific styles v4
   ============================================================ */

/* ── Force dark header on this light-hero page ────────────── */
#site-header {
  background: rgba(0, 0, 0, 0.96) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Hero ─────────────────────────────────────────────────── */
.cv-hero {
  padding-top: 72px;
}

.cv-banner-wrap {
  position: relative;
  height: clamp(440px, 56vw, 700px);
  overflow: hidden;
}

.cv-banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.cv-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.72) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-identity {
  text-align: center;
  padding: 40px 24px;
}

.cv-tagline-headline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(18px, 2.4vw, 38px);
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.94);
  font-weight: 400;
  line-height: 1.7;
  text-transform: uppercase;
  max-width: 1000px;
  margin: 0 auto;
}

/* ── About Two-Column Grid ────────────────────────────────── */
.cv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 0;
}

.cv-about-text .cv-body {
  max-width: 100%;
}

.cv-about-pull {
  border-left: 2px solid rgba(212, 168, 83, 0.35);
  padding-left: 60px;
  display: flex;
  align-items: center;
}

.cv-about-quote {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

/* ── Section-label override — readable, not micro ────────── */
.cv-section .section-label {
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0.15em;
}

/* ── Shared Section Shell ─────────────────────────────────── */
.cv-section {
  padding: 96px 0;
}

.cv-section--dark {
  background: #060606;
  color: #fff;
}

.cv-section--light {
  background: #faf7f2;
  color: #1a1a1a;
}

/* Override white to warm cream on this page */
.cv-section--white {
  background: #faf7f2;
  color: #1a1a1a;
}

/* ── Typography ───────────────────────────────────────────── */
.cv-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.1;
}

.cv-subheading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 48px 0 28px;
  line-height: 1.2;
}

.cv-section--dark .cv-subheading {
  color: #D4A853;
}

.cv-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 960px;
  text-align: justify;
}

/* ── Services Grid ────────────────────────────────────────── */
.cv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.cv-service {
  border-top: 2px solid #D4A853;
  padding-top: 28px;
}

.cv-service-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 56px;
  color: #D4A853;
  opacity: 0.35;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
  font-weight: 400;
}

.cv-service-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.cv-service-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.82;
  text-align: justify;
}

/* ── Impact Grid ──────────────────────────────────────────── */
.cv-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.cv-impact-card {
  padding: 36px 40px;
  border: 1px solid rgba(212, 168, 83, 0.22);
  position: relative;
  background: #fff;
}

.cv-impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #D4A853;
}

.cv-impact-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A853;
  margin-bottom: 18px;
  font-weight: 400;
}

.cv-impact-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #333;
}

/* ── Support List ─────────────────────────────────────────── */
.cv-support-list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
}

.cv-support-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.cv-support-title {
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #D4A853;
  font-weight: 400;
  font-size: 15px;
  padding-top: 4px;
  line-height: 1.4;
}

.cv-support-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.84;
  text-align: justify;
}

/* ── Criteria List ────────────────────────────────────────── */
.cv-criteria-list {
  list-style: none;
  padding: 0;
  margin: 36px 0;
}

.cv-criteria-item {
  padding: 24px 0;
  border-bottom: 1px solid #e0d8cc;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cv-criteria-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 40px;
  color: #D4A853;
  min-width: 52px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}

.cv-criteria-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  padding-top: 6px;
  color: #2a2a2a;
}

/* ── Apply Button ─────────────────────────────────────────── */
.cv-apply-wrap {
  text-align: center;
  margin-top: 52px;
}

.cv-apply-btn {
  display: inline-block;
  background: #D4A853;
  color: #000;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 22px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 22px 64px;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s;
}

.cv-apply-btn:hover {
  background: #c9973e;
  color: #000;
  transform: translateY(-2px);
}

/* ── Why Centripetal — Redesigned ─────────────────────────── */
.cv-why {
  background: #faf7f2;
  padding: clamp(80px, 10vw, 130px) 0;
}

/* Criteria body */
.cv-why-body {
  padding-top: 0;
}

.cv-why-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #060606;
  line-height: 1.1;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212,168,83,0.3);
}

/* 2×2 card grid */
.cv-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cv-why-card {
  padding: 52px 56px 56px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-right: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid transparent;
  transition: border-top-color 0.25s ease, background 0.25s ease;
}

.cv-why-card:hover {
  border-top-color: #D4A853;
  background: rgba(212,168,83,0.04);
}

/* Remove right border on even cards (right column) */
.cv-why-card:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border on last row */
.cv-why-card:nth-child(3),
.cv-why-card:nth-child(4) {
  border-bottom: none;
}

.cv-why-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 200;
  color: #D4A853;
  opacity: 0.38;
  line-height: 1;
  display: block;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.cv-why-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #2a2a2a;
}

/* CTA zone */
.cv-why-cta {
  text-align: center;
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.cv-why-cta-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: rgba(0,0,0,0.45);
  margin-bottom: 40px;
  line-height: 1.65;
}

/* ── Club 28 ADVERTISEMENT SECTION ───────────────────────── */
.cv-club28-ad {
  background: #050505;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cv-club28-ad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A853 30%, #D4A853 70%, transparent);
}

.cv-club28-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cv-club28-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(17px, 1.4vw, 22px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 168, 83, 0.85);
  margin-bottom: 20px;
  display: block;
  font-weight: 400;
}

.cv-club28-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.cv-club28-subhead {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  color: rgba(212, 168, 83, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 12px 0 40px;
  font-weight: 400;
}

.cv-club28-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
  text-align: justify;
}

.cv-club28-body a {
  color: #D4A853;
  text-decoration: underline;
}

.cv-club28-cta {
  display: inline-block;
  margin-top: 24px;
  background: #D4A853;
  color: #000;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 20px 52px;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.2s, transform 0.2s;
}

.cv-club28-cta:hover {
  background: #c9973e;
  transform: translateY(-2px);
}

.cv-club28-img-col {
  position: relative;
}

/* decorative frame removed */

.cv-club28-photo {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ── Three Program Ad Cards — TEXT ONLY ───────────────────── */
.cv-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #0d0d0d;
  border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.cv-program-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
  cursor: pointer;
  background: #0d0d0d;
  border-right: 1px solid rgba(212, 168, 83, 0.12);
  transition: background 0.3s ease;
}

.cv-program-card:last-child {
  border-right: none;
}

.cv-program-card:hover {
  background: #141414;
}

/* Text-only — no background images or overlays */
.cv-program-card-bg {
  display: none;
}

.cv-program-card-overlay {
  display: none;
}

.cv-program-card-content {
  position: relative;
  z-index: 2;
  padding: 56px 48px 52px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 3px solid #D4A853;
}

.cv-program-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4A853;
  display: block;
  margin-bottom: 18px;
}

.cv-program-divider {
  width: 40px;
  height: 1px;
  background: rgba(212, 168, 83, 0.4);
  display: block;
  margin-bottom: 20px;
}

.cv-program-headline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.cv-program-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
  flex: 1;
}

.cv-program-btn {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: #D4A853;
  border: none;
  padding: 20px 40px;
  text-decoration: none;
  margin-top: 36px;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}

.cv-program-btn:hover {
  background: #c9973e;
  color: #000;
  transform: translateY(-2px);
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cv-club28-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cv-club28-img-col::after {
    display: none;
  }

  .cv-programs {
    grid-template-columns: 1fr;
  }

  .cv-program-card {
    min-height: 420px;
    border-right: none;
    border-bottom: 1px solid rgba(212, 168, 83, 0.12);
  }

  .cv-program-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 1024px) {
  .cv-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cv-about-pull {
    border-left: none;
    border-top: 2px solid rgba(212, 168, 83, 0.35);
    padding-left: 0;
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .cv-why-grid {
    grid-template-columns: 1fr;
  }

  .cv-why-card {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    border-top: none;
    padding: 40px 28px;
  }

  .cv-why-card:hover {
    border-top: none;
  }

  .cv-why-card:nth-child(4) {
    border-bottom: none;
  }

  .cv-why-card:nth-child(3) {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .cv-hero {
    padding-top: 64px;
  }

  .cv-banner-wrap {
    height: clamp(300px, 68vw, 440px);
  }

  .cv-identity {
    padding: 24px 16px;
  }

  .cv-services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cv-impact-grid {
    grid-template-columns: 1fr;
  }

  .cv-impact-card {
    padding: 40px 36px;
  }

  .cv-support-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cv-club28-heading {
    font-size: clamp(28px, 8vw, 44px);
  }

  .cv-club28-ad {
    padding: 72px 0;
  }

  .cv-section {
    padding: 72px 0;
  }

  .cv-program-card-content {
    padding: 40px 32px 44px;
  }
}

@media (max-width: 480px) {
  .cv-tagline-headline {
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  .cv-section {
    padding: 60px 0;
  }
}
