/* ============================================================
   Riverside Community Church — Template A
   Scoped stylesheet. All classes prefixed with rcc-
   Warm, welcoming neighborhood community church
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;700;900&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Caveat:wght@400;600;700&display=swap');

/* ---------- Reset (scoped to .rcc-root) ---------- */
.rcc-root,
.rcc-root *,
.rcc-root *::before,
.rcc-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.rcc-root {
  /* Palette */
  --rcc-bone:        #F5EFE0;
  --rcc-bone-deep:   #ECE3CB;
  --rcc-butter:      #F8F0DA;
  --rcc-terracotta:  #B6492E;
  --rcc-terracotta-deep: #8E3520;
  --rcc-cedar:       #6A7D5C;
  --rcc-cedar-deep:  #4E5E43;
  --rcc-ink:         #2A2A28;
  --rcc-ink-soft:    #4A4A45;
  --rcc-muted:       #7A7268;
  --rcc-line:        #D9CFB8;
  --rcc-paper:       #FBF7EB;
  --rcc-shadow:      0 18px 38px -22px rgba(60,40,20,0.28);
  --rcc-shadow-lg:   0 30px 60px -28px rgba(60,40,20,0.35);

  /* Type */
  --rcc-serif: 'Frank Ruhl Libre', Georgia, serif;
  --rcc-sans:  'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --rcc-hand:  'Caveat', cursive;

  /* Layout */
  --rcc-max: 1240px;
  --rcc-gutter: clamp(20px, 4vw, 56px);
  --rcc-radius: 14px;
  --rcc-radius-sm: 8px;
  --rcc-radius-lg: 22px;

  font-family: var(--rcc-sans);
  color: var(--rcc-ink);
  background: var(--rcc-bone);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.rcc-root img { max-width: 100%; display: block; }
.rcc-root a { color: inherit; text-decoration: none; }
.rcc-root button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* ---------- Wrap ---------- */
.rcc-wrap {
  width: 100%;
  max-width: var(--rcc-max);
  margin: 0 auto;
  padding-left: var(--rcc-gutter);
  padding-right: var(--rcc-gutter);
}

/* ---------- Type helpers ---------- */
.rcc-eyebrow {
  font-family: var(--rcc-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rcc-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.rcc-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--rcc-terracotta);
  display: inline-block;
}

.rcc-hand {
  font-family: var(--rcc-hand);
  font-weight: 600;
  color: var(--rcc-cedar-deep);
  font-size: 1.5em;
  line-height: 1.1;
  display: inline-block;
  transform: rotate(-2deg);
}

.rcc-h1, .rcc-h2, .rcc-h3, .rcc-h4 {
  font-family: var(--rcc-serif);
  color: var(--rcc-ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.rcc-h1 { font-size: clamp(40px, 6vw, 78px); font-weight: 500; }
.rcc-h2 { font-size: clamp(30px, 4.2vw, 52px); }
.rcc-h3 { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.2; }
.rcc-h4 { font-size: 20px; line-height: 1.25; }

.rcc-lead {
  font-size: clamp(17px, 1.45vw, 20px);
  color: var(--rcc-ink-soft);
  line-height: 1.6;
  max-width: 56ch;
}

/* ---------- Buttons / pills ---------- */
.rcc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.rcc-btn--primary {
  background: var(--rcc-terracotta);
  color: var(--rcc-paper);
  box-shadow: 0 10px 22px -12px rgba(182,73,46,0.55);
}
.rcc-btn--primary:hover {
  background: var(--rcc-terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px rgba(182,73,46,0.65);
}
.rcc-btn--ghost {
  background: transparent;
  color: var(--rcc-ink);
  border: 1.5px solid var(--rcc-ink);
}
.rcc-btn--ghost:hover {
  background: var(--rcc-ink);
  color: var(--rcc-paper);
  transform: translateY(-2px);
}
.rcc-btn--cedar {
  background: var(--rcc-cedar);
  color: var(--rcc-paper);
}
.rcc-btn--cedar:hover {
  background: var(--rcc-cedar-deep);
  transform: translateY(-2px);
}
.rcc-btn .rcc-arrow {
  width: 16px; height: 16px;
  transition: transform .25s ease;
}
.rcc-btn:hover .rcc-arrow { transform: translateX(4px); }

/* ---------- Top bar (announcement) ---------- */
.rcc-topbar {
  background: var(--rcc-ink);
  color: var(--rcc-paper);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.rcc-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--rcc-gutter);
  max-width: var(--rcc-max);
  margin: 0 auto;
  gap: 16px;
}
.rcc-topbar__msg { display: flex; align-items: center; gap: 8px; }
.rcc-topbar__msg .rcc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rcc-terracotta);
  display: inline-block;
  animation: rcc-pulse 2.4s ease-in-out infinite;
}
.rcc-topbar__links { display: flex; gap: 18px; font-size: 12.5px; }
.rcc-topbar__links a:hover { color: var(--rcc-butter); }

@keyframes rcc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* ---------- Nav ---------- */
.rcc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--rcc-bone);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.rcc-nav.is-scrolled {
  background: rgba(245,239,224,0.96);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--rcc-line);
  box-shadow: 0 6px 18px -14px rgba(60,40,20,0.3);
}
.rcc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--rcc-gutter);
  max-width: var(--rcc-max);
  margin: 0 auto;
  gap: 28px;
}
.rcc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rcc-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rcc-terracotta);
  color: var(--rcc-paper);
  display: grid;
  place-items: center;
  font-family: var(--rcc-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.rcc-logo__type {
  font-family: var(--rcc-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.rcc-logo__sub {
  display: block;
  font-family: var(--rcc-sans);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rcc-muted);
  margin-top: 4px;
}
.rcc-nav__menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.rcc-nav__menu a {
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  padding: 6px 0;
  color: var(--rcc-ink);
  transition: color .2s ease;
}
.rcc-nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rcc-terracotta);
  transition: width .3s ease;
}
.rcc-nav__menu a:hover::after,
.rcc-nav__menu a.is-active::after { width: 100%; }
.rcc-nav__menu a.is-active { color: var(--rcc-terracotta); }
.rcc-nav__cta { display: flex; align-items: center; gap: 14px; }
.rcc-nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--rcc-line);
  align-items: center;
  justify-content: center;
}
.rcc-nav__toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--rcc-ink);
  position: relative;
}
.rcc-nav__toggle span::before,
.rcc-nav__toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--rcc-ink);
}
.rcc-nav__toggle span::before { top: -6px; }
.rcc-nav__toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.rcc-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--rcc-ink);
}
.rcc-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rcc-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rcc-slow-zoom 18s ease-out forwards;
}
.rcc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42,42,40,0.20) 0%, rgba(42,42,40,0.05) 35%, rgba(42,42,40,0.65) 100%),
    linear-gradient(90deg, rgba(42,42,40,0.45) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.rcc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--rcc-max);
  margin: 0 auto;
  padding: 60px var(--rcc-gutter) 70px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: end;
}
.rcc-hero__copy { color: var(--rcc-paper); }
.rcc-hero__eyebrow {
  color: var(--rcc-butter);
  letter-spacing: 0.22em;
}
.rcc-hero__eyebrow::before { background: var(--rcc-butter); }
.rcc-hero__title {
  font-family: var(--rcc-serif);
  font-weight: 500;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 18px 0 22px;
  color: var(--rcc-paper);
  text-wrap: balance;
}
.rcc-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rcc-butter);
}
.rcc-hero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  max-width: 30ch;
  color: rgba(248,240,218,0.92);
  margin-bottom: 28px;
}
.rcc-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.rcc-hero__cta .rcc-btn--ghost {
  color: var(--rcc-paper);
  border-color: rgba(248,240,218,0.6);
}
.rcc-hero__cta .rcc-btn--ghost:hover {
  background: var(--rcc-paper);
  color: var(--rcc-ink);
}

