/* Phoenix Rising unified brand system. Loaded last so every static page shares one first-paint treatment. */
:root {
  --pr-navy: #0A1929;
  --pr-navy-2: #0E2237;
  --pr-navy-3: #07111F;
  --pr-gold: #C9A66A;
  --pr-gold-bright: #E0B65C;
  --pr-cream: #F2E6CC;
  --pr-cream-surface: #FAF6F0;
  --pr-cream-deep: #EFE2CA;
  --pr-ink: #102033;
  --pr-muted: #5F625E;
  --pr-line: rgba(201, 166, 106, 0.36);
  --pr-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --pr-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navy: var(--pr-navy);
  --gold: var(--pr-gold);
  --dark-cream: var(--pr-cream);
  --cream: var(--pr-cream-surface);
  --cream-deep: var(--pr-cream-deep);
  --ember: var(--pr-gold);
  --line: rgba(201, 166, 106, 0.34);
  --line-soft: rgba(201, 166, 106, 0.2);
  --ink: var(--pr-ink);
  --gray: var(--pr-muted);
}

html {
  background: var(--pr-navy) !important;
  overflow-x: clip;
  scroll-padding-top: 92px;
}
body {
  background: var(--pr-navy) !important;
  color: var(--pr-ink);
  font-family: var(--pr-sans) !important;
  overflow-x: clip;
}
body > main, main#app, main.shell {
  background: var(--pr-cream-surface);
}

/* First-paint shared nav */
header.nav,
.nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100vw !important;
  padding: 22px clamp(18px, 2.2vw, 32px) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: rgba(10, 25, 41, 0.985) !important;
  color: var(--pr-cream) !important;
  border-bottom: 1px solid rgba(201, 166, 106, 0.34) !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  flex-wrap: nowrap !important;
}
.nav-left { flex: 0 0 auto !important; min-width: 206px !important; }
.nav-left a,
.nav-brand { color: var(--pr-cream) !important; text-decoration: none !important; display: block !important; position: relative !important; padding-left: 44px !important; min-height: 42px !important; }
.nav-left a::before,
.nav-brand::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  width: 34px !important;
  height: 34px !important;
  background: url('/assets/images/phoenix-mark-elite.png') center / contain no-repeat !important;
}
.nav-left a::after,
.nav-brand::after {
  content: 'Phoenix Rising' !important;
  display: block !important;
  position: absolute !important;
  left: 44px !important;
  top: 4px !important;
  font-family: var(--pr-serif) !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--pr-cream) !important;
  white-space: nowrap !important;
  padding-top: 0 !important;
}
.nav-left .nav-tagline,
.nav-brand .nav-tagline { position: absolute !important; left: 44px !important; top: 27px !important; white-space: nowrap !important; }
.nav-logo,
.nav-brand-lockup { display: none !important; }
.nav-tagline,
.nav-brand + .nav-tagline {
  display: block !important;
  margin-top: 4px !important;
  font-size: 9.5px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  letter-spacing: .18em !important;
  color: var(--pr-gold) !important;
  text-transform: uppercase !important;
  padding-left: 0 !important;
}
.nav-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
}
.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
  position: static !important;
  padding: 0 !important;
  transform: none !important;
  visibility: visible !important;
  border: 0 !important;
  background: transparent !important;
}
.nav-links a,
.nav-signin,
.nav-member,
.nav-signout {
  color: rgba(242, 230, 204, 0.86) !important;
  font-size: 11.8px !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links a.is-current,
.nav-signin:hover,
.nav-member:hover,
.nav-signout:hover,
.nav-member.active,
.nav-signin.active { color: var(--pr-gold) !important; border-bottom-color: currentColor !important; }
.nav-links a::after { display: none !important; }
.nav-cta {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--pr-gold) !important;
  color: var(--pr-navy) !important;
  border: 1px solid var(--pr-gold) !important;
  border-radius: 2px !important;
  padding: 9px 12px !important;
  font-size: 11.5px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  margin-left: 0 !important;
}
.nav-cta:hover { background: var(--pr-cream) !important; border-color: var(--pr-cream) !important; color: var(--pr-navy) !important; }
.nav-toggle {
  display: none !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border: 1px solid rgba(201, 166, 106, .5) !important;
  background: rgba(242, 230, 204, .08) !important;
  color: var(--pr-cream) !important;
  align-items: center !important;
  justify-content: center !important;
  font: inherit !important;
  border-radius: 2px !important;
}

.nav.is-compact {
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  padding: 20px 24px !important;
}
.nav.is-compact .nav-left { min-width: 0 !important; }
.nav.is-compact .nav-toggle { display: inline-flex !important; margin-left: auto !important; }
.nav.is-compact .nav-right {
  display: none !important;
  width: 100% !important;
  min-width: 100% !important;
  align-items: stretch !important;
  gap: 10px !important;
}
.nav.is-compact.is-open .nav-right { display: flex !important; flex-direction: column !important; }
.nav.is-compact .nav-links { flex-direction: column !important; align-items: stretch !important; gap: 0 !important; }
.nav.is-compact .nav-links a,
.nav.is-compact .nav-signin,
.nav.is-compact .nav-member,
.nav.is-compact .nav-signout,
.nav.is-compact .nav-cta { padding: 12px 0 !important; justify-content: flex-start !important; }

