/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #faf8f4;
  --fg:            #2d1a20;
  --primary:       #66203a;
  --primary-fg:    #faf8f4;
  --secondary:     #e8a020;
  --secondary-fg:  #faf8f4;
  --accent:        #d05c30;
  --muted:         #ede8e9;
  --muted-fg:      #6e5a5e;
  --border:        #ddd5c8;
  --white:         #ffffff;
  --radius:        1rem;
  --font-sans:     'Plus Jakarta Sans', sans-serif;
  --font-serif:    'Playfair Display', serif;
  --shadow:        0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ===== Utility ===== */
.bc-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.bc-section    { padding: 6rem 0; }
.bc-muted-bg   { background: var(--muted); }
.bc-primary-bg { background: var(--primary); color: var(--primary-fg); }

.bc-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.bc-eyebrow--accent  { color: var(--accent); }
.bc-eyebrow--gold    { color: var(--secondary); }

.bc-heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.bc-heading-xl--light { color: var(--primary-fg); }

.bc-body {
  font-size: 1.0625rem;
  color: var(--muted-fg);
  line-height: 1.75;
}
.bc-body--light { color: rgba(250,248,244,.8); }

/* Animate on scroll */
.bc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.bc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navigation ===== */
.bc-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  color: #fff;
}
.bc-nav-logo {
  height: 5.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
  drop-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.bc-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bc-nav-links a { color: #fff; transition: color .2s; }
.bc-nav-links a:hover { color: var(--secondary); }

.bc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.bc-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.bc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bc-hamburger.open span:nth-child(2) { opacity: 0; }
.bc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bc-mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--primary);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}
.bc-mobile-menu.open { display: flex; }
.bc-mobile-menu a {
  color: var(--primary-fg);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.bc-mobile-menu a:hover { color: var(--secondary); }

/* ===== Hero ===== */
.bc-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.bc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%, rgba(102,32,58,.35) 50%, var(--bg) 100%);
  z-index: 1;
}
.bc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 800px;
  margin-top: 6rem;
}
.bc-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.bc-hero-h1 em { color: var(--secondary); font-style: italic; }
.bc-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 300;
  opacity: .9;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.bc-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Buttons ===== */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all .25s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.bc-btn--gold {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow);
}
.bc-btn--gold:hover { background: #fff; color: var(--primary); box-shadow: var(--shadow-lg); }
.bc-btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}
.bc-btn--white:hover { background: var(--secondary); color: #fff; box-shadow: var(--shadow-lg); }
.bc-btn--primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow);
}
.bc-btn--primary:hover { background: var(--accent); box-shadow: var(--shadow-lg); }
.bc-btn--pill-gold {
  background: var(--secondary);
  color: #fff;
  padding: .75rem 1.5rem;
  box-shadow: var(--shadow);
}
.bc-btn--pill-gold:hover { background: #fff; color: var(--primary); }

.bc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--accent);
  transition: color .2s;
}
.bc-link-arrow:hover { color: var(--primary); }
.bc-link-arrow svg { transition: transform .2s; }
.bc-link-arrow:hover svg { transform: translateX(4px); }

/* ===== About Section ===== */
.bc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.bc-about-img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.bc-about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.bc-about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(102,32,58,.6), transparent);
}
.bc-quote-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}
.bc-quote-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: .75rem;
}
.bc-quote-card cite {
  font-size: .8125rem;
  font-style: normal;
  color: var(--muted-fg);
  font-weight: 600;
}

/* ===== Belief Cards ===== */
.bc-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.bc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.bc-card h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: .75rem;
}
.bc-card p { color: var(--muted-fg); }

/* ===== Ministry Cards ===== */
.bc-ministry-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .3s;
}
.bc-ministry-card:hover {
  border-color: rgba(102,32,58,.3);
  box-shadow: var(--shadow);
}
.bc-ministry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: .75rem;
  background: rgba(102,32,58,.1);
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all .3s;
}
.bc-ministry-card:hover .bc-ministry-icon {
  background: var(--primary);
  color: var(--primary-fg);
}
.bc-ministry-tag {
  display: inline-block;
  padding: .2rem .75rem;
  border-radius: 9999px;
  background: rgba(232,160,32,.2);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1rem;
}
.bc-ministry-card h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: .75rem;
}
.bc-ministry-card p { color: var(--muted-fg); line-height: 1.7; }