/* Service-time card overlay */
.rcc-service-card {
  position: relative;
  background: var(--rcc-paper);
  color: var(--rcc-ink);
  border-radius: var(--rcc-radius-lg);
  padding: 28px 30px;
  box-shadow: var(--rcc-shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
  animation: rcc-pulse-soft 4s ease-in-out infinite;
  max-width: 380px;
  justify-self: end;
}
@keyframes rcc-pulse-soft {
  0%, 100% { box-shadow: var(--rcc-shadow-lg); }
  50% { box-shadow: 0 36px 70px -28px rgba(182,73,46,0.4); }
}
.rcc-service-card__label {
  font-family: var(--rcc-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rcc-terracotta);
  margin-bottom: 8px;
}
.rcc-service-card__title {
  font-family: var(--rcc-serif);
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.rcc-service-card__schedule {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border-top: 1px solid var(--rcc-line);
}
.rcc-service-card__schedule li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--rcc-line);
  font-size: 14.5px;
}
.rcc-service-card__schedule li b {
  font-family: var(--rcc-serif);
  font-weight: 500;
  font-size: 17px;
}
.rcc-service-card__schedule li span { color: var(--rcc-muted); font-size: 13px; }
.rcc-service-card__addr {
  font-size: 13px;
  color: var(--rcc-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.45;
}
.rcc-service-card__addr svg { flex-shrink: 0; margin-top: 2px; }

@keyframes rcc-slow-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}