@media (max-width: 980px) {
  header.nav,
  .nav,
  .nav.is-compact {
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    padding: 20px 24px !important;
  }
  .nav-left { min-width: 0 !important; }
  .nav-toggle,
  .nav.is-compact .nav-toggle { display: inline-flex !important; margin-left: auto !important; }
  .nav-right,
  .nav.is-compact .nav-right {
    display: none !important;
    width: 100% !important;
    min-width: 100% !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .nav.is-open .nav-right,
  .nav.is-compact.is-open .nav-right { display: flex !important; flex-direction: column !important; }
  .nav-links,
  .nav.is-compact .nav-links { flex-direction: column !important; align-items: stretch !important; gap: 0 !important; }
  .nav-links a,
  .nav-signin,
  .nav-member,
  .nav-signout,
  .nav-cta,
  .nav.is-compact .nav-links a,
  .nav.is-compact .nav-signin,
  .nav.is-compact .nav-cta,
  .nav.is-compact .nav-member,
  .nav.is-compact .nav-signout { padding: 12px 0 !important; justify-content: flex-start !important; }
}

/* Page cohesion */
.hero,
.page-hero,
.member-hero,
.admin-hero,
.dashboard-hero,
.library-hero,
.shell > .guard:first-child {
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 166, 106, 0.16), transparent 31%),
    linear-gradient(135deg, var(--pr-navy) 0%, var(--pr-navy-2) 58%, var(--pr-navy-3) 100%) !important;
  color: var(--pr-cream) !important;
  border-color: var(--pr-line) !important;
}
.hero h1, .hero h2, .hero h3,
.page-hero h1, .member-hero h1,
.shell > .guard:first-child h1 { color: var(--pr-cream) !important; }
.hero p, .page-hero p, .member-hero p, .shell > .guard:first-child p { color: var(--pr-cream) !important; }
.eyebrow, .section-eyebrow, .hero-eyebrow, .hero-meta-label, .session-callout-eyebrow { color: var(--pr-gold) !important; }
.card,
.loading-card,
.sidebar-card,
.detail,
.detail-panel,
.empty-state,
.mobile-card,
.modal,
.form-card,
.panel,
.stat,
.quick-actions,
.session-card,
.member-card,
.event-card,
.broadcast-card,
.workflow-step,
.table-wrap,
.controls,
.call-card,
.resource-card,
.origin-anchor,
.session-callout {
  background: var(--pr-cream-surface) !important;
  border-color: rgba(201, 166, 106, .34) !important;
  color: var(--pr-ink) !important;
}
input, select, textarea {
  background: rgba(250, 246, 240, .96) !important;
  border-color: rgba(201, 166, 106, .42) !important;
  color: var(--pr-ink) !important;
}
input::placeholder,
textarea::placeholder,
.subscribe-form input::placeholder {
  color: var(--ink-muted, #4A5667) !important;
  opacity: 1 !important;
}
.btn, button.btn, .hero-cta, .btn-primary {
  background: var(--pr-gold) !important;
  border-color: var(--pr-gold) !important;
  color: var(--pr-navy) !important;
}
.btn.secondary, .btn-ghost, .hero-secondary {
  background: transparent !important;
  border-color: rgba(201, 166, 106, .7) !important;
  color: var(--pr-gold) !important;
}
footer,
.footer,
.site-footer {
  background: var(--pr-navy) !important;
  color: rgba(242, 230, 204, .78) !important;
  border-top: 1px solid rgba(201, 166, 106, .34) !important;
}
footer img,
.footer img,
.site-footer img { display: none !important; }
footer::before,
.footer::before,
.site-footer::before {
  content: '';
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  background: url('/assets/images/phoenix-mark-elite.png') center / contain no-repeat;
}
footer::after,
.footer::after,
.site-footer::after {
  content: 'Phoenix Rising';
  display: block;
  font-family: var(--pr-serif);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pr-cream);
  font-style: normal;
  margin-top: 8px;
}

.site-footer-inner,
.site-footer-bottom {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(140px, .7fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  text-align: left;
}
.site-footer-brand {
  position: relative;
  padding-left: 58px;
}
.site-footer-brand::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: url('/assets/images/phoenix-mark-elite.png') center / contain no-repeat;
}
.site-footer-name {
  font-family: var(--pr-serif);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pr-cream);
  font-size: 1.05rem;
  line-height: 1.1;
}
.site-footer-tagline,
.site-footer-heading {
  color: var(--pr-gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 600;
}
.site-footer-desc {
  margin: 16px 0 14px;
  max-width: 34ch;
  color: rgba(242,230,204,.82) !important;
  line-height: 1.65;
}
footer.has-structured-footer p,
.footer.has-structured-footer p,
.site-footer.has-structured-footer p {
  color: rgba(242,230,204,.82) !important;
}
.site-footer-col {
  display: grid;
  gap: 10px;
}
.site-footer-col a {
  color: rgba(242,230,204,.82);
  text-decoration: none;
  font-size: .93rem;
}
.site-footer-col a:hover {
  color: var(--pr-gold);
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(201,166,106,.28);
  color: rgba(242,230,204,.72);
  font-size: .86rem;
}
.site-footer-bottom-main {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer-legal,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(242,230,204,.76);
  font-size: .8rem;
  font-family: var(--pr-sans);
  font-style: normal;
  line-height: 1.5;
}
.site-footer-legal a,
.footer-legal a {
  color: rgba(242,230,204,.82);
  text-decoration: none;
}
.site-footer-legal span,
.footer-legal span {
  color: rgba(242,230,204,.45);
}
.site-footer-legal a:hover,
.footer-legal a:hover {
  color: var(--pr-gold);
  text-decoration: underline;
}
footer.has-structured-footer,
.footer.has-structured-footer,
.site-footer.has-structured-footer {
  padding: clamp(64px, 7vw, 92px) 0 32px !important;
  text-align: left !important;
  font-style: normal !important;
}
footer.has-structured-footer::before,
footer.has-structured-footer::after,
.footer.has-structured-footer::before,
.footer.has-structured-footer::after,
.site-footer.has-structured-footer::before,
.site-footer.has-structured-footer::after {
  display: none !important;
}


.session-callout-title,
.session-alert strong,
.card h1, .card h2, .card h3,
.loading-card strong,
.detail h1, .detail h2, .detail h3 { color: var(--pr-ink) !important; }
.session-callout a,
.card a:not(.btn):not(.nav-cta),
.detail a:not(.btn):not(.nav-cta) { color: #9B6F2D !important; }

/* Book page: keep the premium dark register without turning the cover into a slab. */
body.book-page {
  background: var(--pr-cream-surface) !important;
}
body.book-page > main,
.book-page .container {
  background: var(--pr-cream-surface) !important;
}
.book-page .container {
  max-width: 1180px !important;
  padding: 0 28px 96px !important;
}
.book-page .hero {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(44px, 6vw, 84px) !important;
  margin: 0 0 56px !important;
  padding: clamp(34px, 5vw, 62px) !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 25% 52%, rgba(201,166,106,.16), transparent 34%),
    linear-gradient(135deg, #07111F 0%, #0A1929 54%, #10283D 100%) !important;
  border: 1px solid rgba(201,166,106,.32) !important;
  box-shadow: 0 32px 90px rgba(10,25,41,.18) !important;
}
.book-page .hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 22px !important;
  border: 1px solid rgba(201,166,106,.18) !important;
  pointer-events: none !important;
}
.book-page .book-cover-wrap {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, 320px) !important;
  max-width: 320px !important;
  justify-self: center !important;
}
.book-page .book-cover {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border: 1px solid rgba(201,166,106,.46) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.48) !important;
}
.book-page .book-caption {
  max-width: 300px !important;
  margin: 16px auto 0 !important;
  color: rgba(242,230,204,.78) !important;
  text-align: center !important;
  letter-spacing: .12em !important;
}
.book-page .hero > div:last-child {
  position: relative !important;
  z-index: 1 !important;
  max-width: 560px !important;
}
.book-page .hero h1 {
  font-size: clamp(2.7rem, 5.2vw, 5rem) !important;
  line-height: .98 !important;
  letter-spacing: 0 !important;
  margin-bottom: 22px !important;
}
.book-page .hero .subhead {
  max-width: 640px !important;
  color: rgba(242,230,204,.82) !important;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem) !important;
}
.book-page .body-prose {
  max-width: 860px !important;
  margin: 0 auto !important;
}
.book-page .form-wrap {
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 780px) {
  body.book-page > main,
  .book-page .container { background: var(--pr-cream-surface) !important; }
  .book-page .hero {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 30px 22px 34px !important;
    text-align: left !important;
  }
  .book-page .book-cover-wrap {
    width: min(100%, 280px) !important;
    max-width: 280px !important;
    order: -1 !important;
  }
  .book-page .hero h1 { font-size: clamp(2.45rem, 12vw, 3.7rem) !important; }
}

