/* ═══════════════════════════════════════════════════════════
   PraxisOne Theme — Main Stylesheet
   Heather-Elizabeth Brown, M.Div.
   ═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --sovereign:   #1A0A2E;
  --royal:       #3B1A6B;
  --violet:      #7E22CE;
  --lilac:       #C4B5FD;
  --rose:        #E879B0;
  --blush:       #F9A8D4;
  --petal:       #FDF2F8;
  --gold:        #B89A5A;
  --cream:       #FAF8F4;
  --lavender:    #F3EEF9;
  --white:       #FFFFFF;
  --plum:        #5A4A6E;
  --heather:     #9D8BA8;
  --border:      rgba(26,10,46,0.09);
  --dark-border: rgba(196,181,253,0.10);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--cream); color: var(--sovereign); font-family: 'DM Sans', sans-serif; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: var(--plum); transition: color .2s; }
a:hover { color: var(--violet); }
a:visited { color: var(--lilac); }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* ── TYPOGRAPHY UTILITIES ── */
.eyebrow { display: block; font-size: .67rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.eyebrow--violet { color: var(--violet); }
.eyebrow--rose   { color: var(--rose); }
.eyebrow--lilac  { color: var(--lilac); }

.section-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.4vw, 2.75rem); line-height: 1.15; color: var(--sovereign); margin-bottom: 1.25rem; }
.section-heading em { font-style: italic; color: var(--violet); }
.section-heading--light { color: var(--cream); }
.section-heading--light em { color: var(--lilac); }
.section-body { font-size: .94rem; line-height: 1.9; color: var(--plum); font-weight: 300; margin-bottom: 1.25rem; }
.section-body--dim { color: rgba(196,181,253,.5); }

/* ── BUTTONS ── */
.btn-royal { display: inline-block; background: var(--royal); color: var(--cream); font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; padding: .9rem 2.2rem; border: none; font-weight: 500; transition: background .22s, transform .15s, box-shadow .22s; cursor: pointer; }
.btn-royal:hover { background: var(--violet); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(126,34,206,.3); color: var(--cream); }
.btn-royal:visited { color: var(--cream); }

.btn-ghost { display: inline-block; background: transparent; color: var(--cream); font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; padding: .88rem 2.2rem; border: 1px solid rgba(196,181,253,.4); font-weight: 400; transition: border-color .2s, color .2s, transform .15s; cursor: pointer; }
.btn-ghost:hover { border-color: var(--blush); color: var(--blush); transform: translateY(-2px); }

.btn-ghost-lilac { display: inline-block; background: transparent; color: var(--lilac); font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; padding: .88rem 2.2rem; border: 1px solid rgba(196,181,253,.35); font-weight: 400; transition: border-color .2s, color .2s, transform .15s; cursor: pointer; }
.btn-ghost-lilac:hover { border-color: var(--blush); color: var(--blush); transform: translateY(-2px); }