/* ===== Services Section ===== */
.bc-services-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
}
.bc-services-info {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bc-services-time {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--secondary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.bc-services-hour {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .5rem;
}
.bc-services-hour .num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 4rem);
  font-weight: 700;
  color: var(--secondary);
}
.bc-services-hour .am {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: .8;
}
.bc-services-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: .5rem;
}
.bc-services-desc { opacity: .8; font-size: 1.05rem; margin-bottom: 1rem; }
.bc-divider { width: 4rem; height: 1px; background: rgba(255,255,255,.2); margin: 1.5rem 0 2rem; }
.bc-services-where {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--secondary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.bc-services-address {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 1.5rem;
}
.bc-services-map { min-height: 400px; position: relative; }
.bc-services-map iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  border: none;
}

/* ===== Community Section ===== */
.bc-community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 600px;
}
.bc-community-text {
  background: rgba(208,92,48,.1);
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bc-community-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.bc-community-img { position: relative; }
.bc-community-img img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}

/* ===== Contact Section ===== */
.bc-contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}
.bc-contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.bc-contact-card svg { margin-bottom: 1rem; color: var(--accent); }
.bc-contact-card h4 { font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.bc-contact-card p  { color: var(--muted-fg); line-height: 1.75; }
.bc-contact-card a:hover { color: var(--primary); }

/* Contact Form */
.bc-form-wrap {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  text-align: left;
  display: none;
}
.bc-form-wrap.open { display: block; }
.bc-form-group { margin-bottom: 1.25rem; }
.bc-form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: .4rem;
}
.bc-form-group input,
.bc-form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: .5rem;
  font-family: var(--font-sans);
  font-size: .9375rem;
  background: var(--bg);
  color: var(--fg);
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.bc-form-group input:focus,
.bc-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(102,32,58,.12);
}
.bc-form-submit {
  width: 100%;
  margin-top: .5rem;
}

.bc-sent-state {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  text-align: center;
  display: none;
}
.bc-sent-state.visible { display: block; }
.bc-sent-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: rgba(208,92,48,.1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.bc-sent-state h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: .5rem;
}
.bc-sent-state p { color: var(--muted-fg); margin-bottom: 1.5rem; }
.bc-sent-close { color: var(--accent); font-weight: 600; cursor: pointer; background: none; border: none; font-size: 1rem; }
.bc-sent-close:hover { color: var(--primary); }

/* ===== Footer ===== */
.bc-footer {
  background: var(--primary);
  color: var(--primary-fg);
  text-align: center;
  padding: 3rem 1.5rem;
}
.bc-footer-logo {
  height: 4rem;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1);
}
.bc-footer-tagline { opacity: .8; margin-bottom: .5rem; }
.bc-footer-copy { font-size: .8125rem; opacity: .5; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .bc-about-grid,
  .bc-services-card,
  .bc-community-grid { grid-template-columns: 1fr; }

  .bc-about-img-wrap { aspect-ratio: 4/3; }
  .bc-quote-card { display: none; }
  .bc-services-map { min-height: 320px; height: 320px; position: relative; }
  .bc-community-grid { height: auto; }
  .bc-community-text { padding: 3rem 2rem; }
  .bc-community-img { height: 340px; }
  .bc-contact-info { grid-template-columns: 1fr; }
  .bc-cards-3 { grid-template-columns: 1fr; }
  .bc-services-info { padding: 2.5rem 2rem; }
  .bc-nav-links { display: none; }
  .bc-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .bc-section { padding: 4rem 0; }
  .bc-hero-btns { flex-direction: column; align-items: center; }
  .bc-btn { width: 100%; max-width: 320px; }
}
