:root{
  /* Light + vibrant palette */
  --bg: #f6f9ff;
  --bg2:#ffffff;
  --card:#ffffff;
  --muted:#4a5a78;
  --text:#0b1b3a;

  --brand:#12c2e9;   /* cyan */
  --brand2:#c471ed;  /* purple */
  --brand3:#f64f59;  /* coral */
  --brand4:#2fe59d;  /* green */
  --line: rgba(11,27,58,.10);
  --shadow: 0 18px 45px rgba(11,27,58,.12);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(18,194,233,.18), transparent 55%),
    radial-gradient(900px 520px at 90% 0%, rgba(196,113,237,.16), transparent 55%),
    radial-gradient(1000px 700px at 60% 110%, rgba(246,79,89,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff 60%);
  color: var(--text);
  line-height: 1.6;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(1140px, calc(100% - 40px));
  margin-inline:auto;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.75);
  color: var(--muted);
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(11,27,58,.06);
}

.pill{
  display:inline-flex;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color: var(--muted);
  background: rgba(18,194,233,.08);
  font-size: 12px;
  font-weight: 700;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(11,27,58,.10);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
  font-weight: 800;
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 40px rgba(11,27,58,.14);
}

.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2), var(--brand3));
  border-color: transparent;
  color:#ffffff;
  text-shadow: 0 1px 0 rgba(0,0,0,.12);
}
.btn.primary:hover{ filter: brightness(1.03); }

.btn.ghost{
  background: transparent;
  box-shadow: none;
}

/* Header */
header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(11,27,58,.08);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand .logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2), var(--brand3));
  box-shadow: var(--shadow);
}
.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}
.brand .title strong{ letter-spacing:.3px; font-size: 15px; }
.brand .title span{
  color: var(--muted);
  font-size: 12px;
  letter-spacing:.14em;
  text-transform: uppercase;
}

nav ul{
  list-style:none;
  display:flex;
  gap: 12px;
  padding:0;
  margin:0;
  align-items:center;
}
nav a{
  color: #2b3a58;
  font-weight: 800;
  font-size: 14px;
  padding:10px 12px;
  border-radius: 12px;
  transition: background .12s ease, transform .12s ease;
}
nav a:hover{
  background: rgba(18,194,233,.10);
  transform: translateY(-1px);
}
nav a.active{
  background: linear-gradient(135deg, rgba(18,194,233,.18), rgba(196,113,237,.16));
  border: 1px solid rgba(11,27,58,.10);
}

.menu-btn{
  display:none;
  padding:10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  color: var(--text);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(11,27,58,.08);
}

/* Hero */
.hero{ padding: 56px 0 26px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: start;
}
.hero h1{
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
  margin: 14px 0 14px;
  letter-spacing: -0.02em;
}
.hero p{
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 18px;
}
.hero .cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Cards */
.hero-card{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(11,27,58,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:-70px -90px auto auto;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(18,194,233,.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(246,79,89,.25), transparent 60%);
  transform: rotate(18deg);
}

.stat-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.stat{
  border:1px solid rgba(11,27,58,.10);
  border-radius: 14px;
  padding: 12px;
  background: rgba(18,194,233,.06);
}
.stat strong{ display:block; font-size: 18px; }
.stat span{ display:block; color: var(--muted); font-size: 12px; margin-top: 3px; }

/* Sections */
.section{ padding: 46px 0; }
.section h2{ margin: 0 0 10px; font-size: 26px; }
.section p.lead{ margin:0 0 22px; color: var(--muted); }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(11,27,58,.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 36px rgba(11,27,58,.10);
  transition: transform .12s ease, box-shadow .12s ease;
}
/* =========================
   PILLARS: Premium card look
   ========================= */

.cards{
  gap: 18px;               /* slightly more breathing room */
}

.cards .card{
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(87, 73, 100, 0.16);
  background:
    radial-gradient(800px 240px at 15% 0%, rgba(255, 218, 179, 0.45), transparent 55%),
    radial-gradient(900px 260px at 90% 10%, rgba(200, 170, 170, 0.30), transparent 55%),
    rgba(255,255,255,0.92);
  box-shadow:
    0 22px 50px rgba(32, 26, 36, 0.12),
    0 2px 0 rgba(255,255,255,0.65) inset;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cards .card::before{
  /* soft “shine” sweep */
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg,
    rgba(255,255,255,0.00) 20%,
    rgba(255,255,255,0.35) 40%,
    rgba(255,255,255,0.00) 60%);
  transform: translateX(-60%);
  pointer-events:none;
  opacity: .55;
}

.cards .card::after{
  /* top accent bar */
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(87,73,100,.95),
    rgba(159,131,131,.85),
    rgba(255,218,179,.95));
  opacity: .85;
}