.btn-sovereign { display: inline-block; background: var(--sovereign); color: var(--cream); font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; padding: .9rem 2.2rem; border: none; font-weight: 400; transition: background .2s, transform .15s; cursor: pointer; }
.btn-sovereign:hover { background: var(--royal); transform: translateY(-2px); color: var(--cream); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════ */
#main-nav { position: sticky; top: 0; z-index: 200; background: rgba(250,248,244,.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 1.05rem 3rem; transition: box-shadow .3s; }
#main-nav.scrolled { box-shadow: 0 4px 32px rgba(26,10,46,.09); }
.nav-sig { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: var(--sovereign); }
.nav-sig:hover { color: var(--royal); }
.nav-sig:visited { color: var(--sovereign); }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: .73rem; letter-spacing: .13em; text-transform: uppercase; color: var(--plum); padding-bottom: 3px; border-bottom: 1.5px solid transparent; transition: color .2s, border-color .2s, text-shadow .2s; }
.nav-links a:hover { color: var(--violet); border-bottom-color: var(--rose); text-shadow: 0 0 16px rgba(232,121,176,.38); }
.nav-links a:visited { color: var(--lilac); }
.nav-links a:visited:hover { color: var(--violet); border-bottom-color: var(--rose); }
.nav-cta { background: var(--royal); color: var(--cream); font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; padding: .58rem 1.4rem; border: none; transition: background .2s; }
.nav-cta:hover { background: var(--violet); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero { position: relative; min-height: 96vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,10,46,.88) 0%, rgba(59,26,107,.78) 50%, rgba(26,10,46,.70) 100%); }
.hero-bottom-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--rose), var(--lilac), var(--rose), transparent); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 6rem 2rem 5rem; max-width: 700px; opacity: 0; animation: fadeUp .9s ease .4s forwards; }
.hero-eyebrow { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--lilac); margin-bottom: 2.5rem; display: block; }
.hero-name-block { margin-bottom: 0; }
.hero-name { display: block; font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(3rem, 7.5vw, 5.8rem); color: var(--cream); line-height: 1.05; }
.hero-cred { display: block; font-size: clamp(.78rem, 1.4vw, 1rem); color: var(--blush); letter-spacing: .22em; margin-top: .9rem; font-weight: 300; }
.hero-divider { width: 68px; height: 1px; background: linear-gradient(to right, var(--rose), var(--lilac)); margin: 2.5rem auto; }
.hero-tagline { font-size: clamp(.88rem, 1.65vw, 1.08rem); color: rgba(243,238,249,.62); line-height: 1.88; font-weight: 300; margin-bottom: 0; }
.hero-btns { display: flex; gap: 1rem; margin-top: 3rem; justify-content: center; flex-wrap: wrap; }
.hero-identity { position: absolute; right: 3.5rem; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: .8rem; z-index: 1; opacity: 0; animation: fadeIn 1s ease 1.8s forwards; }
.hero-identity span { font-size: .63rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(196,181,253,.18); text-align: right; transition: color .55s; }
.hero-identity span.active { color: rgba(249,168,212,.75); }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; z-index: 1; opacity: 0; animation: fadeIn 1s ease 2.2s forwards; }
.hero-scroll span { font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(196,181,253,.28); }
.scroll-bar { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--rose), transparent); animation: scrollPulse 2.2s ease infinite; }

/* ════════════════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════════════════ */
.ticker { background: var(--royal); padding: .62rem 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: tickerMove 32s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--lilac); padding: 0 2.5rem; }
.ticker-sep { color: var(--rose); padding: 0; opacity: .7; }

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }
.about-visual { position: relative; overflow: hidden; background: var(--royal); min-height: 520px; }
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-quote-bar { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.25rem 2rem; background: linear-gradient(to top, rgba(26,10,46,.96), transparent); }
.about-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--cream); line-height: 1.65; }
.about-content { padding: 5.5rem 4.5rem; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.credential-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.pill { display: inline-block; background: var(--petal); border: 1px solid rgba(232,121,176,.22); color: var(--royal); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; padding: .38rem .88rem; font-weight: 500; transition: background .2s, border-color .2s, transform .15s; }
.pill:hover { background: var(--blush); border-color: var(--rose); color: var(--royal); transform: translateY(-2px); }
.pill:visited { color: var(--royal); }

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services { padding: 6.5rem 3rem; background: var(--sovereign); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(196,181,253,.07); max-width: 1200px; margin: 0 auto; }
.service-card { background: var(--sovereign); padding: 2.5rem 2rem; border: 1px solid rgba(196,181,253,.06); transition: background .28s; cursor: pointer; display: flex; flex-direction: column; }
.service-card:hover { background: var(--royal); }
.service-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: rgba(184,154,90,.18); line-height: 1; margin-bottom: 1.2rem; font-weight: 700; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--cream); line-height: 1.35; margin-bottom: .8rem; }
.service-desc { font-size: .79rem; color: rgba(196,181,253,.45); line-height: 1.85; font-weight: 300; flex: 1; }
.service-arrow { display: inline-flex; font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; color: var(--rose); margin-top: 1.75rem; opacity: 0; transition: opacity .25s; }
.service-card:hover .service-arrow { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   INSIGHTS / BLOG
════════════════════════════════════════════════════════════ */
.hub { padding: 6.5rem 3rem; background: var(--cream); }
.hub-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.25rem; flex-wrap: wrap; gap: 1.5rem; }
.hub-tabs { display: flex; border: 1px solid var(--border); overflow: hidden; }
.tab-btn { padding: .52rem 1.25rem; font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; background: transparent; border: none; border-right: 1px solid var(--border); color: var(--plum); font-family: 'DM Sans', sans-serif; transition: all .2s; cursor: pointer; }
.tab-btn:last-child { border-right: none; }
.tab-btn.active { background: var(--royal); color: var(--cream); }
.tab-btn:hover:not(.active) { background: var(--lavender); color: var(--violet); }
.hub-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr; gap: 1.4rem; }
.card-main { background: var(--white); overflow: hidden; cursor: pointer; transition: transform .24s, box-shadow .24s; }
.card-main:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(59,26,107,.12); }
.card-main-thumb { height: 230px; background: var(--royal); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card-main-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.card-thumb-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--royal), var(--sovereign)); }
.card-tag { position: absolute; top: 1rem; left: 1rem; background: var(--rose); color: var(--white); padding: .28rem .65rem; font-size: .59rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.card-tag--sm { position: absolute; top: .7rem; left: .7rem; font-size: .58rem; letter-spacing: .13em; padding: .25rem .55rem; font-weight: 600; text-transform: uppercase; }
.card-body { padding: 1.65rem; }
.card-date { font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; color: var(--heather); margin-bottom: .55rem; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; line-height: 1.38; color: var(--sovereign); margin-bottom: .75rem; }
.card-excerpt { font-size: .82rem; color: var(--plum); line-height: 1.78; font-weight: 300; }
.card-sm { background: var(--white); overflow: hidden; cursor: pointer; display: flex; flex-direction: column; transition: transform .24s, box-shadow .24s; }
.card-sm:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(59,26,107,.12); }
.card-sm-thumb { height: 135px; background: var(--sovereign); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.card-sm-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.card-title-sm { font-family: 'Playfair Display', serif; font-size: .98rem; line-height: 1.45; color: var(--sovereign); margin-bottom: .38rem; }
.hub-footer { text-align: center; margin-top: 3.25rem; }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testimonial-wrap { padding: 7.5rem 3rem; background: var(--sovereign); position: relative; overflow: hidden; }
.testimonial-wrap::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 22rem; color: rgba(196,181,253,.04); position: absolute; top: -4rem; left: 1rem; line-height: 1; pointer-events: none; }
.testimonial-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.t-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.1rem, 2.1vw, 1.5rem); color: var(--cream); line-height: 1.72; margin-bottom: 2.25rem; transition: opacity .4s; }
.t-attr { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); transition: opacity .4s; }
.t-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 2.75rem; }
.t-dot { width: 7px; height: 7px; background: rgba(196,181,253,.18); border-radius: 50%; cursor: pointer; border: none; transition: background .25s; padding: 0; }
.t-dot.active { background: var(--rose); }

