/* ==========================================================================
   Thomas A. DeLoach Ministries — Design System
   Navy + Gold · Playfair Display + Inter · Compass motif
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------ */
:root {
  --ink:        #14223b;
  --navy:       #173a6b;
  --navy-700:   #102a4f;
  --navy-deep:  #0b1b32;
  --navy-glow:  #1c4a8a;

  --gold:       #c8a24a;
  --gold-bright:#e3c477;
  --gold-deep:  #a17e25;
  --crimson:    #8a1c1c;

  --cream:      #faf6ee;
  --cream-2:    #f3ecdf;
  --paper:      #ffffff;

  --text:       #2a3547;
  --muted:      #5e6b80;
  --line:       #e8e0cf;
  --line-soft:  #efe9dc;

  --radius:     18px;
  --radius-sm:  12px;
  --shadow-sm:  0 2px 10px rgba(20,34,59,.06);
  --shadow:     0 18px 50px -22px rgba(11,27,50,.35);
  --shadow-lg:  0 40px 90px -40px rgba(11,27,50,.55);

  --container:  1180px;
  --ease:       cubic-bezier(.2,.7,.2,1);

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Reset ------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: #fff; }

/* ---- Typography -------------------------------------------------------- */
h1,h2,h3,h4 { font-family: var(--font-serif); color: var(--ink); line-height: 1.1; font-weight: 700; letter-spacing: -.01em; }
.serif-italic { font-style: italic; }
p { color: var(--text); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: linear-gradient(90deg,var(--gold),transparent); }
.eyebrow.centered::after { content:""; width: 26px; height: 2px; background: linear-gradient(270deg,var(--gold),transparent); }
.eyebrow.centered { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-bright); }

.section-title { font-size: clamp(2rem, 4.4vw, 3.25rem); margin: .35em 0 .5em; }
.lede { font-size: clamp(1.05rem,1.6vw,1.22rem); color: var(--muted); max-width: 60ch; }

