/* ─── RESET ─── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }


/* ─── DESIGN TOKENS ─── */

:root {
  /* PALETTE */
  --gold:        #c9952a;
  --gold-light:  #e8c46a;
  --gold-pale:   #f5e6c0;
  --gold-dark:   #8a6318;
  --cream:       #fdf8ee;
  --brown-dark:  #2b1d0e;
  --brown-mid:   #4a3010;
  --white:       #ffffff;
  --text-body:   #3a2a10;
  --shadow-gold: 0 4px 24px rgba(201,149,42,0.25);

  /* TYPOGRAPHY SYSTEM */
  --font-display: 'Cormorant Garamond', serif;  /* headings, pull-quotes, scripture */
  --font-body:    'DM Sans', sans-serif;         /* paragraphs, labels, buttons      */
  --font-utility: 'Cinzel', serif;               /* eyebrow labels, data captions    */

  /* TYPE SCALE */
  --scale-hero:  clamp(52px, 7vw, 64px);
  --scale-h2:    clamp(34px, 4.5vw, 52px);
  --scale-h3:    clamp(22px, 2.8vw, 28px);
  --scale-h4:    18px;
  --scale-body:  16px;
  --scale-small: 14px;
  --scale-label: 11px;

  /* ICON SIZES */
  --icon-lg: 32px;
  --icon-md: 24px;
  --icon-sm: 16px;
}


/* ─── BASE ─── */

body {
  font-family: var(--font-body);
  font-size: var(--scale-body);
  font-weight: 300;
  line-height: 1.7;
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
}

/* Close button */
.btn-close-gsw {
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    position:absolute;
    top:16px; right:16px;
    width:32px;height:32px;
    border-radius:50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px
}

.btn-close-gsw:hover {
    background: #e60000;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ICON SYSTEM  (Phosphor Thin — all icons inherit gold by default)
   ═══════════════════════════════════════════════════════════════════════════ */

[class^="ph-"],
[class*=" ph-"] {
  color: var(--gold);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--icon-lg);
}

/* Context-specific sizes */
.credential-icon [class^="ph-"],
.credential-icon [class*=" ph-"]   { font-size: 17px; }

.mission-pillar .icon [class^="ph-"],
.mission-pillar .icon [class*=" ph-"] { font-size: 30px; }

footer ul li [class^="ph-"],
footer ul li [class*=" ph-"] { font-size: var(--icon-md); flex-shrink: 0; margin-top: 2px; }

.social-links a [class^="ph-"],
.social-links a [class*=" ph-"]    { font-size: var(--icon-md); }


/* ═══════════════════════════════════════════════════════════════════════════
   GSW SEAL DIVIDER  — the signature visual element
   Usage: <div class="gsw-divider[ gsw-divider--dark]">
            <span class="gsw-divider-mark">GSW</span>
          </div>
   ═══════════════════════════════════════════════════════════════════════════ */

.gsw-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 32px;
  max-width: 280px;
}

.gsw-divider::before {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,149,42,0.5));
}

.gsw-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(201,149,42,0.5));
}

/* The signet circle */
.gsw-divider-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,149,42,0.7);
  box-shadow: 0 0 0 5px rgba(201,149,42,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  position: relative;
  transition: box-shadow 0.3s;
}

/* Crown glyph sits above the letterform */
.gsw-divider-mark::before {
  content: '♛';
  font-size: 7px;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
}

/* Dark-section variant */
.gsw-divider--dark .gsw-divider-mark {
  border-color: rgba(201,149,42,0.45);
  box-shadow: 0 0 0 5px rgba(201,149,42,0.04);
}

.gsw-divider--dark::before {
  background: linear-gradient(to right, transparent, rgba(201,149,42,0.35));
}

.gsw-divider--dark::after {
  background: linear-gradient(to left, transparent, rgba(201,149,42,0.35));
}


/* ═══════════════════════════════════════════════════════════════════════════
   GSW PULL QUOTE  — replaces or accompanies stat boxes
   Usage on dark bg: <blockquote class="gsw-pull-quote"> … </blockquote>
   Usage on light bg: add class gsw-pull-quote--light
   ═══════════════════════════════════════════════════════════════════════════ */

.gsw-pull-quote {
  text-align: center;
  max-width: 760px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.gsw-pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1.55;
  margin-bottom: 20px;
}

.gsw-pull-quote cite {
  font-family: var(--font-utility);
  font-size: var(--scale-label);
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
  display: block;
}