/* Admin enters the same room without changing its information density. */
.admin-nav {
  background: rgba(10, 25, 41, .985) !important;
  border-bottom-color: rgba(201, 166, 106, .34) !important;
}
.admin-tabs a,
.admin-user,
.admin-user a { color: rgba(242, 230, 204, .84) !important; }
.admin-tabs a.active,
.admin-tabs a:hover,
.admin-user a:hover { color: var(--pr-gold) !important; }
.admin-nav .brand-name,
.admin-nav .brand span { color: var(--pr-cream) !important; }
.admin-nav .brand > span:last-child { color: var(--pr-gold) !important; }

/* Phase AG transparent hero asset integration. */
.hero-visual .hero-phoenix,
.hero-mark.hero-phoenix {
  width: min(100%, 690px, calc(100vw - 80px)) !important;
  border-radius: 0 !important;
  mix-blend-mode: screen;
  opacity: 1 !important;
  filter: drop-shadow(0 38px 86px rgba(0,0,0,.34)) saturate(1.08) !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
@media (max-width: 900px) {
  .hero-visual .hero-phoenix,
  .hero-mark.hero-phoenix { width: min(100%, 420px, calc(100vw - 52px)) !important; }
}

/* Phase AH Batch 1: public premium redesign layer. */
body.phase-ah {
  --navy: #0A1929;
  --navy-deep: #06121E;
  --gold: #C9A66A;
  --gold-bright: #E2C485;
  --cream: #F2E6CC;
  --surface: #F7F1E6;
  --ink: #0E1B2A;
  --ink-muted: #4A5667;
  --line: rgba(201,166,106,.35);
  background: var(--surface) !important;
  color: var(--ink) !important;
}
body.phase-ah > main,
body.phase-ah .container,
body.phase-ah .main,
body.phase-ah .page-shell {
  background: var(--surface) !important;
}
body.phase-ah :focus-visible {
  outline: 2px solid var(--gold) !important;
  outline-offset: 2px !important;
}
body.phase-ah .hero,
body.phase-ah .page-header,
body.phase-ah .member-welcome,
body.phase-ah .next-session,
body.phase-ah .hero-section,
body.phase-ah .empty-subscribe,
body.phase-ah .closing,
body.phase-ah .sent {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(52% 70% at 78% 26%, rgba(31, 60, 88, .76), transparent 58%),
    linear-gradient(135deg, var(--navy) 0%, #0E2237 56%, var(--navy-deep) 100%) !important;
  color: var(--cream) !important;
  border-color: var(--line) !important;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border-radius: 0 !important;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 48px)) !important;
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 48px)) !important;
}
body.phase-ah .hero::before,
body.phase-ah .page-header::before,
body.phase-ah .next-session::before,
body.phase-ah .empty-subscribe::before,
body.phase-ah .closing::before {
  content: '' !important;
  position: absolute !important;
  inset: auto -150px -190px auto !important;
  width: 520px !important;
  height: 520px !important;
  border: 1px solid rgba(201,166,106,.13) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}
