/* =====================================================
   MICHAEL UKWUMA LEADERSHIP THEME — main.css v4
   Dark/Gold Editorial · Fully Responsive
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Barlow+Condensed:wght@300;400;600;700;800&family=Barlow:wght@300;400;500&display=swap');

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dim:    #7A6230;
  --gold-faint:  rgba(201,168,76,0.08);
  --black:       #090909;
  --black-2:     #101010;
  --black-3:     #181818;
  --black-4:     #222222;
  --white:       #F4EFE6;
  --white-dim:   #A09890;
  --white-faint: #3A3530;
  /* Nav height token — used everywhere for padding-top */
  --nav-h:       80px;
  /* Layout tokens */
  --max-w:       1200px;
  --pad-x:       clamp(20px, 5vw, 80px);
  --pad-y:       clamp(64px, 8vw, 110px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* NOISE OVERLAY */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .45;
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */

/* WordPress admin bar — nav sits BELOW it, z-index above it */
.admin-bar .mu-nav {
  top: 32px;
  z-index: 99999;
}
.admin-bar .nav-drawer {
  top: calc(var(--nav-h) + 32px);
  z-index: 99998;
}
.admin-bar .nav-overlay { z-index: 99997; }
@media screen and (max-width: 782px) {
  .admin-bar .mu-nav { top: 46px; }
  .admin-bar .nav-drawer { top: calc(var(--nav-h) + 46px); }
}
/* Hide WP admin bar bump — we handle spacing ourselves */
html { margin-top: 0 !important; }
.admin-bar html { margin-top: 0 !important; }

.mu-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  background: #0d0d0d;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 24px rgba(0,0,0,.8);
  transition: box-shadow .3s, border-color .3s;
}
.mu-nav.scrolled {
  box-shadow: 0 4px 48px rgba(0,0,0,.9);
  border-bottom-color: var(--gold-light);
}

/* LOGO */
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-first {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold); letter-spacing: .03em;
}
.nav-logo-last {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 400;
  font-style: italic; color: var(--white);
  letter-spacing: .03em;
}
.nav-logo-rule {
  width: 1px; height: 22px;
  background: rgba(201,168,76,.3);
  display: block;
}
.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--white-dim);
}

/* DESKTOP LINKS */
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none;
  padding: 10px 14px;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

/* CTA BUTTON IN NAV */
.nav-cta-wrap { margin-left: 8px; }
.nav-cta {
  display: inline-flex !important; align-items: center; gap: 8px;
  background: var(--gold) !important;
  color: var(--black) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: .78rem !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 12px 22px !important;
  text-decoration: none !important;
  transition: background .2s, transform .2s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
  color: var(--black) !important;
}

/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none; /* hidden on desktop — shown only at tablet/mobile breakpoint */
  flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; width: 44px; height: 44px;
  background: none; border: 1px solid rgba(201,168,76,.2);
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--gold); }
.ham-line {
  display: block; width: 22px; height: 1.5px;
  background: var(--white-dim);
  transition: transform .3s ease, opacity .3s ease, background .2s;
  transform-origin: center;
}
.nav-hamburger.active .ham-top  { transform: translateY(7.5px) rotate(45deg); background: var(--gold); }
.nav-hamburger.active .ham-mid  { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active .ham-bot  { transform: translateY(-7.5px) rotate(-45deg); background: var(--gold); }

/* MOBILE DRAWER */
.nav-drawer {
  position: fixed;
  top: var(--nav-h); right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--black-2);
  border-left: 1px solid rgba(201,168,76,.12);
  padding: 32px 28px 40px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 490;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-links {
  list-style: none;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(201,168,76,.08);
}
.nav-drawer-links li {
  border-bottom: 1px solid rgba(201,168,76,.08);
}
.nav-drawer-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.nav-drawer-links a::after { content: '→'; font-size: .8rem; color: var(--white-faint); transition: color .2s; }
.nav-drawer-links a:hover,
.nav-drawer-links a.active { color: var(--gold); padding-left: 8px; }
.nav-drawer-links a:hover::after,
.nav-drawer-links a.active::after { color: var(--gold); }

.nav-drawer-cta {
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: .9rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 17px; margin-top: 28px;
  text-decoration: none;
  transition: background .2s;
}
.nav-drawer-cta:hover { background: var(--gold-light); }

.nav-drawer-contact {
  margin-top: 20px; text-align: center;
}
.nav-drawer-contact a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem; letter-spacing: .06em;
  color: var(--white-dim); text-decoration: none;
}
.nav-drawer-contact a:hover { color: var(--gold); }

