/* ==========================================================
   ROYAL DIADEM — FULL STYLESHEET (MOBILE-FIRST)
   Client direction:
   - Bolder colors, purple more prominent
   - Base background light gold #FDDC5C across all pages
   - Logo at top, nav below (midnight purple), gold line under nav
   - Page banner blocks (About/Founder/Contact)
   - About page: “OUR ROYAL CALLING” layout + diadem separators/bullets + creed scroll
   ========================================================== */

:root{
  /* =========================
     CORE BRAND PALETTE
     ========================= */
  --gold-base:#FDDC5C;     /* primary base */
  --gold-soft:#FFF2B8;     /* softer parchment/highlight */
  --white:#FFFFFF;

  /* Single source of truth for purple */
  --brand-purple:#4B0062;        /* nav + page banner (your choice) */
  --brand-purple-dark:#2E003E;   /* hover / depth / shadows */
  --brand-purple-soft:#6A1B7A;   /* optional accent (sparingly) */
  --midnight-purple: var(--brand-purple);
  --midnight-purple-2: var(--brand-purple-dark);

  /* Text */
  --ink:#1f1a24;
  --muted:#5f5767;
  --text-on-dark:#FFFFFF;
  --text-on-gold:#2E003E;

  /* Lines / borders */
  --line:rgba(46,0,62,.16);
  --line-strong:rgba(46,0,62,.28);

  /* Effects */
  --shadow-sm: 0 10px 28px rgba(46,0,62,.16);
  --shadow-md: 0 18px 60px rgba(46,0,62,.22);

  /* Layout */
  --container: 1120px;
  --pad: 18px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;

  /* Typography */
  --serif: "Playfair Display", ui-serif, Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Focus ring */
  --focus: 0 0 0 4px rgba(253,220,92,.55);

  /* Diadem SVG (inline data URI) */
  --diadem-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='44' viewBox='0 0 80 44'%3E%3Cpath fill='%23FDDC5C' d='M8 31h64l-4 9H12z'/%3E%3Cpath fill='%23FDDC5C' d='M10 31l7-17 14 10 9-18 9 18 14-10 7 17z'/%3E%3Crect x='10' y='29' width='60' height='3' rx='1.5' fill='%23FDDC5C'/%3E%3Ccircle cx='17' cy='13' r='2.8' fill='%23FDDC5C'/%3E%3Ccircle cx='40' cy='6.5' r='3.6' fill='%23FDDC5C'/%3E%3Ccircle cx='63' cy='13' r='2.8' fill='%23FDDC5C'/%3E%3C/svg%3E");
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  line-height:1.55;

  /* GLOBAL BACKGROUND (all pages) — gold base + bold purple presence */
  background:
    radial-gradient(900px 560px at 12% 8%, rgba(34,0,56,.52), transparent 62%),
    radial-gradient(900px 560px at 92% 10%, rgba(75,22,112,.46), transparent 60%),
    radial-gradient(950px 650px at 50% 105%, rgba(255,242,184,.75), transparent 60%),
    linear-gradient(180deg, rgba(253,220,92,.94) 0%, rgba(255,255,255,.84) 35%, rgba(253,220,92,.68) 100%);
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0 0 12px; color:rgba(31,26,36,.72); }
strong{ color:rgba(31,26,36,.92); }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--pad);
}

.skip-link{
  position:absolute;
  left:-999px; top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  border-radius:12px;
  background:var(--white);
  box-shadow:var(--shadow-sm);
  outline:none;
  z-index:999;
}

