/* =========================================================
   COLLEGE & CAREER — dedicated page styles
   Ages 18–30. Young adults navigating in-between years.
   Anchored in Jeremiah 29:11 — "hope and a future."
   Deep navy + bright blue + a warm amber pulled from the
   Passion 2025 photography.
   ========================================================= */

:root {
  --cc-navy:       #061a3a;   /* near-black navy */
  --cc-navy-soft:  #0d2750;
  --cc-blue:       #00ABF8;   /* bright accent */
  --cc-blue-deep:  #0082CA;   /* primary */
  --cc-amber:      #f1a23a;   /* warm pulled from passion photos */
  --cc-rose:       #e94f6e;   /* warm accent — passion stage red */
}

/* =========================================================
   Section 1 — Anchor: "hope and a future."
   Hero-style scripture statement + intro copy + group photo.
   ========================================================= */
.cc-anchor {
  background: #fff;
  padding: 120px 0 128px;
  position: relative;
  overflow: hidden;
}
.cc-anchor::before {
  content: "";
  position: absolute;
  top: -120px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,171,248,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cc-anchor-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.cc-anchor-copy .eyebrow { color: var(--cc-blue-deep); margin-bottom: 22px; }
.cc-verse-ref {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 900; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-blue-deep);
  margin-bottom: 28px;
}
.cc-verse-ref::before {
  content: ""; width: 32px; height: 2px; background: var(--cc-blue-deep);
}
.cc-anchor-verse {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.04; letter-spacing: -0.025em;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.cc-anchor-verse .quoted { color: var(--ink-900); }
.cc-anchor-verse em {
  font-style: normal;
  display: block;
  color: var(--cc-blue-deep);
}
.cc-anchor-attr {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 36px;
}
.cc-anchor-lead {
  font-size: 19px; line-height: 1.6;
  color: var(--fg-1);
  margin: 0 0 18px;
  max-width: 56ch;
}
.cc-anchor-body {
  font-size: 16.5px; line-height: 1.7;
  color: var(--fg-2);
  margin: 0;
  max-width: 56ch;
}

/* Right column: stacked photo + meta chips */
.cc-anchor-media { position: relative; }
.cc-anchor-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink-050);
  box-shadow: 0 40px 80px -24px rgba(6,26,58,0.35);
}
.cc-anchor-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cc-anchor-chip {
  position: absolute;
  left: -28px; bottom: 36px;
  background: var(--cc-navy);
  color: #fff;
  padding: 18px 22px 16px;
  border-radius: 14px;
  box-shadow: 0 24px 60px -12px rgba(6,26,58,0.45);
  max-width: 260px;
}
.cc-anchor-chip .label {
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cc-amber);
  display: block; margin-bottom: 8px;
}
.cc-anchor-chip .val {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; letter-spacing: -0.01em; line-height: 1.1;
  color: #fff;
}
.cc-anchor-chip .sub {
  font-size: 13px; font-weight: 500;
  color: #fff; margin-top: 6px;
}

/* =========================================================
   Section 2 — Three pillars: what we walk through together
   ========================================================= */
.cc-pillars {
  background: var(--ink-050);
  padding: 112px 0;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}
.cc-pillars-head {
  max-width: 760px; margin: 0 auto 56px; text-align: center;
}
.cc-pillars-head .eyebrow {
  color: var(--cc-blue-deep); display: inline-block; margin-bottom: 18px;
}
.cc-pillars-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 46px; line-height: 1.05; letter-spacing: -0.022em;
  margin: 0 0 14px;
}
.cc-pillars-head h2 em { font-style: normal; color: var(--cc-blue-deep); }
.cc-pillars-head p {
  font-size: 17px; line-height: 1.6; color: var(--fg-2);
  max-width: 580px; margin: 0 auto;
}
.cc-pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.cc-pillar {
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 18px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.cc-pillar:hover {
  transform: translateY(-3px);
  border-color: var(--cc-blue);
}
.cc-pillar-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cc-blue-deep);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.cc-pillar-num::after {
  content: ""; flex: 1; height: 1px; background: var(--border-hairline);
}
.cc-pillar h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.015em;
  margin: 0 0 12px; color: var(--ink-900);
}
.cc-pillar p { font-size: 15.5px; line-height: 1.65; color: var(--fg-2); margin: 0; }

/* =========================================================
   Section 3 — Weekly rhythm: Life Group + Sunday mornings
   ========================================================= */