.cards .card:hover{
  transform: translateY(-4px);
  border-color: rgba(87,73,100,0.28);
  box-shadow:
    0 30px 70px rgba(32, 26, 36, 0.16),
    0 2px 0 rgba(255,255,255,0.65) inset;
}

.cards .card:hover::before{
  transform: translateX(60%);
  transition: transform .55s ease;
}

/* Pill label becomes a nicer “chip” */
.cards .card .pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(32, 26, 36, 0.78);
  background: rgba(255, 218, 179, 0.60);
  border: 1px solid rgba(87, 73, 100, 0.14);
  box-shadow: 0 8px 18px rgba(32, 26, 36, 0.08);
}

/* Better typography */
.cards .card h3{
  margin-top: 14px;
  margin-bottom: 10px;
  font-weight: 980;
  letter-spacing: .01em;
  line-height: 1.15;
  font-size: 22px; /* adjust if you prefer */
}

.cards .card p{
  margin: 0;
  color: rgba(32, 26, 36, 0.72);
  line-height: 1.8;
  font-weight: 650;
  font-size: 15.5px;
  max-width: 52ch;
}

/* Optional: make the first line of the paragraph slightly stronger */
.cards .card p strong{
  color: rgba(32, 26, 36, 0.85);
  font-weight: 900;
}

/* Small responsiveness touch */
@media (max-width: 520px){
  .cards .card{ padding: 18px; border-radius: 18px; }
  .cards .card h3{ font-size: 20px; }
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11,27,58,.14);
}
.card h3{ margin: 6px 0 6px; font-size: 16px; }
.card p{ margin:0; color: var(--muted); font-size: 14px; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quote{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(11,27,58,.10);
  background: linear-gradient(135deg, rgba(18,194,233,.14), rgba(196,113,237,.12), rgba(246,79,89,.10));
  box-shadow: 0 18px 40px rgba(11,27,58,.10);
}
.quote p{ margin:0; font-size: 15px; }
.quote small{ display:block; margin-top: 10px; color: rgba(11,27,58,.70); font-weight: 700; }

/* Footer */
.footer{
  padding: 34px 0;
  border-top: 1px solid rgba(11,27,58,.10);
  color: #43557a;
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.9));
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}
.footer a{ color: #43557a; font-weight: 800; }
.footer a:hover{ color: #12284f; }
.kv{
  display:flex;
  flex-direction:column;
  gap: 6px;
  font-size: 14px;
}
.copy{
  margin-top: 18px;
  border-top: 1px solid rgba(11,27,58,.10);
  padding-top: 14px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  nav ul{ display:none; }
  .menu-btn{ display:inline-flex; }

  nav.open ul{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap: 6px;
    position:absolute;
    right: 20px;
    top: 66px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(11,27,58,.12);
    border-radius: 16px;
    padding: 12px;
    min-width: 220px;
    box-shadow: 0 22px 60px rgba(11,27,58,.18);
    backdrop-filter: blur(14px);
  }
}
/* === PEACE LOGO EMPHASIS === */

.peace-logo{
  height: 64px;              /* commanding but not oversized */
  width: auto;
  padding: 6px 10px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow:
    0 8px 24px rgba(11,27,58,.18),
    0 2px 6px rgba(11,27,58,.12);
}

/* Header should be calm so logo stands out */
header{
  background: #ffffff;
  border-bottom: 2px solid rgba(11,27,58,.08);
}

/* Reduce nav visual noise */
nav a{
  font-weight: 700;
  color: #24365c;
}

nav a.active{
  background: rgba(18,194,233,.12);
  border: 1px solid rgba(11,27,58,.12);
}

/* Mobile logo scaling */
@media (max-width: 640px){
  .peace-logo{
    height: 52px;
  }
}
/* =========================
   HERO IMAGE SLIDER
========================= */

.hero-slider{
  margin-top: 12px;
}

.slider{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,27,58,.18);
  border: 1px solid rgba(11,27,58,.10);
  background: #fff;
}

.slide{
  position: absolute;
  inset: 0;
  min-height: 520px;

  /* IMPORTANT FIX */
  background: center / cover no-repeat;
  background-image: var(--bg);

  display: grid;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1200ms ease;
}


.slide.is-active{
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.slide-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.22));
}