/* -----------------------------
   2) Global UI atoms
------------------------------ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(16,0,24,.16);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
  font-weight:700;
  letter-spacing:.2px;
}
.btn:focus{ outline:none; box-shadow: var(--shadow-sm), var(--focus); }

.btn.primary{
  background: linear-gradient(180deg, #5b0a74, var(--brand-purple-dark));
  color: var(--white);
  border:1px solid rgba(255,255,255,.22);
  font-weight:900;
}
.btn.primary:hover{
  background: linear-gradient(180deg, #6a1486, #3a014d);
  box-shadow: var(--shadow-md);
}

.btn.ghost{
  background: rgba(255,255,255,.92);
  color: var(--brand-purple-dark);
  border:1px solid rgba(75,0,98,.45);
  box-shadow: 0 10px 24px rgba(46,0,62,.12);
}
.btn.ghost:hover{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,242,184,.95));
  border-color: rgba(75,0,98,.68);
}

.btn.pill{
  border-radius:999px;
  padding:10px 14px;
}
/* ==================================================
   BUTTON SYSTEM — guaranteed contrast
   ================================================== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  font-weight:800;
  letter-spacing:.2px;
  text-decoration:none;
  background: rgba(255,255,255,.94);
  color: var(--brand-purple-dark);
  border: 2px solid rgba(75,0,98,.25);
  box-shadow: 0 10px 24px rgba(46,0,62,.14);
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
}

.btn:focus{
  outline:none;
  box-shadow: 0 0 0 4px rgba(253,220,92,.55);
}

.btn:hover{ transform: translateY(-1px); }
.btn:hover{
  border-color: rgba(75,0,98,.45);
  background: rgba(255,255,255,.99);
}

/* Use on GOLD / LIGHT backgrounds */
.btn.purple{
  background: var(--brand-purple);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(46,0,62,.22);
}
.btn.purple:hover{ background: var(--brand-purple-dark); }

.btn.white{
  background: rgba(255,255,255,.92);
  color: var(--brand-purple);
  border-color: rgba(75,0,98,.25);
  box-shadow: 0 10px 24px rgba(46,0,62,.14);
}
.btn.white:hover{
  border-color: rgba(75,0,98,.45);
  background: rgba(255,255,255,.98);
}

/* Outline button for GOLD / LIGHT backgrounds (always visible) */
.btn.outline-purple{
  background: transparent;
  color: var(--brand-purple);
  border-color: rgba(75,0,98,.55);
}
.btn.outline-purple:hover{
  background: rgba(75,0,98,.08);
  border-color: rgba(75,0,98,.75);
}

/* Use on PURPLE / DARK backgrounds (e.g., inside banners) */
.btn.gold{
  background: linear-gradient(180deg, rgba(253,220,92,1), rgba(253,220,92,.86));
  color: var(--brand-purple-dark);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.btn.gold:hover{
  filter: brightness(.98);
}

.btn.outline-gold{
  background: transparent;
  color: var(--gold-base);
  border-color: rgba(253,220,92,.75);
}
.btn.outline-gold:hover{
  background: rgba(253,220,92,.12);
  border-color: rgba(253,220,92,.95);
}

/* Pill variant */
.btn.pill{
  border-radius:999px;
  padding:10px 14px;
}

/* Safety: if a button is placed in a tight row on mobile */
.platform-row .btn{
  width:100%;
}
@media (min-width:760px){
  .platform-row .btn{ width:auto; }
}


.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(16,0,24,.16);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
  color: rgba(31,26,36,.72);
  font-size:13px;
  font-weight:700;
}

/* Cards and surfaces */
.card, .embed-card, .quote{
  border-radius: var(--radius-lg);
  border:1px solid rgba(16,0,24,.16);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
}

.card{ padding:16px; }
.card h3{
  margin:0 0 8px;
  font-family:var(--serif);
  color: var(--brand-purple);
  font-size:18px;
}
.card p{ margin:0 0 10px; }

.gold-rule{
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(22,0,36,.55), transparent);
  margin:18px 0;
}

/* -----------------------------
   3) Header: logo row + nav row + gold line
------------------------------ */
.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background: rgba(255,255,255,.90);
  backdrop-filter:saturate(180%) blur(10px);
}

/* Row 1: top logo */
.header-top{ padding: 12px 0 10px; }
.brand-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
}
/* Logo container: allow a rectangular badge so the FULL logo shows with no letterboxing */
.brand-logo{
  width: min(190px, 68vw);     /* responsive width */
  height: 72px;               /* controlled height for header aesthetics */
  padding: 8px 10px;          /* breathing room */
  border-radius: 18px;
  overflow: hidden;

  /* IMPORTANT: remove the “white bars” effect by not painting a big white slab */
  background: transparent;

  border: 1px solid rgba(46,0,62,.18);
  box-shadow: var(--shadow-sm);

  display:flex;
  align-items:center;
  justify-content:center;
}