/* ---------- Section base ---------- */
.rcc-section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}
.rcc-section--bone { background: var(--rcc-bone); }
.rcc-section--paper { background: var(--rcc-paper); }
.rcc-section--cream { background: var(--rcc-butter); }
.rcc-section--cedar {
  background: var(--rcc-cedar);
  color: var(--rcc-paper);
}
.rcc-section--cedar .rcc-h2 { color: var(--rcc-paper); }
.rcc-section--cedar .rcc-lead { color: rgba(248,240,218,0.9); }
.rcc-section--ink {
  background: var(--rcc-ink);
  color: var(--rcc-paper);
}
.rcc-section--ink .rcc-h2 { color: var(--rcc-paper); }

.rcc-section__head {
  margin-bottom: clamp(40px, 5vw, 70px);
  max-width: 720px;
}
.rcc-section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.rcc-section__head .rcc-h2 { margin-top: 14px; }
.rcc-section__head .rcc-lead { margin-top: 18px; }
.rcc-section__head--center .rcc-eyebrow { justify-content: center; }
.rcc-section__head--center .rcc-lead { margin-left: auto; margin-right: auto; }

/* ---------- What to expect (4-step) ---------- */
.rcc-expect {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.rcc-expect::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--rcc-line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.rcc-expect__step {
  position: relative;
  background: var(--rcc-paper);
  padding: 28px 24px;
  border-radius: var(--rcc-radius);
  border: 1px solid var(--rcc-line);
  z-index: 1;
  transition: transform .3s ease, box-shadow .3s ease;
}
.rcc-expect__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--rcc-shadow);
}
.rcc-expect__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rcc-terracotta);
  color: var(--rcc-paper);
  display: grid;
  place-items: center;
  font-family: var(--rcc-serif);
  font-size: 18px;
  margin-bottom: 18px;
}
.rcc-expect__title {
  font-family: var(--rcc-serif);
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.rcc-expect__text {
  font-size: 14.5px;
  color: var(--rcc-ink-soft);
  line-height: 1.55;
}

/* ---------- This Sunday card ---------- */
.rcc-sunday {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--rcc-paper);
  border-radius: var(--rcc-radius-lg);
  overflow: hidden;
  box-shadow: var(--rcc-shadow);
  border: 1px solid var(--rcc-line);
}
.rcc-sunday__photo {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.rcc-sunday__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.rcc-sunday:hover .rcc-sunday__photo img { transform: scale(1.04); }
.rcc-sunday__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42,42,40,0.4));
}
.rcc-sunday__tag {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--rcc-terracotta);
  color: var(--rcc-paper);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}
.rcc-sunday__body {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rcc-sunday__series {
  font-family: var(--rcc-hand);
  font-size: 26px;
  color: var(--rcc-cedar-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.rcc-sunday__title {
  font-family: var(--rcc-serif);
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.rcc-sunday__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rcc-line);
  font-size: 13.5px;
  color: var(--rcc-muted);
}
.rcc-sunday__meta b { color: var(--rcc-ink); font-weight: 700; }
.rcc-sunday__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--rcc-ink-soft);
  margin-bottom: 22px;
}

