/* ================================================================
   WHOLLY WOMEN — styles.css
   ================================================================ */

/* --- Custom Fonts ------------------------------------------ */
@font-face {
  font-family: 'Gistesy';
  src: url('../gistesy/Gistesy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens ----------------------------------------- */
:root {
  --blue:       #147e93;
  --orange:     #ea8b54;
  --cream:      #f8ecdb;
  --dark:       #2c2c2c;
  --mid:        #555555;
  --white:      #ffffff;
  --nav-h:      100px;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.16);
  --ease:       0.3s ease;
}

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Lato', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* --- Focus -------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p  { line-height: 1.78; }

/* --- Utilities --------------------------------------------- */
.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: #d97740; border-color: #d97740; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.85);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: #0f6b7d; border-color: #0f6b7d; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap var(--ease), color var(--ease);
}
.text-link::after { content: '→'; font-size: 1em; }
.text-link:hover { gap: 0.8rem; color: #d97740; }

/* ================================================================
   NAVIGATION
   ================================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}

#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 88px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--ease);
}
.nav-logo:hover img { opacity: 0.85; }

/* Nav links wrapper */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu ul a {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  position: relative;
  transition: color var(--ease);
  white-space: nowrap;
}

/* underline indicator */
.nav-menu ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--ease);
}

.nav-menu ul a:hover { color: var(--orange); }
.nav-menu ul a:hover::after,
.nav-menu ul a.active::after { transform: scaleX(1); }

/* When scrolled: dark text */
#site-header.scrolled .nav-menu ul a { color: var(--dark); }
#site-header.scrolled .nav-menu ul a:hover { color: var(--orange); }

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  z-index: 1100;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.32s ease, opacity 0.32s ease, background 0.32s ease;
  transform-origin: center;
}
#site-header.scrolled .nav-toggle span { background: var(--dark); }
body.nav-open .nav-toggle span    { background: var(--dark); }

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.38) 0%,
    rgba(0,0,0,0.22) 50%,
    rgba(0,0,0,0.52) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.28);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: rgba(255,255,255,0.90);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.1s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.65);
  font-size: 1.6rem;
  line-height: 1;
  animation: bounce 2.2s ease-in-out 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ================================================================
   VISION BAND
   ================================================================ */
.vision-band {
  background: var(--blue);
  color: var(--white);
  padding: 3.75rem 1.75rem;
  text-align: center;
  position: relative;
}

.vision-band-inner {
  max-width: 820px;
  margin: 0 auto;
}

.vision-band-inner::before,
.vision-band-inner::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto;
  border-radius: 2px;
  opacity: 0.9;
}
.vision-band-inner::before { margin-bottom: 1.75rem; }
.vision-band-inner::after  { margin-top: 1.75rem; }

.vision-band blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.96);
}

/* ================================================================
   COMMUNITY SECTION
   ================================================================ */
.community {
  background: var(--cream);
  padding: 5.5rem 1.75rem;
}

.community-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.community-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.community-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.community-image:hover img { transform: scale(1.03); }

.community-text h2 {
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.community-text p {
  color: var(--mid);
  margin-top: 1rem;
  font-size: 1.04rem;
}

.community-text .text-link {
  margin-top: 2rem;
  display: inline-flex;
}

/* ================================================================
   SCRIPTURE QUOTE
   ================================================================ */
.scripture {
  background: var(--white);
  padding: 5.5rem 1.75rem;
  text-align: center;
}

.scripture-inner {
  max-width: 740px;
  margin: 0 auto;
}

.scripture-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 9rem;
  line-height: 0.55;
  color: var(--orange);
  opacity: 0.22;
  user-select: none;
  margin-bottom: -0.5rem;
  display: block;
}

.scripture blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.scripture cite {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 700;
}

/* ================================================================
   NEWSLETTER — EPISTLES
   ================================================================ */
.newsletter {
  background: var(--blue);
  color: var(--white);
  padding: 5rem 1.75rem;
  text-align: center;
}

.newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.newsletter p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.18);
}

/* ================================================================
   DISCOVER CARDS
   ================================================================ */
.discover {
  background: var(--cream);
  padding: 5.5rem 1.75rem;
}

.discover-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.discover-header {
  text-align: center;
  margin-bottom: 3rem;
}

.discover-header h2 { color: var(--blue); }