/* Full logo, never cropped */
.brand-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;        /* show full logo */
  object-position: center;
  display:block;
  background: transparent;
}

.brand-name{
  font-family:var(--serif);
  font-weight:800;
  letter-spacing:.3px;
  color: var(--brand-purple); 

  font-size:22px;
  line-height:1.1;
}
.brand-tag{
  color: rgba(31,26,36,.78);
  font-size:12px;
  margin-top:4px;
  font-weight:700;
  line-height:1.45;
  max-width: 44ch;
  text-wrap: balance;
}

/* Row 2: midnight purple nav */
.header-nav{
  background: linear-gradient(180deg, var(--brand-purple), var(--brand-purple-dark));
}
.header-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px var(--pad);
}

/* Mobile nav button */
.nav-toggle{
  border: 1px solid rgba(253,220,92,.55);
  background: rgba(255,255,255,.06);
  color: var(--gold-base);
  border-radius: 14px;
  padding: 10px 12px;
  display:flex;
  gap:10px;
  align-items:center;
  box-shadow:none;
}
.nav-toggle:focus{ outline:none; box-shadow: var(--focus); }

.bars{
  width:18px; height:12px;
  position:relative;
}
.bars span{
  position:absolute; left:0;
  width:100%; height:2px;
  background:var(--gold-base);
  border-radius:2px;
}
.bars span:nth-child(1){ top:0; }
.bars span:nth-child(2){ top:5px; }
.bars span:nth-child(3){ top:10px; }

/* ===============================
   NAV: Transparent in the bar
   Mobile: dropdown panel (not full-screen overlay)
   =============================== */

/* Default: nav is transparent, sits on the header-nav bar */
.nav{
  position: static;
  inset: auto;
  background: transparent;
  backdrop-filter: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: none;
  z-index: auto;
  padding-top: 0;
}

/* Desktop-like inline nav */
.nav ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
}

/* Nav links: no tile background; elegant hover underline */
.nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 8px;
  border-radius: 12px;

  border: none;
  background: transparent;
  color: rgba(255,255,255,.94);
  font-weight: 800;
  position: relative;

  transition: opacity .12s ease, transform .12s ease;
}

.nav a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* Gold underline on hover */
.nav a::after{
  content:"";
  position:absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, rgba(75,0,98,.8), rgba(106,27,122,.45));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .14s ease;
  opacity: .95;
}

.nav a:hover::after{ transform: scaleX(1); }

/* Current page underline stays on */
.nav a[aria-current="page"]::after{ transform: scaleX(1); }

/* CTA remains button-like */
.nav .cta{
  background: linear-gradient(180deg, var(--gold-base), rgba(253,220,92,.86));
  color: var(--brand-purple-dark);
  padding: 10px 14px;
  border-radius: 16px;
  font-weight: 900;
}
.nav .cta::after{ display:none; }

/* ===============================
   MOBILE MENU: dropdown panel
   =============================== */