.slide-content{
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 46px 0;
  color: #fff;
}

.slide-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(10px);
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 12px;
}

.slide-content h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.slide-content p{
  margin: 0 0 18px;
  font-size: 16px;
  opacity: .96;
  max-width: 540px;
}

.slide-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slider-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 120ms ease, background 120ms ease;
}
.slider-btn:hover{
  transform: translateY(-50%) scale(1.04);
  background: rgba(255,255,255,.26);
}
.slider-btn.prev{ left: 14px; }
.slider-btn.next{ right: 14px; }

.slider-dots{
  position:absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 5;
  display:flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, width 120ms ease;
}
.dot.is-active{
  background: #fff;
  width: 22px;
}

@media (max-width: 980px){
  .slide{ min-height: 520px; }
  .slide-content{ padding: 36px 0; }
}
@media (max-width: 640px){
  .slider{ border-radius: 18px; }
  .slide{ min-height: 540px; }
  .slider-btn{ display:none; } /* dots are enough on mobile */
}
/* FIX: slider height collapsing because slides are absolute */
.hero-slider .slider{
  height: 520px;      /* you can change this */
  min-height: 520px;
}

@media (max-width: 980px){
  .hero-slider .slider{
    height: 540px;
    min-height: 540px;
  }
}

@media (max-width: 640px){
  .hero-slider .slider{
    height: 560px;
    min-height: 560px;
  }
}
header{
  position: sticky;
  top: 0;
  z-index: 50;

  background: linear-gradient(
    180deg,
    #F4A000 0%,     /* saffron */
    #E89A00 50%    /* slightly deeper saffron */
  );

  border-bottom: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
}

.peace-logo{
  height: 64px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow:
    0 10px 26px rgba(0,0,0,.30);
}

/* =========================================================
   PEACE FOUNDATION THEME (User Palette)
   #574964  #9F8383  #C8AAAA  #FFDAB3
   Paste at END of styles.css to override previous theme
========================================================= */

:root{
  --pf-plum: #574964;
  --pf-mauve:#9F8383;
  --pf-rose: #C8AAAA;
  --pf-peach:#FFDAB3;

  --bg: #fff7ef;           /* warm canvas */
  --card: #ffffff;
  --text: #201a24;         /* deep readable charcoal */
  --muted: #5e5166;
  --line: rgba(32,26,36,.12);
  --shadow: 0 18px 45px rgba(32,26,36,.14);
}

/* Body background: subtle peach wash */
body{
  background:
    radial-gradient(900px 540px at 10% 0%, rgba(255,218,179,.65), transparent 55%),
    radial-gradient(900px 540px at 90% 0%, rgba(200,170,170,.45), transparent 55%),
    linear-gradient(180deg, var(--bg), #ffffff 65%);
  color: var(--text);
}

/* Header: plum -> mauve gradient */
header{
  background: linear-gradient(90deg, var(--pf-plum), var(--pf-mauve));
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 26px rgba(32,26,36,.22);
  backdrop-filter: none;
}

/* Brand text on header */
.brand .title strong{ color: #ffffff; }
.brand .title span{ color: rgba(255,255,255,.78); }

/* Logo stays on white so it’s crisp */
.peace-logo{
  height: 64px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}

/* Nav */
nav a{
  color: rgba(255,255,255,.88);
  font-weight: 800;
}
nav a:hover{
  background: rgba(255,255,255,.14);
  color: #ffffff;
}
nav a.active{
  background: rgba(255,218,179,.35); /* peach highlight */
  border: 1px solid rgba(255,255,255,.24);
  color: #ffffff;
}

/* Mobile menu button */
.menu-btn{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color: #ffffff;
  box-shadow: none;
}

/* Pills / badges */
.pill{
  background: rgba(255,218,179,.55);
  border: 1px solid rgba(32,26,36,.10);
  color: var(--pf-plum);
  font-weight: 900;
}
.badge{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(32,26,36,.10);
  box-shadow: 0 10px 25px rgba(32,26,36,.08);
  color: var(--muted);
}

/* Buttons */
.btn{
  background: #ffffff;
  border: 1px solid rgba(32,26,36,.14);
  color: var(--pf-plum);
  box-shadow: 0 14px 30px rgba(32,26,36,.12);
  font-weight: 900;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(32,26,36,.16);
}
.btn.primary{
  background: linear-gradient(135deg, var(--pf-plum), var(--pf-mauve));
  border-color: transparent;
  color: #ffffff;
}
.btn.ghost{
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.28);
  color: #ffffff;
}

/* Cards */
.card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(32,26,36,.12);
  box-shadow: 0 16px 36px rgba(32,26,36,.10);
}
.card:hover{
  box-shadow: 0 22px 50px rgba(32,26,36,.14);
}