.cc-rhythm {
  background: #fff;
  padding: 120px 0;
}
.cc-rhythm-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.cc-rhythm-head .eyebrow { color: var(--cc-blue-deep); display: inline-block; margin-bottom: 18px; }
.cc-rhythm-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 46px; line-height: 1.05; letter-spacing: -0.022em;
  margin: 0;
}
.cc-rhythm-head h2 em { font-style: normal; color: var(--cc-blue-deep); }
.cc-rhythm-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px;
}
.cc-rhythm-card {
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 22px;
  padding: 40px 40px 36px;
  position: relative; overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.cc-rhythm-card.primary {
  background: var(--cc-navy);
  color: #fff;
  border-color: transparent;
}
.cc-rhythm-card.primary::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 15%, rgba(0,171,248,0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 90%, rgba(241,162,58,0.10), transparent 60%);
  pointer-events: none;
}
.cc-rhythm-card.primary > * { position: relative; z-index: 1; }
.cc-rhythm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px -16px rgba(6,26,58,0.18);
}
.cc-rhythm-day {
  display: inline-block;
  font-size: 11px; font-weight: 900; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-blue-deep);
  margin-bottom: 14px;
}
.cc-rhythm-card.primary .cc-rhythm-day { color: var(--cc-amber); }
.cc-rhythm-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 38px; line-height: 1; letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.cc-rhythm-card.primary h3 { color: #fff; }
.cc-rhythm-card.primary h3 em { font-style: normal; color: var(--cc-blue); }
.cc-rhythm-times {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink-900);
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-hairline);
}
.cc-rhythm-card.primary .cc-rhythm-times {
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.cc-rhythm-times .cc-dot { color: var(--ink-300); font-weight: 400; }
.cc-rhythm-card.primary .cc-rhythm-times .cc-dot { color: #fff; }
.cc-rhythm-card p {
  font-size: 15.5px; line-height: 1.7; color: var(--fg-2);
  margin: 0 0 14px;
}
.cc-rhythm-card p:last-child { margin-bottom: 0; }
.cc-rhythm-card.primary p { color: #fff; }
.cc-rhythm-card.primary p strong { color: #fff; font-weight: 700; }

/* =========================================================
   Section 4 — Passion 2025 feature (dark, full-bleed)
   Marquee moment for this ministry. Pulls from the trip photos.
   ========================================================= */
.cc-passion {
  background: var(--cc-navy);
  color: #fff;
  padding: 128px 0 120px;
  position: relative;
  overflow: hidden;
}
.cc-passion::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 85% 10%, rgba(233,79,110,0.30), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 95%, rgba(0,130,202,0.30), transparent 60%);
  pointer-events: none;
}
.cc-passion-inner { position: relative; z-index: 1; }
.cc-passion-head {
  max-width: 880px; margin: 0 auto 56px; text-align: center;
}
.cc-passion-head .cc-passion-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 900; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cc-amber);
  margin-bottom: 22px;
}
.cc-passion-head .cc-passion-eyebrow::before,
.cc-passion-head .cc-passion-eyebrow::after {
  content: ""; width: 28px; height: 2px; background: var(--cc-amber);
}
.cc-passion-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.0; letter-spacing: -0.028em;
  margin: 0 0 18px;
  color: #fff;
}
.cc-passion-head h2 em { font-style: normal; color: var(--cc-amber); }
.cc-passion-head p {
  font-size: 18px; line-height: 1.6;
  color: #fff;
  max-width: 640px; margin: 0 auto;
}

/* Mosaic: stage shot is the hero, with two supporting candids */
.cc-passion-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 320px 240px;
  gap: 16px;
  grid-template-areas:
    "hero  side1"
    "hero  side2";
}
.cc-passion-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}
.cc-passion-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 600ms var(--ease-out);
}
.cc-passion-tile:hover img { transform: scale(1.04); }
.cc-passion-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.cc-passion-tile .caption {
  position: absolute; left: 18px; bottom: 16px;
  font-size: 11px; font-weight: 900; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff;
  z-index: 1;
}
.cc-passion-tile.hero  { grid-area: hero;  }
.cc-passion-tile.side1 { grid-area: side1; }
.cc-passion-tile.side2 { grid-area: side2; }

.cc-passion-stats {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}
.cc-passion-stat {
  display: flex; flex-direction: column; gap: 8px;
}
.cc-passion-stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 44px; line-height: 1; letter-spacing: -0.02em;
  color: #fff;
}
.cc-passion-stat-num em { font-style: normal; color: var(--cc-amber); }
.cc-passion-stat-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
}