body.phase-ah .hero::after,
body.phase-ah .page-header::after,
body.phase-ah .next-session::after,
body.phase-ah .empty-subscribe::after,
body.phase-ah .closing::after {
  content: '' !important;
  position: absolute !important;
  inset: 28px !important;
  border: 1px solid rgba(201,166,106,.16) !important;
  pointer-events: none !important;
}
body.phase-ah .hero > *,
body.phase-ah .page-header > *,
body.phase-ah .next-session > *,
body.phase-ah .empty-subscribe > *,
body.phase-ah .closing > * {
  position: relative !important;
  z-index: 1 !important;
}
body.phase-ah h1,
body.phase-ah .hero-h1,
body.phase-ah .page-h1 {
  font-family: var(--pr-serif) !important;
  font-weight: 500 !important;
  font-size: clamp(2.75rem, 6vw, 4.5rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.01em !important;
}
body.phase-ah h2,
body.phase-ah .section-h2,
body.phase-ah .form-intro-h2,
body.phase-ah .paths-h2,
body.phase-ah .empty-policy-h2,
body.phase-ah .empty-teaser-h2,
body.phase-ah .empty-subscribe-h2,
body.phase-ah .closing-h2 {
  font-family: var(--pr-serif) !important;
  font-weight: 500 !important;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem) !important;
  line-height: 1.1 !important;
  color: inherit;
}
body.phase-ah .hero h1,
body.phase-ah .hero-h1,
body.phase-ah .page-h1,
body.phase-ah .page-header h1,
body.phase-ah .empty-subscribe h2,
body.phase-ah .closing h2,
body.phase-ah .closing-pull {
  color: var(--cream) !important;
}
body.phase-ah em { color: var(--gold) !important; }
body.phase-ah p,
body.phase-ah .section-sub,
body.phase-ah .page-intro,
body.phase-ah .hero-sub,
body.phase-ah .hero-prose,
body.phase-ah .hero-intro,
body.phase-ah .intent-prose,
body.phase-ah .empty-policy-prose,
body.phase-ah .empty-teaser-sub,
body.phase-ah .contact-card-helper,
body.phase-ah .path-card-body,
body.phase-ah .speaker-bio,
body.phase-ah .speaker-hurdle-text,
body.phase-ah .events-empty p,
body.phase-ah .member-events p {
  color: var(--ink-muted) !important;
}
body.phase-ah .hero p,
body.phase-ah .page-header p,
body.phase-ah .empty-subscribe p,
body.phase-ah .closing p,
body.phase-ah .next-session p {
  color: var(--pr-cream) !important;
}
body.phase-ah :is(.hero-sub, .hero-intro, .hero-intro p, .page-header .page-intro, .page-header .page-intro p, .hero-prose, .hero-prose p) {
  font-family: var(--pr-sans) !important;
  font-style: normal !important;
  font-size: clamp(1rem, 1.18vw, 1.125rem) !important;
  line-height: 1.6 !important;
  color: var(--pr-cream) !important;
}
body.phase-ah .hero-sub {
  max-width: 690px !important;
}
body.phase-ah .section-eyebrow,
body.phase-ah .hero-eyebrow,
body.phase-ah .page-eyebrow,
body.phase-ah .paths-eyebrow,
body.phase-ah .empty-teaser-eyebrow,
body.phase-ah .empty-subscribe-eyebrow,
body.phase-ah .contact-card-label,
body.phase-ah .intent-label,
body.phase-ah .form-intro-eyebrow {
  color: #7A541F !important;
  letter-spacing: .2em !important;
}
body.phase-ah .section-eyebrow::before,
body.phase-ah .hero-eyebrow::before,
body.phase-ah .page-eyebrow::before,
body.phase-ah .paths-eyebrow::before,
body.phase-ah .empty-teaser-eyebrow::before,
body.phase-ah .empty-subscribe-eyebrow::before {
  background: #7A541F !important;
}
body.phase-ah .hero .section-eyebrow,
body.phase-ah .hero .hero-eyebrow,
body.phase-ah .hero .page-eyebrow,
body.phase-ah .page-header .section-eyebrow,
body.phase-ah .page-header .hero-eyebrow,
body.phase-ah .page-header .page-eyebrow,
body.phase-ah .origin .section-eyebrow,
body.phase-ah .horizon .section-eyebrow,
body.phase-ah .promise .section-eyebrow,
body.phase-ah .insights .section-eyebrow,
body.phase-ah .empty-policy .section-eyebrow,
body.phase-ah .empty-policy-label,
body.phase-ah .ah-events-standard .section-eyebrow,
body.phase-ah .empty-subscribe .section-eyebrow,
body.phase-ah .closing .section-eyebrow {
  color: var(--gold) !important;
}
body.phase-ah .hero .section-eyebrow::before,
body.phase-ah .hero .hero-eyebrow::before,
body.phase-ah .hero .page-eyebrow::before,
body.phase-ah .page-header .section-eyebrow::before,
body.phase-ah .page-header .hero-eyebrow::before,
body.phase-ah .page-header .page-eyebrow::before,
body.phase-ah .origin .section-eyebrow::before,
body.phase-ah .horizon .section-eyebrow::before,
body.phase-ah .promise .section-eyebrow::before,
body.phase-ah .insights .section-eyebrow::before,
body.phase-ah .empty-policy .section-eyebrow::before,
body.phase-ah .ah-events-standard .section-eyebrow::before,
body.phase-ah .empty-subscribe .section-eyebrow::before,
body.phase-ah .closing .section-eyebrow::before {
  background: var(--gold) !important;
}
body.phase-ah .standard-section,
body.phase-ah .ah-entity-section,
body.phase-ah .ah-faq-section,
body.phase-ah .events-empty,
body.phase-ah .ah-events-kinds,
body.phase-ah .member-events,
body.phase-ah .rsvp-panel,
body.phase-ah .empty-policy,
body.phase-ah .empty-teaser,
body.phase-ah .contact-card-section,
body.phase-ah .paths,
body.phase-ah .intent,
body.phase-ah .faq-section,
body.phase-ah .form-section,
body.phase-ah .body-prose,
body.phase-ah .form-wrap {
  background: var(--surface) !important;
}
body.phase-ah .ah-section-inner {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}
body.phase-ah .ah-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}
body.phase-ah .ah-copy-stack p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 18px;
}
body.phase-ah .ah-entity-section,
body.phase-ah .ah-faq-section,
body.phase-ah .ah-events-kinds,
body.phase-ah .ah-events-standard {
  padding: 96px 0;
}
body.phase-ah .ah-events-kinds {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}
body.phase-ah .origin,
body.phase-ah .horizon,
body.phase-ah .promise,
body.phase-ah .insights,
body.phase-ah .empty-policy,
body.phase-ah .ah-events-standard {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 8% 92%, rgba(201,166,106,.12), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%) !important;
  color: var(--cream) !important;
}
body.phase-ah .origin::before,
body.phase-ah .horizon::before,
body.phase-ah .promise::before,
body.phase-ah .insights::before,
body.phase-ah .empty-policy::before,
body.phase-ah .ah-events-standard::before {
  content: '' !important;
  position: absolute !important;
  inset: 50% max(24px, calc((100vw - 1280px) / 2 + 48px)) auto auto !important;
  width: min(32vw, 420px) !important;
  aspect-ratio: 1 !important;
  transform: translateY(-50%) !important;
  border: 1px solid rgba(201,166,106,.18) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}
