/* ═══════════════════════════════════════════════════════════
   BLUE OCEAN MOVEMENT — Main Stylesheet
   ═══════════════════════════════════════════════════════════

   TABLE OF CONTENTS
   1. Reset & Root Variables
   2. Utility
   3. Navigation
   4. Hero (Section 1)
   5. Who We Are (Section 2)
   6. Mission & Vision (Section 3)
   7. Every Believer (Section 4)
   8. Society (Section 5)
   9. What Blue Ocean Looks Like (Section 6)
   10. Who We Are For (Section 7)
   11. The Generation (Section 8)
   12. Find a Chapter (Section 9)
   13. P2:8 Network (Section 10)
   14. Contact (Section 11)
   15. Footer
   16. Responsive
═══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────
   1. RESET & ROOT VARIABLES
───────────────────────────────────────────────────────── */

*, *::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;
}


/* ─────────────────────────────────────────────────────────
   2. UTILITY
───────────────────────────────────────────────────────── */

.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;
}

.serif {
  font-family: var(--font-serif);
}


/* ─────────────────────────────────────────────────────────
   3. NAVIGATION
───────────────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(2, 71, 193, 0.08);
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 38px;
  width: auto;
}

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(2, 71, 193, 0.1);
  z-index: 999;
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-dark);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
}

.mobile-menu a:last-child {
  border-bottom: none;
}


/* ─────────────────────────────────────────────────────────
   4. HERO — SECTION 1
───────────────────────────────────────────────────────── */

#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 40%, #091428 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-placeholder::after {
  content: '[ HERO BACKGROUND PHOTO ]';
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 71, 193, 0.18) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.82) 100%
  );
  z-index: 1;
}

.hero-graphic {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(2, 71, 193, 0.25);
  z-index: 1;
}

.hero-graphic::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 60px;
  right: 60px;
  bottom: 60px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-graphic::after {
  content: '';
  position: absolute;
  top: 120px;
  left: 120px;
  right: 120px;
  bottom: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 71, 193, 0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 32px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 780px;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.hero-cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateY(3px);
}

.hero-scroll-line {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}


/* ─────────────────────────────────────────────────────────
   5. WHO WE ARE — SECTION 2
───────────────────────────────────────────────────────── */

#who {
  padding: 120px 0;
  background: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 28px;
}

.who-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

.who-text p strong {
  color: var(--black);
  font-weight: 600;
}

.who-text p:last-child {
  margin-bottom: 0;
}

.who-visual {
  position: relative;
}

.who-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--grey-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 20px;
  border: 2px dashed rgba(2, 71, 193, 0.15);
}

.who-accent-bar {
  position: absolute;
  top: 32px;
  left: -20px;
  width: 6px;
  height: 80px;
  background: var(--gold);
  border-radius: 3px;
}

.who-accent-dot {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--blue-light);
}


/* ─────────────────────────────────────────────────────────
   6. MISSION & VISION — SECTION 3
───────────────────────────────────────────────────────── */

#mission {
  padding: 100px 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.mission-bg-graphic {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mission-bg-graphic::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 60px;
  right: 60px;
  bottom: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.mission-card {
  padding: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.mission-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.mission-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────
   7. EVERY BELIEVER — SECTION 4
───────────────────────────────────────────────────────── */

#believer {
  padding: 120px 0;
  background: var(--grey-light);
}

.believer-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.believer-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.believer-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-mid);
}

.believer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.believer-card {
  background: var(--white);
  border-radius: 12px;
  padding: 44px 36px;
  border-top: 4px solid var(--blue);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.believer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(2, 71, 193, 0.12);
}

.believer-card-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 16px;
}

.believer-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}

.believer-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--grey-mid);
}

.believer-footer {
  margin-top: 56px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.believer-footer p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--grey-dark);
}


/* ─────────────────────────────────────────────────────────
   8. SOCIETY — SECTION 5
───────────────────────────────────────────────────────── */

#society {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.society-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(2, 71, 193, 0.15) 0%, transparent 60%);
}

.society-inner {
  position: relative;
  z-index: 1;
}

.society-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.society-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.society-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

.society-spheres {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.sphere-tag {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  transition: all 0.25s;
  cursor: default;
}

.sphere-tag:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.sphere-tag.gold {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

.sphere-tag.gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.society-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0;
}

.society-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin-bottom: 56px;
}

.society-chart-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 32px auto 0;
  border-radius: 12px;
}



/* ─────────────────────────────────────────────────────────
   9. WHAT BLUE OCEAN LOOKS LIKE — SECTION 6
───────────────────────────────────────────────────────── */

#looks-like {
  padding: 120px 0;
  background: var(--white);
}

.looks-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.looks-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.looks-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-mid);
}

.looks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.looks-card {
  padding: 44px;
  border-radius: 12px;
  background: var(--grey-light);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}

.looks-card:hover {
  transform: translateY(-4px);
}

.looks-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
}

.looks-card:nth-child(2)::before { background: var(--gold); }
.looks-card:nth-child(3)::before { background: var(--gold); }
.looks-card:nth-child(4)::before { background: var(--blue); }

.looks-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.looks-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.looks-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.looks-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--grey-mid);
}


/* ─────────────────────────────────────────────────────────
   10. WHO WE ARE FOR — SECTION 7
───────────────────────────────────────────────────────── */