.gsw-pull-quote--light p    { color: var(--brown-dark); }
.gsw-pull-quote--light cite { color: var(--gold-dark); }


/* ═══════════════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════════════ */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 48px;
  background: rgba(43,29,14,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,149,42,0.3);
}

.nav-logo{
  width: 64px; height: 64px; border-radius: 50%;
}

.nav-logo-emblem {
  width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-utility); font-size: 18px; color: var(--brown-dark);
  font-weight: 700; box-shadow: 0 0 14px rgba(201,149,42,0.5); flex-shrink: 0;
}

.navbar-toggler {
  border-width: 3px !important;
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23FFD700' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.nav-logo-text {
  font-family: var(--font-utility); color: var(--gold-light);
  font-size: 13px; letter-spacing: 0.1em; line-height: 1.35; text-transform: uppercase;
}
.nav-logo-text span { display: block; font-size: 9px; color: var(--gold); letter-spacing: 0.2em; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(245,230,192,0.85); text-decoration: none;
  font-family: var(--font-body); font-weight: 400;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active { border-bottom: 1px solid var(--gold); padding-bottom: 2px; }


/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-gold {
    font-family:'DM Sans',sans-serif;
    font-weight:600;
    font-size:14px;
    letter-spacing:.03em;
    color:var(--ink);
    background:linear-gradient(135deg,var(--gold-bright),var(--gold));
    border:none;
    padding:15px 34px;
    border-radius:10px;
    cursor:pointer;
    box-shadow:0 8px 24px -8px rgba(201,162,75,.55);
    text-decoration: none;
}
.btn-gold:hover { background: var(--gold-dark); filter:brightness(1.05); color: var(--gold-light); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative; min-width: 100vw; min-height: 100vh; margin-top: 60px; margin-bottom: 60px;
  display: flex; align-items: flex-end; padding-top: 20px; padding-bottom: 20px; text-align: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background:  radial-gradient(ellipse at 30% -10%, var(--gold-light) 0%, transparent 55%),
      radial-gradient(ellipse at 100% 110%, var(--brown-dark) 0%, transparent 55%),var(--ink);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,149,42,0.15) 0%, transparent 65%);
}

.hero-img {
  margin-bottom: 20px;
  max-width: 100vw;
  max-height: 60vh;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 30px; max-width: 500px;
  margin: 30px;
  animation: fadeUp 1.2s ease both;
}

/* ─ Display heading: Cormorant Light — the weight shift from 700→300 is intentional;
     at this scale and with this typeface, light weight reads as authority, not frailty ─ */
.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--scale-hero);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 28px;
  text-align: center;
}

/* Italic word at end of heading — Cormorant italic is calligraphic, this earns its place */
.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-content p {
  font-family: var(--font-display);
  font-size: var(--scale-h3);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 28px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SHARED SECTION COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Eyebrow label — Cinzel tracks well and signals utility without competing with the display */
.section-label {
  font-family: var(--font-utility);
  font-size: var(--scale-label);
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* Section heading — Cormorant Light with systematic italic on the meaningful word */
.section-title {
  font-family: var(--font-display);
  font-size: var(--scale-h2);
  font-weight: 300;
  color: var(--brown-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
}

.gold-rule { width: 60px; height: 2px; background: var(--gold); margin: 18px 0; }
.gold-rule.center { margin: 18px auto; }


/* ═══════════════════════════════════════════════════════════════════════════
   SCRIPTURE BAND
   ═══════════════════════════════════════════════════════════════════════════ */

.scripture-band {
  background: linear-gradient(90deg, var(--brown-dark) 0%, var(--brown-mid) 50%, var(--brown-dark) 100%);
  padding: 44px 40px; text-align: center;
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
}

.scripture-ref {
  font-family: var(--font-utility);
  color: var(--gold); font-size: 15px; letter-spacing: 0.3em; margin-bottom: 10px;
}
.scripture-ref::before { content: '─── '; color: var(--gold-dark); }
.scripture-ref::after  { content: ' ───'; color: var(--gold-dark); }

.scripture-text {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.4vw, 23px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════════════════ */

.about {
  padding: 80px 48px; background: var(--cream);
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: start;
}

.about-text { font-size: 15px; line-height: 1.8; color: var(--text-body); text-align: center; }
.about-text p + p { margin-top: 18px; }
.about-text strong { color: var(--gold-dark); font-weight: 500; }

.about-card {
  background: var(--white); border: 1px solid var(--gold);
  padding: 40px 36px; text-align: center; box-shadow: var(--shadow-gold);
  min-width: 280px; position: relative;
}

.about-card-title {
  font-family: var(--font-display);
  font-size: 40px; font-style: italic; font-weight: 300;
  color: var(--gold); line-height: 1;
}

.about-card-sub {
  font-family: var(--font-utility);
  font-size: 16px; letter-spacing: 0.2em;
  color: var(--brown-dark); text-transform: uppercase; margin: 6px 0 2px;
}

.about-card-ministry {
  font-family: var(--font-utility);
  font-size: 15px; letter-spacing: 0.25em; color: var(--gold-dark); margin-bottom: 18px;
}

.about-card-divider { width: 60px; height: 1px; background: var(--gold); margin: 12px auto; }

.about-card-ref {
  font-family: var(--font-utility);
  color: var(--gold); font-size: 13px; letter-spacing: 0.2em; margin-bottom: 10px;
}

.about-card-quote {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: 18px; color: var(--brown-mid); line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MISSION STATEMENT
   ═══════════════════════════════════════════════════════════════════════════ */

.mission {
  background: var(--brown-dark); padding: 90px 80px;
  position: relative; overflow: hidden;
}
.mission::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,149,42,0.08) 0%, transparent 70%);
}

.mission-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.mission .section-label  { color: var(--gold); display: block; text-align: center; }
.mission .section-title  { color: var(--gold-pale); font-weight: 300; }

.mission-statement-box {
  border: 1px solid rgba(201,149,42,0.4);
  padding: 48px 56px; margin: 32px 0; position: relative;
}
.mission-statement-box::before,
.mission-statement-box::after {
  content: '✦'; position: absolute; color: var(--gold); font-size: 18px;
}
.mission-statement-box::before {
  top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--brown-dark); padding: 0 12px;
}
.mission-statement-box::after {
  bottom: -11px; left: 50%; transform: translateX(-50%);
  background: var(--brown-dark); padding: 0 12px;
}

.mission-statement-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1.75;
}