body.phase-ah .origin::after,
body.phase-ah .horizon::after,
body.phase-ah .promise::after,
body.phase-ah .insights::after,
body.phase-ah .empty-policy::after,
body.phase-ah .ah-events-standard::after {
  content: '' !important;
  position: absolute !important;
  inset: 50% max(64px, calc((100vw - 1280px) / 2 + 118px)) auto auto !important;
  width: min(18vw, 230px) !important;
  aspect-ratio: 1 !important;
  transform: translateY(-50%) !important;
  border: 1px solid rgba(201,166,106,.22) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}
body.phase-ah .origin > *,
body.phase-ah .horizon > *,
body.phase-ah .promise > *,
body.phase-ah .insights > *,
body.phase-ah .empty-policy > *,
body.phase-ah .ah-events-standard > * {
  position: relative;
  z-index: 1;
}
body.phase-ah .origin p,
body.phase-ah .horizon p,
body.phase-ah .promise p,
body.phase-ah .insights p,
body.phase-ah .empty-policy p,
body.phase-ah .ah-events-standard p {
  color: rgba(242,230,204,.78) !important;
}
body.phase-ah .promise-text,
body.phase-ah .promise-label {
  color: var(--cream) !important;
}
body.phase-ah .promise-text em {
  color: var(--gold-bright) !important;
}
body.phase-ah .insights {
  grid-template-columns: minmax(0, .82fr) minmax(220px, .55fr) !important;
}
body.phase-ah .insights > div:last-child {
  min-height: 260px;
  border: 1px solid rgba(201,166,106,.22);
  background:
    radial-gradient(circle at center, rgba(201,166,106,.13), transparent 38%),
    linear-gradient(135deg, rgba(242,230,204,.04), rgba(242,230,204,.01));
}
body.phase-ah .insights-cta {
  color: var(--gold-bright) !important;
  border-color: var(--gold-bright) !important;
  background: rgba(201,166,106,.08) !important;
}
body.phase-ah .card,
body.phase-ah .lineup-card,
body.phase-ah .pillar-card,
body.phase-ah .format-card,
body.phase-ah .session-row,
body.phase-ah .speaker-body,
body.phase-ah .speaker-talk,
body.phase-ah .speaker-hurdle,
body.phase-ah .event-card,
body.phase-ah .hero-card,
body.phase-ah .faq-item,
body.phase-ah .path-card,
body.phase-ah .teaser-card,
body.phase-ah .contact-card,
body.phase-ah .form-group,
body.phase-ah .events-empty,
body.phase-ah .rsvp-panel,
body.phase-ah .empty-teaser,
body.phase-ah .form-wrap {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 24px 70px rgba(10,25,41,.06) !important;
}
body.phase-ah .hero-card {
  background: var(--navy-deep) !important;
}
body.phase-ah .hero-card p {
  color: var(--cream) !important;
}
body.phase-ah .ah-events-standard {
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 48px));
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 48px));
}
body.phase-ah .ah-events-standard p {
  max-width: 64ch;
  font-size: 1.08rem;
  line-height: 1.68;
}
body.phase-ah .ah-numeral,
body.phase-ah .pillar-numeral,
body.phase-ah .path-card-label,
body.phase-ah .teaser-card-type {
  font-family: var(--pr-serif);
  font-style: italic;
  color: var(--gold) !important;
}
body.phase-ah .ah-faq-list {
  border-top: 1px solid var(--line);
}
body.phase-ah .ah-faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
body.phase-ah .ah-faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-weight: 600;
  color: var(--ink);
}
body.phase-ah .ah-faq-list summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}
body.phase-ah .ah-faq-list details[open] summary::after { content: '-'; }
body.phase-ah .ah-faq-list p {
  max-width: 72ch;
  margin-top: 12px;
}
body.phase-ah .speaker-portrait img,
body.phase-ah .contact-portrait img {
  object-fit: cover !important;
  object-position: 50% 28% !important;
  border: 1px solid var(--gold) !important;
}
body.phase-ah .contact-portrait {
  border-color: var(--gold) !important;
}
body.phase-ah .contact-card-email {
  font-size: clamp(1.08rem, 4.6vw, 3rem) !important;
  overflow-wrap: anywhere;
}
body.phase-ah.ah-contact .contact-card-email,
body.phase-ah .contact-card-email {
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
  line-height: 1.12 !important;
}
body.phase-ah .book-page .book-cover,
body.phase-ah.ah-book .book-cover {
  aspect-ratio: .72 !important;
  object-fit: cover !important;
  object-position: center !important;
}
body.phase-ah.ah-home .hero {
  min-height: 0 !important;
  max-height: none !important;
  padding-top: clamp(48px, 6.5vh, 54px) !important;
  padding-bottom: clamp(18px, 2.6vh, 28px) !important;
  align-items: start !important;
  gap: clamp(22px, 3vw, 42px) !important;
  grid-template-rows: auto auto !important;
}
body.phase-ah.ah-home .hero-mark.hero-phoenix {
  width: min(100%, 390px, calc(41vw - 58px)) !important;
  max-width: calc(100vw - 72px) !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  display: block !important;
}
body.phase-ah.ah-home .hero-content {
  padding-top: 0 !important;
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
}
body.phase-ah.ah-home .hero-h1 {
  font-size: clamp(2.65rem, 4.25vw, 3.95rem) !important;
  line-height: .98 !important;
}
body.phase-ah.ah-home .hero-h1 br {
  display: none;
}
body.phase-ah.ah-home .hero-sub {
  font-size: clamp(1rem, 1.18vw, 1.125rem) !important;
  line-height: 1.6 !important;
  max-width: 690px !important;
  margin-bottom: 22px !important;
}
body.phase-ah.ah-home .hero-cta-row {
  margin-top: 18px !important;
  margin-bottom: 20px !important;
}
body.phase-ah.ah-home .hero-meta {
  padding-top: 16px !important;
  gap: 28px !important;
}
body.phase-ah.ah-home .next-session-card,
body.phase-ah.ah-home .next-session {
  margin-top: clamp(8px, 2vh, 18px) !important;
}
body.phase-ah.ah-home .hero-visual {
  gap: clamp(14px, 1.8vw, 24px) !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: min(100%, 440px, calc(100vw - 56px)) !important;
  justify-self: center !important;
  overflow: visible !important;
}
body.phase-ah.ah-home .session-callout {
  padding: 14px 20px !important;
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: start !important;
  justify-self: center !important;
}
body.phase-ah.ah-home .session-callout-title {
  font-size: 16px !important;
  line-height: 1.2 !important;
}
body.phase-ah.ah-home .session-callout-link {
  color: #7A541F !important;
  border-bottom-color: #7A541F !important;
}
@media (max-width: 1400px) and (min-width: 901px) {
  body.phase-ah.ah-home .hero-mark.hero-phoenix {
    width: min(100%, 360px, calc(40vw - 52px)) !important;
  }
}
body.phase-ah .footer,
body.phase-ah footer {
  background: var(--navy-deep) !important;
}
@media (max-width: 760px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }
  .site-footer-bottom {
    flex-direction: column;
  }
  body.phase-ah .origin::before,
  body.phase-ah .horizon::before,
  body.phase-ah .promise::before,
  body.phase-ah .insights::before,
  body.phase-ah .empty-policy::before,
  body.phase-ah .ah-events-standard::before {
    opacity: .36;
    inset: auto -110px 28px auto !important;
    width: 300px !important;
    transform: none !important;
  }
  body.phase-ah .origin::after,
  body.phase-ah .horizon::after,
  body.phase-ah .promise::after,
  body.phase-ah .insights::after,
  body.phase-ah .empty-policy::after,
  body.phase-ah .ah-events-standard::after {
    display: none !important;
  }
  body.phase-ah .insights {
    grid-template-columns: 1fr !important;
  }
  body.phase-ah .insights > div:last-child {
    min-height: 170px;
  }
}
@media (max-width: 900px) {
  body.phase-ah .ah-section-inner {
    width: min(100% - 48px, 1280px);
  }
  body.phase-ah .ah-split,
  body.phase-ah .hero,
  body.phase-ah .page-header,
  body.phase-ah .events-grid,
  body.phase-ah .paths-grid,
  body.phase-ah .faq-grid,
  body.phase-ah .teaser-grid,
  body.phase-ah .contact-card {
    grid-template-columns: 1fr !important;
  }
  body.phase-ah .ah-entity-section,
  body.phase-ah .ah-faq-section,
  body.phase-ah .ah-events-kinds,
  body.phase-ah .ah-events-standard {
    padding: 64px 0;
  }
  body.phase-ah .ah-events-kinds {
    width: min(100% - 48px, 1280px);
  }
  body.phase-ah.ah-home .hero {
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    padding-top: 20px !important;
    padding-bottom: 34px !important;
    gap: 18px !important;
  }
  body.phase-ah.ah-home .hero-content {
    display: contents !important;
  }
  body.phase-ah.ah-home .hero-visual { order: 1 !important; }
  body.phase-ah.ah-home .hero-eyebrow { order: 2 !important; margin-bottom: 0 !important; }
  body.phase-ah.ah-home .hero-h1 { order: 3 !important; }
  body.phase-ah.ah-home .hero-sub { order: 4 !important; margin-bottom: 0 !important; }
  body.phase-ah.ah-home .hero-cta-row { order: 5 !important; margin: 0 !important; }
  body.phase-ah.ah-home .session-callout { order: 6 !important; width: 100% !important; max-width: none !important; }
  body.phase-ah.ah-home .hero-meta { order: 7 !important; width: 100% !important; }
  body.phase-ah.ah-home .hero-mark.hero-phoenix {
    width: min(100%, clamp(200px, 58vw, 260px), calc(100vw - 80px)) !important;
  }
  body.phase-ah.ah-home .hero-h1 {
    font-size: clamp(1.95rem, 9.4vw, 2.5rem) !important;
    line-height: 1 !important;
  }
  body.phase-ah.ah-home .hero-sub {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}

/* Phase AH Batch 2: member pages and dark-card system */
body.member-page > main,
body.member-page main#app,
body.member-page .for-edit,
body.member-page .for-public {
  background:
    linear-gradient(180deg, rgba(10,25,41,.96) 0, rgba(10,25,41,.96) 250px, var(--pr-cream-surface) 250px, var(--pr-cream-surface) 100%) !important;
}
body.member-page :is(.hero, .page-header) {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 64px)) !important;
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 64px)) !important;
}
body.member-page :is(.hero, .page-header) :is(h1, h2, .page-h1) {
  color: var(--pr-cream) !important;
}
body.member-page :is(.hero, .page-header) :is(p, .sub) {
  color: rgba(242,230,204,.82) !important;
}
body.member-page :is(.dashboard, .library, .wrap, .profile-grid, .detail) {
  position: relative;
  z-index: 1;
}

