/* ============================================================
   SUN CITY CHURCH — 2026 Redesign
   Dark cinematic system · Brand: #F25832 / #3A3A3C / #B7B7BE / #F7F7F7
   Type: Montserrat (Gotham web stand-in) + Instrument Serif italic accent
   ============================================================ */

:root {
  --ink:      #101013;
  --ink-2:    #17171b;
  --ink-3:    #202024;
  --charcoal: #3a3a3c;
  --paper:    #f7f7f7;
  --gray:     #b7b7be;
  --orange:   #f25832;
  --orange-2: #ff6e47;
  --line:     rgba(247, 247, 247, 0.1);
  --font-sans: "Montserrat", "Gotham", "Helvetica Neue", Arial, sans-serif;
  --font-accent: "Instrument Serif", Georgia, serif;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: var(--paper); }

img { max-width: 100%; display: block; }

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

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* ---------- custom cursor (single translucent orange circle) ---------- */
.cursor { position: fixed; inset: 0; pointer-events: none; z-index: 9999; }
.cursor-ball {
  position: fixed; top: 0; left: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(242, 88, 50, 0.35);
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
}
body.cursor-hover .cursor-ball {
  width: 52px; height: 52px;
  background: rgba(242, 88, 50, 0.5);
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor { display: none; }
}
@media (hover: hover) {
  body { cursor: none; }
  a, button, summary, [data-cursor] { cursor: none; }
}

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(20px, 4vw, 56px);
  transition: background 0.4s, backdrop-filter 0.4s, height 0.4s;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(16, 16, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-logo img { height: 46px; width: auto; }
.header-nav {
  margin-left: auto;
  display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px);
}
.header-nav a.nav-link {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  position: relative; padding: 6px 0;
}
.header-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.header-nav a.nav-link:hover::after,
.header-nav a.nav-link[aria-current="page"]::after {
  transform: scaleX(1); transform-origin: left;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--orange); color: var(--paper); }
.btn-solid:hover { background: var(--orange-2); }
.btn-ghost { border-color: rgba(247, 247, 247, 0.4); color: var(--paper); }
.btn-ghost:hover { border-color: var(--paper); background: rgba(247, 247, 247, 0.08); }
.btn-sm { padding: 12px 22px; }

/* burger */
.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0;
}
.burger span {
  display: block; height: 2px; width: 100%;
  background: var(--paper);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- full-screen menu ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: var(--ink);
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: calc(var(--nav-h) + 20px) clamp(24px, 6vw, 80px) 60px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.menu-open .menu-overlay { opacity: 1; visibility: visible; }
.menu-primary { list-style: none; }
.menu-primary a {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.015em; line-height: 1.12;
  display: inline-flex; align-items: baseline; gap: 18px;
  transition: color 0.25s;
}
.menu-primary a:hover { color: var(--orange); }
.menu-primary a .no {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  font-size: 0.35em; color: var(--orange); letter-spacing: 0;
}
.menu-secondary h3 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.menu-secondary ul { list-style: none; columns: 2; column-gap: 40px; margin-bottom: 34px; }
.menu-secondary a {
  display: inline-block; padding: 5px 0;
  font-size: 14px; font-weight: 500; color: var(--gray);
  transition: color 0.25s;
}
.menu-secondary a:hover { color: var(--paper); }

/* ---------- channel rail (right side) ---------- */
.channel-rail {
  position: fixed; right: 26px; top: 50%;
  transform: translateY(-50%);
  z-index: 700;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.channel-rail .rail-label {
  writing-mode: vertical-rl;
  font-size: 9px; font-weight: 800; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 6px;
}
.channel-rail .rail-line { width: 1px; height: 42px; background: var(--line); }
.channel-rail a {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: rgba(16, 16, 19, 0.55);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.channel-rail a:hover {
  border-color: var(--orange); background: var(--orange);
  transform: scale(1.08);
}
.channel-rail svg { width: 17px; height: 17px; fill: var(--paper); }
.channel-rail a::before {
  content: attr(data-label);
  position: absolute; right: 54px; top: 50%;
  transform: translateY(-50%) translateX(6px);
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; white-space: nowrap;
  color: var(--paper);
  background: var(--ink-3);
  border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.channel-rail a:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 900px) { .channel-rail { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) clamp(20px, 6vw, 80px) 110px;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,16,19,0.55) 0%, rgba(16,16,19,0.35) 45%, var(--ink) 100%),
    radial-gradient(90% 60% at 30% 55%, rgba(16,16,19,0.45), transparent);
}
.kicker {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 26px;
  display: flex; align-items: center; gap: 14px;
}
.display {
  font-size: clamp(2.5rem, 6.5vw, 5.4rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 0.98;
  max-width: 12ch;
}
.display .accent,
.accent {
  font-family: var(--font-accent);
  font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0;
  color: var(--orange);
}
.display .accent { font-size: 0.92em; }
.hero-sub {
  margin-top: 30px; max-width: 46ch;
  color: var(--gray); font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 500;
}
.hero-ctas { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute; bottom: 36px; left: clamp(20px, 6vw, 80px);
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gray);
}
.hero-scroll .bar {
  width: 1px; height: 46px; background: var(--line);
  position: relative; overflow: hidden;
}
.hero-scroll .bar::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--orange);
  animation: scrollhint 2s var(--ease) infinite;
}
@keyframes scrollhint { to { top: 110%; } }