.mission-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 40px;
}

.mission-pillar {
  background: rgba(201,149,42,0.06);
  border: 1px solid rgba(201,149,42,0.2);
  padding: 32px 28px; text-align: center; transition: background 0.3s;
}
.mission-pillar:hover { background: rgba(201,149,42,0.12); }

/* Icon wrapper — sized for Phosphor thin icons */
.mission-pillar .icon {
  height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.mission-pillar h4 {
  font-family: var(--font-utility);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}

.mission-pillar p { font-size: 15px; color: rgba(245,230,192,0.7); line-height: 1.65; }


/* ═══════════════════════════════════════════════════════════════════════════
   OVERVIEW / BRIEF
   ═══════════════════════════════════════════════════════════════════════════ */

.overview { background: var(--cream); padding: 90px 80px; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.overview-visual { position: relative; }

.overview-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  background: url('../media/istockphoto-2222888244-612x612.webp') center/cover;
}
.overview-img-frame { position: absolute; inset: -14px; border: 2px solid var(--gold); z-index: -1; }

.overview-stat-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--brown-dark);
  padding: 20px 24px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.overview-stat-badge .num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 300;
  letter-spacing: -0.02em; display: block; line-height: 1;
}
.overview-stat-badge .lbl {
  font-family: var(--font-body); font-weight: 400;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  display: block; margin-top: 4px;
}

.brief-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.brief-card { border-left: 3px solid var(--gold); padding: 18px 20px; background: var(--white); }
.brief-card h4 {
  font-family: var(--font-utility);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px;
}
.brief-card p { font-size: 15px; line-height: 1.65; color: var(--text-body); }


/* ═══════════════════════════════════════════════════════════════════════════
   NATIONS / FLAGS
   ═══════════════════════════════════════════════════════════════════════════ */

.nations {
  background: var(--brown-dark); padding: 80px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.nations::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9952a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.nations-inner { position: relative; z-index: 1; }
.nations .section-label { color: var(--gold); display: block; }
.nations .section-title { color: var(--gold-pale); font-weight: 300; }

/* Flags carry their own color identity — intentional exception to the icon rule */
.nations-subtitle {
  font-family: var(--font-display);
  font-size: 17px; font-style: italic; font-weight: 300;
  color: rgba(245,230,192,0.65);
  margin: 0 auto 48px; max-width: 600px;
}

.flags-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 1350px; margin: 0 auto; }
.flag-item { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: default; transition: transform 0.25s;  color: var(--gold); 
  font-size:calc(1.3rem + .6vw);}
