:root {
  --ink: #17191c;
  --paper: #ffffff;
  --limestone: #f4f2ee;
  --slate: #777b86;
  --hairline: #e5e2db;
  --gold: #b8860b;
  --blue: #1b2a5e;
  --serif: Georgia, "Times New Roman", ui-serif, serif;
  --sans: -apple-system, "Segoe UI", Inter, Roboto, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--paper); }
a { color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

header { border-bottom: 1px solid var(--hairline); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1100px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; font-size: 15px; font-weight: 500; }
.logo img { height: 44px; width: auto; border-radius: 8px; }
nav { display: flex; gap: 28px; flex-wrap: wrap; }
nav a { text-decoration: none; font-size: 15px; padding-bottom: 2px; border-bottom: 2px solid transparent; }
nav a:hover, nav a.active { border-bottom-color: var(--gold); }

@media (max-width: 720px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: 16px; }
  nav { gap: 12px 20px; }
}

.hero { position: relative; min-height: 420px; display: flex; align-items: center; background: var(--blue) url("images/outsidecathedral.jpg") center/cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(23, 25, 28, 0.55); }
.hero-inner { position: relative; text-align: center; color: #fff; max-width: 800px; margin: 0 auto; padding: 96px 24px; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 5vw, 56px); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
.hero p { font-size: 18px; opacity: 0.85; margin-bottom: 32px; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 9999px; text-decoration: none; font-size: 16px; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { filter: brightness(1.1); }

.page-hero { background: var(--limestone); padding: 56px 0; border-bottom: 1px solid var(--hairline); }
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4vw, 44px); line-height: 1.2; letter-spacing: -0.01em; }
.page-hero p { color: var(--slate); max-width: 720px; margin-top: 8px; }

.band { padding: 80px 0; }
.band-alt { background: var(--limestone); }
h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 40px; }
h3 { font-size: 20px; font-weight: 500; margin-bottom: 16px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: var(--paper); border-radius: 16px; padding: 32px; }
.band-alt .card { background: var(--paper); }
.band:not(.band-alt) .card { background: var(--limestone); }
.card ul { list-style: none; margin-bottom: 16px; }
.card li { padding: 6px 0; border-bottom: 1px solid var(--hairline); font-size: 15px; }
.card li span { float: right; color: var(--slate); }
@media (max-width: 420px) { .card li span { float: none; display: block; } }
.text-link { color: var(--gold); text-decoration: none; font-size: 15px; font-weight: 500; }
.text-link:hover { text-decoration: underline; }

.prose { max-width: 720px; }
.prose p { color: var(--slate); margin-bottom: 20px; }
.prose strong { color: var(--ink); font-weight: 500; }

.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid img { width: 100%; border-radius: 16px; }

.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.tl-item { border-top: 2px solid var(--gold); padding-top: 16px; }
.tl-item strong { font-family: var(--serif); font-weight: 400; font-size: 24px; display: block; margin-bottom: 8px; }
.tl-item p { font-size: 15px; color: var(--slate); line-height: 1.5; }

details { border-top: 1px solid var(--hairline); }
summary { cursor: pointer; padding: 16px 0; font-size: 17px; font-weight: 500; list-style: none; }
summary::after { content: "+"; float: right; color: var(--gold); font-size: 20px; }
details[open] summary::after { content: "−"; }
.bulletins ul { list-style: none; columns: 2 320px; column-gap: 48px; padding: 8px 0 24px; }
.bulletins li { break-inside: avoid; }
.bulletins a { text-decoration: none; color: var(--slate); font-size: 15px; line-height: 2; }
.bulletins a:hover { color: var(--gold); }

footer { background: var(--blue); color: #fff; padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
footer h4 { font-size: 15px; font-weight: 500; margin-bottom: 12px; color: var(--gold); }
footer p, footer a { color: rgba(255,255,255,0.8); font-size: 15px; text-decoration: none; }
footer a:hover { color: #fff; }
.copyright { margin-top: 48px; font-size: 13px; color: rgba(255,255,255,0.5); }