/* OVERLAY */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
  z-index: 480;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.nav-overlay.visible { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════════════
   SHARED LAYOUT UTILITIES
   ══════════════════════════════════════════════════════ */

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 900; line-height: 1.1; color: var(--white);
}
.section-h2 em { font-style: italic; color: var(--gold); }

.gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 16px 0 26px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: .92rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 32px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 28px rgba(201,168,76,.2);
  white-space: nowrap;
}
.btn-primary::after {
  content: ''; position: absolute;
  top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  transform: skewX(-20deg); transition: left .5s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(201,168,76,.35); }
.btn-primary:hover::after { left: 140%; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white-dim);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--white-faint); padding-bottom: 2px;
  transition: color .2s, border-color .2s; white-space: nowrap;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold-dim); color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 28px; text-decoration: none;
  transition: background .2s, color .2s, border-color .2s; white-space: nowrap;
}
.btn-outline:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.btn-sm {
  font-family: 'Barlow Condensed', sans-serif; font-size: .75rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 9px 16px;
  text-decoration: none; transition: background .2s; white-space: nowrap;
}
.btn-sm:hover { background: var(--gold-light); }

.btn-sm-outline {
  font-family: 'Barlow Condensed', sans-serif; font-size: .75rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-dim); padding: 8px 16px;
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-sm-outline:hover { background: var(--gold); color: var(--black); }

/* ══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════ */

.page-hero {
  padding-top: var(--nav-h);
  background: var(--black-2);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(201,168,76,.05) 0%, transparent 70%);
}
.page-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(56px,8vw,96px) var(--pad-x);
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900; line-height: 1.02; color: var(--white);
}
.hero-h1 em { font-style: italic; color: var(--gold); }

/* ══════════════════════════════════════════════════════
   ABOUT (inner page sections)
   ══════════════════════════════════════════════════════ */

.about-section { background: var(--black-2); }
.about-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.photo-frame {
  width: 100%; aspect-ratio: 3/4; max-width: 340px;
  background: var(--black-3); border: 1.5px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.photo-img-placeholder { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--white-faint); text-align: center; padding: 24px; }