.flag-item:hover { transform: translateY(-5px); }
.flag-name {
  font-family: var(--font-body); font-weight: 400;
  font-size: 20px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); transition: color 0.3s;
}
.flag-item:hover .flag-name { color: var(--gold-light); }

/* Stat row — improved typography; consider replacing with gsw-pull-quote */
.nations-count { margin-top: 52px; display: flex; justify-content: center; gap: 60px; }
.nations-stat { text-align: center; }
.nations-stat .n {
  font-family: var(--font-display);
  font-size: 60px; font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gold); line-height: 1;
}
.nations-stat .l {
  font-family: var(--font-body); font-weight: 400;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,230,192,0.55); margin-top: 6px; display: block;
}


/* ═══════════════════════════════════════════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════════════════════════════════════════ */

.pillars { background: var(--white); padding: 70px 80px; gap: 0; border-top: 1px solid var(--gold-pale); }

.pillar { padding: 40px 28px; text-align: center; border-right: 1px solid var(--gold-pale); transition: background 0.3s; }
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(201,149,42,0.05); }

.pillar h3 {
  font-family: var(--font-utility);
  font-size: 12px; letter-spacing: 0.15em;
  color: var(--brown-dark); text-transform: uppercase; margin-bottom: 12px;
}
.pillar p { font-size: 15px; line-height: 1.7; color: #5a4020; }

.donate-stripe {
  grid-column: 4; background: var(--brown-dark); border-radius: 12px; box-shadow: var(--shadow-gold);
  padding: 40px 28px; display: flex; flex-direction: column; justify-content: center; text-align: center;
}
.donate-stripe h3 {
  font-family: var(--font-utility);
  font-size: 14px; color: var(--gold-light); letter-spacing: 0.15em; text-transform: uppercase;
  margin: 14px; border-radius: 10px;border: 1px solid var(--gold-dark); padding: 10px 16px; display: inline-block;
}
.donate-stripe p { font-size: 14px; color: rgba(245,230,192,0.7); line-height: 1.65; margin-bottom: 22px; }


/* ═══════════════════════════════════════════════════════════════════════════
   FOUNDER
   ═══════════════════════════════════════════════════════════════════════════ */

.founder { background: var(--cream); padding: 100px 80px; }
.founder-grid { display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: start; max-width: 1100px; margin: 0 auto; }

.founder-photo-wrap { position: relative; }
.founder-photo {
  min-width: 300px; max-width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(80deg, #c9952a22 0%, #8a631820 100%) center/cover no-repeat;
  display: block; border: 1px solid var(--gold);
}
.founder-photo-border { position: absolute; top: 18px; left: 18px; right: -18px; bottom: -18px; border: 1px solid rgba(201,149,42,0.4); z-index: -1; }

.founder-quote-badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--brown-dark); border: 1px solid var(--gold);
  padding: 20px 24px; max-width: 240px;
}
.founder-quote-badge p {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: 16px; color: var(--gold-pale); line-height: 1.5;
}
.founder-quote-badge cite {
  font-family: var(--font-utility);
  font-size: 10px; letter-spacing: 0.2em; color: var(--gold);
  margin-top: 8px; display: block; text-transform: uppercase;
}

.founder-content { padding-top: 16px; }

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--brown-dark); line-height: 1.1; margin-bottom: 4px;
}

.founder-title {
  font-family: var(--font-utility);
  font-size: 11px; letter-spacing: 0.25em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 22px; display: block;
}

.founder-bio { font-size: 17px; line-height: 1.85; color: var(--text-body); font-weight: 300; }
.founder-bio p + p { margin-top: 16px; }
.founder-bio strong { color: var(--gold-dark); font-weight: 500; }

.founder-divider { width: 40px; height: 2px; background: var(--gold); margin: 24px 0; }

.credential { display: flex; gap: 12px; align-items: flex-start; }
.credential-text h5 {
  font-family: var(--font-body); font-weight: 500;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-dark);
}
.credential-text p { font-size: 14px; color: #5a4020; margin-top: 2px; }


/* ═══════════════════════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════════════════════ */

.team { background: var(--white); padding: 90px 80px; }
.team-header { text-align: center; margin-bottom: 60px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }

.team-card {
  text-align: center; border-radius: 12px; border: 3px solid var(--gold);
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.09); height: 100%;
  transition: box-shadow 0.3s, transform 0.3s; max-width: 400px; margin: 0 auto;
}
.team-card:hover { box-shadow: 0 6px 32px rgba(201,149,42,0.2); transform: translateY(-3px); }