@media (max-width: 759px){
  /* Make the header-nav container relative so dropdown can anchor */
  .header-nav .container{ position: relative; }

  /* Collapse nav by default */
  .nav{
    position: absolute;
    top: calc(100% + 10px);   /* drops below the purple bar */
    left: var(--pad);
    right: var(--pad);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;

    /* Subtle panel background (still needed for readability) */
    background: rgba(75,0,98,.98); /* same brand purple */
    border: 1px solid rgba(253,220,92,.22);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(46,0,62,.28);
    padding: 10px;
  }

  /* Open state */
  .nav.open{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Vertical stack in dropdown */
  .nav ul{
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 6px;
  }

  .nav a{
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 14px;
  }

  /* Mobile hover underline becomes a subtle gold glow instead */
  .nav a::after{ display:none; }

  .nav a:hover{
    background: rgba(253,220,92,.12);
    box-shadow: inset 0 0 0 1px rgba(253,220,92,.30);
    transform: none;
  }

  .nav .cta{
    width: 100%;
    justify-content: center;
  }
}


/* Gold line under nav */
.gold-line{
  height:6px;
  background: var(--gold-base);
  box-shadow: 0 10px 30px rgba(22,0,36,.14);
}

/* Desktop nav becomes inline */
@media (min-width: 760px){
  :root{ --pad: 22px; }

  .nav-toggle{ display:none; }

  .nav{
    position:static;
    inset:auto;
    opacity:1;
    pointer-events:auto;
    transform:none;
    background:transparent;
    padding-top:0;
  }
  .nav ul{
    padding:0;
    flex-direction:row;
    align-items:center;
    gap:12px;
    margin:0;
  }
  .nav a{
    border:none;
    background:transparent;
    padding: 10px 10px;
    border-radius: 14px;
    color: var(--white);
  }
  .nav a:hover{ background: rgba(253,220,92,.14); }
  .nav a[aria-current="page"]{ background: rgba(253,220,92,.18); }
  .nav .cta{
    padding: 10px 14px;
    border-radius: 16px;
  }
}

/* -----------------------------
   4) Page banner block (About/Founder/Contact)
------------------------------ */
.page-banner{
  background: linear-gradient(180deg, var(--brand-purple), var(--brand-purple-dark));
  color: var(--gold-base);
  padding: 22px 0;
}
.page-banner h1{
  margin:0;
  font-family: var(--serif);
  letter-spacing: 1px;
  font-size: 22px;
  text-align:center;
  text-transform: uppercase;
  font-weight: 900;
}
.page-banner .desc{
  max-width: 62ch;
  margin: 10px auto 0;
  color: rgba(253,220,92,.92);
  text-align:center;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 14px;
}

/* -----------------------------
   5) Hero
------------------------------ */
.hero{ padding: 24px 0 10px; }
.hero-card{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(16,0,24,.18);
  box-shadow: var(--shadow-md);
  background:
    radial-gradient(900px 560px at 12% 10%, rgba(34,0,56,.32), transparent 62%),
    radial-gradient(900px 560px at 92% 18%, rgba(75,22,112,.28), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.74));
}
.hero-inner{
  padding: 20px;
  display:grid;
  gap: 18px;
}
.hero h1{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
  color: var(--midnight-purple);
}
.hero .lead{
  font-size: 15px;
  color: rgba(31,26,36,.78);
  margin-bottom: 10px;
}
.hero-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hero-media{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border:1px solid rgba(16,0,24,.16);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow-sm);
  position:relative;
}
.hero-media .overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:14px;
  background: linear-gradient(180deg, transparent, rgba(22,0,36,.60));
  color: gold;
}
.hero-media .overlay small{ opacity:.92; display:block; }
.hero-media .overlay strong{ color:white; }

@media (min-width: 760px){
  .hero-inner{
    grid-template-columns: 1.1fr .9fr;
    align-items:stretch;
    padding: 26px;
  }
  .hero h1{ font-size: 44px; }
  .hero-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }
}

/* -----------------------------
   6) Sections / grids
------------------------------ */
.section{ padding: 34px 0; }

.section-head{ margin-bottom: 16px; }
.kicker{
  font-family: var(--serif);
  font-weight: 800;
  color: var(--brand-purple);
  
  letter-spacing: .3px;
}
.section h2{
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--brand-purple);
}
.section .sub{
  margin-top: 8px;
  max-width: 60ch;
}

.grid{ display:grid; gap: 12px; }

.podcast-stack{
  display:grid;
  gap:18px;
}