/* ---- Layout ------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px,5vw,40px); }
.section { padding-block: clamp(70px, 9vw, 118px); position: relative; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--alt   { background: linear-gradient(180deg,var(--cream) 0%, var(--cream-2) 100%); }
.section-head { max-width: 720px; margin-bottom: clamp(36px,5vw,58px); }
.section-head.center { margin-inline: auto; text-align: center; }
.center { text-align: center; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  padding: .92em 1.7em; border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold {
  background: linear-gradient(135deg,var(--gold-bright),var(--gold));
  color: #3a2c06; box-shadow: 0 14px 30px -12px rgba(200,162,74,.7);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(200,162,74,.85); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 14px 30px -14px rgba(16,42,79,.7); }
.btn--navy:hover { transform: translateY(-3px); background: var(--navy-700); }
.btn--outline { border: 1.5px solid var(--line); color: var(--ink); background: rgba(255,255,255,.5); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); }
.btn--ghost-light { border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn--ghost-light:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-3px); }
.btn--lg { padding: 1.05em 2em; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--navy); transition: gap .3s var(--ease), color .3s; }
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--gold-deep); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250,246,238,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; transition: height .4s var(--ease), filter .4s var(--ease); }
.scrolled .brand img { height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-serif); font-size: 1.04rem; color: var(--ink); font-weight: 700; }
.brand-text span { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; font-size: .94rem; font-weight: 500; color: var(--ink);
  padding: .55em .85em; border-radius: 8px; transition: color .25s;
}
.nav-links a::after {
  content:""; position: absolute; left: .85em; right: .85em; bottom: .35em; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Transparent header over the dark hero: invert content to light until scrolled */
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.site-header:not(.scrolled) .nav-links a { color: #e7eefb; }
.site-header:not(.scrolled) .nav-links a:hover { color: #fff; }
.site-header:not(.scrolled) .btn--outline { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.10); }
.site-header:not(.scrolled) .btn--outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
/* Mobile menu open: keep header transparent so light logo + X read on the navy overlay */
body.menu-open .site-header { background: transparent; box-shadow: none; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.menu-open .brand img { filter: brightness(0) invert(1); }
body.menu-open .nav-toggle span { background: #fff; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle span:nth-child(1){ top: 17px; } .nav-toggle span:nth-child(2){ top: 23px; } .nav-toggle span:nth-child(3){ top: 29px; }
body.menu-open .nav-toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; color: #eaf0fb; isolation: isolate;
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(28,74,138,.55), transparent 60%),
    radial-gradient(700px 500px at 8% 110%, rgba(200,162,74,.16), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-700) 55%, #0a1830 100%);
  padding-top: 150px; padding-bottom: clamp(70px,9vw,120px); overflow: hidden;
}
.hero__compass {
  position: absolute; z-index: -1; right: -180px; top: 50%; transform: translateY(-50%);
  width: 760px; max-width: 90vw; opacity: .14; color: var(--gold-bright);
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.hero::after { /* grain / vignette */
  content:""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 60%, rgba(5,12,24,.55));
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,64px); align-items: center; }
.hero__eyebrow { color: var(--gold-bright); }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.04; margin: .28em 0 .1em; }
.hero h1 em { color: var(--gold-bright); font-style: italic; }
.hero__verse { font-family: var(--font-serif); font-style: italic; font-size: clamp(1rem,1.5vw,1.25rem); color: #fff !important; opacity: 1 !important; margin: .4em 0 1.4em; padding: .6em 1em; border-left: 3px solid #e3c477; background: rgba(255,255,255,.07); display: block; }
.hero__verse cite { display: block; font-size: .85em; margin-top: .3em; color: #e3c477; font-style: normal; }
.hero__sub { color: #bdcae0; max-width: 52ch; margin-bottom: 2em; font-size: 1.06rem; }
.hero .btn-row { margin-bottom: 2.4em; }

.hero__stats { display: flex; gap: clamp(20px,4vw,46px); flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; }
.hero__stat .n { font-family: var(--font-serif); font-size: 1.7rem; color: var(--gold-bright); font-weight: 700; }
.hero__stat .l { font-size: .82rem; color: #aab8d2; letter-spacing: .03em; }

/* Portrait */
.hero__portrait { position: relative; justify-self: center; width: min(360px, 75vw); aspect-ratio: 5/6; }
.hero__portrait::before { /* gold accent border */
  content:""; position: absolute; inset: -8px; border-radius: 22px;
  border: 1.5px solid rgba(227,196,119,.4);
}
.hero__ring { display: none; }
.hero__photo {
  position: absolute; inset: 0; border-radius: 18px; overflow: hidden;
  border: 4px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__badge {
  position: absolute; bottom: 6%; left: -6%; background: rgba(255,255,255,.96); color: var(--ink);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; gap: 11px; align-items: center;
  backdrop-filter: blur(6px);
}
.hero__badge .ico { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg,var(--navy),var(--navy-glow)); color: var(--gold-bright); display: grid; place-items: center; }
.hero__badge .ico svg { width: 20px; height: 20px; }
.hero__badge b { font-family: var(--font-serif); font-size: .98rem; display: block; }
.hero__badge small { color: var(--muted); font-size: .76rem; }

.wave-sep { display: block; width: 100%; height: auto; color: var(--cream); margin-top: -1px; }

/* ==========================================================================
   Scripture / Values band
   ========================================================================== */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.value-card::before { content:""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg,var(--gold),var(--gold-bright)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .vc-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(135deg,#f7efda,#efe2c2); color: var(--gold-deep); }
.value-card .vc-ico svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.4rem; margin-bottom: .35em; }
.value-card .ref { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--gold-deep); text-transform: uppercase; }
.value-card p { color: var(--muted); font-size: .97rem; margin-top: .5em; }

/* ==========================================================================
   About
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px,5vw,72px); align-items: center; }
.about__media { position: relative; }
.about__media .frame {
  position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.about__media .frame img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; object-position: 50% 15%; }
.about__media .accent { position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--gold); border-radius: 22px; z-index: -1; }
.about__quote {
  position: absolute; right: -10px; bottom: -26px; background: var(--navy); color: #eaf0fb;
  padding: 20px 24px; border-radius: 16px; max-width: 270px; box-shadow: var(--shadow);
}
.about__quote p { color: #eaf0fb; font-family: var(--font-serif); font-style: italic; font-size: 1.02rem; }
.about__quote span { display: block; margin-top: 8px; font-size: .78rem; color: var(--gold-bright); letter-spacing: .04em; font-family: var(--font-sans); font-style: normal; }
.about__body p + p { margin-top: 1.1em; }
.about__sign { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.about__sign .name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink); }
.about__sign .role { font-size: .86rem; color: var(--muted); }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin: 26px 0 30px; }
.pillars li { display: flex; gap: 12px; align-items: flex-start; font-size: .97rem; }
.pillars .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: #eef3fb; color: var(--navy); display: grid; place-items: center; margin-top: 1px; }
.pillars .tick svg { width: 15px; height: 15px; }

/* ==========================================================================
   Coaching / Clarity Compass
   ========================================================================== */
.coaching { background: linear-gradient(165deg,#fbf7ee,#f4ecdc); }
.coaching__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,64px); align-items: center; }
.coaching__logo { width: 230px; max-width: 60%; margin-bottom: 22px; }
.coaching__contact { font-size: .95rem; color: var(--navy); margin-top: 14px; }
.coaching__contact a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); }
.coaching__contact a:hover { color: var(--gold-dark); }
.coaching__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 22px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.mini-card .mc-ico { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(135deg,#fbeede,#f6dfc2); color: var(--crimson); display: grid; place-items: center; margin-bottom: 14px; }
.mini-card .mc-ico svg { width: 22px; height: 22px; }
.mini-card h4 { font-size: 1.1rem; margin-bottom: .25em; }
.mini-card p { font-size: .9rem; color: var(--muted); }

/* ==========================================================================
   Podcast
   ========================================================================== */
.podcast { background: linear-gradient(160deg,var(--navy-deep),var(--navy-700)); color: #e7eefb; overflow: hidden; position: relative; }
.podcast .eyebrow { color: var(--gold-bright); }
.podcast h2 { color: #fff; }
.podcast__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px,5vw,56px); align-items: center; }
.podcast__art { position: relative; justify-self: center; width: min(340px,80vw); }
.podcast__art img { border-radius: 22px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); }
.podcast__art .pulse { position: absolute; inset: 0; border-radius: 22px; box-shadow: 0 0 0 0 rgba(227,196,119,.5); animation: pulse 2.6s infinite; }
@keyframes pulse { 70%{ box-shadow: 0 0 0 26px rgba(227,196,119,0);} 100%{ box-shadow: 0 0 0 0 rgba(227,196,119,0);} }
.podcast__body p { color: #c2cfe6; }
.podcast__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 26px; }
.podcast__tags span { font-size: .82rem; padding: .5em 1em; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: #d7e1f2; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.post-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.post-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg,var(--navy),var(--navy-glow)); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__media.is-graphic { display: grid; place-items: center; color: rgba(227,196,119,.9); }
.post-card__media.is-graphic svg { width: 84px; height: 84px; }
.post-card__tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--navy); font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: .4em .8em; border-radius: 999px; }
.post-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card__body h3 { font-size: 1.32rem; line-height: 1.2; }
.post-card__body p { color: var(--muted); font-size: .96rem; margin: .6em 0 1.2em; flex: 1; }
.post-card__foot { display: flex; align-items: center; justify-content: space-between; }
.post-card__date { font-size: .8rem; color: var(--muted); }

/* ==========================================================================
   Events
   ========================================================================== */
.events__panel {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 22px; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden;
}
.events__empty { padding: clamp(34px,5vw,56px); }
.events__empty .cal { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg,#eef3fb,#dfe9f8); color: var(--navy); display: grid; place-items: center; margin-bottom: 20px; }
.events__empty .cal svg { width: 32px; height: 32px; }
.events__cta { background: linear-gradient(160deg,var(--navy),var(--navy-700)); color: #e7eefb; padding: clamp(34px,5vw,56px); display: flex; flex-direction: column; justify-content: center; }
.events__cta h3 { color: #fff; font-size: 1.6rem; }
.events__cta p { color: #c2cfe6; margin: .6em 0 1.4em; }
.events__list { display: flex; flex-direction: column; gap: 18px; }
.event-item { display: flex; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.event-item:last-child { border-bottom: 0; padding-bottom: 0; }
.event-date { flex-shrink: 0; width: 64px; text-align: center; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: fit-content; }
.event-date .m { display: block; background: linear-gradient(135deg,var(--navy),var(--navy-glow)); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 0; }
.event-date .d { display: block; font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--ink); padding: 6px 0; }
.event-info h3 { font-size: 1.25rem; margin-bottom: 6px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 8px; }
.event-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--muted); }
.event-meta svg { width: 15px; height: 15px; color: var(--gold-deep); }
.event-info p { color: var(--muted); font-size: .95rem; margin-bottom: 8px; }

/* ==========================================================================
   Giving
   ========================================================================== */
.giving { position: relative; color: #fff; overflow: hidden; isolation: isolate;
  background: radial-gradient(900px 500px at 80% 20%, rgba(200,162,74,.22), transparent 60%), linear-gradient(155deg,#11233f,#0b1b32); }
.giving__compass { position: absolute; left: -120px; bottom: -160px; width: 520px; opacity: .1; color: var(--gold-bright); z-index: -1; }
.giving__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,5vw,60px); align-items: center; }
.giving h2 { color: #fff; }
.giving .lede { color: #c2cfe6; }
.give-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 30px; backdrop-filter: blur(6px); }
.give-card h3 { color: #fff; font-size: 1.4rem; }
.give-amounts { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.give-amounts a { flex: 1 1 70px; text-align: center; padding: .8em 0; border-radius: 12px; border: 1px solid rgba(255,255,255,.2); font-weight: 600; transition: all .25s; }
.give-amounts a:hover { background: var(--gold); color: #2a2206; border-color: var(--gold); transform: translateY(-2px); }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter__panel {
  background: linear-gradient(150deg,#fbf7ee,#f3ead7); border: 1px solid var(--line);
  border-radius: 24px; padding: clamp(34px,5vw,60px); display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px,4vw,52px); align-items: center; position: relative; overflow: hidden;
}
.newsletter__panel .cc-logo { width: 120px; margin-bottom: 18px; }
.field-row { display: flex; gap: 10px; flex-wrap: wrap; }
.field-row input { flex: 1 1 200px; }
input, textarea, select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px; padding: .85em 1em;
  transition: border-color .25s, box-shadow .25s;
}
input::placeholder, textarea::placeholder { color: #9aa6b8; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,162,74,.16); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.form-msg { font-size: .94rem; padding: .8em 1em; border-radius: 10px; margin-top: 12px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #e9f6ee; color: #1d6b3a; border: 1px solid #bfe4cc; }
.form-msg.err { background: #fdecec; color: #99201c; border: 1px solid #f3c9c7; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px,5vw,64px); }
.contact__info { display: flex; flex-direction: column; gap: 18px; }
.contact-tile { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.contact-tile:hover { transform: translateX(4px); }
.contact-tile .ct-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg,var(--navy),var(--navy-glow)); color: var(--gold-bright); display: grid; place-items: center; }
.contact-tile .ct-ico svg { width: 22px; height: 22px; }
.contact-tile h4 { font-family: var(--font-sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.contact-tile a, .contact-tile p { font-size: 1.04rem; color: var(--ink); font-weight: 500; }
.socials { display: flex; gap: 12px; }
.socials a { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line-soft); color: var(--navy); transition: all .3s var(--ease); }
.socials a:hover { background: var(--navy); color: var(--gold-bright); transform: translateY(-3px); box-shadow: var(--shadow); }
.contact__form { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 22px; padding: clamp(26px,4vw,42px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label.lbl { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: linear-gradient(180deg,#0a1830,#081225); color: #aab8d2; padding-top: clamp(56px,7vw,84px); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer__brand .fb-mark { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__brand .fb-mark .mk { width: 44px; height: 44px; }
.footer__brand .fb-mark strong { font-family: var(--font-serif); color: #fff; font-size: 1.15rem; line-height: 1.1; }
.footer__brand .fb-mark span { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-bright); }
.footer__brand p { color: #93a3c0; font-size: .94rem; max-width: 34ch; }
.footer h5 { font-family: var(--font-sans); color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; font-weight: 600; }
.footer-links a { display: block; padding: 6px 0; color: #aab8d2; font-size: .95rem; transition: color .25s, padding-left .25s; }
.footer-links a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer__newsletter p { font-size: .94rem; color: #93a3c0; margin-bottom: 14px; }
.footer__newsletter form { display: flex; gap: 8px; }
.footer__newsletter input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; }
.footer__newsletter input::placeholder { color: #7e8fae; }
.footer__newsletter button { flex-shrink: 0; width: 50px; border-radius: 12px; background: var(--gold); color: #2a2206; display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer__newsletter button:hover { background: var(--gold-bright); transform: translateY(-2px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer__bottom p { font-size: .85rem; color: #7e8fae; }
.footer__bottom .scripture { font-family: var(--font-serif); font-style: italic; color: var(--gold-bright); font-size: .92rem; }

/* Back to top */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--gold-bright); display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; transform: translateY(16px); pointer-events: none; transition: all .4s var(--ease); z-index: 90; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--navy-700); transform: translateY(-3px); }

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; } .reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; } .reveal[data-d="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__compass, .hero__ring, .podcast__art .pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Blog article page
   ========================================================================== */
.article-hero { background: linear-gradient(160deg,var(--navy-deep),var(--navy-700)); color: #e7eefb; padding-top: 140px; padding-bottom: 60px; position: relative; overflow: hidden; }
.article-hero .eyebrow { color: var(--gold-bright); }
.article-hero h1 { color: #fff; font-size: clamp(2.1rem,4.6vw,3.4rem); max-width: 18ch; margin: .3em 0 .4em; }
.article-hero .meta { color: #bdcae0; font-size: .92rem; display: flex; gap: 18px; flex-wrap: wrap; }
.article-wrap { max-width: 760px; margin-inline: auto; padding-block: clamp(40px,6vw,72px); }
.article-feature { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); margin: -90px auto 50px; max-width: 920px; position: relative; z-index: 2; }
.article-feature img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.prose { font-size: 1.12rem; line-height: 1.85; color: #34404f; }
.prose p { margin-bottom: 1.3em; }
.prose h2 { font-size: 1.7rem; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.3rem; margin: 1.4em 0 .4em; }
.prose blockquote { border-left: 3px solid var(--gold); background: var(--cream); padding: 18px 26px; border-radius: 0 12px 12px 0; margin: 1.6em 0; font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: var(--navy); }
.prose ul { list-style: none; margin: 1.2em 0; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: .7em; }
.prose ul li::before { content:""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.prose strong { color: var(--ink); }
.article-back { display: inline-flex; align-items: center; gap: .5em; color: var(--gold-bright); font-weight: 600; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero .btn-row, .hero__stats, .hero__eyebrow { justify-content: center; }
  .hero__eyebrow { display: inline-flex; }
  .hero__portrait { order: -1; width: min(280px,70vw); }
  .hero__sub { margin-inline: auto; }
  .about__grid, .coaching__grid, .podcast__grid, .giving__grid, .contact__grid,
  .events__panel, .newsletter__panel { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin-inline: auto; }
  .about__media .accent { inset: 14px -14px -14px 14px; }
  .podcast__art { order: -1; }
  .values { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn--outline { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: flex; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .blog__grid, .coaching__cards, .pillars, .form-grid, .footer__grid { grid-template-columns: 1fr; }
  .about__quote { position: static; max-width: none; margin-top: 16px; }
  .about__media .accent { display: none; }
  .hero { padding-top: 122px; }
  .hero__portrait { margin-bottom: 52px; }
  .hero__badge { position: absolute; top: calc(100% + 12px); bottom: auto; left: 50%; transform: translateX(-50%); background: transparent; box-shadow: none; border-radius: 0; padding: 0; backdrop-filter: none; width: max-content; }
  .hero__badge .ico { display: none; }
  .hero__badge b { color: #d7e1f2; }
  .hero__badge small { color: #aab8d2; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Mobile menu
   ========================================================================== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95; background: linear-gradient(160deg,var(--navy-deep),var(--navy-700));
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); display: none;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
@media (max-width: 860px){ body.menu-open .mobile-menu { display: flex; } }
.mobile-menu a { color: #e7eefb; font-family: var(--font-serif); font-size: 1.7rem; padding: .35em 0; opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease), transform .5s var(--ease), color .25s; }
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--gold-bright); }
.mobile-menu .btn { margin-top: 18px; font-size: 1rem; }
.mobile-menu a:nth-child(1){ transition-delay:.05s;} .mobile-menu a:nth-child(2){ transition-delay:.1s;}
.mobile-menu a:nth-child(3){ transition-delay:.15s;} .mobile-menu a:nth-child(4){ transition-delay:.2s;}
.mobile-menu a:nth-child(5){ transition-delay:.25s;} .mobile-menu a:nth-child(6){ transition-delay:.3s;}
.mobile-menu a:nth-child(7){ transition-delay:.35s;} .mobile-menu a:nth-child(8){ transition-delay:.4s;}