/* ════════════════════════════════════════════════════════════
   VIDEO
════════════════════════════════════════════════════════════ */
.video-section { padding: 6.5rem 3rem; background: var(--lavender); }
.video-header { text-align: center; margin-bottom: 1rem; }
.video-sub { text-align: center; font-size: .88rem; color: var(--plum); max-width: 560px; margin: 0 auto 3.5rem; line-height: 1.8; font-weight: 300; }
.video-featured { max-width: 960px; margin: 0 auto 4rem; background: var(--sovereign); }
.video-featured-player { position: relative; width: 100%; padding-top: 56.25%; background: var(--sovereign); }
.video-featured-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; background: var(--sovereign); cursor: pointer; transition: background .25s; }
.video-placeholder:hover { background: var(--royal); }
.video-placeholder.hidden { display: none; }
.big-play { width: 72px; height: 72px; border: 2px solid rgba(196,181,253,.55); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.video-placeholder:hover .big-play { background: var(--rose); border-color: var(--rose); }
.big-play-icon { width: 0; height: 0; border-left: 22px solid rgba(196,181,253,.8); border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 5px; transition: border-left-color .25s; }
.video-placeholder:hover .big-play-icon { border-left-color: var(--white); }
.video-placeholder-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: rgba(196,181,253,.65); text-align: center; padding: 0 2rem; }
.video-placeholder-sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(196,181,253,.35); }
.video-featured-meta { padding: 1.35rem 1.75rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(196,181,253,.08); }
.video-featured-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); line-height: 1.4; }
.video-featured-event { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(196,181,253,.42); margin-top: .3rem; }
.video-featured-badge { background: var(--rose); color: var(--white); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; padding: .28rem .65rem; font-weight: 600; white-space: nowrap; }
.video-filters { display: flex; justify-content: center; gap: 0; border: 1px solid rgba(59,26,107,.15); overflow: hidden; max-width: 580px; margin: 0 auto 2.75rem; }
.vf-btn { flex: 1; padding: .5rem 1rem; font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; background: transparent; border: none; border-right: 1px solid rgba(59,26,107,.12); color: var(--plum); font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all .2s; }
.vf-btn:last-child { border-right: none; }
.vf-btn.active { background: var(--royal); color: var(--cream); }
.vf-btn:hover:not(.active) { background: var(--white); color: var(--violet); }
.video-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; max-width: 1200px; margin: 0 auto 3rem; }
.v-card { background: var(--sovereign); overflow: hidden; cursor: pointer; transition: transform .22s, box-shadow .22s; }
.v-card:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 16px 40px rgba(26,10,46,.28); }
.v-thumb { height: 158px; background: var(--royal); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.v-thumb-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.v-thumb-overlay { position: absolute; inset: 0; background: rgba(26,10,46,.45); transition: background .25s; }
.v-card:hover .v-thumb-overlay { background: rgba(26,10,46,.2); }
.play-btn { position: relative; z-index: 1; width: 46px; height: 46px; border: 1.5px solid rgba(196,181,253,.65); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .22s; }
.v-card:hover .play-btn { background: var(--rose); border-color: var(--rose); }
.play-icon { width: 0; height: 0; border-left: 14px solid rgba(196,181,253,.82); border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px; transition: border-left-color .22s; }
.v-card:hover .play-icon { border-left-color: var(--white); }
.v-badge { position: absolute; top: .7rem; left: .7rem; z-index: 2; padding: .24rem .55rem; font-size: .57rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 600; }
.v-badge--keynote  { background: var(--rose);     color: var(--white); }
.v-badge--workshop { background: var(--violet);   color: var(--white); }
.v-badge--faith    { background: var(--gold);     color: var(--sovereign); }
.v-badge--voices   { background: var(--lilac);    color: var(--sovereign); }
.v-dur { position: absolute; bottom: .6rem; right: .7rem; z-index: 2; font-size: .62rem; color: rgba(196,181,253,.7); background: rgba(26,10,46,.6); padding: .15rem .4rem; }
.v-info { padding: 1.15rem; }
.v-title { font-family: 'Playfair Display', serif; font-size: .96rem; color: var(--cream); line-height: 1.45; margin-bottom: .42rem; }
.v-meta { font-size: .64rem; color: rgba(196,181,253,.38); letter-spacing: .07em; text-transform: uppercase; }
.video-yt-cta { max-width: 960px; margin: 0 auto; background: var(--sovereign); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 2.25rem 2.5rem; border-left: 3px solid var(--rose); }
.yt-cta-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); line-height: 1.4; }
.yt-cta-sub { font-size: .8rem; color: rgba(196,181,253,.45); margin-top: .4rem; font-weight: 300; }