/* centered hero variant */
.hero-center { align-items: center; text-align: center; }
.hero-center .kicker { justify-content: center; }
.hero-center .display { max-width: 14ch; }
.hero-center .hero-ctas { justify-content: center; }
.hero-center .hero-scroll {
  left: 50%; transform: translateX(-50%);
  flex-direction: column; gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll .bar::after { animation: none; }
}

/* ---------- notice band (timely alerts) ---------- */
.notice-band {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  background: var(--orange);
  padding: 20px clamp(20px, 6vw, 80px);
  transition: background 0.3s;
  position: relative;
}
.notice-band:hover { background: var(--orange-2); }
.nb-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10px; font-weight: 900; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--paper); white-space: nowrap;
}
.nb-tag::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.9);
  animation: nbpulse 2.2s ease-out infinite;
}
@keyframes nbpulse {
  70% { box-shadow: 0 0 0 9px rgba(247, 247, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(247, 247, 247, 0); }
}
.nb-text {
  color: var(--paper); font-size: 0.94rem; font-weight: 600;
  flex: 1; min-width: 220px;
}
.nb-cta {
  font-size: 11px; font-weight: 900; letter-spacing: 0.18em;
  text-transform: uppercase; white-space: nowrap; color: var(--paper);
  border-bottom: 2px solid rgba(247, 247, 247, 0.55);
  padding-bottom: 2px;
  transition: border-color 0.25s;
}
.notice-band:hover .nb-cta { border-color: var(--paper); }
@media (prefers-reduced-motion: reduce) { .nb-tag::before { animation: none; } }

/* ---------- current series badge ---------- */
.series-badge {
  display: inline-flex; align-items: center; gap: 9px;
  align-self: flex-start;   /* never stretch inside flex heroes */
  width: fit-content;
  background: var(--orange);
  color: var(--paper);
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-center .series-badge { align-self: center; }
.series-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.9);
  animation: nbpulse 2.2s ease-out infinite;
}
.cta-band .series-badge, .hero-center .series-badge { margin-left: auto; margin-right: auto; }
@media (prefers-reduced-motion: reduce) { .series-badge::before { animation: none; } }