.discover-subtitle {
  color: var(--mid);
  font-size: 1.04rem;
  margin-top: 0.75rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  color: var(--dark);
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  height: 195px;
  overflow: hidden;
  flex-shrink: 0;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.card:hover .card-img img { transform: scale(1.06); }

.card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  color: var(--blue);
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}
.card-body p {
  font-size: 0.88rem;
  color: var(--mid);
  flex: 1;
  margin-bottom: 1.1rem;
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap var(--ease);
  margin-top: auto;
}
.card-link::after { content: '→'; }
.card:hover .card-link { gap: 0.65rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.footer-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.68) 100%);
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.75rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-brand-name {
  font-family: 'Gistesy', 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}

.footer-divider-line {
  width: 48px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.footer-nav-links a {
  color: rgba(255,255,255,0.80);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color var(--ease);
}
.footer-nav-links a:hover { color: var(--orange); }

.footer-donate {
  margin-bottom: 2.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  width: 100%;
  max-width: 600px;
}
.footer-copy a {
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer-copy a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .footer-content { padding: 4rem 1.5rem 2.5rem; }
  .footer-nav-links { gap: 0.5rem 1.25rem; }
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.10s; }
[data-reveal-delay="2"] { transition-delay: 0.20s; }
[data-reveal-delay="3"] { transition-delay: 0.30s; }
[data-reveal-delay="4"] { transition-delay: 0.40s; }

/* ================================================================
   PAGE HERO (shared across inner pages)
   ================================================================ */
.page-hero {
  height: 52vh;
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,126,147,0.6) 0%, rgba(0,0,0,0.35) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.75rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content .section-label { color: rgba(255,255,255,0.75); }
.page-hero-content h1 { color: var(--white); font-family: 'Gistesy', 'Playfair Display', serif; }

/* ================================================================
   STUB / COMING SOON PAGE
   ================================================================ */
.stub-page {
  padding-top: var(--nav-h);
}
.stub-page .page-hero {
  padding-top: 0;
}
.stub-content {
  padding: 5rem 1.75rem;
  text-align: center;
  background: var(--cream);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stub-content h2 { color: var(--blue); margin-bottom: 1rem; }
.stub-content p { color: var(--mid); max-width: 500px; margin: 0 auto 2rem; }

/* ================================================================
   RESPONSIVE — Tablet ≤ 1024px
   ================================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-bar-inner { grid-template-columns: 1fr 1fr; }
  .footer-actions { grid-column: 1 / -1; justify-content: flex-start; }
}

/* ================================================================
   RESPONSIVE — Mobile ≤ 768px
   ================================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* --- Mobile nav --- */
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1.5rem;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.14);
    border-top: 1px solid rgba(0,0,0,0.06);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  body.nav-open .nav-menu { display: flex; }

  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-menu ul li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-menu ul a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark) !important;
    font-size: 1rem;
  }
  .nav-menu ul a::after { display: none; }
  .nav-menu .btn {
    margin: 1.25rem 1.5rem 0;
    text-align: center;
    width: calc(100% - 3rem);
  }

  /* --- Community --- */
  .community-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .community-image img { height: 280px; }

  /* --- Cards --- */
  .cards-grid { grid-template-columns: 1fr; }

  /* --- Footer --- */
  .footer-bar-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo img { margin: 0 auto 0.65rem; }
  .footer-nav-links { justify-content: center; }
  .footer-actions { justify-content: center; grid-column: auto; }
  .footer-image { height: 200px; }

  /* --- Hero --- */
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; text-align: center; }
}

/* ================================================================
   RESPONSIVE — Small mobile ≤ 480px
   ================================================================ */
@media (max-width: 480px) {
  nav { padding: 0 1.1rem; }
  .nav-logo img { height: 52px; }
}

/* ================================================================
   MISSION & VALUES PAGE
   ================================================================ */
.mission-split {
  padding: 5.5rem 1.75rem;
}
.mission-split-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mission-split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mission-split-img img { width: 100%; height: 480px; object-fit: cover; }
.mission-split-text h2 { color: var(--blue); margin-bottom: 0.25rem; }
.mission-split-text p  { color: var(--mid); margin-top: 1rem; font-size: 1.04rem; }

.values-section {
  background: var(--white);
  padding: 5.5rem 1.75rem;
}
.values-inner { max-width: 1160px; margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 3.5rem; }
.values-header h2 { color: var(--blue); }

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 820px;
  margin: 0 auto;
}

