/* ============================================================
   THE POINTE — LOCATIONS
   Shared by /locations/ and every campus page under it.
   Loaded after /brand.css.
   ============================================================ */

/* ── CAMPUS HERO — full-bleed photo, name big, info along the bottom ── */
.campus-hero {
  position: relative; min-height: 88vh; padding: 0;
  display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden; background: var(--ink);
}
.campus-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.campus-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,18,0.15) 0%, rgba(10,14,18,0.25) 40%, rgba(10,14,18,0.82) 100%);
}
.campus-hero .inner {
  position: relative; z-index: 1; width: 100%;
  max-width: 1280px; margin: 0 auto; padding: 0 32px 48px;
}
.campus-hero .kicker {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky);
}
.campus-hero .kicker .tag {
  background: var(--peach); color: var(--peach-ink);
  padding: 5px 12px; border-radius: 999px; letter-spacing: 0.12em; font-size: 11px;
  white-space: nowrap;
}
.campus-hero h1 {
  font-size: clamp(56px, 11vw, 168px);
  margin: 14px 0 40px; color: var(--white);
}
.campus-hero .facts {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.28);
}
.campus-hero .fact-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 6px;
}
.campus-hero .fact-value { font-size: 18px; font-weight: 700; line-height: 1.4; }
.campus-hero .fact-value a { color: var(--white); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.campus-hero .fact-value a:hover { color: var(--peach); }

/* Anchored sections clear the fixed header + sticky jump bar */
section[id] { scroll-margin-top: 150px; }

/* ── Sub-nav chips that jump down the page ── */
.jump {
  position: sticky; top: 88px; z-index: 50;
  background: rgba(250,250,249,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); padding: 0;
}
.jump ul {
  list-style: none; display: flex; gap: 8px; overflow-x: auto;
  max-width: 1280px; margin: 0 auto; padding: 14px 32px; scrollbar-width: none;
}
.jump ul::-webkit-scrollbar { display: none; }
.jump a {
  display: inline-block; white-space: nowrap;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; background: var(--white);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.jump a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ── Section heads ── */
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 60px); color: var(--ink); margin: 16px 0 20px; }
.section-head p { font-size: 18px; color: var(--text-mid); line-height: 1.7; }

/* ── Info tiles (times / directions / parking / contact) ── */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.info {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px 26px; display: flex; flex-direction: column;
}
.info .icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 20px;
  background: var(--sky-light); color: var(--sky-darker);
  display: flex; align-items: center; justify-content: center;
}
.info .icon svg { width: 20px; height: 20px; }
.info.peach .icon { background: var(--peach-soft); color: var(--peach-deep); }
.info h3 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.info .big { font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.35; letter-spacing: -0.01em; }
.info p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-top: 8px; }
.info .link {
  margin-top: auto; padding-top: 18px;
  font-size: 13px; font-weight: 700; color: var(--sky-darker); text-decoration: none;
}
.info .link:hover { text-decoration: underline; }
.times { list-style: none; display: grid; gap: 4px; }
.times li { display: flex; gap: 10px; align-items: baseline; }
.times .d { width: 34px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.times .t { font-size: 18px; font-weight: 800; color: var(--ink); }

/* ── Event cards ── */
.events { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.event {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  text-decoration: none; color: inherit; transition: transform 0.15s, box-shadow 0.2s;
}
.event:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -30px rgba(10,22,32,0.35); }
.event .date {
  width: 76px; text-align: center; border-radius: 14px; padding: 12px 0;
  background: var(--sky-light); color: var(--sky-darker); align-self: start;
}
.event.peach .date { background: var(--peach-soft); color: var(--peach-deep); }
.event .mo { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.event .dy { font-size: 32px; font-weight: 900; line-height: 1.05; color: var(--ink); }
.event .dy.small { font-size: 15px; line-height: 1.2; padding: 4px 6px 0; }
.event h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.event .when { font-size: 13px; font-weight: 700; color: var(--sky-darker); margin-bottom: 10px; }
.event.peach .when { color: var(--peach-deep); }
.event p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }
.event .more { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }

/* ── Age-group cards (kids / students) ── */
.ages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.age {
  border-radius: 22px; padding: 34px 30px; background: var(--white); border: 1px solid var(--line);
}
.age .range { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky-darker); }
.age h3 { font-size: 30px; margin: 10px 0 12px; color: var(--ink); }
.age p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.age .when { margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--ink); }