@media (min-width: 760px){
  .grid.cols-2{ grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1040px){
  .section{ padding: 44px 0; }
}

/* -----------------------------
   7) Quote block
------------------------------ */
.quote{
  padding:16px;
  background:
    linear-gradient(180deg, rgba(253,220,92,.30), rgba(255,255,255,.84));
}
.quote .scripture{
  font-family: var(--serif);
  color: var(--midnight-purple);
  font-size: 18px;
  margin:0 0 8px;
}
.quote .ref{
  color: rgba(31,26,36,.70);
  font-weight: 800;
}

.qotd-sticky-footy{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 10px;
  z-index: 95;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.qotd-sticky-content{
  pointer-events: auto;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(16,0,24,.20);
  background:
    linear-gradient(130deg, rgba(255,255,255,.96), rgba(255,242,184,.96));
  box-shadow: 0 12px 24px rgba(46,0,62,.22);
}

.qotd-sticky-content .badge{
  margin-bottom: 6px;
}

.qotd-sticky-content .scripture{
  margin:0 0 4px;
  font-size: 16px;
  color: #111111;
}

.qotd-sticky-content .ref{
  margin:0;
  font-weight: 800;
  color: #111111;
}

.qotd-sticky-footy.is-hidden{
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

@media (min-width: 760px){
  .qotd-sticky-footy{
    left: 20px;
    right: 20px;
    bottom: 12px;
  }

  .qotd-sticky-content{
    max-width: 620px;
    margin: 0 auto;
    padding: 10px 14px;
  }
}

/* -----------------------------
   8) Podcast embeds / episode cards
------------------------------ */
.embed-card{ padding:14px; }
.embed-frame{
  width:100%;
  border:0;
  border-radius: 16px;
  overflow:hidden;
  background: rgba(255,255,255,.90);
}
.embed-caption{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.platform-row{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.platform-row .btn{ width:100%; }
@media (min-width: 760px){
  .platform-row{
    flex-direction:row;
    flex-wrap:wrap;
  }
  .platform-row .btn{ width:auto; }
}

.episode{ padding:0; overflow:hidden; }
.episode .meta{ padding:14px 16px 8px; }
.episode .meta h3{ margin:0 0 6px; font-size:18px; }
.episode .player{ padding:0 14px 14px; }

/* -----------------------------
   9) Band CTA section (still supported)
------------------------------ */
.band{ padding: 22px 0 30px; }
.band-inner{
  border-radius: var(--radius-xl);
  border:1px solid rgba(16,0,24,.18);
  box-shadow: var(--shadow-md);
  padding:18px;
  background:
    radial-gradient(900px 560px at 12% 12%, rgba(34,0,56,.34), transparent 62%),
    radial-gradient(900px 560px at 92% 18%, rgba(75,22,112,.30), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.74));
}
.band-inner h3{
  margin:0;
  font-family: var(--serif);
  color: var(--midnight-purple);
  font-size: 20px;
}
.band-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 10px;
}
@media (min-width: 760px){
  .band-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }
}

/* -----------------------------
   10) Forms
------------------------------ */
.form{ display:grid; gap:12px; }
.field{ display:grid; gap:6px; }
label{
  font-weight:800;
  color: rgba(31,26,36,.84);
  font-size: 13px;
}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(16,0,24,.18);
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 30px rgba(16,0,24,.08);
  font:inherit;
}
input:focus, textarea:focus, select:focus{
  outline:none;
  box-shadow: 0 10px 30px rgba(16,0,24,.08), var(--focus);
  border-color: rgba(75,22,112,.35);
}
textarea{ min-height: 120px; resize: vertical; }

.form-note{
  font-size: 13px;
  color: rgba(31,26,36,.62);
  margin-top: 8px;
}

/* -----------------------------
   11) Accordions
------------------------------ */
.accordion{ display:grid; gap:10px; }
.acc-item{
  border-radius: var(--radius-lg);
  border:1px solid rgba(16,0,24,.16);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}
.acc-btn{
  width:100%;
  text-align:left;
  padding:14px 14px;
  background:transparent;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  cursor:pointer;
  font:inherit;
  font-weight:900;
  color: var(--midnight-purple);
}
.acc-btn:focus{ outline:none; box-shadow:none; }
.acc-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(75,0,98,.28);
  border-radius: 12px;
}
.acc-panel{
  padding: 4px 14px 16px;
  color: #000;
  line-height: 1.72;
  font-size: 15px;
  display:none;
}
.acc-item.open .acc-panel{ display:block; }

.chev{
  width:28px; height:28px;
  border-radius:999px;
  border:1px solid rgba(16,0,24,.16);
  background: rgba(253,220,92,.35);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  transition: transform .15s ease;
}
.acc-item.open .chev{ transform: rotate(180deg); }

