/* =================================================================
   THEME  ·  Change these to reskin the whole site for a new church
   ================================================================= */
:root {
  --accent:        #b5432f;   /* Methodist-flame red — primary accent  */
  --accent-dark:   #8f3323;
  --ink:           #241f1c;   /* near-black text                        */
  --ink-soft:      #5b524c;   /* muted text                             */
  --cream:         #faf6f0;   /* warm page background                    */
  --cream-alt:     #f2ebe1;   /* alternating section background          */
  --line:          #e4d9ca;   /* hairline borders                       */
  --white:         #ffffff;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(36, 31, 28, 0.08);
  --maxw: 1120px;
}

/* ============================ RESET ============================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, iframe { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.1; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 720px; }
.center { text-align: center; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  font-weight: 600; color: var(--accent); margin: 0 0 .6rem;
}
.lead { font-size: 1.2rem; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.small { font-size: .92rem; }
.xsmall { font-size: .8rem; }
.accent-text { color: var(--accent); }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-block; padding: .85rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: 1rem; cursor: pointer; transition: .2s ease;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, .9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .65rem; color: var(--ink); font-weight: 700; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 26px; height: 33px; color: var(--ink); }
.brand-text { font-family: var(--font-head); font-size: 1.15rem; line-height: 1.05; }
.brand-text small { font-family: var(--font-body); font-weight: 500; font-size: .68rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { color: var(--ink); font-weight: 500; font-size: .98rem; }
.site-nav a:hover { color: var(--accent); text-decoration: none; }
.nav-cta { background: var(--accent); color: #fff !important; padding: .55rem 1.1rem; border-radius: 999px; }
.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ============================ HERO ============================ */
.hero {
  position: relative; color: #fff; text-align: center;
  /* Swap this gradient/photo when reskinning */
  background:
    linear-gradient(rgba(30,20,16,.55), rgba(30,20,16,.65)),
    radial-gradient(120% 120% at 50% 0%, #7a2c1e 0%, #4a1c14 60%, #2c110c 100%);
  padding: clamp(4.5rem, 12vw, 9rem) 0;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.hero .eyebrow { color: #f3c9bd; }
.hero h1 { margin-bottom: .35em; }
.hero .accent-text { color: #f6b8a6; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 620px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================ SECTIONS ============================ */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--cream-alt); }
.section-head { max-width: 640px; margin: 0 auto 3rem; }

/* ============================ CARDS ============================ */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .35rem; }
.icon-dot {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-alt); font-size: 1.4rem; margin-bottom: 1rem;
}
.time-card { text-align: center; }
.time-badge {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em;
}
.time { font-family: var(--font-head); font-size: 2rem; color: var(--accent); margin: .2rem 0; }

/* ============================ TWO COLUMN ============================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col-text h2 { margin-bottom: .5rem; }
blockquote {
  margin: 1.5rem 0; padding: .5rem 0 .5rem 1.5rem; border-left: 4px solid var(--accent);
  font-family: var(--font-head); font-size: 1.35rem; font-style: italic; color: var(--ink);
}
.photo-placeholder {
  aspect-ratio: 4 / 3; border-radius: var(--radius); border: 2px dashed var(--line);
  background: var(--cream-alt); display: grid; place-items: center; color: var(--ink-soft);
  font-size: .95rem; box-shadow: var(--shadow);
}
.map { width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.contact-list li { line-height: 1.5; }
.contact-list strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }

/* ============================ GIVING ============================ */
.giving { background: var(--ink); color: var(--cream); }
.giving .eyebrow { color: #f6b8a6; }
.giving h2 { color: #fff; }
.giving .lead { color: rgba(250,246,240,.85); }

/* ============================ FOOTER ============================ */
.site-footer { background: #1c1613; color: rgba(250,246,240,.75); padding: 3rem 0 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.footer-brand { font-family: var(--font-head); font-size: 1.3rem; color: #fff; margin: 0 0 .25rem; }
.site-footer .muted { color: rgba(250,246,240,.6); }
.credit { text-align: center; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem 1.5rem 1.5rem; box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: .75rem; border-bottom: 0 !important; }
  .cards, .cards-3, .two-col { grid-template-columns: 1fr; }
  .two-col-media { order: -1; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
}