/* ---------- Ministries 6-up grid ---------- */
.rcc-ministries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rcc-ministry {
  background: var(--rcc-paper);
  border-radius: var(--rcc-radius);
  overflow: hidden;
  border: 1px solid var(--rcc-line);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.rcc-ministry:hover {
  transform: translateY(-6px);
  box-shadow: var(--rcc-shadow-lg);
}
.rcc-ministry__photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.rcc-ministry__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.rcc-ministry:hover .rcc-ministry__photo img { transform: scale(1.06); }
.rcc-ministry__icon {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--rcc-paper);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--rcc-terracotta);
}
.rcc-ministry__body { padding: 22px 24px 26px; }
.rcc-ministry__title {
  font-family: var(--rcc-serif);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 6px;
}
.rcc-ministry__age {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rcc-cedar);
  font-weight: 700;
  margin-bottom: 10px;
}
.rcc-ministry__text {
  font-size: 14.5px;
  color: var(--rcc-ink-soft);
  line-height: 1.55;
}
.rcc-ministry__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--rcc-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rcc-ministry__link:hover { color: var(--rcc-terracotta-deep); }
.rcc-ministry__link svg { transition: transform .25s ease; }
.rcc-ministry__link:hover svg { transform: translateX(4px); }

/* ---------- Small groups locator ---------- */
.rcc-groups {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.rcc-groups__intro .rcc-h2 { margin-top: 14px; }
.rcc-groups__intro .rcc-lead { margin-top: 18px; margin-bottom: 24px; }
.rcc-groups__list {
  background: var(--rcc-paper);
  border-radius: var(--rcc-radius);
  border: 1px solid var(--rcc-line);
  overflow: hidden;
}
.rcc-group {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rcc-line);
  transition: background .2s ease;
}
.rcc-group:last-child { border-bottom: 0; }
.rcc-group:hover { background: var(--rcc-bone-deep); }
.rcc-group__pin {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rcc-bone);
  display: grid; place-items: center;
  color: var(--rcc-terracotta);
  font-family: var(--rcc-serif);
  font-weight: 700;
  font-size: 15px;
}
.rcc-group__name {
  font-family: var(--rcc-serif);
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 2px;
}
.rcc-group__meta {
  font-size: 13px;
  color: var(--rcc-muted);
}
.rcc-group__when {
  font-family: var(--rcc-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--rcc-cedar-deep);
  text-align: right;
  letter-spacing: 0.04em;
}

/* ---------- Outreach feature ---------- */
.rcc-outreach {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}
.rcc-outreach__photo {
  border-radius: var(--rcc-radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: var(--rcc-shadow);
}
.rcc-outreach__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.rcc-outreach:hover .rcc-outreach__photo img { transform: scale(1.04); }
.rcc-outreach__sticker {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--rcc-butter);
  color: var(--rcc-ink);
  border-radius: 50%;
  width: 130px; height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  transform: rotate(-8deg);
  font-family: var(--rcc-hand);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
  box-shadow: var(--rcc-shadow);
}
.rcc-outreach__sticker b {
  font-family: var(--rcc-serif);
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--rcc-terracotta);
}
.rcc-outreach__body .rcc-eyebrow { margin-bottom: 14px; }
.rcc-outreach__title { font-family: var(--rcc-serif); font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; margin-bottom: 18px; }
.rcc-outreach__list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.rcc-outreach__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rcc-line);
  font-size: 15.5px;
}
.rcc-outreach__list li b { font-family: var(--rcc-serif); font-weight: 500; font-size: 18px; display:block; margin-bottom: 2px; }
.rcc-outreach__list li svg {
  flex-shrink: 0;
  color: var(--rcc-cedar);
  margin-top: 3px;
}