/* ════════════════════════════════════════════════════════════
   SPEAKING
════════════════════════════════════════════════════════════ */
.speaking { padding: 6.5rem 3rem; background: var(--sovereign); }
.speaking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.speaking-list { list-style: none; margin-top: 2rem; }
.speaking-item { display: flex; justify-content: space-between; align-items: baseline; padding: 1.05rem 0; border-bottom: 1px solid rgba(196,181,253,.07); gap: 1rem; }
.speaking-item:first-child { border-top: 1px solid rgba(196,181,253,.07); }
.event-name { font-size: .88rem; color: var(--cream); font-weight: 400; }
.event-detail { font-size: .68rem; color: rgba(196,181,253,.32); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.speaking-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.25rem; }
.speaking-panel { overflow: hidden; }
.speaking-panel-photo { position: relative; height: 320px; overflow: hidden; }
.speaking-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.speaking-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(26,10,46,.92) 100%); }
.speaking-panel-content { background: rgba(243,238,249,.04); border: 1px solid rgba(196,181,253,.09); border-top: none; padding: 2rem 2.25rem; }
.panel-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: var(--cream); line-height: 1.55; margin-bottom: 1rem; }
.panel-desc { font-size: .81rem; color: rgba(196,181,253,.45); line-height: 1.85; font-weight: 300; margin-bottom: 1.5rem; }
.panel-points { display: flex; flex-direction: column; gap: .75rem; }
.panel-point { display: flex; gap: .85rem; align-items: flex-start; }
.point-dash { width: 18px; height: 1px; background: var(--rose); margin-top: .65rem; flex-shrink: 0; }
.point-text { font-size: .79rem; color: rgba(196,181,253,.5); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   PRESS
════════════════════════════════════════════════════════════ */
.press { padding: 6rem 3rem; background: var(--white); border-top: 1px solid var(--border); }
.press-inner { max-width: 1100px; margin: 0 auto; }
.press-header { text-align: center; margin-bottom: 3rem; }
.press-photos { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; margin-bottom: 4rem; align-items: start; }
.press-photo-featured { position: relative; overflow: hidden; }
.press-photo-img { width: 100%; height: 340px; object-fit: cover; object-position: center top; display: block; }
.press-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(26,10,46,.94), transparent); }
.press-photo-caption p { font-family: 'Playfair Display', serif; font-style: italic; font-size: .9rem; color: var(--cream); line-height: 1.6; }
.press-logos-wrap { display: flex; flex-direction: column; justify-content: center; }
.press-logos-label { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.press-logos { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--border); }
.press-logo { padding: 1.5rem 1rem; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); opacity: .35; transition: opacity .2s; }
.press-logo:nth-child(3), .press-logo:nth-child(6) { border-right: none; }
.press-logo:nth-child(4), .press-logo:nth-child(5), .press-logo:nth-child(6) { border-bottom: none; }
.press-logo:hover { opacity: .8; }
.press-logo span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--sovereign); text-align: center; }
.press-logo img { max-height: 26px; width: auto; object-fit: contain; filter: grayscale(1); }
.awards-label { font-size: .66rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; text-align: center; }
.awards-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); }
.award-item { padding: 1.85rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
.award-year { font-size: .63rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .38rem; }
.award-name { font-family: 'Playfair Display', serif; font-size: .97rem; line-height: 1.4; color: var(--sovereign); margin-bottom: .28rem; }
.award-org { font-size: .7rem; color: var(--heather); line-height: 1.4; }

/* ════════════════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════════════════ */
.newsletter { padding: 5.5rem 3rem; background: var(--lavender); border-top: 1px solid rgba(59,26,107,.07); }
.newsletter-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.newsletter-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.55rem, 2.8vw, 2.1rem); line-height: 1.25; color: var(--sovereign); margin-bottom: 1rem; }
.newsletter-sub { font-size: .87rem; color: var(--plum); line-height: 1.82; font-weight: 300; margin-bottom: 2.5rem; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto 1rem; }
.newsletter-input { flex: 1; padding: .9rem 1.25rem; border: 1px solid rgba(59,26,107,.18); border-right: none; background: var(--white); font-family: 'DM Sans', sans-serif; font-size: .84rem; color: var(--sovereign); outline: none; transition: border-color .2s; }
.newsletter-input::placeholder { color: rgba(90,74,110,.4); }
.newsletter-input:focus { border-color: var(--rose); }
.newsletter-submit { background: var(--royal); color: var(--cream); border: none; padding: .9rem 1.6rem; font-family: 'DM Sans', sans-serif; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.newsletter-submit:hover { background: var(--violet); }
.newsletter-note { font-size: .67rem; color: rgba(90,74,110,.38); letter-spacing: .04em; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
footer { background: var(--sovereign); padding: 4.75rem 3rem 2.25rem; border-top: 1px solid rgba(196,181,253,.06); }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr; gap: 3.25rem; margin-bottom: 3.75rem; }
.footer-sig { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; color: var(--cream); margin-bottom: .9rem; }
.footer-desc { font-size: .79rem; color: rgba(196,181,253,.3); line-height: 1.8; font-weight: 300; max-width: 255px; margin-bottom: 1.65rem; }
.footer-socials { display: flex; gap: .55rem; }
.social-btn { width: 34px; height: 34px; border: 1px solid rgba(196,181,253,.14); display: flex; align-items: center; justify-content: center; color: rgba(196,181,253,.38); font-size: .67rem; font-weight: 500; text-decoration: none; transition: all .2s; }
.social-btn:hover { border-color: var(--rose); color: var(--rose); }
.social-btn:visited { color: rgba(196,181,253,.38); }
.footer-col-title { font-size: .63rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .68rem; }
.footer-links li a { font-size: .81rem; color: rgba(196,181,253,.38); transition: color .2s; }
.footer-links li a:hover { color: var(--blush); }
.footer-links li a:visited { color: rgba(196,181,253,.25); }
.footer-bottom { border-top: 1px solid rgba(196,181,253,.07); padding-top: 1.85rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .68rem; color: rgba(196,181,253,.2); letter-spacing: .04em; }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { font-size: .66rem; color: rgba(196,181,253,.2); transition: color .2s; }
.footer-legal a:hover { color: rgba(196,181,253,.55); }

/* ════════════════════════════════════════════════════════════
   SINGLE POST
════════════════════════════════════════════════════════════ */
.single-post-wrap { background: var(--cream); padding: 5rem 3rem; }
.single-post-inner { max-width: 780px; margin: 0 auto; }
.single-cat { font-size: .67rem; letter-spacing: .22em; text-transform: uppercase; color: var(--violet); display: block; margin-bottom: .75rem; }
.single-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; color: var(--sovereign); margin-bottom: 1.25rem; }
.single-meta { font-size: .75rem; color: var(--heather); display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.meta-dot { color: var(--blush); }
.single-thumb { margin-bottom: 3rem; overflow: hidden; }
.single-thumb img { width: 100%; height: auto; }
.single-body { font-size: 1rem; line-height: 1.9; color: var(--plum); }
.single-body h2 { font-family: 'Playfair Display', serif; font-size: 1.65rem; color: var(--sovereign); margin: 2.5rem 0 1rem; }
.single-body h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--royal); margin: 2rem 0 .75rem; }
.single-body p { margin-bottom: 1.5rem; }
.single-body a { color: var(--violet); border-bottom: 1px solid rgba(126,34,206,.25); }
.single-body a:hover { color: var(--rose); border-color: var(--rose); }
.single-body blockquote { border-left: 3px solid var(--rose); padding: 1rem 1.5rem; margin: 2rem 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: var(--royal); }
.post-nav { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.post-nav-link { display: flex; flex-direction: column; gap: .3rem; max-width: 45%; text-decoration: none; }
.post-nav-next { align-items: flex-end; text-align: right; }
.post-nav-label { font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; color: var(--rose); }
.post-nav-title { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--sovereign); line-height: 1.4; }
.post-nav-link:hover .post-nav-title { color: var(--violet); }