.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--orange);
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.value-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--orange);
  opacity: 0.28;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  padding-top: 0.1rem;
}
.value-card-content { flex: 1; }
.value-card h3 { color: var(--blue); margin-bottom: 0.5rem; font-size: 1.08rem; }
.value-card p  { color: var(--mid); font-size: 0.93rem; line-height: 1.72; }
.value-scripture { font-style: italic; font-size: 0.82rem !important; color: var(--blue) !important; margin-top: 0.85rem !important; opacity: 0.8; }

.mission-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 280px;
}
.mission-strip-item { overflow: hidden; }
.mission-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
.mission-strip-item:hover img { transform: scale(1.04); }

/* ================================================================
   GLOBAL IMPACT PAGE
   ================================================================ */
.impact-intro {
  background: var(--cream);
  padding: 5.5rem 1.75rem;
}
.impact-intro-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.impact-intro-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.impact-intro-img img { width: 100%; height: 440px; object-fit: cover; }
.impact-intro-text h2 { color: var(--blue); margin-bottom: 0.25rem; }
.impact-intro-text p  { color: var(--mid); margin-top: 1rem; font-size: 1.04rem; }

.regions-section {
  background: var(--white);
  padding: 5.5rem 1.75rem;
}
.regions-inner { max-width: 1160px; margin: 0 auto; }
.regions-header { text-align: center; margin-bottom: 3rem; }
.regions-header h2 { color: var(--blue); }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.region-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform var(--ease), box-shadow var(--ease);
}
.region-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.region-card-img { height: 210px; overflow: hidden; }
.region-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.region-card:hover .region-card-img img { transform: scale(1.05); }
.region-card-body { padding: 1.5rem; }
.region-card-body h3 { color: var(--blue); margin-bottom: 0.45rem; font-size: 1.05rem; }
.region-card-body p  { color: var(--mid); font-size: 0.88rem; line-height: 1.65; }

.partners-gallery {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.partners-gallery::-webkit-scrollbar { display: none; }
.partners-gallery-item {
  flex: 1 1 0;
  min-width: 140px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.partners-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.partners-gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .partners-gallery-item { min-width: 200px; height: 180px; }
}

.translations-section {
  background: var(--blue);
  padding: 5rem 1.75rem;
  color: var(--white);
}
.translations-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.translations-inner h2 { color: var(--white); }
.translations-inner p  { color: rgba(255,255,255,0.82); margin-top: 0.75rem; }
.lang-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.lang-chip {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.22);
}
.lang-chip.done { background: var(--orange); border-color: var(--orange); }

.skills-section {
  background: var(--cream);
  padding: 5.5rem 1.75rem;
}
.skills-inner { max-width: 1160px; margin: 0 auto; }
.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.skills-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.skills-img img { width: 100%; height: 440px; object-fit: cover; }
.skills-text h2 { color: var(--blue); margin-bottom: 0.25rem; }
.skills-text p  { color: var(--mid); margin-top: 1rem; font-size: 1.04rem; }
.skills-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat-item { background: var(--white); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1.1; }
.stat-label  { font-size: 0.78rem; color: var(--mid); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.08em; }