/* Any card living on a dark section must stay dark, never a cream box. */
body.phase-ah :is(.hero, .page-hero, .member-hero, .dashboard-hero, .library-hero, .promise, .insights, .empty-policy, .horizon, .origin, .ah-events-standard, .page-header) :is(.card, .hero-card, .session-callout, .pull-quote, .callout, .sidebar-card, .detail-card) {
  background: linear-gradient(145deg, rgba(6,18,30,.96), rgba(10,25,41,.9)) !important;
  border: 1px solid rgba(201,166,106,.46) !important;
  border-left-color: rgba(201,166,106,.62) !important;
  color: var(--pr-cream) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,.18) !important;
}
body.phase-ah :is(.hero, .page-hero, .member-hero, .dashboard-hero, .library-hero, .promise, .insights, .empty-policy, .horizon, .origin, .ah-events-standard, .page-header) :is(.card, .hero-card, .session-callout, .pull-quote, .callout, .sidebar-card, .detail-card) :is(h1, h2, h3, .session-callout-title, .sidebar-title, .card-title) {
  color: var(--pr-cream) !important;
}
body.phase-ah :is(.hero, .page-hero, .member-hero, .dashboard-hero, .library-hero, .promise, .insights, .empty-policy, .horizon, .origin, .ah-events-standard, .page-header) :is(.card, .hero-card, .session-callout, .pull-quote, .callout, .sidebar-card, .detail-card) :is(p, .muted, .meta, .sub, .card-sub, .sidebar-meta) {
  color: rgba(242,230,204,.8) !important;
}
body.phase-ah :is(.hero, .page-hero, .member-hero, .dashboard-hero, .library-hero, .promise, .insights, .empty-policy, .horizon, .origin, .ah-events-standard, .page-header) :is(.card, .hero-card, .session-callout, .pull-quote, .callout, .sidebar-card, .detail-card) :is(.eyebrow, .card-eyebrow, .session-callout-eyebrow) {
  color: var(--pr-gold) !important;
}
body.phase-ah :is(.hero, .page-hero, .member-hero, .dashboard-hero, .library-hero, .promise, .insights, .empty-policy, .horizon, .origin, .ah-events-standard, .page-header) :is(.card, .hero-card, .session-callout, .pull-quote, .callout, .sidebar-card, .detail-card) .btn.secondary {
  color: var(--pr-gold) !important;
  border-color: rgba(201,166,106,.72) !important;
}