.photo-label { position: absolute; bottom: 20px; left: 20px; font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); background: rgba(9,9,9,.8); padding: 6px 12px; }
.photo-accent { position: absolute; bottom: -16px; right: -16px; width: 80px; height: 80px; border: 2px solid var(--gold); z-index: -1; }
.about-text .section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.about-h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 24px; }
.about-h2 em { font-style: italic; color: var(--gold); }
.about-body p { font-size: 1rem; line-height: 1.85; color: var(--white-dim); margin-bottom: 18px; }
.about-body strong { color: var(--white); font-weight: 500; }
.about-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px; transition: gap .2s, border-color .2s; }
.about-link:hover { gap: 14px; border-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   BOOK SECTIONS
   ══════════════════════════════════════════════════════ */

.book-section { background: var(--black); }
.book-inner, .featured-inner, .books-inner, .courses-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}
.section-header { margin-bottom: clamp(40px, 5vw, 60px); }
.book-feature-grid, .featured-grid {
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(40px, 6vw, 72px); align-items: start;
}
.book-cover-large, .book-cover {
  background: var(--black-2); border: 1.5px solid var(--gold-dim);
  padding: 24px 20px; display: flex; flex-direction: column;
  justify-content: space-between; min-height: 340px;
  position: relative; box-shadow: -14px 18px 48px rgba(0,0,0,.6);
}
.book-cover-large::before, .book-cover::before { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(201,168,76,.15); pointer-events: none; }
.bcl-pub, .bc-pub { font-family: 'Barlow Condensed', sans-serif; font-size: .6rem; letter-spacing: .22em; color: var(--white-dim); text-align: center; text-transform: uppercase; }
.bcl-title, .bc-title { text-align: center; margin: 16px 0; }
.bcl-t1, .bcl-t2, .bc-t1, .bc-t2 { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 800; line-height: .9; background: var(--gold); color: var(--black); padding: 7px 12px 3px; letter-spacing: .02em; }
.bcl-t2, .bc-t2 { padding: 3px 12px 8px; }
.bcl-sub, .bc-sub { font-size: .6rem; letter-spacing: .13em; color: var(--white-dim); text-align: center; margin-top: 8px; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; }
.bcl-author, .bc-author { font-family: 'Barlow Condensed', sans-serif; font-size: .68rem; letter-spacing: .16em; color: var(--white-dim); text-align: center; text-transform: uppercase; }
.bcl-badge, .bc-badge { position: absolute; top: -10px; right: -10px; background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; padding: 7px 12px; }
.book-title-lg { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 10px; }
.book-title-lg em { font-style: italic; color: var(--gold); }
.book-desc { font-size: 1rem; line-height: 1.85; color: var(--white-dim); margin-bottom: 28px; }
.book-desc strong { color: var(--white); font-weight: 500; }
.includes-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 32px; }
.include-row { display: flex; align-items: center; gap: 14px; background: var(--black-3); padding: 14px 18px; transition: background .2s; }
.include-row:hover { background: var(--black-4); }
.include-icon { color: var(--gold); font-size: .85rem; flex-shrink: 0; }
.include-text { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 500; color: var(--white); }
.include-tag { margin-left: auto; font-family: 'Barlow Condensed', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-dim); padding: 3px 9px; }
.price-row, .book-price-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.price-strike { font-family: 'Barlow Condensed', sans-serif; font-size: .95rem; color: var(--white-dim); text-decoration: line-through; }
.price-tag, .price-free { font-family: 'Barlow Condensed', sans-serif; font-size: .95rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 6px 16px; }
.books-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: clamp(40px,5vw,60px); }
.book-card { background: var(--black-3); overflow: hidden; position: relative; transition: background .3s; }
.book-card:hover { background: var(--black-4); }
.book-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.book-card:hover::before { transform: scaleX(1); }
.book-card-visual { aspect-ratio: 3/4; background: var(--black-4); display: flex; align-items: center; justify-content: center; padding: 24px; border-bottom: 1px solid rgba(201,168,76,.08); }
.book-card-mini { text-align: center; }
.bcm-genre { font-family: 'Barlow Condensed', sans-serif; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; }
.bcm-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 6px; }
.bcm-author { font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; letter-spacing: .15em; color: var(--white-dim); text-transform: uppercase; }
.book-card-body { padding: 20px; }
.bc-genre-tag { font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.bc-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.bc-blurb { font-size: .88rem; line-height: 1.65; color: var(--white-dim); margin-bottom: 20px; }
.bc-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.bc-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }

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

.pillars-section { background: var(--black-2); }
.pillars-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--pad-y) var(--pad-x); }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: clamp(40px,5vw,60px); }
.pillar-card { background: var(--black-3); padding: clamp(28px,4vw,44px) clamp(22px,3vw,32px); position: relative; overflow: hidden; transition: background .3s; }
.pillar-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.pillar-card:hover { background: var(--black-4); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-icon { font-size: 1.6rem; margin-bottom: 20px; display: block; }
.pillar-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: rgba(201,168,76,.1); line-height: 1; position: absolute; top: 20px; right: 24px; }
.pillar-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: .06em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.pillar-desc { font-size: .95rem; line-height: 1.75; color: var(--white-dim); }