/* events grid adapts when dated events expire */
.events-grid-4[data-visible="1"] { grid-template-columns: minmax(0, 460px); }
.events-grid-4[data-visible="2"] { grid-template-columns: repeat(2, 1fr); }
.events-grid-4[data-visible="3"] { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1020px) {
  .events-grid-4[data-visible="2"], .events-grid-4[data-visible="3"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .events-grid-4[data-visible="1"], .events-grid-4[data-visible="2"], .events-grid-4[data-visible="3"] { grid-template-columns: 1fr; }
}

/* ---------- generic sections ---------- */
.section { padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 80px); position: relative; }
.section-tight { padding-top: clamp(50px, 6vw, 80px); padding-bottom: clamp(50px, 6vw, 80px); }
.wrap { max-width: 1240px; margin: 0 auto; }
.h2 {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.015em; line-height: 1.05;
}
.h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
}
.lead { color: var(--gray); font-size: clamp(1rem, 1.35vw, 1.15rem); font-weight: 500; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; gap: 24px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .h2 { max-width: 16ch; }
.section-head .lead { max-width: 44ch; margin-left: auto; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- times strip ---------- */
.times-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.time-card {
  border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 30px;
  background: var(--ink-2);
  transition: border-color 0.3s, transform 0.35s var(--ease), background 0.3s;
  position: relative; overflow: hidden;
}
.time-card:hover { border-color: rgba(242, 88, 50, 0.55); transform: translateY(-4px); }
.time-card .tc-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.time-card h3 { font-size: 1.3rem; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.time-card .times { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.time-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.time-card .tc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper);
}
.time-card .tc-link::after { content: "→"; color: var(--orange); transition: transform 0.3s var(--ease); }
.time-card:hover .tc-link::after { transform: translateX(5px); }
/* whole card clickable: stretch the card's tc-link over the card */
.time-card .tc-link::before,
.event-card .tc-link::before {
  content: ""; position: absolute; inset: 0;
}
@media (max-width: 860px) { .times-grid { grid-template-columns: 1fr; } }

/* ---------- series feature ---------- */
.series {
  position: relative; border-radius: 26px; overflow: hidden;
  min-height: 540px;
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.series-bg { position: absolute; inset: 0; z-index: -1; }
.series-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.series:hover .series-bg img { transform: scale(1.04); }
.series-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 30%, rgba(16,16,19,0.9) 82%);
}
.series-content { padding: clamp(30px, 5vw, 64px); max-width: 640px; }

/* ---------- core four ---------- */
.four-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.four-card {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 3 / 4.1;
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.four-card img {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s;
  filter: saturate(0.9) brightness(0.85);
}
.four-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,16,19,0.1) 40%, rgba(16,16,19,0.88) 100%);
}
.four-card:hover img { transform: scale(1.06); filter: saturate(1) brightness(0.95); }
.four-body { padding: 24px; }
.four-body .num {
  font-family: var(--font-accent); font-style: italic;
  color: var(--orange); font-size: 1.5rem; display: block; margin-bottom: 6px;
}
.four-body h3 { font-size: 1.15rem; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.four-body p {
  color: var(--gray); font-size: 0.84rem; line-height: 1.55;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.5s 0.1s;
}
.four-card:hover .four-body p, .four-card:focus-within .four-body p { max-height: 200px; opacity: 1; }
@media (max-width: 1020px) { .four-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .four-grid { grid-template-columns: 1fr; }
  .four-card { aspect-ratio: 16 / 10; }
  .four-body p { max-height: none; opacity: 1; }
}

/* ---------- split (image + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.split-media { border-radius: 22px; overflow: hidden; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; transition: transform 1.2s var(--ease); }
.split-media:hover img { transform: scale(1.04); }
.split-copy .h2 { margin-bottom: 22px; }
.split-copy p { color: var(--gray); margin-bottom: 16px; font-weight: 500; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-rev .split-media { order: 2; }
@media (max-width: 900px) { .split-rev .split-media { order: 0; } }
.step-no {
  font-size: clamp(3.4rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 88, 50, 0.75);
  display: block; margin-bottom: 14px;
}

/* ---------- event cards ---------- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-card {
  border: 1px solid var(--line); border-radius: 18px;
  background: var(--ink-2);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.35s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
/* optional graphic at the top of an event card */
.event-card.has-art { padding-top: 0; }
.event-card .ec-art {
  margin: 0 -28px 6px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-3);
}
.event-card .ec-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.event-card:hover .ec-art img { transform: scale(1.04); }
.event-card:hover { transform: translateY(-4px); border-color: rgba(242, 88, 50, 0.55); }
.event-card .date {
  font-family: var(--font-accent); font-style: italic;
  color: var(--orange); font-size: 1.2rem;
}
.event-card h3 { font-size: 1.2rem; font-weight: 900; text-transform: uppercase; }
.event-card p { color: var(--gray); font-size: 0.9rem; flex: 1; }
.event-card .tc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
}
.event-card .tc-link::after { content: "→"; color: var(--orange); transition: transform 0.3s var(--ease); }
.event-card:hover .tc-link::after { transform: translateX(5px); }