.team-photo {
  max-width: 400px; aspect-ratio: 1; background-size: cover; background-position: center;
  border: 2px solid transparent; transition: border-color 0.3s; position: relative; overflow: hidden;
}
.team-photo::after {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,29,14,0.5) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.team-card:hover .team-photo { border-color: var(--gold); }
.team-card:hover .team-photo::after { opacity: 1; }

.team-info { padding: 18px 16px 22px; }

.team-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--brown-dark); margin-bottom: 4px;
}

/* Role: Cinzel, no italic — Cinzel's italic is unreliable at 10px; weight 400 tracks cleanly */
.team-role {
  font-family: var(--font-utility);
  font-size: 18px; font-weight: 400; font-style: normal;
  letter-spacing: 0.2em; color: var(--gold-dark);
  text-transform: uppercase; margin-bottom: 10px; display: block;
}

.team-bio { font-size: 14px; line-height: 1.65; color: #5a4020; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════════════════════
   CUSTOM CAROUSEL
   ═══════════════════════════════════════════════════════════════════════════ */

.custom-carousel-inner {
  display: flex; flex-wrap: nowrap;
  overflow-x: auto; scroll-behavior: smooth;
  -webkit-scrolling-width: none;
  scrollbar-width: none;
}
.custom-carousel-inner::-webkit-scrollbar { display: none; }

.custom-carousel-item { flex: 0 0 100%; padding: 0 8px; transition: transform 0.3s ease; }

@media (min-width: 576px) { .custom-carousel-item { flex: 0 0 50%; } }
@media (min-width: 768px) { .custom-carousel-item { flex: 0 0 33.3333%; } }
@media (min-width: 992px) { .custom-carousel-item { flex: 0 0 25%; } }

.ctrl-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; background-color: var(--white);
  border: 2px solid var(--gold); color: #5d4037; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04);
}
.ctrl-btn:hover { background-color: var(--gold); color: var(--white); border-color: var(--gold); }
.ctrl-btn.prev { left: 30px; }
.ctrl-btn.next { right: 30px; }


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

footer {
  background: var(--brown-dark); padding: 52px 80px 28px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  border-top: 1px solid var(--gold-dark);
}

.footer-brand-text {
 font-family:'Cinzel',serif; color:var(--gold-light); font-size:14px; letter-spacing:0.1em; text-transform:uppercase;  
}

.footer-brand-subtext { font-size:10px; color:var(--gold); letter-spacing:0.2em;}

.footer-brand p {
  font-size: var(--scale-small);
  color: rgba(245,230,192,0.6); line-height: 1.7; margin: 12px 0 16px;
}

footer h4 {
  font-family: var(--font-utility);
  color: var(--gold); font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 18px;
}

footer ul { list-style: none; }
footer ul li { color: rgba(245,230,192,0.7); font-size: var(--scale-small); margin-bottom: 8px; display: flex; gap: 10px; align-items: flex-start; }
footer ul li span.icon { color: var(--gold); font-size: 15px; flex-shrink: 0; }

.footer-bottom {
  grid-column: 1 / -1; border-top: 1px solid rgba(201,149,42,0.2);
  padding-top: 20px; text-align: center;
  color: rgba(245,230,192,0.4); font-size: 13px; letter-spacing: 0.08em;
}

.social-links { display: flex; gap: 12px; margin-top: 14px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px; text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}
.social-links a:hover { background: var(--gold); color: var(--brown-dark); border-color: var(--gold); }


/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollFlags {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo-wrap { max-width: 380px; margin: 0 auto 60px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hero { height: 1200px; }
  .hero-content { padding: 0 20px; }
  .about { grid-template-columns: 1fr; gap: 24px; padding: 20px 24px; }
  .about-card { position: static; top: 0; margin: 0 auto; }
  .mission { padding: 60px 28px; }
  .mission-pillars { grid-template-columns: 1fr; }
  .overview { padding: 60px 28px; }
  .nations { padding: 60px 24px; }
  .nations-count { gap: 28px; }
  .pillars { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .donate-stripe { grid-column: 1 / -1; }
  .founder { padding: 60px 28px; }
  .team { padding: 60px 28px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .mission-statement-box { padding: 32px 24px; }
  .gsw-divider { max-width: 200px; }
}

@media (max-width: 576px) {
  .hero { height: 1600px; }
  .nations-count { flex-direction: column; gap: 20px; align-items: center; }
  .team-grid { grid-template-columns: 1fr; }
  .founder-quote-badge { left: 0; max-width: 100%; }
  .brief-cards { grid-template-columns: 1fr; }
}
