/* church.css
───────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:       #0247C1;
  --blue-dark:  #01338a;
  --blue-light: #e8f0fc;
  --gold:       #C9A84C;
  --gold-light: #f5ecd4;
  --black:      #0D0D0D;
  --grey-dark:  #2a2a2a;
  --grey-mid:   #6b6b6b;
  --grey-light: #F4F4F4;
  --white:      #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.serif { font-family: var(--font-serif); }


/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */

.ch-hero {
  background: var(--blue-dark);
  padding: 96px 0 80px;
}

.ch-hero__inner {
  max-width: 760px;
}

.ch-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}

.ch-hero__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}

.ch-hero__body:last-child { margin-bottom: 0; }


/* ─────────────────────────────────────────────────────────
   JUMP NAV
───────────────────────────────────────────────────────── */

.ch-jumpnav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 68px;
  z-index: 90;
}

.ch-jumpnav__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.ch-jumpnav__inner::-webkit-scrollbar { display: none; }

.ch-jumpnav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-mid);
  text-decoration: none;
  padding: 16px 24px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.ch-jumpnav a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}


/* ─────────────────────────────────────────────────────────
   SHARED SECTION
───────────────────────────────────────────────────────── */

.ch-section {
  padding: 88px 0;
}

.ch-section--white  { background: var(--white); }
.ch-section--light  { background: var(--grey-light); }
.ch-section--dark   { background: var(--black); }
.ch-section--blue   { background: var(--blue-dark); }

.ch-section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 28px;
}


/* ─────────────────────────────────────────────────────────
   SECTION 1: WHAT IS ANC
───────────────────────────────────────────────────────── */

.ch-anc__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.ch-anc__text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey-dark);
  margin-bottom: 18px;
}

.ch-anc__text p:last-child { margin-bottom: 0; }

.ch-distinctive__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.ch-distinctive {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ch-distinctive__icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
  text-align: center;
}

.ch-distinctive h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.ch-distinctive p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-mid);
  margin: 0;
}


/* ─────────────────────────────────────────────────────────
   SECTION 2: MEMBERSHIP
───────────────────────────────────────────────────────── */

.ch-mem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ch-mem__body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}

.ch-mem__body:last-child { margin-bottom: 0; }

.ch-mem__globe {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ch-mem__location {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  width: 100%;
}

.ch-mem__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}

.ch-mem__location span:last-child {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.ch-mem__connector {
  width: 2px;
  height: 24px;
  background: rgba(201,168,76,0.3);
  margin-left: 5px;
}

.ch-mem__globe-caption {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.04em;
  font-style: italic;
}


/* ─────────────────────────────────────────────────────────
   SECTION 3: LOCATIONS
───────────────────────────────────────────────────────── */

.ch-loc__header {
  max-width: 640px;
  margin-bottom: 56px;
}

#locations {
  scroll-margin-top: 80px;
}

.ch-loc__intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey-dark);
  margin: 0;
}

.ch-loc__country {
  margin-bottom: 52px;
}

.ch-loc__country:last-child { margin-bottom: 0; }

.ch-loc__country-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-mid);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  letter-spacing: 0.02em;
}

.ch-loc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ch-loc__card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 3px solid var(--blue);
  transition: box-shadow 0.2s;
}

.ch-loc__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.ch-loc__card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ch-loc__flag {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.ch-loc__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.ch-loc__city {
  font-size: 0.82rem;
  color: var(--grey-mid);
  margin: 0;
}

.ch-loc__desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--grey-dark);
  margin: 0;
  flex: 1;
}

.ch-loc__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ch-loc__link {
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--grey-mid);
  transition: all 0.2s;
}

.ch-loc__link--disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.ch-loc__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}

.ch-loc__cta:hover { color: var(--blue-dark); }


/* ─────────────────────────────────────────────────────────
   SECTION 4: JOIN
───────────────────────────────────────────────────────── */

.ch-join__primary {
  max-width: 720px;
  margin-bottom: 64px;
}

.ch-join__body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}

.ch-join__body:last-of-type { margin-bottom: 32px; }

.ch-join__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ch-join__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 64px;
}

.ch-join__secondary {
  max-width: 720px;
}

.ch-join__secondary-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.ch-join__secondary-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

.ch-join__secondary-body:last-of-type { margin-bottom: 32px; }

.ch-join__secondary-cta {
  display: inline-block;
}


/* ─────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--white {
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--white);
}

.btn--white:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}


/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .ch-loc__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .ch-anc__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ch-mem__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {

  .ch-loc__grid {
    grid-template-columns: 1fr;
  }

  .ch-join__actions {
    flex-direction: column;
  }

  .btn { text-align: center; }
}
