:root {
  --navy: #12203f;
  --navy-dark: #0b1530;
  --gold: #c8962c;
  --gold-light: #e8c877;
  --cream: #faf7f0;
  --ink: #1c1c1c;
  --radius: 14px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
}

h1, h2, h3, .display-font {
  font-family: 'Merriweather', Georgia, serif;
}

/* Topbar / nav */
.topbar { background: var(--navy-dark); color: #fff; }
.brand-mark {
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .06em;
  padding: .35rem .55rem;
  border-radius: 8px;
}
.navbar-brand { color: var(--navy) !important; font-size: 1.05rem; }
.nav-link { font-weight: 500; color: var(--navy) !important; }
.nav-link:hover { color: var(--gold) !important; }
.btn-primary {
  background: var(--gold); border-color: var(--gold); color: var(--navy-dark); font-weight: 600;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy-dark); }
.btn-outline-primary { color: var(--navy); border-color: var(--navy); }
.btn-outline-primary:hover { background: var(--navy); border-color: var(--navy); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(200,150,44,.25), transparent 55%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.15; }
.hero .lead { color: rgba(255,255,255,.85); }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: .35rem .9rem; border-radius: 30px; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-cream { background: var(--cream); }
.section-eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .8rem;
}

/* Cards */
.card { border: none; border-radius: var(--radius); overflow: hidden; }
.card-shadow { box-shadow: 0 10px 30px rgba(18,32,63,.08); }
.icon-tile {
  width: 56px; height: 56px; border-radius: 12px; background: rgba(200,150,44,.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold);
}
.sermon-card .ratio { background: var(--navy); }
.sermon-card .play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(11,21,48,.35); color: #fff; font-size: 2.5rem; transition: .2s;
}
.sermon-card:hover .play-overlay { background: rgba(11,21,48,.55); }

.staff-photo {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius);
  background: linear-gradient(135deg,#dfe4ee,#c9d1e4);
}

.event-date-badge {
  background: var(--navy); color: #fff; border-radius: 10px; padding: .6rem .9rem; text-align: center; min-width: 66px;
}
.event-date-badge .month { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-light); }
.event-date-badge .day { font-size: 1.4rem; font-weight: 800; line-height: 1; }

/* Footer */
.site-footer { background: var(--navy-dark); }
.footer-link { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-link:hover { color: var(--gold-light); }

/* Giving */
.give-option {
  border: 2px solid #e7e2d6; border-radius: var(--radius); padding: 1.5rem; height: 100%; transition: .15s;
}
.give-option:hover { border-color: var(--gold); }

/* Misc */
.section-title-lg { font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.text-gold { color: var(--gold); }
.bg-navy { background: var(--navy); }
.rounded-xl { border-radius: var(--radius); }
.badge-soft { background: rgba(200,150,44,.15); color: var(--gold); font-weight: 600; }

img { max-width: 100%; height: auto; }