/* Founder tabs */
.founder-tabs{
  border-radius: 20px;
  border: 1px solid rgba(75,0,98,.2);
  background: linear-gradient(165deg, rgba(255,255,255,.95), rgba(253,220,92,.22));
  box-shadow: 0 16px 30px rgba(46,0,62,.12);
  padding: 14px;
}
.founder-tablist{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.founder-tab{
  border: 1px solid rgba(75,0,98,.26);
  background: rgba(255,255,255,.8);
  color: var(--brand-purple);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
}
.founder-tab[aria-selected="true"]{
  background: linear-gradient(180deg, #5b0a74, var(--brand-purple-dark));
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.founder-tabpanel{
  border-radius: 16px;
  border: 1px solid rgba(75,0,98,.18);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}
.founder-tabpanel p{
  color: #000;
}
.founder-tab:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(75,0,98,.28);
}

.founder-read-more{
  margin-top: 12px;
}

@media (max-width: 759px){
  .founder-tabpanel-content{
    position: relative;
    max-height: 34vh;
    overflow: hidden;
  }

  .founder-tabpanel:not(.expanded) .founder-tabpanel-content::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1));
  }

  .founder-modal{
    position: fixed;
    inset: 0;
    z-index: 300;
  }

  .founder-modal-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(20, 9, 34, .62);
  }

  .founder-modal-dialog{
    position: relative;
    z-index: 1;
    margin: 7vh auto 0;
    width: min(92vw, 680px);
    max-height: 86vh;
    border-radius: 18px;
    border: 1px solid rgba(75,0,98,.24);
    background: #fff;
    box-shadow: 0 24px 60px rgba(16,0,24,.34);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .founder-modal-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(75,0,98,.16);
    background: linear-gradient(180deg, rgba(253,220,92,.44), rgba(255,255,255,.96));
  }

  .founder-modal-head h3{
    margin: 0;
    font-family: var(--serif);
    color: var(--brand-purple);
    font-size: 18px;
  }

  .founder-modal-close{
    border: 1px solid rgba(75,0,98,.3);
    background: rgba(255,255,255,.92);
    color: var(--brand-purple);
    border-radius: 10px;
    width: 34px;
    height: 34px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }

  .founder-modal-body{
    padding: 14px 16px 18px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .founder-modal-body p{
    color: #000;
  }

  .founder-modal-body .btn{
    margin-top: 8px;
  }
}

@media (min-width: 760px){
  .founder-read-more{
    display: none;
  }

  .founder-modal{
    display: none !important;
  }
}

body.modal-open{
  overflow: hidden;
}

/* -----------------------------
   12) ABOUT page special layout:
       OUR ROYAL CALLING + Mission/Vision + separators + core values + PORTRAIT CREED SCROLL
------------------------------ */
.royal-calling{ margin-top: 8px; }

.royal-calling h2{
  margin:0 0 14px;
  font-family: var(--serif);
  color: var(--midnight-purple);
  font-size: 28px;
  letter-spacing: .2px;
  text-align:center;
}

.royal-lead{
  max-width: 760px;
  margin: 0 auto 20px;
  text-align:center;
  font-size: 17px;
  color: rgba(31,26,36,.8);
}

.calling-pillars{
  display:grid;
  gap: 12px;
  margin-bottom: 18px;
}

.pillar-card{
  border-radius: 18px;
  border: 1px solid rgba(75,0,98,.2);
  background: linear-gradient(160deg, rgba(255,255,255,.94), rgba(253,220,92,.32));
  box-shadow: 0 16px 34px rgba(46,0,62,.14);
  padding: 16px;
}

.pillar-number{
  display:inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(180deg, var(--brand-purple-soft), var(--brand-purple));
  margin-bottom: 8px;
}

.pillar-card h3{
  margin: 0 0 4px;
  font-family: var(--serif);
  color: var(--brand-purple);
}

.pillar-card p{ margin: 0; }

.pillar-subtitle{
  margin: 0 0 10px;
  color: rgba(75,0,98,.84);
  font-weight: 700;
}

.pillar-list{
  margin: 0;
  padding-left: 18px;
  display:grid;
  gap: 8px;
  color: rgba(31,26,36,.78);
}

.pillar-list li::marker{
  color: var(--brand-purple);
}

.mv-wrap{ display:grid; gap: 12px; }
.mv{ display:grid; gap: 12px; }