/* ---------- Give callout / budget transparency ---------- */
.rcc-give {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.rcc-give__copy .rcc-h2 { color: var(--rcc-paper); margin-top: 14px; }
.rcc-give__copy .rcc-lead { color: rgba(248,240,218,0.85); margin-top: 18px; }
.rcc-give__copy .rcc-hand { color: var(--rcc-butter); }

.rcc-budget {
  background: rgba(248,240,218,0.06);
  border: 1px solid rgba(248,240,218,0.18);
  border-radius: var(--rcc-radius);
  padding: 34px 36px;
}
.rcc-budget__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(248,240,218,0.18);
}
.rcc-budget__head h3 {
  font-family: var(--rcc-serif);
  font-size: 20px;
  color: var(--rcc-paper);
  font-weight: 500;
}
.rcc-budget__head span {
  font-size: 12px;
  color: rgba(248,240,218,0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rcc-budget__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 14.5px;
}
.rcc-budget__bar {
  grid-column: 1 / -1;
  height: 7px;
  border-radius: 999px;
  background: rgba(248,240,218,0.12);
  overflow: hidden;
  margin-bottom: 18px;
}
.rcc-budget__bar-fill {
  height: 100%;
  background: var(--rcc-butter);
  width: 0;
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(.2,.7,.2,1);
}
.rcc-budget__row .rcc-budget__label { color: rgba(248,240,218,0.92); }
.rcc-budget__row .rcc-budget__val { font-weight: 700; color: var(--rcc-butter); font-family: var(--rcc-serif); }

/* ---------- Visit CTA strip ---------- */
.rcc-visit {
  text-align: center;
  padding: clamp(70px, 8vw, 110px) 0;
}
.rcc-visit .rcc-hand { color: var(--rcc-cedar-deep); margin-bottom: 8px; font-size: 28px; display: block; }
.rcc-visit__title {
  font-family: var(--rcc-serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.rcc-visit__sub {
  font-size: 18px;
  color: var(--rcc-ink-soft);
  margin-bottom: 32px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.rcc-visit__cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Photo grid (community life) ---------- */
.rcc-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.rcc-photo-grid__item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.rcc-photo-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .5s ease;
  filter: saturate(0.95);
}
.rcc-photo-grid__item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}
.rcc-photo-grid__item--tall { grid-row: span 2; }
.rcc-photo-grid__item--wide { grid-column: span 2; }

/* ---------- Footer ---------- */
.rcc-footer {
  background: var(--rcc-ink);
  color: rgba(248,240,218,0.78);
  padding: 80px 0 36px;
}
.rcc-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}
.rcc-footer__brand .rcc-logo__type { color: var(--rcc-paper); }
.rcc-footer__brand .rcc-logo__sub { color: rgba(248,240,218,0.5); }
.rcc-footer__brand p {
  margin: 18px 0 22px;
  font-size: 14.5px;
  max-width: 36ch;
  line-height: 1.6;
}
.rcc-footer__col h4 {
  font-family: var(--rcc-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rcc-butter);
  margin-bottom: 18px;
}
.rcc-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
}
.rcc-footer__col a:hover { color: var(--rcc-butter); }
.rcc-footer__bottom {
  border-top: 1px solid rgba(248,240,218,0.14);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(248,240,218,0.5);
}
.rcc-footer__socials {
  display: flex;
  gap: 10px;
}
.rcc-footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(248,240,218,0.18);
  display: grid; place-items: center;
  transition: background .25s, border-color .25s;
}
.rcc-footer__socials a:hover {
  background: var(--rcc-terracotta);
  border-color: var(--rcc-terracotta);
  color: var(--rcc-paper);
}

/* ---------- About page bits ---------- */
.rcc-page-hero {
  padding: 70px 0 60px;
  background: var(--rcc-paper);
  border-bottom: 1px solid var(--rcc-line);
}
.rcc-page-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.rcc-page-hero h1 {
  font-family: var(--rcc-serif);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.rcc-page-hero p { margin-top: 20px; }
.rcc-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rcc-muted);
  font-weight: 700;
}
.rcc-breadcrumb a { color: var(--rcc-terracotta); }
.rcc-breadcrumb span { margin: 0 8px; }

/* Story */
.rcc-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.rcc-story__photo {
  border-radius: var(--rcc-radius);
  overflow: hidden;
  position: relative;
}
.rcc-story__photo img { width: 100%; height: 100%; object-fit: cover; }
.rcc-story__body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--rcc-ink-soft);
  margin-bottom: 18px;
}
.rcc-story__body p:first-of-type::first-letter {
  font-family: var(--rcc-serif);
  font-size: 56px;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--rcc-terracotta);
}
.rcc-story__milestones {
  list-style: none;
  margin-top: 28px;
  padding: 24px;
  background: var(--rcc-paper);
  border-radius: var(--rcc-radius);
  border: 1px solid var(--rcc-line);
}
.rcc-story__milestones li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rcc-line);
}
.rcc-story__milestones li:last-child { border-bottom: 0; }
.rcc-story__milestones li b {
  font-family: var(--rcc-serif);
  color: var(--rcc-terracotta);
  font-size: 18px;
}
.rcc-story__milestones li span { font-size: 14.5px; color: var(--rcc-ink-soft); }