/* =========================================================
   Section 5 — Life in this season (intro photo + body copy)
   Sits between Passion and CTA — shows the "everyday" side.
   ========================================================= */
.cc-life {
  background: #fff;
  padding: 120px 0;
}
.cc-life-inner {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 80px; align-items: center;
}
.cc-life-photo {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink-050);
  box-shadow: 0 30px 70px -20px rgba(6,26,58,0.22);
}
.cc-life-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cc-life-copy .eyebrow { color: var(--cc-blue-deep); margin-bottom: 18px; }
.cc-life-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 48px; line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.cc-life-copy h2 em { font-style: normal; color: var(--cc-blue-deep); }
.cc-life-copy p {
  font-size: 17px; line-height: 1.7; color: var(--fg-2);
  margin: 0 0 18px; max-width: 54ch;
}
.cc-life-copy p strong { color: var(--fg-1); font-weight: 700; }

/* =========================================================
   Section 6 — Calendar (Subsplash embed)
   ========================================================= */
.cc-calendar {
  background: var(--ink-050);
  padding: 112px 0;
  border-top: 1px solid var(--border-hairline);
}
.cc-calendar-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.cc-calendar-head .eyebrow { color: var(--cc-blue-deep); display: inline-block; margin-bottom: 18px; }
.cc-calendar-head h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 44px; line-height: 1.05; letter-spacing: -0.022em;
  margin: 0 0 14px;
}
.cc-calendar-head p {
  font-size: 17px; line-height: 1.6; color: var(--fg-2);
  max-width: 560px; margin: 0 auto;
}
.cc-calendar-frame {
  background: #fff;
  border: 1px solid var(--border-hairline);
  border-radius: 18px;
  padding: 12px;
  min-height: 540px;
}
.cc-calendar-frame .subsplash-embed-host { min-height: 520px; }

/* =========================================================
   Section 7 — CTA band (dark)
   Facebook + Life Group sign-up
   ========================================================= */
.cc-cta-band {
  position: relative;
  padding: 120px 0 112px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,171,248,0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(233,79,110,0.18), transparent 60%),
    var(--cc-navy);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cc-cta-band .eyebrow { color: var(--cc-amber); }
.cc-cta-band h2 {
  font-family: var(--font-display); font-weight: 900;
  color: #fff; font-size: 56px;
  letter-spacing: -0.024em; line-height: 1.02;
  max-width: 820px; margin: 14px auto 22px;
}
.cc-cta-band h2 em { font-style: normal; color: var(--cc-blue); }
.cc-cta-band p {
  color: #fff; font-size: 18px;
  max-width: 620px; margin: 0 auto 40px; line-height: 1.6;
}
.cc-cta-back { margin-top: 32px; }
.cc-cta-back a {
  color: #fff;
  font-size: 14px; letter-spacing: 0.02em;
  text-decoration: none;
}
.cc-cta-back a:hover { color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .cc-anchor-inner,
  .cc-life-inner { grid-template-columns: 1fr; gap: 56px; }
  .cc-pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .cc-rhythm-grid { grid-template-columns: 1fr; }
  .cc-passion-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 220px 220px;
    grid-template-areas:
      "hero"
      "side1"
      "side2";
  }
  .cc-anchor-verse { font-size: 40px; }
  .cc-life-copy h2 { font-size: 36px; }
  .cc-pillars-head h2,
  .cc-rhythm-head h2,
  .cc-calendar-head h2 { font-size: 34px; }
  .cc-passion-stats { gap: 28px; }
  .cc-passion-stat-num { font-size: 34px; }
}
@media (max-width: 720px) {
  .cc-anchor,
  .cc-pillars,
  .cc-rhythm,
  .cc-passion,
  .cc-life,
  .cc-calendar,
  .cc-cta-band { padding: 72px 0; }
  .cc-anchor-verse { font-size: 32px; }
  .cc-rhythm-card { padding: 28px 24px 24px; }
  .cc-rhythm-card h3 { font-size: 30px; }
  .cc-rhythm-times { font-size: 18px; }
  .cc-cta-band h2 { font-size: 34px; }
  .cc-passion-stats { grid-template-columns: 1fr; gap: 24px; }
  .cc-anchor-chip { left: 16px; bottom: -24px; max-width: 240px; }
  .cc-pillar-num::after { display: none; }
}