#for-whom {
  padding: 120px 0;
  background: var(--blue-light);
  position: relative;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.for-whom-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 24px;
}

.for-whom-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

.for-whom-text p:last-of-type {
  margin-bottom: 28px;
}

.faith-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.faith-link:hover {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.for-whom-visual {
  position: relative;
}

.for-whom-photo-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: rgba(2, 71, 193, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 40px;
  border: 2px dashed rgba(2, 71, 193, 0.2);
}

.doctrines-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.doctrine-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey-dark);
  line-height: 1.5;
}

.doctrine-check {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.doctrine-check svg {
  width: 10px;
  height: 10px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ─────────────────────────────────────────────────────────
   11. THE GENERATION — SECTION 8
───────────────────────────────────────────────────────── */

#generation {
  padding: 140px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.generation-bg {
  position: absolute;
  inset: 0;
}

.generation-photo-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.generation-photo-placeholder::after {
  content: '[ BACKGROUND PHOTO — PEOPLE / EVENT ]';
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.generation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.generation-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

.generation-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.generation-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.generation-content p:last-of-type {
  margin-bottom: 0;
}

.generation-highlight {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
}


/* ─────────────────────────────────────────────────────────
   12. FIND A CHAPTER — SECTION 9
───────────────────────────────────────────────────────── */

#chapters {
  padding: 120px 0;
  background: var(--white);
}

.chapters-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.chapters-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.chapters-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-mid);
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.chapter-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(2, 71, 193, 0.1);
  transition: box-shadow 0.25s, transform 0.25s;
}

.chapter-card:hover {
  box-shadow: 0 12px 40px rgba(2, 71, 193, 0.12);
  transform: translateY(-4px);
}

.chapter-photo-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(2, 71, 193, 0.08);
}

.chapter-card-body {
  padding: 28px;
}

.chapter-flag {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.chapter-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.chapter-card-body p {
  font-size: 0.88rem;
  color: var(--grey-mid);
  line-height: 1.6;
}

.chapter-status {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.chapters-online {
  background: var(--blue-light);
  border-radius: 12px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.chapters-online-text h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.chapters-online-text p {
  font-size: 0.95rem;
  color: var(--grey-mid);
  line-height: 1.6;
}

.chapters-online-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ─────────────────────────────────────────────────────────
   13. P2:8 NETWORK — SECTION 10
───────────────────────────────────────────────────────── */

#network {
  padding: 100px 0;
  background: var(--grey-light);
}

.network-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.network-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.network-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-mid);
  margin-bottom: 32px;
}

.network-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-badge {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 40px rgba(2, 71, 193, 0.12);
}

.network-badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.network-badge-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.network-badge-sub {
  font-size: 0.75rem;
  color: var(--grey-mid);
  text-align: center;
  max-width: 140px;
  line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────
   14. CONTACT — SECTION 11
───────────────────────────────────────────────────────── */

#contact {
  padding: 120px 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.contact-bg-graphic {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 6px;
  border: 2px solid var(--blue);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.2s;
  align-self: flex-start;
}

.btn-white:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
  align-self: flex-start;
}

.btn-white-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 24px 28px;
}

.contact-info-card h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────────────────
   15. FOOTER
───────────────────────────────────────────────────────── */

footer {
  background: var(--black);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-network {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-network a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-network a:hover {
  color: var(--white);
}


/* ─────────────────────────────────────────────────────────
   16. RESPONSIVE
───────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .who-grid,
  .for-whom-grid,
  .network-inner,
  .contact-inner,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .who-visual       { order: -1; }
  .for-whom-visual  { display: none; }

  .believer-cards   { grid-template-columns: 1fr; }
  .looks-grid       { grid-template-columns: 1fr; }
  .chapters-grid    { grid-template-columns: 1fr; }

  .footer-top       { grid-template-columns: 1fr; gap: 40px; }

  .nav-links        { display: none; }
  .nav-hamburger    { display: flex; }

  .chapters-online  { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .container          { padding: 0 20px; }
  .hero-content       { padding: 60px 20px; }
  .mission-card       { padding: 32px 24px; }
  .looks-card         { padding: 32px 24px; }
  .believer-card      { padding: 32px 24px; }
  .chapters-online    { padding: 28px 24px; }
  .contact-inner      { gap: 48px; }
  .footer-bottom      { flex-direction: column; align-items: flex-start; }
}


/* ─────────────────────────────────────────────────────────
   SHELL PAGE STYLES
   Used by: movement.html, church.html,
            find-a-chapter.html, faith-statement.html,
            contact.html
───────────────────────────────────────────────────────── */

.page-hero {
  min-height: 40vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 71, 193, 0.2) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.page-hero-graphic {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(2, 71, 193, 0.2);
}

.page-hero-graphic::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 32px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content .section-label {
  margin-bottom: 12px;
}

.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 680px;
}

.page-hero-content p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  line-height: 1.75;
}

.page-body {
  padding: 100px 0;
  background: var(--white);
}

.page-body-inner {
  max-width: 780px;
}

.page-body-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 48px;
}

.page-body-inner h2:first-child {
  margin-top: 0;
}

.page-body-inner p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

.page-body-inner p:last-child {
  margin-bottom: 0;
}

.content-placeholder {
  width: 100%;
  padding: 48px;
  background: var(--grey-light);
  border: 2px dashed rgba(2, 71, 193, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 32px 0;
}