/* pathway curriculum cards: per-book brand colors via --pc */
.pc-card { border-top: 3px solid var(--pc, var(--orange)); }
.pc-card .date { color: var(--pc, var(--orange)); }
.pc-card:hover { border-color: var(--pc, var(--orange)); }
.pc-card .btn-ghost:hover { border-color: var(--pc, var(--orange)); }
@media (max-width: 860px) { .events-grid { grid-template-columns: 1fr; } }
.events-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) { .events-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .events-grid-4 { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  text-align: center;
  padding: clamp(90px, 12vw, 170px) clamp(20px, 6vw, 80px);
  isolation: isolate;
}
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center 30%; }
.cta-band .cta-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(16,16,19,0.68) 30%, rgba(16,16,19,0.68) 70%, var(--ink) 100%);
}
.cta-band .display { margin: 0 auto; max-width: 16ch; font-size: clamp(2.4rem, 6.5vw, 5.4rem); }
.cta-band .lead { margin: 22px auto 0; max-width: 50ch; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- FAQ / accordion ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  transition: color 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--orange); }
.faq summary .plus {
  flex: 0 0 auto; width: 34px; height: 34px;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 400; font-size: 1.2rem; color: var(--orange);
  transition: transform 0.35s var(--ease), background 0.3s;
}
.faq details[open] summary .plus { transform: rotate(45deg); background: rgba(242, 88, 50, 0.14); }
.faq .faq-body { padding: 0 4px 28px; color: var(--gray); max-width: 70ch; font-weight: 500; }

/* ---------- beliefs grid ---------- */
.beliefs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.belief {
  border: 1px solid var(--line); border-radius: 18px;
  background: var(--ink-2); padding: 30px 28px;
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.belief:hover { border-color: rgba(242, 88, 50, 0.5); transform: translateY(-3px); }
.belief .tag {
  font-family: var(--font-accent); font-style: italic;
  color: var(--orange); font-size: 1.05rem; display: block; margin-bottom: 8px;
}
.belief h3 { font-size: 1.05rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.belief p { color: var(--gray); font-size: 0.9rem; }
.belief .ref { display: block; margin-top: 12px; font-size: 0.78rem; color: var(--charcoal); font-weight: 700; letter-spacing: 0.06em; color: rgba(183,183,190,0.55); }
@media (max-width: 760px) { .beliefs-grid { grid-template-columns: 1fr; } }

/* ---------- team grid (staff / elders) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 22px 26px;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.3s;
}
.team-card:hover { transform: translateY(-3px); border-color: rgba(242, 88, 50, 0.5); }
.team-card .avatar {
  width: 112px; height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  background: rgba(242, 88, 50, 0.14);
  color: var(--orange);
  font-weight: 900; font-size: 1.5rem; letter-spacing: 0.04em;
}
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 0.98rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.team-card p { color: var(--gray); font-size: 0.8rem; margin-top: 5px; }
@media (max-width: 1020px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- steps (next steps page) ---------- */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.step-card {
  border: 1px solid var(--line); border-radius: 22px;
  background: var(--ink-2); padding: clamp(30px, 4vw, 50px);
  position: relative; overflow: hidden;
}
.step-card .big-num {
  position: absolute; top: -30px; right: 6px;
  font-size: 9rem; font-weight: 900; line-height: 1;
  color: rgba(242, 88, 50, 0.1);
  user-select: none;
}
.step-card .tc-label { font-size: 10px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.step-card h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 900; text-transform: uppercase; margin-bottom: 14px; }
.step-card p { color: var(--gray); font-weight: 500; position: relative; }
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px) 40px;
  background: #0c0c0f;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  max-width: 1240px; margin: 0 auto;
}
.footer-brand img { height: 34px; margin-bottom: 20px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; max-width: 30ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.footer-social svg { width: 15px; height: 15px; fill: var(--paper); }
.footer-col h4 {
  font-size: 10px; font-weight: 800; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a, .footer-col p { color: var(--gray); font-size: 0.88rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--paper); }
.footer-col strong { color: var(--paper); font-weight: 700; }
.footer-bottom {
  max-width: 1240px; margin: 50px auto 0; padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: rgba(183, 183, 190, 0.6); font-size: 0.78rem;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: 72svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 60px) clamp(20px, 6vw, 80px) clamp(50px, 7vw, 90px);
  isolation: isolate;
}
.page-hero .hero-bg { z-index: -2; }
.page-hero .display { font-size: clamp(2.6rem, 7.5vw, 6.2rem); }