/* ── Kids strip — church-wide ministry, one line per campus page ── */
.kids-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
  background: var(--tint); border: 1px solid var(--sky-light); border-radius: 22px; padding: 40px 44px;
}
.kids-strip > div { flex: 1 1 460px; }
.kids-strip h2 { font-size: clamp(26px, 3vw, 40px); color: var(--ink); margin: 12px 0 14px; }
.kids-strip p { font-size: 16px; color: var(--text-mid); line-height: 1.7; max-width: 60ch; }

/* ── Feature band (new here / launch team) ── */
.band {
  background: var(--ink); color: var(--white);
  border-radius: 26px; padding: 72px 64px;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.band::after {
  content: ''; position: absolute; right: -120px; bottom: -160px;
  width: 420px; height: 420px; border-radius: 50%;
  background: var(--sky-darker); opacity: 0.25; pointer-events: none;
}
.band > * { position: relative; z-index: 1; min-width: 0; }
.band .eyebrow { color: var(--sky); }
.band h2 { font-size: clamp(34px, 4.2vw, 56px); margin: 16px 0 20px; }
.band h2 .hl-peach { color: var(--white); background: linear-gradient(180deg, transparent 72%, var(--peach-deep) 72%); }
.band p { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.7; }
.band ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.band li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,0.88); }
.band li::before {
  content: ''; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
  background: var(--peach) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e3417' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
  border-radius: 50%;
}

/* ── Pastor block ── */
.pastor { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.pastor .name {
  font-size: clamp(52px, 7vw, 104px); color: var(--ink); line-height: 0.9;
}
.pastor .name span { display: block; }
.pastor .name .amp { color: var(--peach-deep); }
.pastor p { font-size: 17px; color: var(--text-mid); line-height: 1.75; }
.pastor p + p { margin-top: 16px; }
.pastor .sig { margin-top: 26px; font-size: 14px; font-weight: 700; color: var(--ink); }

/* ── Split (text + photo) ── */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.split img { display: block; width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; border-radius: 22px; }
.split .section-head { margin-bottom: 0; }
.split .section-head p + p { margin-top: 18px; }

/* ── Timeline ── */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.timeline li { padding: 30px 28px 32px; border-top: 3px solid var(--sky-deep); background: var(--white); border-radius: 0 0 18px 18px; }
.timeline li.now { border-top-color: var(--peach-deep); }
.timeline .when { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky-darker); margin-bottom: 10px; }
.timeline li.now .when { color: var(--peach-deep); }
.timeline h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.timeline p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* ── Prayer strip ── */
.prayer-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--peach-soft); border: 1px solid var(--peach); border-radius: 22px; padding: 36px 40px;
}
.prayer-strip h2 { font-size: clamp(26px, 3vw, 38px); color: var(--ink); margin-top: 8px; }
.prayer-strip .eyebrow { color: var(--peach-deep); }
.prayer-strip p { font-size: 16px; color: var(--text-mid); margin-top: 8px; max-width: 52ch; }

/* ── FAQ ── */
.faq { max-width: 860px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; font-size: 18px; font-weight: 700; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; flex-shrink: 0; font-size: 26px; font-weight: 400; color: var(--sky-darker); transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { font-size: 16px; color: var(--text-mid); line-height: 1.75; padding: 0 0 24px; max-width: 68ch; }
.faq details p a { color: var(--sky-darker); font-weight: 600; }

/* ── Other-campus footer strip ── */
.other-campus {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 30px 0; border-top: 1px solid var(--line);
}
.other-campus p { font-size: 16px; color: var(--text-mid); }
.other-campus strong { color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .ages, .timeline, .events { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; gap: 36px; padding: 56px 40px; }
  .pastor, .split { grid-template-columns: 1fr; gap: 36px; }
  .split img { aspect-ratio: 16/10; }
}
@media (max-width: 768px) {
  .campus-hero { min-height: 82vh; }
  .campus-hero .inner { padding: 0 24px 32px; }
  .campus-hero h1 { margin-bottom: 28px; }
  .campus-hero .facts { flex-direction: column; align-items: flex-start; gap: 16px; }
  .jump { top: 80px; }
  .jump ul { padding: 12px 24px; }
  .info-grid { grid-template-columns: 1fr; }
  .band { padding: 44px 26px; border-radius: 22px; }
  .band .btn, .kids-strip .btn, .container > p > .btn { white-space: normal; text-align: left; }
  .prayer-strip, .kids-strip { padding: 30px 24px; }
  .event { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
