/* ============================================================
   THE GATHERING PLACE — Website Draft
   Brand: navy #172A3A · slate #7D949A · rose #C38A84 · gold #E1AB65
   Type: Anton (display) · Montserrat (body)
   ============================================================ */

:root {
  --navy: #172A3A;
  --navy-soft: #22394d;
  --slate: #7D949A;
  --rose: #C38A84;
  --gold: #E1AB65;
  --gold-dark: #c99147;
  --cream: #F5F6F6;
  --paper: #FDFDFC;
  --grey: #D2D2D2;
  --ink: #172A3A;
  --body: #44555f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(23, 42, 58, 0.08);
  --shadow-lg: 0 20px 50px rgba(23, 42, 58, 0.14);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .display {
  font-family: 'Anton', 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(3rem, 8.5vw, 7rem); line-height: 0.98; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); letter-spacing: 0.02em; }

/* paper grain — subtle texture over everything, like a printed poster */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 108px 0; }
section.tight { padding: 64px 0; }

/* ---------- kicker / eyebrow ---------- */
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.kicker.gold { color: var(--gold-dark); }
.kicker.slate { color: var(--slate); }

.lede { font-size: 1.15rem; max-width: 640px; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--navy);
  color: #e8edef;
  font-size: 0.83rem;
  text-align: center;
  padding: 9px 44px;
  position: relative;
  letter-spacing: 0.02em;
}
.announce a { color: var(--gold); font-weight: 700; text-decoration: none; margin-left: 6px; }
.announce a:hover { text-decoration: underline; }
.announce .dismiss {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #9fb0ba; font-size: 1rem; cursor: pointer;
}

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 253, 252, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 42, 58, 0.08);
}
.nav {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px; height: 92px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-right: auto;
}
.brand .mark { width: 42px; height: 46px; flex-shrink: 0; }
.brand .word {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.02;
  letter-spacing: 0.03em;
}
.nav .links { display: flex; gap: 26px; align-items: center; }
.nav .links a {
  text-decoration: none; font-weight: 600; font-size: 0.92rem;
  color: var(--ink); letter-spacing: 0.02em;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.nav .links a:hover { border-bottom-color: var(--gold); }
.nav .links a.active { border-bottom-color: var(--gold); }
.nav .im-new {
  font-weight: 700; font-size: 0.88rem; color: var(--rose) !important;
}
.btn-give {
  background: none; color: var(--navy) !important;
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  padding: 6px 0;
  border-bottom: 3px solid var(--gold) !important;
  transition: border-color 0.2s;
}
.btn-give:hover { border-bottom-color: var(--navy) !important; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 800; font-size: 0.9rem; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 34px; border-radius: 0;
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.gold { background: var(--gold); color: var(--navy); }
.btn.gold:hover { background: var(--gold-dark); }
.btn.navy { background: var(--navy); color: #fff; }
.btn.navy:hover { background: var(--navy-soft); }
.btn.rose { background: var(--rose); color: #fff; }
/* secondary actions: bold words with a thick underline */
.btn.outline, .btn.outline-light {
  padding: 8px 2px; background: none;
  border: none; border-bottom: 3px solid var(--gold);
}
.btn.outline { color: var(--navy); }
.btn.outline:hover { border-bottom-color: var(--navy); }
.btn.outline-light { color: #fff; }
.btn.outline-light:hover { background: none; border-bottom-color: #fff; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.text-link {
  font-weight: 700; color: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 2px; font-size: 0.95rem;
}

/* ---------- hero ---------- */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 150px 0 160px;
}
.hero .kicker { color: var(--gold); }
.hero h1 { color: #fff; max-width: 1020px; }
.hero h1 .accent { color: var(--gold); }
.hero p.lede { color: #c3ced4; margin: 30px 0 40px; font-size: 1.18rem; }
.hero .gmark {
  position: absolute; right: -180px; top: -140px;
  width: 640px; height: 640px; opacity: 0.09; pointer-events: none;
}
.hero.short { padding: 96px 0 104px; }
.hero.short h1 { font-size: clamp(2.5rem, 5.5vw, 4.4rem); }

/* scrolling marquee strip */
.marquee { overflow: hidden; background: var(--gold); padding: 16px 0; }
.marquee .track {
  display: inline-flex; gap: 56px; white-space: nowrap; width: max-content;
  animation: marq 30s linear infinite;
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  color: var(--navy); font-size: 1.35rem; letter-spacing: 0.06em;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* full-width media band (latest message) */
.watch-band {
  background: linear-gradient(rgba(14,26,38,0.72), rgba(14,26,38,0.82)),
              linear-gradient(135deg, #10202d 0%, var(--navy) 55%, #2b4257 100%);
  color: #fff; text-align: center; padding: 130px 0;
  position: relative; overflow: hidden;
}
.watch-band h2 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4.6rem); max-width: 900px; margin: 0 auto 34px; }
.watch-band .play {
  width: 84px; height: 84px; border-radius: 50%;
  border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 30px; transition: background 0.2s, transform 0.15s;
}
.watch-band a:hover .play { background: rgba(225,171,101,0.15); transform: scale(1.05); }
.watch-band .play svg { margin-left: 6px; }

/* ---------- click-to-play video panel (About — What we believe) ---------- */
.ph.video-ready { cursor: pointer; }
.ph.video-ready .play {
  width: 84px; height: 84px; border-radius: 50%;
  border: 3px solid var(--gold); background: rgba(23,42,58,0.55);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.ph.video-ready .play svg { margin-left: 6px; }
.ph.video-ready:hover .play, .ph.video-ready:focus-visible .play {
  background: rgba(225,171,101,0.25); transform: scale(1.05);
}

/* ---------- photo placeholders ---------- */
.ph {
  background: linear-gradient(135deg, #64808a 0%, var(--slate) 55%, #93a6ab 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  min-height: 260px;
}
.ph.tall { min-height: 380px; }
.ph.short { min-height: 190px; }
.ph.rose-bg { background: linear-gradient(135deg, #a9736d 0%, var(--rose) 60%, #d4a49e 100%); }
.ph.gold-bg { background: linear-gradient(135deg, #c08f45 0%, var(--gold) 60%, #ecc48d 100%); }
.ph.navy-bg { background: linear-gradient(135deg, #10202d 0%, var(--navy) 55%, #2b4257 100%); }
.ph .label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center; padding: 0 24px; position: relative; z-index: 1;
}
.ph svg.watermark {
  position: absolute; width: 70%; height: 70%; opacity: 0.16;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}

/* ---------- cards ---------- */
.grid { display: grid; gap: 26px; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }

/* Horizontal card slider — one row, three cards visible, slides for the rest */
.card-scroller { position: relative; }
.card-scroller .scroll-row {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px;
  margin: -4px;
}
.card-scroller .scroll-row::-webkit-scrollbar { display: none; }
.card-scroller .scroll-row .card {
  flex: 0 0 calc((100% - 60px) / 3);
  scroll-snap-align: start;
}
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.scroll-btn:hover { background: var(--gold); color: var(--navy); }
.scroll-btn.prev { left: -16px; }
.scroll-btn.next { right: -16px; }
.scroll-btn[disabled] { opacity: 0; pointer-events: none; }

.card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card .pad { padding: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { margin-bottom: 2px; }
.card .meta {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-dark);
}
.card p { font-size: 0.95rem; }
.card .text-link { margin-top: auto; align-self: flex-start; }
.card .ph { border-radius: 0; min-height: 200px; }

/* schedule strip on cards */
.chip {
  display: inline-block; background: rgba(125,148,154,0.14); color: var(--navy);
  border-radius: 3px; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px;
}

/* ---------- this sunday band ---------- */
.this-sunday {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  margin-top: -70px;
  position: relative; z-index: 5;
}
.this-sunday .info { padding: 42px 46px; }
.this-sunday .date-tag {
  display: inline-block; background: var(--navy); color: var(--gold);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 0; margin-bottom: 18px;
}
.this-sunday h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.this-sunday .when {
  font-weight: 700; color: var(--navy); margin: 12px 0 4px; font-size: 1.02rem;
}
.this-sunday .where { font-size: 0.95rem; margin-bottom: 18px; }

/* ---------- gather grow go ---------- */
.ggg { text-align: center; }
.ggg .grid { margin-top: 48px; }
.ggg .col { padding: 12px 20px; }
.ggg .num {
  font-family: 'Anton', sans-serif; font-size: 4.8rem; color: var(--gold);
  line-height: 1;
}
.ggg h3 { margin: 10px 0 12px; }
.ggg p { font-size: 0.97rem; }
.ggg .text-link { display: inline-block; margin-top: 14px; }

/* ---------- dark band ---------- */
.band {
  background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
}
.band h2, .band h3 { color: #fff; }
.band p { color: #c3ced4; }
.band .gmark {
  position: absolute; left: -140px; bottom: -160px;
  width: 520px; height: 520px; opacity: 0.07; pointer-events: none;
}

/* ---------- rose / give band ---------- */
.give-band {
  background: linear-gradient(120deg, var(--rose) 0%, #b07d77 100%);
  color: #fff; text-align: center;
}
.give-band h2 { color: #fff; }
.give-band p { color: #f4e5e3; max-width: 560px; margin: 16px auto 30px; }

/* ---------- rhythm timeline (sundays) ---------- */
.rhythm { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 48px; }
.rhythm .step {
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 22px; text-align: center; position: relative;
  border-top: 5px solid var(--slate);
}
.rhythm .step:nth-child(1) { border-top-color: var(--gold); }
.rhythm .step:nth-child(2) { border-top-color: var(--slate); }
.rhythm .step:nth-child(3) { border-top-color: var(--navy); }
.rhythm .step:nth-child(4) { border-top-color: var(--slate); }
.rhythm .step:nth-child(5) { border-top-color: var(--rose); }
.rhythm .week {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 8px;
}
.rhythm .name { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 1.05rem; color: var(--navy); }
.rhythm .what { font-size: 0.82rem; margin-top: 8px; }
.rhythm .ricon { height: 54px; width: auto; margin: 14px auto 4px; display: block; }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--paper); border-radius: 12px; box-shadow: var(--shadow);
  margin-bottom: 12px; padding: 0;
}
details.faq summary {
  cursor: pointer; list-style: none; font-weight: 700; color: var(--navy);
  padding: 20px 26px; font-size: 0.98rem; position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-family: 'Anton', sans-serif; font-size: 1.3rem; color: var(--gold-dark);
}
details.faq[open] summary::after { content: '–'; }
details.faq .a { padding: 0 26px 22px; font-size: 0.95rem; }

/* ---------- forms ---------- */
form.std { display: grid; gap: 16px; }
form.std label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
form.std input, form.std select, form.std textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--grey); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--ink);
}
form.std input:focus, form.std select:focus, form.std textarea:focus {
  outline: none; border-color: var(--gold);
}
form.std .field { display: grid; gap: 6px; }
form.std .check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; }
form.std .check input { width: auto; margin-top: 4px; }

.form-card {
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 40px;
}

/* ---------- four pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  border-radius: var(--radius); padding: 34px 26px; color: #fff;
  display: flex; flex-direction: column; gap: 10px; min-height: 230px;
  text-decoration: none; transition: transform 0.15s;
}
.pillar:hover { transform: translateY(-4px); }
.pillar h3 { color: #fff; }
.pillar p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.pillar .go { margin-top: auto; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }
.pillar.p1 { background: var(--navy); }
.pillar.p2 { background: var(--gold); }
.pillar.p2 h3, .pillar.p2 p, .pillar.p2 .go { color: var(--navy); }
.pillar.p2 p { color: rgba(23,42,58,0.75); }
.pillar.p3 { background: var(--slate); }
.pillar.p4 { background: var(--rose); }

/* ---------- brand blocks (Collide / Brilliance) ---------- */
.brand-block {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; color: #fff;
}
.brand-block .content { padding: 48px; display: flex; flex-direction: column; gap: 14px; }
.brand-block h2 { color: #fff; }
.brand-block .tag { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; }
.brand-block p { color: rgba(255,255,255,0.88); font-size: 0.98rem; }
.brand-block .btn-row { margin-top: 12px; }
.brand-block.collide { background: #0e1c28; }
.brand-block.collide .tag { color: var(--gold); }
.brand-block.brilliance { background: #8f5e58; }
.brand-block.brilliance .tag { color: #f3d9c4; }
.brand-block .ph { border-radius: 0; min-height: 100%; }

/* ---------- team ---------- */
.team-grid { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; }
.team-grid .team-card { flex: 0 1 calc((100% - 52px) / 3); min-width: 250px; }
.team-grid.two-col .team-card { flex-basis: calc((100% - 26px) / 2); max-width: 420px; }
.team-grid.two-col .team-card .ph { aspect-ratio: 6 / 5; min-height: 0; }
.team-card { text-align: center; }
.team-card .ph { min-height: 300px; border-radius: var(--radius) var(--radius) 0 0; }
.team-card .pad { padding: 22px; }
.team-card .role { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); }

/* ---------- footer ---------- */
footer.site {
  background: var(--navy); color: #b9c6cd; padding: 70px 0 0;
  font-size: 0.92rem;
}
footer.site .cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px;
  padding-bottom: 48px;
}
footer.site h4 {
  font-family: 'Anton', sans-serif; text-transform: uppercase; color: #fff;
  font-size: 0.95rem; letter-spacing: 0.08em; margin-bottom: 16px;
}
footer.site a { color: #b9c6cd; text-decoration: none; }
footer.site a:hover { color: var(--gold); }
footer.site ul { list-style: none; display: grid; gap: 9px; }
footer.site .next-g { color: #dbe3e7; }
footer.site .next-g strong { color: var(--gold); }
footer.site form { display: flex; gap: 10px; margin-top: 12px; }
footer.site input {
  flex: 1; padding: 12px 14px; border-radius: 0; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07); color: #fff; font-family: inherit; font-size: 0.88rem;
}
footer.site input::placeholder { color: #8fa0aa; }
footer.site button {
  background: var(--gold); border: 0; color: var(--navy); font-weight: 800;
  border-radius: 0; padding: 12px 22px; cursor: pointer; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0; font-size: 0.78rem; color: #7f929d;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-legal a { color: #7f929d; }
.social-row { display: flex; gap: 16px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- mobile sticky bar ---------- */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 24px rgba(23,42,58,0.18);
}
.mobile-bar a {
  text-align: center; padding: 16px; font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
}
.mobile-bar .a1 { background: var(--navy); color: #fff; }
.mobile-bar .a2 { background: var(--gold); color: var(--navy); }

/* ---------- misc ---------- */
.note-draft {
  background: #fff8ec; border: 1.5px dashed var(--gold);
  border-radius: 10px; padding: 14px 18px; font-size: 0.85rem; color: #8a6a35;
  margin: 18px 0;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.give-alloc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.give-alloc .slice {
  background: var(--paper); border-radius: 12px; padding: 22px; text-align: center; box-shadow: var(--shadow);
}
.give-alloc .pct { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--gold-dark); }
.give-alloc .lbl { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid.c3, .grid.c4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid .team-card { flex-basis: calc((100% - 26px) / 2); min-width: 0; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .rhythm { grid-template-columns: repeat(2, 1fr); }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .this-sunday { grid-template-columns: 1fr; }
  .brand-block { grid-template-columns: 1fr; }
  .give-alloc { grid-template-columns: repeat(2, 1fr); }
  .card-scroller .scroll-row .card { flex-basis: calc((100% - 34px) / 2); }
}

@media (max-width: 760px) {
  .nav .links { display: none; }
  .nav .links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 92px; left: 0; right: 0;
    background: var(--paper); padding: 24px; gap: 18px;
    box-shadow: var(--shadow-lg);
  }
  .hamburger { display: block; }
  .nav .btn-give.desktop { display: none; }
  .grid.c2, .grid.c3, .grid.c4 { grid-template-columns: 1fr; }
  .team-grid .team-card, .team-grid.two-col .team-card { flex-basis: 100%; max-width: none; }
  .pillars { grid-template-columns: 1fr; }
  .rhythm { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 54px; }
  section { padding: 60px 0; }
  .stat-row { grid-template-columns: 1fr; }
  .card-scroller .scroll-row .card { flex-basis: 86%; }
  .scroll-btn { display: none; }
}

/* The Church Center giving embed needs ~360px of width to lay out properly —
   on narrow phones hide it and let the gold button carry people to the
   mobile-optimized Church Center page instead */
@media (max-width: 700px) {
  .give-embed { display: none; }
}
