/* St. Luke’s — weekly bulletin. Masthead first, not a cinematic cross. */
:root {
  --wood: #3d2914;
  --gold: #c9a227;
  --cream: #f6efe2;
  --ink: #2a1d12;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: "Crimson Pro", Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}
a { color: var(--wood); }
img { max-width: 100%; display: block; }
figure { margin: 0; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 8px; background: #fff; padding: 8px; z-index: 20; }

.bulletin {
  background: var(--wood);
  color: var(--gold);
  text-align: center;
  padding: 28px 20px 22px;
}
.bulletin .place {
  margin: 0 0 10px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cross {
  display: block;
  width: 14px;
  height: 22px;
  margin: 0 auto 10px;
  position: relative;
}
.cross::before,
.cross::after {
  content: "";
  position: absolute;
  background: var(--gold);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cross::before { width: 2px; height: 22px; }
.cross::after { width: 12px; height: 2px; top: 40%; }
.name {
  font-family: Cinzel, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  text-decoration: none;
  color: #f6efe2;
  letter-spacing: 0.06em;
  display: block;
}
.sunday {
  margin: 10px 0 0;
  font-size: 1.05rem;
  color: var(--gold);
}
.bulletin nav { display: flex; justify-content: center; gap: 22px; margin-top: 14px; }
.bulletin nav a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fold {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 56rem;
  margin: 0 auto;
  padding: 36px 24px 16px;
  gap: 32px;
  align-items: center;
}
.fold h1 {
  font-family: Cinzel, serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 0 0 10px;
  color: var(--wood);
  letter-spacing: 0.03em;
}
.fold p { margin: 0 0 18px; max-width: 38ch; }
.fold table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e2d4bc;
}
.fold th, .fold td { text-align: left; padding: 10px 14px; border-bottom: 1px solid #e2d4bc; }
.fold th {
  font-family: Cinzel, serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.fold figure img { width: 100%; height: 340px; object-fit: cover; object-position: center 70%; }
.fold figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  font-style: italic;
  color: #6a5640;
}

.week {
  max-width: 36rem;
  margin: 16px auto 24px;
  padding: 20px 22px;
  background: #efe4d0;
}
.week h2, .locate h2, .give h2 {
  font-family: Cinzel, serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--wood);
}
.week ul { margin: 0; padding-left: 1.1em; }

.pair { display: grid; grid-template-columns: 1fr 1fr; max-width: 56rem; margin: 0 auto; }
.pair img { width: 100%; height: 220px; object-fit: cover; }

.locate {
  max-width: 52rem;
  margin: 24px auto;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #e2d4bc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.locate img { width: 100%; height: 180px; object-fit: cover; }

.give-band { max-width: 56rem; margin: 0 auto 8px; }
.give { background: var(--wood); color: var(--cream); padding: 28px 32px; }
.give h2 { color: var(--gold); }
.give p { margin: 0; max-width: 46ch; }
.foot { text-align: center; padding: 28px 20px 40px; font-size: 0.95rem; }

@media (max-width: 760px) {
  .bulletin nav { display: none; }
  .fold, .pair, .locate { grid-template-columns: 1fr; }
  .fold figure img { height: 220px; }
}