/* ══════════════════════════════════════════════════════
   COURSES
   ══════════════════════════════════════════════════════ */

.courses-section { background: var(--black); }
.courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.course-card { background: var(--black-3); padding: clamp(28px,4vw,36px) clamp(20px,3vw,28px); position: relative; overflow: hidden; transition: background .3s; }
.course-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.course-card:hover { background: var(--black-4); }
.course-card:hover::after { transform: scaleX(1); }
.course-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(201,168,76,.1); line-height: 1; position: absolute; top: 16px; right: 20px; }
.course-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; color: var(--white); text-transform: uppercase; margin-bottom: 10px; }
.course-desc { font-size: .88rem; line-height: 1.65; color: var(--white-dim); margin-bottom: 20px; }
.course-cta { font-family: 'Barlow Condensed', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-dim); padding-bottom: 2px; }
.course-cta:hover { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   BLOG GRID
   ══════════════════════════════════════════════════════ */

.blog-section { background: var(--black); }
.blog-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--pad-y) var(--pad-x); }
.blog-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2px; margin-top: clamp(40px,5vw,60px); }
.blog-card { background: var(--black-3); position: relative; overflow: hidden; transition: background .3s; text-decoration: none; display: flex; flex-direction: column; }
.blog-card:hover { background: var(--black-4); }
.blog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.blog-card:hover::before { transform: scaleX(1); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; background: var(--black-4); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(201,168,76,.1); overflow: hidden; }
.blog-card-img-inner { width: 100%; height: 100%; background: linear-gradient(135deg,var(--black-3) 0%,var(--black-4) 100%); display: flex; align-items: center; justify-content: center; }
.blog-img-text { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; font-style: italic; color: rgba(201,168,76,.15); text-align: center; padding: 20px; line-height: 1.2; }
.blog-card-body { padding: clamp(20px,3vw,28px); flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; line-height: 1.4; color: var(--white); margin-bottom: 12px; flex: 1; }
.blog-card.featured .blog-title { font-size: 1.3rem; }
.blog-date { font-family: 'Barlow Condensed', sans-serif; font-size: .72rem; letter-spacing: .1em; color: var(--white-dim); margin-top: auto; }
.card-cat-link { color: var(--gold); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; transition: color .2s; }
.card-cat-link:hover { color: var(--gold-light); }
.card-cat-sep { color: var(--white-faint); }
.card-visual { aspect-ratio: 16/9; background: var(--black-4); display: flex; align-items: center; justify-content: center; padding: 20px; border-bottom: 1px solid rgba(201,168,76,.08); overflow: hidden; }
.card-visual-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; font-style: italic; color: rgba(201,168,76,.15); text-align: center; line-height: 1.3; }
.card-body { padding: clamp(18px,3vw,24px); flex: 1; display: flex; flex-direction: column; }
.card-cat { font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; line-height: 1.4; color: var(--white); margin-bottom: 12px; flex: 1; }
.card-excerpt { font-size: .88rem; line-height: 1.65; color: var(--white-dim); margin-bottom: 16px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-date { font-family: 'Barlow Condensed', sans-serif; font-size: .68rem; letter-spacing: .1em; color: var(--white-dim); text-transform: uppercase; }
.card-arrow { color: var(--gold); font-size: .9rem; transition: transform .2s; }
.blog-card:hover .card-arrow { transform: translateX(4px); }
.filter-count { display: inline-flex; align-items: center; justify-content: center; background: rgba(201,168,76,.12); color: var(--gold-dim); font-size: .6rem; font-weight: 700; padding: 1px 6px; margin-left: 5px; }
.filter-tab:hover .filter-count, .filter-tab.active .filter-count { background: rgba(201,168,76,.25); color: var(--gold); }

/* ══════════════════════════════════════════════════════
   STORY / ABOUT PAGE SECTIONS
   ══════════════════════════════════════════════════════ */

.story-section { background: var(--black); }
.story-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--pad-y) var(--pad-x); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.pull-quote { background: var(--black-3); border: 1px solid rgba(201,168,76,.15); padding: clamp(28px,4vw,40px); position: relative; }
.pull-quote::before { content: '"'; position: absolute; top: -24px; left: 28px; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); line-height: 1; }
.pull-quote p { font-family: 'Playfair Display', serif; font-size: clamp(1rem,1.5vw,1.25rem); font-style: italic; line-height: 1.75; color: var(--white); }
.pull-quote p strong { color: var(--gold); font-style: normal; }
.pull-quote cite { display: block; margin-top: 18px; font-family: 'Barlow Condensed', sans-serif; font-size: .75rem; letter-spacing: .15em; color: var(--gold); font-style: normal; text-transform: uppercase; }
.timeline-item { display: grid; grid-template-columns: 60px 1fr; background: var(--black-3); overflow: hidden; transition: background .3s; }
.timeline-item:hover { background: var(--black-4); }
.timeline-year { background: var(--gold-faint); border-right: 1px solid rgba(201,168,76,.15); padding: 14px 8px; font-family: 'Barlow Condensed', sans-serif; font-size: .68rem; font-weight: 700; color: var(--gold); text-align: center; display: flex; align-items: center; justify-content: center; }
.timeline-text { padding: 14px 18px; font-size: .88rem; line-height: 1.6; color: var(--white-dim); }
.timeline-text strong { color: var(--white); font-weight: 500; }
.story-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 900; line-height: 1.1; color: var(--white); }
.story-h2 em { font-style: italic; color: var(--gold); }
.story-body p { font-size: 1rem; line-height: 1.85; color: var(--white-dim); margin-bottom: 18px; }
.story-body strong { color: var(--white); font-weight: 500; }
.expertise-section { background: var(--black-2); }
.expertise-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--pad-y) var(--pad-x); }
.expertise-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.expertise-card { background: var(--black-3); padding: clamp(24px,3vw,36px) clamp(18px,2.5vw,28px); position: relative; overflow: hidden; transition: background .3s; text-align: center; }
.expertise-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.expertise-card:hover { background: var(--black-4); }
.expertise-card:hover::after { transform: scaleX(1); }
.exp-icon { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.exp-title { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .08em; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.exp-desc { font-size: .86rem; line-height: 1.65; color: var(--white-dim); }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════ */

.contact-section { background: var(--black); }
.contact-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--pad-y) var(--pad-x); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.contact-h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 10px; }
.contact-h2 em { font-style: italic; color: var(--gold); }
.contact-body { font-size: 1rem; line-height: 1.85; color: var(--white-dim); margin-bottom: 32px; }
.contact-body strong { color: var(--white); font-weight: 500; }
.contact-methods { display: flex; flex-direction: column; gap: 2px; }
.contact-method { display: grid; grid-template-columns: 52px 1fr; overflow: hidden; background: var(--black-3); transition: background .3s; text-decoration: none; }
.contact-method:hover { background: var(--black-4); }
.contact-method-icon { background: var(--gold-faint); border-right: 1px solid rgba(201,168,76,.12); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-method-body { padding: 18px 20px; }
.contact-method-label { font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-method-value { font-family: 'Barlow Condensed', sans-serif; font-size: .95rem; font-weight: 600; color: var(--white); }
.contact-method-desc { font-size: .82rem; color: var(--white-dim); margin-top: 2px; }
.contact-form-wrap { background: var(--black-3); border: 1px solid rgba(201,168,76,.12); padding: clamp(28px,4vw,48px); }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.form-title em { font-style: italic; color: var(--gold); }
.form-sub { font-size: .9rem; color: var(--white-dim); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { font-family: 'Barlow Condensed', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.form-input, .form-textarea, .form-select { width: 100%; background: var(--black-4); border: 1px solid rgba(201,168,76,.15); color: var(--white); font-family: 'Barlow', sans-serif; font-size: .95rem; padding: 13px 16px; outline: none; transition: border-color .2s; -webkit-appearance: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--white-faint); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-select option { background: var(--black-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: .14em; text-transform: uppercase; padding: 17px; border: none; cursor: pointer; transition: background .2s, transform .2s; margin-top: 8px; }
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════ */

.cta-banner { background: var(--black-3); border-top: 1px solid rgba(201,168,76,.12); border-bottom: 1px solid rgba(201,168,76,.12); }
.cta-banner-inner { max-width: var(--max-w); margin: 0 auto; padding: clamp(56px,7vw,80px) var(--pad-x); display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.label, .cta-label { font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.cta-banner-h, .cta-h { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 900; line-height: 1.1; color: var(--white); }
.cta-banner-h em, .cta-h em { font-style: italic; color: var(--gold); }
.cta-banner-actions, .cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.cta-note { font-family: 'Barlow Condensed', sans-serif; font-size: .72rem; letter-spacing: .06em; color: var(--white-dim); text-align: center; }
.cta-note span { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   FILTER BAR
   ══════════════════════════════════════════════════════ */

.filter-bar { background: var(--black-3); border-bottom: 1px solid rgba(201,168,76,.1); }
.filter-bar-inner, .filter-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.filter-bar-inner::-webkit-scrollbar, .filter-inner::-webkit-scrollbar { display: none; }
.filter-tab { font-family: 'Barlow Condensed', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white-dim); padding: 16px 20px; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; text-decoration: none; display: inline-block; white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; }
.filter-tab:hover { color: var(--gold); }
.filter-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   SINGLE POST
   ══════════════════════════════════════════════════════ */

.post-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem,2.5vw,1.8rem); font-weight: 900; color: var(--white); margin: 40px 0 16px; }
.post-content h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; font-size: 1rem; line-height: 1.9; }
.post-content strong { color: var(--white); font-weight: 500; }
.post-content a { color: var(--gold); }
.post-content blockquote { border-left: 3px solid var(--gold); padding: 20px 24px; background: var(--black-3); margin: 28px 0; font-family: 'Playfair Display', serif; font-style: italic; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; color: var(--white-dim); }
.post-content li { margin-bottom: 8px; }
.page-body-wrap { max-width: 800px; margin: 0 auto; padding: clamp(48px,6vw,72px) var(--pad-x); }

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

.mu-footer { background: var(--black-2); border-top: 1px solid rgba(201,168,76,0.1); }
.footer-main { max-width: var(--max-w); margin: 0 auto; padding: clamp(48px,6vw,64px) var(--pad-x) clamp(32px,4vw,40px); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 14px; text-decoration: none; display: block; }
.footer-tagline { font-size: .9rem; line-height: 1.7; color: var(--white-dim); margin-bottom: 24px; max-width: 220px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 34px; height: 34px; border: 1px solid rgba(201,168,76,.2); display: flex; align-items: center; justify-content: center; color: var(--white-dim); font-size: .8rem; text-decoration: none; transition: border-color .2s, color .2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; color: var(--white-dim); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 20px var(--pad-x) 32px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(201,168,76,.08); flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: var(--white-dim); }
.footer-bottom a { color: var(--white-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════════ */

.mu-pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.mu-pagination .page-numbers { font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 10px 18px; background: var(--black-3); color: var(--white-dim); text-decoration: none; border: 1px solid rgba(201,168,76,.15); transition: all .2s; }
.mu-pagination .page-numbers.current, .mu-pagination .page-numbers:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════════════════════ */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ══════════════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════════════ */

@keyframes fadeUp  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — WIDE SCREEN (1400px+)
   ══════════════════════════════════════════════════════ */

@media (min-width: 1400px) {
  :root { --max-w: 1320px; --pad-x: 80px; }
  .nav-logo-first, .nav-logo-last { font-size: 1.45rem; }
  .home-h1 { font-size: 6.5rem; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (768px – 1060px)
   ══════════════════════════════════════════════════════ */

@media (max-width: 1060px) {
  /* Nav — hide desktop links, show hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Grids → 2 cols */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .book-feature-grid, .featured-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-cover-large { max-width: 260px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .books-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 640px)
   ══════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  :root { --nav-h: 72px; --pad-x: 20px; --pad-y: 64px; }

  /* Logo — hide tagline on smallest screens */
  .nav-logo-rule, .nav-logo-sub { display: none; }
  .nav-logo-first { font-size: 1.15rem; }
  .nav-logo-last  { font-size: 1.15rem; }

  /* Grids → single column */
  .pillars-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA banner stack */
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn-primary { width: 100%; justify-content: center; }

  /* Typography scale down */
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .section-h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Book cover centred */
  .book-cover-large { max-width: 240px; margin: 0 auto; }

  /* Nav drawer full width on small phones */
  .nav-drawer { width: 100%; border-left: none; }

  /* About photo centred */
  .photo-frame { max-width: 280px; margin: 0 auto; }

  /* Home about section */
  .home-about-inner { padding: 64px 20px; gap: 40px; }
  .home-about-frame { max-width: 260px; }
}


/* ── FOOTER MEDIA PILLS ── */
.footer-media-labels {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.footer-media-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,.12);
  padding: 10px 14px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.footer-media-pill:hover { border-color: var(--gold); background: var(--black-4); }
.fmp-icon { font-size: 1rem; flex-shrink: 0; color: var(--gold); }
.fmp-text { display: flex; flex-direction: column; }
.fmp-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dim); line-height: 1;
}
.fmp-text span:last-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 700;
  color: var(--white); letter-spacing: .04em;
  margin-top: 2px;
}

/* ── ADMIN BAR BODY PADDING FIX ── */
/* When logged in, shift page content to account for both admin bar + nav */
.admin-bar body { padding-top: 0 !important; }
.admin-bar .home-hero,
.admin-bar .page-hero { padding-top: calc(var(--nav-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .home-hero,
  .admin-bar .page-hero { padding-top: calc(var(--nav-h) + 46px); }
}

/* ── NAV VISIBILITY BOOST ── */
/* Make logo and links more prominent */
.nav-logo-first { font-size: 1.4rem !important; letter-spacing: .02em; }
.nav-logo-last  { font-size: 1.4rem !important; }
.nav-logo-sub   { color: var(--gold-dim) !important; }
.nav-links a {
  font-size: .82rem !important;
  color: #c8bfb0 !important;
  padding: 12px 16px !important;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold) !important; }

/* Gold bottom bar accent under nav */
.mu-nav::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: .6;
}

/* ── BLOG GRID OVERRIDES — ensure posts always display ── */
.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2px !important;
  margin-top: clamp(40px, 5vw, 56px) !important;
}
.blog-card {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  background: var(--black-3) !important;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.blog-card:hover { background: var(--black-4) !important; }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black-4);
}
.blog-card-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--black-3), var(--black-4));
}
.blog-card-body {
  padding: clamp(18px, 3vw, 28px);
  flex: 1; display: flex; flex-direction: column;
}
.blog-cat { 
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  line-height: 1.4; color: var(--white);
  margin-bottom: 12px; flex: 1;
}
.blog-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; letter-spacing: .1em;
  color: var(--white-dim); margin-top: auto;
  text-transform: uppercase;
}
.blog-img-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  font-style: italic;
  color: rgba(201,168,76,.15);
  text-align: center; padding: 20px;
  line-height: 1.2;
}

@media(max-width: 1060px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media(max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr !important; }
}