body.ah-dashboard .dashboard {
  padding-top: clamp(34px, 4vw, 56px) !important;
}
body.ah-dashboard .dashboard .card,
body.ah-sessions .library .card,
body.ah-members .grid .card,
body.ah-members .detail-card,
body.ah-profile .profile-grid .card,
body.ah-profile .sidebar-card,
body.ah-profile .public-card,
body.ah-community .community .card {
  background: var(--pr-cream-surface) !important;
  border: 1px solid rgba(201,166,106,.38) !important;
  box-shadow: 0 22px 60px rgba(10,25,41,.08) !important;
}
body.ah-dashboard .dashboard .card.callout {
  background: var(--pr-navy-deep, #06121E) !important;
  border: 1px solid rgba(201,166,106,.5) !important;
  border-left: 3px solid var(--pr-gold) !important;
  color: var(--pr-cream) !important;
}
body.ah-dashboard .dashboard .card.callout :is(h2, h3) { color: var(--pr-cream) !important; }
body.ah-dashboard .dashboard .card.callout :is(p, .muted, .meta) { color: rgba(242,230,204,.82) !important; }

body.ah-sessions .library {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}
body.ah-sessions .session-library-card {
  position: relative;
  padding-top: 32px !important;
  min-height: 330px;
}
body.ah-sessions .session-speakers {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 18px;
}
body.ah-sessions .session-speaker-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--pr-gold);
  object-fit: cover;
  object-position: 50% 26%;
  background: var(--pr-navy);
  color: var(--pr-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pr-serif);
  font-size: 1rem;
  margin-right: -10px;
  box-shadow: 0 0 0 3px var(--pr-cream-surface);
}

body.ah-members .hero {
  background:
    radial-gradient(circle at 84% 16%, rgba(201,166,106,.16), transparent 32%),
    linear-gradient(135deg, var(--pr-navy), var(--pr-navy-2) 62%, var(--pr-navy-3)) !important;
}
body.ah-members .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
body.ah-members .avatar,
body.ah-profile .headshot-preview,
body.ah-profile .public-headshot {
  border: 1px solid var(--pr-gold) !important;
  background: linear-gradient(145deg, rgba(10,25,41,.96), rgba(14,34,55,.9)) !important;
  color: var(--pr-gold) !important;
}
body.ah-members img.avatar,
body.ah-profile :is(.headshot-preview img, .public-headshot img) {
  object-fit: cover !important;
  object-position: 50% 24% !important;
}
body.ah-members .founding-badge,
body.ah-profile .founding-badge {
  background: rgba(201,166,106,.14) !important;
  border-color: rgba(201,166,106,.58) !important;
  color: #7A541F !important;
}