.mv-card{
  border-radius: 22px;
  background:
    radial-gradient(120% 130% at 20% 10%, rgba(255,255,255,.95), rgba(255,255,255,.66)),
    linear-gradient(150deg, rgba(253,220,92,.46), rgba(253,220,92,.1));
  border: 1px solid rgba(75,0,98,.2);
  box-shadow: 0 22px 42px rgba(46,0,62,.16);
  padding: 24px;
}
.mv-card h3{
  margin:0 0 8px;
  font-family: var(--serif);
  color: var(--midnight-purple);
  text-align:center;
}
.mv-kicker{
  display:flex;
  width: 100%;
  margin: 0 0 10px;
  padding: 9px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(75,0,98,.12), rgba(253,220,92,.34));
  border: 1px solid rgba(75,0,98,.2);
  color: var(--brand-purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: none;
  line-height: 1.45;
  text-align: center;
  justify-content: center;
  max-width: 100%;
  text-wrap: balance;
}

.mv-card p{
  margin: 0 0 12px;
  line-height: 1.75;
  color: rgba(31,26,36,.82);
}

.mission-list{
  margin: 6px 0 14px 18px;
  padding: 0;
  color: rgba(31,26,36,.72);
  display: grid;
  gap: 8px;
}
.mission-list li{
  padding-left: 2px;
}
.mv-underline{
  height: 4px;
  background: linear-gradient(90deg, rgba(75,0,98,.8), rgba(106,27,122,.45));
  border-radius: 999px;
  margin-top: 10px;
}
@media (min-width: 760px){
  .calling-pillars{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
  }

  .mv{
    grid-template-columns: 1fr 14px 1fr;
    align-items:stretch;
    gap: 18px;
  }
  .mv-card{
    min-height: 100%;
  }
  .mv-divider{
    width: 14px;
    border-radius: 999px;
    background: rgba(22,0,36,.24);
  }
}

/* Two horizontal lines separated by diadem icon */
.diadem-sep{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin: 18px 0 16px;
}
.diadem-sep .line{
  height: 2px;
  flex: 1;
  background: rgba(22,0,36,.55);
  border-radius: 999px;
}
.diadem-sep .icon{
  width: 34px;
  height: 24px;
  background-image: var(--diadem-svg);
  background-repeat:no-repeat;
  background-size: contain;
  background-position:center;
  filter: drop-shadow(0 10px 18px rgba(16,0,24,.14));
}

/* Core values list with diadem bullets */
.core-values h3{
  margin: 0 0 10px;
  font-family: var(--serif);
  color: var(--midnight-purple);
  text-align:center;
  font-size: 24px;
}
.diadem-list{
  margin: 10px 0 0;
}
.diadem-list .acc-item{
  position: relative;
  padding-left: 48px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.diadem-list .acc-item::before{
  content:"";
  position:absolute;
  left: 14px;
  top: 16px;
  width: 24px;
  height: 18px;
  background-image: var(--diadem-svg);
  background-repeat:no-repeat;
  background-size: contain;
  background-position:center;
}
.diadem-list .acc-btn{
  color: var(--midnight-purple);
  padding-left: 8px;
}
.diadem-list .acc-panel{
  padding-left: 22px;
  max-width: 70ch;
}

.diadem-list .acc-item.open{
  transform: translateY(-1px);
  border-color: rgba(75,0,98,.38);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(106,27,122,.09));
  box-shadow: 0 18px 34px rgba(75,0,98,.16), inset 0 1px 0 rgba(255,255,255,.75);
}

.diadem-list .acc-item.open .acc-btn{
  color: var(--brand-purple);
}

.diadem-list .chev{
  background: rgba(75,0,98,.12);
  border-color: rgba(75,0,98,.24);
  color: var(--brand-purple);
}

.diadem-list .acc-item.open .chev{
  background: rgba(75,0,98,.18);
  border-color: rgba(75,0,98,.34);
  color: var(--brand-purple);
  box-shadow: 0 8px 16px rgba(46,0,62,.18);
}