/* ---------- light theme (calendar page) ---------- */
body.theme-light { background: var(--paper); color: var(--charcoal); }
.theme-light .site-header {
  background: var(--ink);
  border-bottom: 1px solid rgba(16, 16, 19, 0.12);
}
.theme-light ::selection { background: var(--orange); color: #fff; }

.cal-head {
  padding: calc(var(--nav-h) + clamp(50px, 8vw, 90px)) clamp(20px, 6vw, 80px) clamp(30px, 4vw, 50px);
  text-align: center;
}
.cal-head .kicker { justify-content: center; }
.cal-head .display { color: #1c1c1e; margin: 0 auto; max-width: 16ch; }
.cal-head .lead { color: #6b6b72; margin: 18px auto 0; max-width: 52ch; }

.cal-rhythm {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 2px solid #1c1c1e; border-bottom: 1px solid rgba(28, 28, 30, 0.15);
}
.cal-rhythm > div { padding: 26px 22px; border-left: 1px solid rgba(28, 28, 30, 0.12); }
.cal-rhythm > div:first-child { border-left: 0; padding-left: 0; }
.cal-rhythm h3 {
  font-size: 10px; font-weight: 800; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.cal-rhythm p { font-size: 0.92rem; color: #3a3a3c; line-height: 1.6; }
.cal-rhythm strong { font-weight: 800; color: #1c1c1e; }

.cal-year {
  max-width: 1240px; margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) clamp(20px, 6vw, 80px) clamp(70px, 9vw, 120px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px) clamp(40px, 6vw, 80px);
}
.cal-month h2 {
  display: flex; align-items: baseline; gap: 12px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em;
  color: #1c1c1e;
  border-bottom: 2px solid #1c1c1e;
  padding-bottom: 10px; margin-bottom: 4px;
}
.cal-month h2 .mo-no {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  font-size: 0.62em; color: var(--orange); letter-spacing: 0;
}
.cal-month ul { list-style: none; }
.cal-month li {
  border-bottom: 1px solid rgba(28, 28, 30, 0.12);
}
.cal-month li > a,
.cal-month li > span.row {
  display: grid; grid-template-columns: 108px 1fr;
  gap: 14px; align-items: baseline;
  padding: 13px 8px 13px 0;
  position: relative;
  transition: background 0.22s, padding-left 0.22s var(--ease);
}
.cal-month li > a::after {
  content: "→";
  position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%) translateX(-4px);
  color: var(--orange); font-weight: 700;
  opacity: 0; transition: opacity 0.22s, transform 0.22s var(--ease);
}
.cal-month li > a:hover { background: rgba(242, 88, 50, 0.07); padding-left: 8px; }
.cal-month li > a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.cal-month li > a:hover .e { color: var(--orange); }
.cal-month .e { transition: color 0.22s; }

/* clickable rhythm cards */
.cal-rhythm > div > a {
  display: block;
  position: relative;
  transition: color 0.22s;
}
.cal-rhythm > div > a:hover h3 { color: var(--charcoal); }
.cal-rhythm > div > a:hover .rh-more { color: var(--orange); }
.cal-rhythm .rh-more {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 12px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: #8a8a90;
  transition: color 0.22s, gap 0.22s var(--ease);
}
.cal-rhythm > div > a:hover .rh-more { gap: 12px; }
.cal-month .d {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
}
.cal-month .e { font-size: 0.95rem; color: #1c1c1e; font-weight: 600; line-height: 1.5; }
.cal-month .e small {
  display: block; font-size: 0.8rem; font-weight: 500; color: #6b6b72;
}
.cal-note {
  max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) clamp(60px, 8vw, 90px);
  font-size: 0.82rem; color: #8a8a90;
}
@media (max-width: 860px) {
  .cal-rhythm { grid-template-columns: 1fr; }
  .cal-rhythm > div { border-left: 0; padding-left: 0; border-top: 1px solid rgba(28,28,30,0.12); }
  .cal-rhythm > div:first-child { border-top: 0; }
  .cal-year { grid-template-columns: 1fr; }
}

/* ---------- prayer request form ---------- */
.pray-form {
  max-width: 720px;
  display: grid; gap: 18px;
}
.pray-form label {
  display: block;
  font-size: 10px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 8px;
}
.pray-form input,
.pray-form select,
.pray-form textarea {
  width: 100%;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500;
  color: var(--paper);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 18px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pray-form select { appearance: none; }
.pray-form textarea { min-height: 170px; resize: vertical; }
.pray-form input::placeholder, .pray-form textarea::placeholder { color: rgba(183, 183, 190, 0.55); }
.pray-form input:focus, .pray-form select:focus, .pray-form textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 88, 50, 0.16);
}
.pray-form .pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .pray-form .pf-row { grid-template-columns: 1fr; } }
.pray-thanks {
  border: 1px solid rgba(242, 88, 50, 0.5);
  background: rgba(242, 88, 50, 0.1);
  border-radius: 14px;
  padding: 20px 24px;
  color: var(--paper); font-weight: 600;
}

/* ---------- staff forms directory (light) ---------- */
.fd-tools {
  position: sticky; top: 68px; z-index: 500;
  background: rgba(247, 247, 247, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 28, 30, 0.12);
  padding: 16px clamp(20px, 6vw, 80px);
}
.fd-tools-inner { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.fd-search {
  flex: 1 1 260px; min-width: 200px;
  font-family: var(--font-sans); font-size: 0.92rem; font-weight: 500;
  color: #1c1c1e;
  background: #fff;
  border: 1px solid rgba(28, 28, 30, 0.18);
  border-radius: 100px;
  padding: 12px 20px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.fd-search::placeholder { color: #9a9aa2; }
.fd-search:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 88, 50, 0.14);
}
.fd-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.fd-chip {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #6b6b72;
  background: #fff;
  border: 1px solid rgba(28, 28, 30, 0.16);
  border-radius: 100px;
  padding: 9px 15px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.fd-chip:hover { border-color: var(--orange); color: var(--orange); }
.fd-chip.on { background: var(--orange); border-color: var(--orange); color: #fff; }
.fd-count { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9a9aa2; margin-left: auto; }

.fd-wrap { max-width: 1240px; margin: 0 auto; padding: clamp(34px, 5vw, 56px) clamp(20px, 6vw, 80px) clamp(70px, 9vw, 110px); }
.fd-dept { margin-bottom: clamp(38px, 5vw, 58px); }
.fd-dept > h2 {
  display: flex; align-items: baseline; gap: 12px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900; text-transform: uppercase; letter-spacing: -0.005em;
  color: #1c1c1e;
  border-bottom: 2px solid #1c1c1e;
  padding-bottom: 10px; margin-bottom: 20px;
}
.fd-dept > h2 .dept-no {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  font-size: 0.66em; color: var(--orange); letter-spacing: 0;
}
.fd-sub { margin-bottom: 22px; }
.fd-sub > h3 {
  font-size: 10px; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.fd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 980px) { .fd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .fd-grid { grid-template-columns: 1fr; } }
.fd-link {
  display: flex; flex-direction: column; gap: 4px;
  background: #fff;
  border: 1px solid rgba(28, 28, 30, 0.13);
  border-left: 3px solid rgba(28, 28, 30, 0.13);
  border-radius: 12px;
  padding: 15px 17px;
  position: relative;
  transition: border-color 0.22s, transform 0.28s var(--ease), box-shadow 0.28s;
}
.fd-link:hover {
  border-color: rgba(28, 28, 30, 0.13);
  border-left-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 28, 30, 0.09);
}
.fd-link .fl-name {
  font-size: 0.92rem; font-weight: 800; color: #1c1c1e;
  display: flex; align-items: center; gap: 8px;
}
.fd-link:hover .fl-name { color: var(--orange); }
.fd-link .fl-note { font-size: 0.78rem; color: #7a7a82; line-height: 1.5; font-weight: 500; }
.fd-link .fl-kind {
  align-self: flex-start;
  margin-top: 3px;
  font-size: 8.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: #9a9aa2;
  border: 1px solid rgba(28, 28, 30, 0.14);
  border-radius: 100px; padding: 3px 8px;
}
.fd-empty { display: none; text-align: center; padding: 60px 20px; color: #7a7a82; }
.fd-empty.on { display: block; }
[hidden] { display: none !important; }

/* ---------- mobile ---------- */
@media (max-width: 900px) {
  .header-nav a.nav-link, .header-nav .btn { display: none; }
  .menu-overlay { grid-template-columns: 1fr; align-items: start; overflow-y: auto; gap: 40px; }
  .menu-secondary ul { columns: 2; }
}
@media (min-width: 901px) {
  .burger { margin-left: 8px; }
}