body.ah-profile .profile-grid {
  max-width: 1320px !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .45fr) !important;
  gap: clamp(28px, 4vw, 54px) !important;
}
body.ah-profile .profile-edit-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
body.ah-profile .profile-edit-stack > .card,
body.ah-profile .profile-edit-stack > .privacy-card {
  margin-bottom: 0 !important;
}
body.ah-profile .profile-edit-stack > #council-resources-card,
body.ah-profile .profile-edit-stack > .privacy-card {
  grid-column: 1 / -1;
}
body.ah-profile .profile-edit-stack > .card:nth-of-type(2),
body.ah-profile .profile-edit-stack > .card:nth-of-type(5) {
  grid-column: 1 / -1;
}
body.ah-profile .field-row {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
body.ah-profile .card,
body.ah-profile .sidebar-card {
  padding: clamp(24px, 3vw, 34px) !important;
}
body.ah-profile .save-bar {
  max-width: 1320px !important;
  width: calc(100% - 48px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border: 1px solid rgba(201,166,106,.36) !important;
  background: rgba(6,18,30,.96) !important;
  color: var(--pr-cream) !important;
}
body.ah-profile .save-bar-msg { color: rgba(242,230,204,.78) !important; }
body.ah-profile .save-bar-msg em { color: var(--pr-gold) !important; }
body.ah-profile input::placeholder,
body.ah-profile textarea::placeholder,
body.ah-members input::placeholder {
  color: #4A5667 !important;
  opacity: 1 !important;
}

body.ah-community .hero .card.callout {
  background: linear-gradient(145deg, rgba(6,18,30,.96), rgba(10,25,41,.9)) !important;
  color: var(--pr-cream) !important;
}
body.ah-community .hero .card.callout :is(h2, p, .sub) {
  color: var(--pr-cream) !important;
}
body.ah-community .whatsapp-panel,
body.ah-community .join-box,
body.ah-community .norm-card,
body.ah-community .privacy-note {
  background: linear-gradient(145deg, rgba(6,18,30,.96), rgba(10,25,41,.9)) !important;
  border-color: rgba(201,166,106,.48) !important;
  color: var(--pr-cream) !important;
}
body.ah-community :is(.whatsapp-panel, .join-box, .norm-card, .privacy-note) :is(h2, h3, p) {
  color: var(--pr-cream) !important;
}
body.ah-community .room-card p {
  color: var(--pr-muted) !important;
}

/* Phase AH Batch 2 corrections: public carryovers */
body.phase-ah .ah-entity-section {
  position: relative !important;
  overflow: hidden !important;
}
body.phase-ah .geometry-motif {
  position: absolute !important;
  width: min(42vw, 560px) !important;
  aspect-ratio: 1 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}
body.phase-ah .geometry-motif svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}
body.phase-ah .geometry-motif-cream {
  color: #5A3F24 !important;
  opacity: .42 !important;
  left: max(18px, calc((100vw - 1280px) / 2 + 18px)) !important;
  bottom: clamp(18px, 5vw, 72px) !important;
  transform: translateX(-10%) !important;
}
body.phase-ah .geometry-motif-dark {
  color: #C9A66A !important;
  opacity: .12 !important;
}
body.phase-ah .geometry-motif-origin {
  width: min(36vw, 500px) !important;
  right: max(24px, calc((100vw - 1280px) / 2 + 42px)) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
body.phase-ah .geometry-motif-insights {
  width: min(36vw, 500px) !important;
  left: max(22px, calc((100vw - 1280px) / 2 + 34px)) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: url('/assets/brand/geometry-motif.svg') center / contain no-repeat !important;
}
body.phase-ah :is(.ah-entity-section, .origin, .empty-policy) > :not(.geometry-motif) {
  position: relative !important;
  z-index: 1 !important;
}
body.phase-ah :is(.ah-entity-section, .origin, .empty-policy)::before {
  display: none !important;
}
body.phase-ah :is(.horizon, .promise, .insights, .ah-events-standard)::before {
  background: url('/assets/brand/geometry-motif.svg') center / contain no-repeat !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: .12 !important;
}
body.phase-ah :is(.origin, .horizon, .promise, .insights, .empty-policy, .ah-events-standard) :is(.origin-anchor, blockquote, .pull-quote, .quote-card) {
  background: linear-gradient(145deg, rgba(6,18,30,.96), rgba(10,25,41,.88)) !important;
  border: 1px solid rgba(201,166,106,.5) !important;
  border-left: 3px solid var(--gold) !important;
  color: var(--cream) !important;
  box-shadow: none !important;
  padding: clamp(24px, 3vw, 34px) !important;
}
body.phase-ah :is(.origin, .horizon, .promise, .insights, .empty-policy, .ah-events-standard) :is(.origin-anchor, blockquote, .pull-quote, .quote-card) :is(p, div, span) {
  color: rgba(242,230,204,.84) !important;
}
body.phase-ah :is(.origin, .horizon, .promise, .insights, .empty-policy, .ah-events-standard) .origin-anchor-quote {
  color: var(--cream) !important;
}
body.phase-ah :is(.origin, .horizon, .promise, .insights, .empty-policy, .ah-events-standard) .origin-anchor-meta {
  color: var(--gold-bright) !important;
}
body.phase-ah .pillar-card {
  padding: 32px 32px 34px !important;
}
body.phase-ah .path-card {
  padding: 32px !important;
}
body.phase-ah .member-status-card,
body.phase-ah .next-session-card {
  background: linear-gradient(145deg, rgba(6,18,30,.96), rgba(10,25,41,.88)) !important;
  border: 1px solid rgba(201,166,106,.5) !important;
  border-left: 3px solid var(--gold) !important;
  color: var(--cream) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.18) !important;
}
body.phase-ah .member-status-card {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}
body.phase-ah .member-status-avatar,
body.phase-ah .session-speaker-avatar {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(201,166,106,.8) !important;
  background: rgba(242,230,204,.08) !important;
  color: var(--gold) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  object-fit: cover !important;
  object-position: center 25% !important;
  overflow: hidden !important;
  flex: 0 0 auto !important;
  font-family: var(--pr-serif) !important;
  font-size: 1.35rem !important;
}
body.phase-ah .member-status-avatar img,
body.phase-ah .session-speaker-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 25% !important;
}
body.phase-ah .next-session-speaker-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 18px 0 12px !important;
}
body.phase-ah .next-session-speakers,
body.phase-ah .next-session-time,
body.phase-ah .member-status-since {
  color: rgba(242,230,204,.78) !important;
}
body.phase-ah .member-status-name,
body.phase-ah .next-session-title {
  color: var(--cream) !important;
}
body.phase-ah .book-council-signature {
  position: relative !important;
  margin: clamp(18px, 4vw, 34px) 0 0 auto !important;
  max-width: 520px !important;
  text-align: right !important;
  font-family: var(--pr-serif) !important;
  font-style: italic !important;
  font-size: clamp(2rem, 4.4vw, 4.6rem) !important;
  line-height: 1 !important;
  color: var(--gold) !important;
  opacity: .96 !important;
}
body.phase-ah .book-council-signature::before {
  content: "- " !important;
}
body.phase-ah .pillar-numeral {
  margin-bottom: 20px !important;
}
@media (max-width: 760px) {
  body.phase-ah .geometry-motif {
    width: min(82vw, 340px) !important;
  }
  body.phase-ah .geometry-motif-cream {
    left: -82px !important;
    bottom: 8px !important;
  }
  body.phase-ah .geometry-motif-origin {
    right: -96px !important;
    top: auto !important;
    bottom: 20px !important;
    transform: none !important;
  }
  body.phase-ah .geometry-motif-insights {
    left: -96px !important;
    top: 32px !important;
    transform: none !important;
  }
  body.phase-ah .member-status-card {
    align-items: flex-start !important;
  }
  body.phase-ah .member-status-avatar,
  body.phase-ah .session-speaker-avatar {
    width: 58px !important;
    height: 58px !important;
  }
  body.phase-ah .book-council-signature {
    text-align: left !important;
    max-width: 100% !important;
  }
}
body.phase-ah.ah-home .hero {
  padding-left: max(32px, calc((100vw - 1280px) / 2 + 64px)) !important;
  padding-right: max(32px, calc((100vw - 1280px) / 2 + 64px)) !important;
}
body.phase-ah.ah-home .hero::after {
  inset: 18px !important;
}
body.phase-ah.ah-contact .contact-portrait img,
body.phase-ah .contact-portrait img {
  object-position: 50% 25% !important;
}

@media (max-width: 1120px) {
  body.ah-sessions .library,
  body.ah-members .grid,
  body.ah-profile .profile-grid,
  body.ah-profile .profile-edit-stack {
    grid-template-columns: 1fr !important;
  }
  body.ah-profile .profile-edit-stack > .card {
    grid-column: auto !important;
  }
}

@media (max-width: 760px) {
  body.member-page :is(.hero, .page-header) {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  body.ah-profile .field-row {
    grid-template-columns: 1fr !important;
  }
  body.ah-sessions .session-speaker-avatar {
    width: 52px;
    height: 52px;
  }
}