/* Pastor bio */
.rcc-pastor {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.rcc-pastor__photo {
  border-radius: var(--rcc-radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--rcc-shadow);
}
.rcc-pastor__photo img { width: 100%; height: 100%; object-fit: cover; }
.rcc-pastor__name {
  font-family: var(--rcc-serif);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  margin: 12px 0 8px;
}
.rcc-pastor__role {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rcc-cedar-deep);
  font-weight: 700;
  margin-bottom: 22px;
}
.rcc-pastor__quote {
  font-family: var(--rcc-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  border-left: 3px solid var(--rcc-terracotta);
  padding-left: 22px;
  margin: 24px 0;
  color: var(--rcc-ink);
}
.rcc-pastor__bio p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--rcc-ink-soft);
  line-height: 1.7;
}

/* Beliefs as plain-English statements */
.rcc-beliefs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}
.rcc-belief {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rcc-line);
}
.rcc-belief__num {
  font-family: var(--rcc-serif);
  font-size: 30px;
  color: var(--rcc-terracotta);
  line-height: 1;
  font-weight: 400;
}
.rcc-belief h3 {
  font-family: var(--rcc-serif);
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.15;
}
.rcc-belief p {
  font-size: 15px;
  color: var(--rcc-ink-soft);
  line-height: 1.65;
}

/* Leadership grid */
.rcc-leaders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.rcc-leader {
  text-align: center;
}
.rcc-leader__photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 4px solid var(--rcc-paper);
  box-shadow: var(--rcc-shadow);
  transition: transform .3s ease;
}
.rcc-leader:hover .rcc-leader__photo { transform: translateY(-4px); }
.rcc-leader__photo img { width: 100%; height: 100%; object-fit: cover; }
.rcc-leader__name {
  font-family: var(--rcc-serif);
  font-size: 19px;
  line-height: 1.1;
}
.rcc-leader__role {
  font-size: 12.5px;
  color: var(--rcc-muted);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Partners */
.rcc-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rcc-partner {
  background: var(--rcc-paper);
  border: 1px solid var(--rcc-line);
  border-radius: var(--rcc-radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}
.rcc-partner:hover { transform: translateY(-4px); border-color: var(--rcc-terracotta); }
.rcc-partner__name {
  font-family: var(--rcc-serif);
  font-size: 19px;
  margin-bottom: 6px;
  line-height: 1.1;
}
.rcc-partner__desc { font-size: 13px; color: var(--rcc-muted); line-height: 1.4; }

/* Location / map placeholder */
.rcc-location {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}
.rcc-location__info {
  background: var(--rcc-paper);
  border-radius: var(--rcc-radius);
  padding: 36px;
  border: 1px solid var(--rcc-line);
}
.rcc-location__info h3 {
  font-family: var(--rcc-serif);
  font-size: 26px;
  margin-bottom: 18px;
}
.rcc-location__info dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px 18px;
  font-size: 14.5px;
}
.rcc-location__info dt {
  font-weight: 700;
  color: var(--rcc-cedar-deep);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  padding-top: 4px;
}
.rcc-location__info dd { color: var(--rcc-ink-soft); line-height: 1.55; }
.rcc-map {
  background: var(--rcc-bone-deep);
  border-radius: var(--rcc-radius);
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--rcc-line);
}
.rcc-map svg {
  width: 100%;
  height: 100%;
  display: block;
}
.rcc-map__pin {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}
.rcc-map__pin-dot {
  position: absolute;
  inset: 35%;
  background: var(--rcc-terracotta);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(182,73,46,0.25);
}
.rcc-map__pin-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--rcc-terracotta);
  animation: rcc-ring 2s ease-out infinite;
}
@keyframes rcc-ring {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.rcc-map__label {
  position: absolute;
  top: calc(48% - 36px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--rcc-ink);
  color: var(--rcc-paper);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.rcc-map__label::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--rcc-ink);
  border-bottom: 0;
}