/* ════════════════════════════════════════════════════════════
   ARCHIVE
════════════════════════════════════════════════════════════ */
.archive-hero { background: var(--sovereign); padding: 5rem 3rem 4rem; }
.archive-hero-inner { max-width: 1200px; margin: 0 auto; }
.archive-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.2rem); color: var(--cream); margin-top: .5rem; }
.archive-desc { color: rgba(243,238,249,.5); font-size: .95rem; margin-top: .75rem; max-width: 540px; font-weight: 300; }
.archive-body { padding: 4rem 3rem; max-width: 1200px; margin: 0 auto; }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2rem; }
.archive-card { background: var(--white); overflow: hidden; cursor: pointer; transition: transform .22s, box-shadow .22s; }
.archive-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(59,26,107,.1); }
.archive-thumb { height: 200px; background: var(--royal); position: relative; overflow: hidden; }
.archive-thumb img { width: 100%; height: 100%; object-fit: cover; }
.archive-card-body { padding: 1.5rem; }
.archive-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; line-height: 1.38; margin-bottom: .75rem; }
.archive-card-title a { color: var(--sovereign); }
.archive-card-title a:hover { color: var(--violet); }
.archive-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.archive-pagination .nav-links { display: flex; gap: .5rem; }
.archive-pagination .page-numbers { padding: .5rem .85rem; border: 1px solid var(--border); color: var(--plum); font-size: .8rem; transition: all .2s; }
.archive-pagination .page-numbers:hover { background: var(--royal); color: var(--cream); border-color: var(--royal); }
.archive-pagination .page-numbers.current { background: var(--royal); color: var(--cream); border-color: var(--royal); }

/* ════════════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════════════ */
@keyframes fadeUp  { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes tickerMove { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes scrollPulse { 0%,100% { opacity:.22; transform:scaleY(.65); } 50% { opacity:1; transform:scaleY(1); } }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .video-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .awards-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  #main-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 320px; }
  .about-content { padding: 3rem 2rem; }
  .speaking-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-header { flex-direction: column; align-items: flex-start; }
  .hero-identity { display: none; }
  .press-photos { grid-template-columns: 1fr; }
  .video-yt-cta { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .video-grid    { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(59,26,107,.18); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .awards-grid { grid-template-columns: 1fr; }
  .award-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .press-logos { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ════════════════════════════════════════════════════════════
   WP CORE OVERRIDES
════════════════════════════════════════════════════════════ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .78rem; color: var(--heather); text-align: center; padding: .35rem 0; }
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.screen-reader-text { border:0; clip:rect(1px,1px,1px,1px); clip-path:inset(50%); height:1px; margin:-1px; overflow:hidden; padding:0; position:absolute; width:1px; }