/* Quote block uses peach/rose */
.quote{
  background: linear-gradient(135deg,
    rgba(255,218,179,.85),
    rgba(200,170,170,.55)
  );
  border: 1px solid rgba(32,26,36,.10);
  box-shadow: 0 18px 40px rgba(32,26,36,.12);
}
.quote small{
  color: rgba(32,26,36,.72);
  font-weight: 800;
}

/* Slider overlay: tint with plum */
.slide-overlay{
  background:
    linear-gradient(90deg, rgba(87,73,100,.78) 0%, rgba(159,131,131,.45) 55%, rgba(255,218,179,.18) 100%),
    linear-gradient(180deg, rgba(87,73,100,.25), rgba(87,73,100,.22));
}

/* Slider dots/buttons */
.slider-btn{
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.16);
}
.slider-dots{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
}
.dot{ background: rgba(255,255,255,.55); }
.dot.is-active{
  background: #ffffff;
  width: 22px;
}

/* Footer */
.footer{
  background: linear-gradient(180deg, rgba(255,218,179,.40), rgba(200,170,170,.25));
  border-top: 1px solid rgba(32,26,36,.12);
  color: rgba(32,26,36,.78);
}
.footer a{
  color: rgba(32,26,36,.82);
  font-weight: 800;
}
.footer a:hover{ color: var(--pf-plum); }

/* --- IMPORTANT FIX (typo guard) ---
   Some editors may auto-change rgba() text; ensure no invalid 'rgbaअ' etc.
*/

/* =========================
   FOOTER PRO v2 (Compact)
   ========================= */

.footer.footer-pro{
  margin-top: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.42));
  border-top: 1px solid rgba(87,73,100,.14);
}

/* tighter overall rhythm */
.footer-pro .footer-top{
  padding: 18px 0 12px;               /* reduced */
  display: grid;
  grid-template-columns: 1.15fr .9fr .75fr .75fr;
  gap: 14px;
  align-items: start;
}

/* responsive layout stays sane */
@media (max-width: 980px){
  .footer-pro .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-pro .footer-top{ grid-template-columns: 1fr; }
}

.footer-pro .footer-logo{
  width: 64px;                         /* smaller */
  padding: 6px;
  border-radius: 12px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(87,73,100,.12);
  box-shadow: 0 10px 20px rgba(32,26,36,.10);
}

.footer-pro .footer-brand .title strong{ font-size: 16px; }
.footer-pro .footer-brand .title span{ font-size: 12px; letter-spacing: .12em; opacity: .85; }

.footer-pro .footer-about{
  margin: 10px 0 10px;
  color: rgba(32,26,36,.70);
  line-height: 1.65;
  font-weight: 650;
  max-width: 54ch;
  font-size: 13.5px;
}