/* ---------- Services page ---------- */
.rcc-cat {
  margin-bottom: 70px;
}
.rcc-cat__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--rcc-line);
  gap: 24px;
}
.rcc-cat__title {
  font-family: var(--rcc-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
}
.rcc-cat__desc { color: var(--rcc-muted); font-size: 14.5px; max-width: 40ch; text-align: right; }

.rcc-prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rcc-prog {
  background: var(--rcc-paper);
  border: 1px solid var(--rcc-line);
  border-radius: var(--rcc-radius);
  padding: 28px 26px;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.rcc-prog:hover { transform: translateY(-4px); box-shadow: var(--rcc-shadow); }
.rcc-prog__age {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rcc-terracotta);
  font-weight: 700;
  margin-bottom: 10px;
}
.rcc-prog__title {
  font-family: var(--rcc-serif);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.rcc-prog__desc { font-size: 14.5px; color: var(--rcc-ink-soft); line-height: 1.6; flex: 1; }
.rcc-prog__when {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--rcc-line);
  font-size: 13.5px;
  color: var(--rcc-cedar-deep);
  font-weight: 700;
}

/* Groups directory table */
.rcc-groups-dir {
  background: var(--rcc-paper);
  border-radius: var(--rcc-radius);
  border: 1px solid var(--rcc-line);
  overflow: hidden;
}
.rcc-groups-dir__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  padding: 18px 26px;
  align-items: center;
  border-bottom: 1px solid var(--rcc-line);
  font-size: 14.5px;
  transition: background .2s;
}
.rcc-groups-dir__row:last-child { border-bottom: 0; }
.rcc-groups-dir__row:hover { background: var(--rcc-bone-deep); }
.rcc-groups-dir__row--head {
  background: var(--rcc-bone-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rcc-muted);
}
.rcc-groups-dir__row--head:hover { background: var(--rcc-bone-deep); }
.rcc-groups-dir__row b {
  font-family: var(--rcc-serif);
  font-weight: 500;
  font-size: 16.5px;
}

/* Calendar */
.rcc-cal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rcc-cal__item {
  background: var(--rcc-paper);
  border: 1px solid var(--rcc-line);
  border-radius: var(--rcc-radius);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  transition: border-color .25s, transform .25s;
}
.rcc-cal__item:hover { border-color: var(--rcc-terracotta); transform: translateX(2px); }
.rcc-cal__date {
  text-align: center;
  font-family: var(--rcc-serif);
}
.rcc-cal__date b { display: block; font-size: 28px; line-height: 1; color: var(--rcc-terracotta); }
.rcc-cal__date span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--rcc-sans);
  font-weight: 700;
  color: var(--rcc-muted);
}
.rcc-cal__title {
  font-family: var(--rcc-serif);
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.rcc-cal__meta { font-size: 12.5px; color: var(--rcc-muted); }

/* Process steps */
.rcc-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.rcc-process__step {
  background: var(--rcc-paper);
  border: 1px solid var(--rcc-line);
  border-radius: var(--rcc-radius);
  padding: 28px 24px;
  position: relative;
}
.rcc-process__step b {
  font-family: var(--rcc-hand);
  color: var(--rcc-cedar-deep);
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}
.rcc-process__step h4 {
  font-family: var(--rcc-serif);
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.rcc-process__step p {
  font-size: 14px;
  color: var(--rcc-ink-soft);
  line-height: 1.55;
}

/* Programs (community) */
.rcc-prog-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rcc-prog-feature__card {
  background: var(--rcc-paper);
  border-radius: var(--rcc-radius);
  overflow: hidden;
  border: 1px solid var(--rcc-line);
  transition: transform .3s, box-shadow .3s;
}
.rcc-prog-feature__card:hover { transform: translateY(-4px); box-shadow: var(--rcc-shadow); }
.rcc-prog-feature__photo {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.rcc-prog-feature__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.rcc-prog-feature__card:hover .rcc-prog-feature__photo img { transform: scale(1.06); }
.rcc-prog-feature__body { padding: 24px 26px 28px; }
.rcc-prog-feature__name {
  font-family: var(--rcc-serif);
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.15;
}
.rcc-prog-feature__hours {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rcc-cedar-deep);
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rcc-line);
}
.rcc-prog-feature__desc {
  font-size: 14.5px;
  color: var(--rcc-ink-soft);
  line-height: 1.55;
}

/* ---------- Scroll reveal ---------- */
.rcc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .9s ease;
}
.rcc-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.rcc-reveal[data-delay="1"] { transition-delay: .08s; }
.rcc-reveal[data-delay="2"] { transition-delay: .16s; }
.rcc-reveal[data-delay="3"] { transition-delay: .24s; }
.rcc-reveal[data-delay="4"] { transition-delay: .32s; }
.rcc-reveal[data-delay="5"] { transition-delay: .4s; }