.programs-offer-sub{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


.who-we-serve{
  width: min(100%, 680px);
  margin: 30px auto 0;
  border-radius: 20px;
  border: 1px solid rgba(75,0,98,.2);
  background: linear-gradient(165deg, rgba(255,255,255,.96), rgba(253,220,92,.24));
  box-shadow: 0 16px 30px rgba(46,0,62,.12);
  padding: 22px;
}
.who-we-serve h3{
  margin: 0 0 10px;
  text-align: center;
  font-family: var(--serif);
  color: var(--midnight-purple);
}
.who-we-serve-list{
  margin: 0 auto;
  max-width: 58ch;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(31,26,36,.82);
}

.mv-summary{
  font-weight: 600;
  color: rgba(46,0,62,.84);
}

.creed-intro{
  margin: 0 auto 8px;
  max-width: 68ch;
  text-align: center;
  color: rgba(31,26,36,.82);
}

.about-actions{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.creed-heading{
  margin: 0 0 12px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(23px, 2.8vw, 34px);
  letter-spacing: .08em;
  color: var(--midnight-purple);
  text-transform: uppercase;
}

/* ===========================================
   CREED: PORTRAIT IMAGE + DECORATIVE CONTAINER
   =========================================== */

.creed-stage{
  display:flex;
  justify-content:center;
}

.creed-shell{
  width: min(100%, 560px);
  margin: 0;
  padding: 16px;
  border-radius: 28px;
  background: var(--midnight-purple-2);
  border: 1px solid rgba(253,220,92,.35);
  box-shadow:
    0 24px 52px rgba(16,0,24,.28),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.scroll-portrait{
  position: relative;
  padding: 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,242,184,.95), rgba(253,220,92,.9));
  border: 1px solid rgba(22,0,36,.16);
  overflow: hidden;
}

.scroll-portrait::before{
  content:"";
  position:absolute;
  inset: 7px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.45);
  pointer-events: none;
}

.creed-image{
  display:block;
  width:100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(22,0,36,.22);
  box-shadow: 0 18px 34px rgba(16,0,24,.25);
  background: rgba(22,0,36,.08);
}

@media (max-width: 420px){
  .creed-shell{ padding: 12px; }
  .scroll-portrait{ padding: 10px; }
}

/* -----------------------------
   13) Footer (compact redesign)
------------------------------ */
.footer{
  margin-top: 30px;
  padding: 16px 0 10px;
  background: linear-gradient(180deg, rgba(62,0,80,.98), rgba(46,0,62,.98));
  color: rgba(255,255,255,.94);
  border-top: 1px solid rgba(253,220,92,.24);
  box-shadow: 0 -8px 30px rgba(46,0,62,.16);
}

.footer-shell{
  display:grid;
  gap:10px;
  align-items:center;
}

.footer-brand-row{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: inherit;
}

.footer-logo{
  width: min(170px, 50vw);
  height: 52px;
  padding: 6px 8px;
  border-radius: 14px;
  overflow:hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(253,220,92,.24);
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-logo img{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position:center;
  display:block;
  background: transparent;
}

.footer-brand-title{ line-height:1.15; }
.footer-name{
  font-family: var(--serif);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .3px;
  color: rgba(255,255,255,.96);
}
.footer-tag{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(253,220,92,.92);
  font-weight: 700;
  line-height: 1.45;
  max-width: 48ch;
  text-wrap: balance;
}

.footer-links{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content:flex-start;
}

.footer-links a{
  color: rgba(255,255,255,.90);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(253,220,92,.18);
  transition: transform .10s ease, background .12s ease, border-color .12s ease;
}

.footer-links a:hover{
  transform: translateY(-1px);
  background: rgba(253,220,92,.10);
  border-color: rgba(253,220,92,.38);
}

.footer-bottom{
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(253,220,92,.18);
}

.footer-bottom small{
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

@media (min-width: 760px){
  .footer-shell{
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
  .footer-logo{
    width: 180px;
    height: 56px;
  }
}

.founder-preview-grid{
  align-items: start;
}

.founder-preview-content{
  display:grid;
  gap:18px;
}

.founder-preview-copy{
  padding: 20px;
}

.founder-preview-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.founder-preview-media img{
  width:100%;
  height:100%;
  min-height: 320px;
  object-fit: cover;
}

/* -----------------------------
   14) Minor helpers
------------------------------ */
.hidden{ display:none !important; }

@media (max-width: 759px){
  .site-header{
    backdrop-filter: none;
  }
}
@media (max-width: 420px){
  body{
    background:
      radial-gradient(900px 560px at 20% 0%, rgba(34,0,56,.46), transparent 65%),
      linear-gradient(180deg, rgba(253,220,92,.94) 0%, rgba(255,255,255,.84) 35%, rgba(253,220,92,.68) 100%);
  }
}