/* Footer buttons should not look like big hero CTAs */
.footer-pro .footer-actions .btn{
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
}
.footer-pro .footer-actions{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* headings smaller, more footer-ish */
.footer-pro h4{
  margin: 2px 0 10px;
  font-weight: 950;
  font-size: 14px;
  color: rgba(32,26,36,.88);
}

/* lists tighter */
.footer-pro .footer-links li{ margin: 7px 0; }
.footer-pro .footer-links a{
  font-weight: 850;
  color: rgba(32,26,36,.74);
  text-decoration: none;
}
.footer-pro .footer-links a:hover{ color: rgba(87,73,100,.95); }

/* Contact list style: avoid bullet look */
.footer-pro .footer-list li{
  display:flex;
  gap: 10px;
  margin: 8px 0;
  line-height: 1.55;
}
.footer-pro .footer-list .k{
  width: 66px;
  font-weight: 950;
  color: rgba(32,26,36,.76);
  flex: 0 0 auto;
}
.footer-pro .footer-list .v{
  color: rgba(32,26,36,.70);
  font-weight: 650;
  font-size: 13.5px;
}
.footer-pro .footer-list a{
  color: rgba(87,73,100,.95);
  font-weight: 900;
  text-decoration: none;
}

/* social: small, inline */
.footer-pro .footer-social{
  margin-top: 10px;
}
.footer-pro .footer-social a{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(87,73,100,.12);
  background: rgba(255,255,255,.65);
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(32,26,36,.74);
}
.footer-pro .footer-social svg{
  width: 18px;
  height: 18px;
  fill: #1877f2;
}
.footer-pro .footer-social a:hover{
  color: #1877f2;
  border-color: rgba(24,119,242,.25);
}

/* remove the mini-box feeling (it was making it “page-like”) */
.footer-pro .footer-mini{ display:none; }

/* bottom bar: stronger separation + compact */
.footer-pro .footer-bottom{
  padding: 10px 0 12px;
  border-top: 1px solid rgba(87,73,100,.10);
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-pro .copy{
  color: rgba(32,26,36,.62);
  font-weight: 800;
  font-size: 13px;
}

.footer-pro .footer-legal{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-pro .footer-legal a{
  color: rgba(32,26,36,.66);
  font-weight: 850;
  text-decoration:none;
}
.footer-pro .footer-legal a:hover{ color: rgba(87,73,100,.95); }
.footer-pro .footer-legal .dot{ opacity:.5; }

/* Powered by Foxcog compact */
.footer-pro .powered{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  color: rgba(32,26,36,.60);
  font-weight: 800;
}
.footer-pro .powered a{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  text-decoration:none;
  font-weight: 950;
  color: rgba(87,73,100,.95);
}
/* Footer – Powered by Foxcog (balanced visibility) */
.footer-pro .foxcog-logo{
  height: 34px;        /* ⬅️ increased from 22px */
  width: auto;
  object-fit: contain;
}

/* PEACE logo: always crisp, never squeezed */
.peace-logo{
  height: 54px;          /* header */
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* Footer brand mark (do NOT force it into a rounded thumbnail) */
.footer-pro .footer-logo{
  height: 58px;
  width: auto;
  max-width: 240px;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}


/* Footer must look distinct: palette gradient */
.footer.footer-pro{
  margin-top: 28px;
  color: rgba(255,255,255,.92);
  background:
    radial-gradient(900px 380px at 12% 10%, rgba(255,218,179,.18), transparent 60%),
    radial-gradient(800px 320px at 88% 0%, rgba(200,170,170,.20), transparent 62%),
    linear-gradient(120deg, #574964 0%, #9F8383 55%, #574964 120%);
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-pro h4{
  color: rgba(255,255,255,.95);
}

.footer-pro .footer-about,
.footer-pro .footer-list .v,
.footer-pro .copy{
  color: rgba(255,255,255,.82);
}

.footer-pro .footer-links a,
.footer-pro .footer-list a{
  color: rgba(255,255,255,.90);
}

.footer-pro .footer-links a:hover,
.footer-pro .footer-list a:hover{
  color: #FFDAB3; /* peach highlight */
}
.footer-pro .footer-social a{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}

.footer-pro .footer-social a:hover{
  border-color: rgba(255,218,179,.45);
  background: rgba(255,218,179,.14);
  color: #FFDAB3;
}
.footer-pro .footer-bottom{
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-pro .footer-powered a{
  opacity: .92;
}

.footer-pro .foxcog-logo{
  height: 36px;   /* visible */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.20));
}
/* Compact footer layout */
.footer.footer-pro{
  padding: 26px 0 14px;   /* ⬅️ reduced */
}

.footer-pro .footer-grid{
  row-gap: 14px;          /* tighter rows */
}

.footer-pro p,
.footer-pro li{
  line-height: 1.5;       /* was too airy */
}
.footer-pro .footer-logo{
  height: 46px;   /* was ~58 */
  max-width: 200px;
}
.footer-pro h4{
  margin-bottom: 6px;
  font-size: 14.5px;
  letter-spacing: .3px;
  text-transform: uppercase;
  opacity: .9;
}

.footer-pro ul{
  margin-top: 6px;
}

.footer-pro li{
  margin-bottom: 6px;   /* tighter list */
}
.footer-pro .footer-bottom{
  margin-top: 12px;
  padding-top: 8px;
  font-size: 13px;
}
.footer-pro .foxcog-logo{
  height: 32px;   /* perfect footer attribution size */
}
/* =========================
   FOOTER FINAL (Locked)
   ========================= */

.footer.footer-final{
  margin-top: 28px;
  color: rgba(255,255,255,.92);
  background:
    radial-gradient(900px 320px at 12% 10%, rgba(255,218,179,.18), transparent 60%),
    radial-gradient(820px 280px at 88% 0%, rgba(200,170,170,.22), transparent 62%),
    linear-gradient(120deg, #574964 0%, #9F8383 55%, #574964 120%);
  border-top: 1px solid rgba(255,255,255,.14);
}

/* Two-block layout: brand + contact */
.footer-final .footer-row{
  padding: 16px 0 10px; /* compact */
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items:start;
}

@media (max-width: 900px){
  .footer-final .footer-row{
    grid-template-columns: 1fr;
  }
}

/* Logo handling (no squeezing) */
.footer-final .peace-logo{
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display:block;
}

.footer-final .footer-logo{
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Brand text */
.footer-final .title strong{
  color: rgba(255,255,255,.96);
}
.footer-final .title span{
  color: rgba(255,255,255,.78);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Description */
.footer-final .footer-about{
  margin: 10px 0 0;
  max-width: 62ch;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  font-weight: 650;
  font-size: 13.5px;
}

/* Contact */
.footer-final .footer-contact{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.footer-final .fc-line{
  display:flex;
  gap: 10px;
  line-height: 1.55;
  font-size: 13.5px;
}

.footer-final .fc-line .k{
  width: 68px;
  font-weight: 900;
  color: rgba(255,255,255,.85);
  flex: 0 0 auto;
}

.footer-final .fc-line a{
  color: rgba(255,255,255,.92);
  font-weight: 850;
  text-decoration:none;
}

.footer-final .fc-line a:hover{
  color: #FFDAB3;
  text-decoration: underline;
}

.footer-final .fc-line .v{
  color: rgba(255,255,255,.80);
  font-weight: 650;
}

/* Facebook */
.footer-final .footer-social{
  margin-top: 6px;
}

.footer-final .footer-social a{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
}

.footer-final .footer-social svg{
  width: 18px;
  height: 18px;
  fill: #1877f2;
}

.footer-final .footer-social a:hover{
  border-color: rgba(255,218,179,.45);
  background: rgba(255,218,179,.14);
  color: #FFDAB3;
}

/* Bottom bar */
.footer-final .footer-bottom{
  padding: 10px 0 12px;
  border-top: 1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-final .copy{
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: 13px;
}

/* Foxcog logo only */
.footer-final .footer-powered a{
  display:inline-flex;
  align-items:center;
  opacity: .92;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-final .footer-powered a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.footer-final .foxcog-logo{
  height: 34px;   /* visible, not tiny */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.20));
}
.footer.footer-final{
  margin-top: 28px;
  color: rgba(255,255,255,.92);
  background:
    radial-gradient(700px 260px at 10% 0%, rgba(255,218,179,.12), transparent 60%),
    linear-gradient(135deg, #574964 0%, #9F8383 100%);
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer.footer-final{
  background:
    linear-gradient(135deg, #6a5a70 0%, #9F8383 100%);
}
/* ===== Footer compactness + bottom bar theme ===== */
.site-footer,
footer.footer,
#site-footer footer {
  padding-top: 18px !important;
  padding-bottom: 12px !important;
}

/* If your footer has an inner wrapper */
.site-footer .footer-inner,
footer.footer .footer-inner,
#site-footer footer .footer-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Reduce extra spacing between rows inside footer */
.site-footer .footer-grid,
footer.footer .footer-grid,
#site-footer footer .footer-grid {
  row-gap: 10px !important;
}

/* Tighten spacing for paragraphs inside footer (often adds height) */
.site-footer p,
footer.footer p,
#site-footer footer p {
  margin: 6px 0 !important;
}
/* Bottom strip: different theme color */
.site-footer .footer-bottom,
footer.footer .footer-bottom,
#site-footer footer .footer-bottom {
  margin-top: 12px !important;
  padding: 10px 0 !important;

  border-top: 1px solid rgba(255,255,255,.12);
}

/* Make text in bottom strip readable */
.site-footer .footer-bottom,
.site-footer .footer-bottom * {
  color: rgba(255,255,255,.92) !important;
}
/* ===== Footer: compact + distinct bottom strip (CSS-only) ===== */

/* Target footer no matter how it's injected */
#site-footer footer,
footer.footer,
.site-footer {
  position: relative;          /* required for ::after */
  padding-top: 18px !important;
  padding-bottom: 52px !important;  /* room for bottom strip */
  overflow: hidden;            /* keep ::after clean */
}

/* Bottom strip */
#site-footer footer::after,
footer.footer::after,
.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;                /* bottom band height */
  background: #5a3d55;         /* <-- change this to your desired theme tone */
  border-top: 1px solid rgba(255,255,255,.10);
}

/* Tighten internal spacing (usually caused by margins) */
#site-footer footer p,
footer.footer p,
.site-footer p {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

/* If there is a horizontal divider line that adds extra air */
#site-footer footer hr,
footer.footer hr,
.site-footer hr {
  margin: 12px 0 !important;
  opacity: .25;
}
/* ===== Footer bottom band must be BEHIND the content ===== */

/* Footer container should create a stacking context */
#site-footer footer,
footer.footer,
.site-footer {
  position: relative;
  overflow: hidden;
}

/* The colored band (if you're using ::after) must sit behind */
#site-footer footer::after,
footer.footer::after,
.site-footer::after {
  z-index: 0 !important;          /* behind content */
}

/* Footer bottom content must be above the band */
.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  /* adjust height/padding to match your strip */
  min-height: 46px;
  padding: 10px 20px;
}

/* Ensure text stays readable */
.footer-bottom .copy {
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

/* Keep Foxcog logo visible + tidy */
.footer-bottom .footer-powered {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-bottom .foxcog-logo {
  height: 26px;
  width: auto;
  display: block;
  opacity: .95;
}

/* If your footer still has too much space overall */
#site-footer footer,
footer.footer,
.site-footer {
  padding-top: 18px !important;
  padding-bottom: 12px !important;   /* important: don't reserve band space now */
}
/* =========================
   FOOTER FINAL: real bottom bar (no pseudo strip)
   ========================= */

/* 1) Disable any pseudo bottom strip so it can't create empty space */
#site-footer footer::after,
footer.footer::after,
.site-footer::after {
  content: none !important;
}

/* 2) Make footer overall compact */
#site-footer footer,
footer.footer,
.site-footer {
  padding-top: 18px !important;
  padding-bottom: 0 !important;   /* IMPORTANT: no reserved gap */
  margin-bottom: 0 !important;
}

/* 3) Bottom bar becomes the colored strip */
#site-footer footer .footer-bottom,
footer.footer .footer-bottom,
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 12px 22px;
  margin-top: 14px;

  background: #5a3d55;   /* choose your palette tone */
  border-top: 1px solid rgba(255,255,255,.12);
}

/* 4) Typography + logo alignment */
#site-footer footer .footer-bottom .copy,
footer.footer .footer-bottom .copy,
.site-footer .footer-bottom .copy {
  color: rgba(255,255,255,.92);
  font-weight: 850;
}

#site-footer footer .footer-bottom .footer-powered,
footer.footer .footer-bottom .footer-powered,
.site-footer .footer-bottom .footer-powered {
  display: flex;
  align-items: center;
}

#site-footer footer .footer-bottom .foxcog-logo,
footer.footer .footer-bottom .foxcog-logo,
.site-footer .footer-bottom .foxcog-logo {
  height: 26px;
  width: auto;
  display: block;
  opacity: .95;
}

/* 5) On small screens stack nicely */
@media (max-width: 640px) {
  #site-footer footer .footer-bottom,
  footer.footer .footer-bottom,
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
   FOOTER FINAL LOCK (wins over all earlier footer rules)
   ========================= */

.footer.footer-final{
  /* compact overall footer */
  padding: 18px 0 0 !important;
  margin-top: 28px !important;

  /* main footer theme */
  background: linear-gradient(135deg, #6a5a70 0%, #9F8383 100%) !important;
  border-top: 1px solid rgba(255,255,255,.14) !important;
  overflow: hidden;
}

/* tighten the main row */
.footer.footer-final .footer-row{
  padding: 12px 0 8px !important;
  gap: 16px !important;
}

/* remove any accidental extra separators that create “empty bands” */
.footer.footer-final hr{
  display: none !important;
}

/* Bottom bar = actual distinct strip */
.footer.footer-final .footer-bottom{
  margin-top: 10px !important;
  padding: 10px 0 !important;

  background: #5a3d55 !important; /* <-- bottom bar color (change if needed) */
  border-top: 1px solid rgba(255,255,255,.14) !important;
}

/* Ensure bottom bar content aligns nicely */
.footer.footer-final .footer-bottom{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

/* Kill default margins that create extra height */
.footer.footer-final .copy{
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: rgba(255,255,255,.88) !important;
  font-weight: 850 !important;
}

/* Foxcog logo alignment */
.footer.footer-final .footer-powered{
  display:flex !important;
  align-items:center !important;
}

.footer.footer-final .foxcog-logo{
  height: 32px !important;
  width: auto !important;
  display:block !important;
  opacity: .95 !important;
}

/* Mobile: stack neatly */
@media (max-width: 640px){
  .footer.footer-final .footer-bottom{
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
/* =================================================
   FOOTER FINAL – HARD LOCK DIFFERENT BOTTOM COLOR
   ================================================= */

/* Main footer (unchanged gradient) */
.footer.footer-final{
  padding: 18px 0 0 !important;
  background: linear-gradient(135deg, #6a5a70 0%, #9f8383 100%) !important;
}

/* REMOVE any pseudo bands completely */
.footer.footer-final::before,
.footer.footer-final::after{
  content: none !important;
  display: none !important;
}

/* Bottom strip – SOLID, DISTINCT COLOR */
.footer.footer-final .footer-bottom{
  margin-top: 12px !important;
  padding: 12px 24px !important;

  background-color: #4b2f47 !important;   /* ← DISTINCT darker plum */
  background-image: none !important;      /* kill gradients */
  
  border-top: 1px solid rgba(255,255,255,.18);
  
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
}

/* Text + logo visibility */
.footer.footer-final .footer-bottom .copy{
  margin: 0 !important;
  color: #ffffff !important;
  font-weight: 800;
}

.footer.footer-final .foxcog-logo{
  height: 30px;
  width: auto;
  display: block;
}

/* Mobile stack */
@media (max-width: 640px){
  .footer.footer-final .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* === FINAL OVERRIDE: footer bottom must be a different solid color === */
#site-footer footer.footer.footer-final .footer-bottom{
  background-color: #4b2f47 !important;  /* <-- distinct darker plum */
  background-image: none !important;
}
/* === Full-bleed footer bottom bar while keeping content aligned === */
#site-footer footer.footer.footer-final .footer-bottom{
  background-color: #4b2f47 !important;
  background-image: none !important;

  /* full width strip */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* keep the padding comfortable */
  padding: 12px 0 !important;
}

/* Keep inner content aligned to the same container width */
#site-footer footer.footer.footer-final .footer-bottom .copy,
#site-footer footer.footer.footer-final .footer-bottom .footer-powered{
  /* nothing needed here */
}

/* Add an inner wrapper effect using existing container padding */
#site-footer footer.footer.footer-final .footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

#site-footer footer.footer.footer-final .footer-bottom{
  padding-left: clamp(16px, 3vw, 24px) !important;
  padding-right: clamp(16px, 3vw, 24px) !important;
}