/* ---------- Stagger for grids ---------- */
.rcc-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .8s ease;
}
.rcc-stagger.is-in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .05s; }
.rcc-stagger.is-in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .12s; }
.rcc-stagger.is-in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .19s; }
.rcc-stagger.is-in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .26s; }
.rcc-stagger.is-in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .33s; }
.rcc-stagger.is-in > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .40s; }
.rcc-stagger.is-in > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: .47s; }
.rcc-stagger.is-in > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: .54s; }
.rcc-stagger.is-in > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: .61s; }
.rcc-stagger.is-in > * { opacity: 1; transform: translateY(0); }

/* ---------- Quote / pull quote ---------- */
.rcc-pullquote {
  font-family: var(--rcc-serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--rcc-ink);
}
.rcc-pullquote__cite {
  display: block;
  font-family: var(--rcc-hand);
  font-style: normal;
  font-size: 26px;
  color: var(--rcc-terracotta);
  margin-top: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .rcc-hero__inner { grid-template-columns: 1fr; align-items: stretch; gap: 30px; padding-bottom: 50px; }
  .rcc-service-card { justify-self: stretch; max-width: none; }
  .rcc-ministries, .rcc-prog-grid, .rcc-prog-feature { grid-template-columns: repeat(2, 1fr); }
  .rcc-expect { grid-template-columns: repeat(2, 1fr); }
  .rcc-expect::before { display: none; }
  .rcc-sunday, .rcc-groups, .rcc-outreach, .rcc-give, .rcc-pastor, .rcc-story, .rcc-location { grid-template-columns: 1fr; }
  .rcc-leaders { grid-template-columns: repeat(3, 1fr); }
  .rcc-partners { grid-template-columns: repeat(2, 1fr); }
  .rcc-beliefs { grid-template-columns: 1fr; }
  .rcc-page-hero__inner { grid-template-columns: 1fr; gap: 22px; }
  .rcc-footer__grid { grid-template-columns: 1fr 1fr; }
  .rcc-cal, .rcc-process { grid-template-columns: repeat(2, 1fr); }
  .rcc-photo-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 200px 200px 200px; }
  .rcc-photo-grid__item--tall { grid-row: span 1; }
  .rcc-photo-grid__item--wide { grid-column: span 1; }
  .rcc-groups-dir__row { grid-template-columns: 1fr 1fr; }
  .rcc-groups-dir__row > *:nth-child(n+3) { font-size: 13px; color: var(--rcc-muted); }
}

@media (max-width: 720px) {
  .rcc-root { font-size: 16px; }
  .rcc-nav__menu { display: none; }
  .rcc-nav__toggle { display: flex; }
  .rcc-nav__cta .rcc-btn { padding: 10px 18px; font-size: 13px; }
  .rcc-hero { min-height: 78vh; }
  .rcc-ministries, .rcc-prog-grid, .rcc-prog-feature, .rcc-cal, .rcc-process { grid-template-columns: 1fr; }
  .rcc-expect { grid-template-columns: 1fr; }
  .rcc-leaders { grid-template-columns: repeat(2, 1fr); }
  .rcc-partners { grid-template-columns: 1fr; }
  .rcc-sunday__body { padding: 28px; }
  .rcc-cat__head { flex-direction: column; align-items: flex-start; }
  .rcc-cat__desc { text-align: left; }
  .rcc-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .rcc-topbar__links { display: none; }
  .rcc-photo-grid { grid-template-columns: 1fr; grid-template-rows: 180px 180px 180px 180px 180px 180px; }
}

/* Print-friendly fallback */
@media (prefers-reduced-motion: reduce) {
  .rcc-root *,
  .rcc-root *::before,
  .rcc-root *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Selection */
.rcc-root ::selection {
  background: var(--rcc-terracotta);
  color: var(--rcc-paper);
}