.gallery-section {
  background: #1a1a1a;
  padding: 5rem 0;
}
.gallery-header { text-align: center; padding: 0 1.75rem; margin-bottom: 2rem; }
.gallery-header h2 { color: var(--white); }
.gallery-header .section-label { color: var(--orange); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item { overflow: hidden; aspect-ratio: 1 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease, filter 0.4s ease; filter: brightness(0.85); display: block; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }

/* ================================================================
   START A POD PAGE
   ================================================================ */
.pod-intro {
  background: var(--cream);
  padding: 5.5rem 1.75rem;
  text-align: center;
}
.pod-intro-inner { max-width: 800px; margin: 0 auto; }
.pod-intro-inner h2 { color: var(--blue); margin-bottom: 0.25rem; }
.pod-intro-inner p  { color: var(--mid); margin-top: 1rem; font-size: 1.05rem; }

.pod-vision-band {
  background: var(--blue);
  padding: 4.5rem 1.75rem;
  text-align: center;
}
.pod-vision-inner { max-width: 780px; margin: 0 auto; }
.pod-vision-inner h2 { color: var(--white); }
.pod-vision-inner p  { color: rgba(255,255,255,0.86); font-size: 1.06rem; margin-top: 1rem; }

.steps-section {
  background: var(--white);
  padding: 5.5rem 1.75rem;
}
.steps-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.steps-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.steps-img img { width: 100%; height: 480px; object-fit: cover; }
.steps-text h2 { color: var(--blue); margin-bottom: 2rem; }
.steps-list { display: flex; flex-direction: column; gap: 1.75rem; }
.step-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.step-content h4 { color: var(--blue); font-size: 1rem; margin-bottom: 0.3rem; font-family: 'Lato', sans-serif; font-weight: 700; }
.step-content p  { color: var(--mid); font-size: 0.92rem; }

.resources-section {
  background: var(--cream);
  padding: 5.5rem 1.75rem;
}
.resources-inner { max-width: 1160px; margin: 0 auto; }
.resources-header { text-align: center; margin-bottom: 3rem; }
.resources-header h2 { color: var(--blue); }
.resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.resource-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.resource-img { height: 250px; overflow: hidden; }
.resource-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.resource-card:hover .resource-img img { transform: scale(1.04); }
.resource-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.resource-body h3 { color: var(--blue); margin-bottom: 0.65rem; }
.resource-body p  { color: var(--mid); font-size: 0.93rem; flex: 1; margin-bottom: 1.5rem; }

/* ================================================================
   BOOKS PAGE
   ================================================================ */
.book-feature {
  padding: 5.5rem 1.75rem;
}
.book-feature.cream-bg { background: var(--cream); }
.book-feature-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4.5rem;
  align-items: start;
}
.book-feature.reverse .book-feature-inner { grid-template-columns: 2fr 1fr; }
.book-feature.reverse .book-cover { order: 2; }
.book-cover { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.book-cover img { width: 100%; display: block; }
.book-info h2 { color: var(--blue); margin-bottom: 0.4rem; }
.book-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--orange);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.book-info p { color: var(--mid); margin-top: 0.75rem; font-size: 1.02rem; }
.book-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.book-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--mid);
  font-size: 0.95rem;
}
.book-features li::before { content: '✦'; color: var(--orange); font-size: 0.7rem; margin-top: 0.28rem; flex-shrink: 0; }
.book-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.coming-soon-section {
  background: var(--cream);
  padding: 5rem 1.75rem;
  text-align: center;
}
.coming-soon-inner { max-width: 480px; margin: 0 auto; }
.coming-soon-inner h2 { color: var(--blue); margin-bottom: 0.75rem; }
.coming-soon-inner p  { color: var(--mid); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section {
  background: var(--cream);
  padding: 5.5rem 1.75rem;
}
.contact-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { color: var(--blue); margin-bottom: 0.4rem; }
.contact-info > p  { color: var(--mid); margin-top: 0.75rem; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.35rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); font-weight: 700; display: block; }
.contact-value { color: var(--dark); font-size: 0.95rem; margin-top: 0.15rem; }
.contact-value a { color: var(--blue); transition: color var(--ease); }
.contact-value a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--blue); margin-bottom: 1.5rem; font-size: 1.3rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--dark);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20,126,147,0.12);
}
.form-control::placeholder { color: #b0b0b0; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.dynamic-fields { display: none; }
.dynamic-fields.active { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.visible { display: block; }
.form-success h3 { color: var(--blue); margin-bottom: 0.5rem; }
.form-success p { color: var(--mid); }

/* ================================================================
   INNER PAGE RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  /* values-grid is already single-column flex — no override needed */
  .regions-grid        { grid-template-columns: 1fr 1fr; }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .book-feature-inner,
  .book-feature.reverse .book-feature-inner { grid-template-columns: 1fr 1fr; }
  .book-feature.reverse .book-cover { order: 0; }
  .contact-inner       { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .mission-split-inner,
  .impact-intro-inner,
  .skills-layout,
  .steps-inner,
  .resources-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-split-img img,
  .impact-intro-img img,
  .skills-img img,
  .steps-img img       { height: 280px; }
  .value-card { padding: 1.4rem 1.25rem; gap: 1.25rem; }
  .regions-grid        { grid-template-columns: 1fr; }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .skills-stats        { grid-template-columns: 1fr 1fr; }
  .book-feature-inner,
  .book-feature.reverse .book-feature-inner { grid-template-columns: 1fr; }
  .book-feature.reverse .book-cover { order: 0; }
  .form-row            { grid-template-columns: 1fr; }
  .mission-strip       { grid-template-columns: 1fr; height: auto; }
  .mission-strip-item  { height: 200px; }
}
