/*
 * Dr. Ritz Birah — theme.css
 * Complete design system. Loaded by functions.php.
 * Sections: Reset · Tokens · Typography · Nav · Buttons · Atoms ·
 *           Hero · Logos · Offerings · Credentials · CTA · Footer ·
 *           Speaking · Responsive
 */

/* ── RESET ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── DESIGN TOKENS ──────────────────────────────────────────────────────────── */
:root {
  --ink:           #0e0d0b;
  --cream:         #f5f0e8;
  --warm-white:    #faf8f4;
  --gold:          #b8965a;
  --gold-light:    #d4af7a;
  --sage:          #8a9e8c;
  --sage-dark:     #4a6b4e;
  --charcoal:      #2d2d2a;
  --mid:           #6b6860;
  --light:         #9a9790;
  --border:        rgba(14,13,11,0.10);
  --border-strong: rgba(14,13,11,0.18);
  --radius:        0;
  --nav-h:         72px;
  --max-w:         1400px;
  --pad-x:         80px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────────── */
.section-label {
  font-size: 0.67rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 24px; letter-spacing: -0.01em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────────── */
.r { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.r.animate { opacity: 0; transform: translateY(22px); }
.r.animate.v { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ── NAV ─────────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 60px; height: var(--nav-h);
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(14,13,11,0.07); }

/* Footer nav must override the global nav rule */
nav.ft-nav {
  position: static;
  top: auto; left: auto; right: auto;
  height: auto; padding: 0;
  background: none;
  backdrop-filter: none;
  border: none;
  z-index: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  box-shadow: none;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--ink); text-decoration: none;
  letter-spacing: 0.06em; white-space: nowrap;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 0.74rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a:focus { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 10px 24px !important;
  letter-spacing: 0.1em !important;
  transition: background 0.25s !important;
}
.nav-cta:hover, .nav-cta:focus { background: var(--gold) !important; color: var(--ink) !important; }

/* ── BURGER BUTTON ───────────────────────────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
  z-index: 210;
}
.burger-bar {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] .burger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ──────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: min(320px, 85vw); height: 100%;
  background: var(--warm-white);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid var(--border);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-inner {
  display: flex; flex-direction: column;
  padding: 24px 32px 40px;
  min-height: 100%;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 8px; margin-bottom: 32px;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--gold); }

.mobile-nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  flex: 1;
}
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links li:first-child { border-top: 1px solid var(--border); }
.mobile-nav-links a {
  display: block;
  font-size: 1.05rem; font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.04em;
  color: var(--ink); text-decoration: none;
  padding: 18px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links li.current-menu-item > a,
.mobile-nav-links li.current_page_item > a { color: var(--gold); padding-left: 6px; }
.mobile-nav-links .nav-cta {
  background: none !important; color: var(--ink) !important;
  padding: 18px 0 !important; letter-spacing: 0.04em !important;
}

.mobile-menu-footer { margin-top: 40px; }
.mobile-menu-footer .btn-primary { display: block; text-align: center; width: 100%; }

/* Overlay */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(14,13,11,0.45);
  z-index: 290;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; }

/* Lock scroll when menu open */
body.menu-open { overflow: hidden; }

/* ── WORDPRESS ADMIN BAR OFFSETS ─────────────────────────────────────────────── */
.admin-bar #main-nav { top: 32px; }
.admin-bar .mobile-menu { top: 32px; }
.admin-bar .mobile-menu-overlay { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #main-nav { top: 46px; }
  .admin-bar .mobile-menu { top: 46px; }
  .admin-bar .mobile-menu-overlay { top: 46px; }
}
@media screen and (max-width: 600px) {
  /* On small screens WP resets html margin-top to 0 but admin bar remains
     fixed at top:0 z-index 99999 — keep nav below it */
  .admin-bar #main-nav { top: 46px; }
  .admin-bar .mobile-menu { top: calc(46px + var(--nav-h)); }
  .admin-bar .mobile-menu-overlay { top: 46px; }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--ink); color: var(--cream);
  text-decoration: none; padding: 14px 34px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  transition: all 0.25s; display: inline-block;
  border: none; cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus { background: var(--gold); color: var(--ink); }

.btn-outline {
  background: transparent; color: var(--ink);
  text-decoration: none; padding: 14px 34px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  border: 1px solid var(--border-strong);
  transition: all 0.25s; display: inline-block; cursor: pointer;
}
.btn-outline:hover, .btn-outline:focus { border-color: var(--gold); color: var(--gold); }

.btn-text {
  color: var(--ink); text-decoration: none;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; display: inline-block;
}
.btn-text:hover, .btn-text:focus { color: var(--gold); border-color: var(--gold); }

.btn-text-gold {
  color: var(--gold-light); text-decoration: none;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid rgba(212,175,122,0.4); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; display: inline-block; margin-top: 16px;
}
.btn-text-gold:hover, .btn-text-gold:focus { color: white; border-color: white; }

.btn-secondary {
  color: var(--ink); text-decoration: none;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus { color: var(--gold); border-color: var(--gold); }

/* ── HERO (shared) ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 80px) 64px 80px 80px;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute; right: 0; top: 8%; bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-strong), transparent);
}
.eyebrow {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  font-weight: 300; line-height: 1.06;
  color: var(--ink); margin-bottom: 32px; letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: var(--mid); line-height: 1.85; max-width: 440px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta { display: flex; gap: 36px; padding-top: 36px; border-top: 1px solid var(--border); }
.hero-meta-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 300; color: var(--ink); line-height: 1;
}
.hero-meta-label { font-size: 0.68rem; font-weight: 400; color: var(--mid); letter-spacing: 0.03em; margin-top: 4px; }

.hero-right { position: relative; overflow: hidden; background: var(--ink); min-height: 100vh; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0.88; }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,13,11,0.15) 0%, rgba(14,13,11,0.05) 40%, rgba(14,13,11,0.55) 100%);
}
.hero-image-content {
  position: relative; z-index: 2;
  height: 100%; display: flex;
  flex-direction: column; justify-content: flex-end;
  padding: 52px;
}
.hero-credential-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid rgba(212,175,122,0.35); padding: 5px 13px;
  backdrop-filter: blur(8px); background: rgba(14,13,11,0.25);
}
.hero-name-plate { border-top: 1px solid rgba(245,240,232,0.15); padding-top: 24px; }
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem; font-weight: 300; color: var(--cream); letter-spacing: 0.02em; margin-bottom: 5px;
}
.hero-title { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.5); }

/* ── LOGOS TICKER ────────────────────────────────────────────────────────────── */
.logos-section {
  background: var(--cream);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden; position: relative;
}
.logos-fade-l, .logos-fade-r {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logos-fade-l { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.logos-fade-r { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.logos-track-wrap {
  display: flex; width: max-content;
  animation: logoScroll 38s linear infinite;
}
.logos-track-wrap:hover { animation-play-state: paused; }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-track { display: flex; align-items: center; flex-shrink: 0; }
.logo-item {
  display: inline-flex; align-items: center;
  padding: 0 32px; height: 42px;
  font-size: 0.8rem; font-weight: 400;
  color: var(--mid); letter-spacing: 0.04em;
  white-space: nowrap; border-right: 1px solid var(--border);
  transition: color .2s; cursor: default;
}
.logo-item:hover { color: var(--ink); }
.logo-item.featured { color: var(--charcoal); font-weight: 600; }

/* ── OFFERINGS ───────────────────────────────────────────────────────────────── */
.offerings-section { background: var(--warm-white); padding: 120px var(--pad-x); }
.offerings-inner { max-width: var(--max-w); margin: 0 auto; }
.offerings-header { margin-bottom: 60px; }
.offerings-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.offering-card {
  background: var(--cream); padding: 48px 40px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.offering-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.offering-card:hover { background: white; }
.offering-card:hover::before { transform: scaleX(1); }
.offering-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--border-strong); line-height: 1; margin-bottom: 24px; transition: color 0.3s;
}
.offering-card:hover .offering-num { color: rgba(184,150,90,0.18); }
.offering-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  font-weight: 300; color: var(--ink); margin-bottom: 14px; line-height: 1.2;
}
.offering-title em { font-style: italic; color: var(--gold); }
.offering-desc { font-size: 0.88rem; font-weight: 300; color: var(--mid); line-height: 1.85; flex: 1; margin-bottom: 32px; }
.offering-cta { margin-top: auto; }

/* ── CREDENTIALS BAND ────────────────────────────────────────────────────────── */
.credentials-section { background: var(--sage-dark); padding: 100px var(--pad-x); }
.credentials-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.cred-left .section-label { color: rgba(245,240,232,0.5); }
.cred-left .section-label::before { background: rgba(245,240,232,0.5); }
.cred-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300; line-height: 1.15; color: var(--cream); margin-bottom: 40px;
}
.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 28px; }
.media-item {
  padding: 18px 22px; background: rgba(255,255,255,0.04);
  border-left: 2px solid transparent; transition: border-color 0.2s, background 0.2s; cursor: default;
}
.media-item:hover { border-left-color: var(--gold-light); background: rgba(255,255,255,0.07); }
.media-item-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
.media-item-name { font-size: 0.86rem; font-weight: 300; color: rgba(245,240,232,0.7); line-height: 1.4; }
.cred-right { display: flex; flex-direction: column; gap: 2px; }
.cred-quote-block { border-left: 3px solid var(--gold-light); padding: 40px 44px; background: rgba(255,255,255,0.04); margin-bottom: 2px; }
.cred-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: var(--gold-light); opacity: 0.3; line-height: 0.6; margin-bottom: 24px; }
.cred-quote-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem,1.8vw,1.65rem); font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.6; margin-bottom: 20px; }
.cred-quote-attr { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.cred-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.cred-stat { padding: 28px 20px; background: rgba(255,255,255,0.04); text-align: center; }
.cred-stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,2.5vw,2.4rem); font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 8px; }
.cred-stat-label { font-size: 0.62rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.45); }

/* Speaking credentials variant */
.sp-creds .cred-body { font-size: 0.98rem; font-weight: 300; color: rgba(245,240,232,0.65); line-height: 1.85; margin-bottom: 36px; max-width: 460px; }
.cred-list { display: flex; flex-direction: column; gap: 14px; }
.cred-item { display: flex; align-items: flex-start; gap: 14px; font-size: 0.88rem; font-weight: 300; color: rgba(245,240,232,0.75); line-height: 1.5; }
.cred-item::before { content: '✓'; color: var(--gold-light); font-weight: 600; flex-shrink: 0; }

/* ── CTA SECTION ─────────────────────────────────────────────────────────────── */
.cta-section { background: var(--cream); padding: 120px var(--pad-x); }
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,4vw,4.2rem); font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 24px; }
.cta-desc { font-size: 1rem; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
footer {
  background: var(--warm-white); padding: 72px var(--pad-x) 52px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.ft-tagline { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); margin-bottom: 24px; }
.ft-socials { display: flex; gap: 12px; margin-bottom: 32px; }
.ft-social { width: 36px; height: 36px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; color: var(--ink); text-decoration: none; transition: border-color .2s, color .2s; }
.ft-social:hover, .ft-social:focus { border-color: var(--gold); color: var(--gold); }
.ft-social svg { width: 15px; height: 15px; fill: currentColor; }
.ft-nav { display: flex; gap: 0; flex-direction: column; margin-bottom: 28px; }
.ft-nav-primary, .ft-nav ul { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 14px; list-style: none; padding: 0; }
.ft-nav-secondary { display: flex; gap: 20px; flex-wrap: wrap; }
.ft-nav-primary a, .ft-nav li a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); text-decoration: none; transition: color .2s; }
.ft-nav-primary a:hover, .ft-nav li a:hover { color: var(--gold); }
.ft-nav-secondary a { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light); text-decoration: none; transition: color .2s; }
.ft-nav-secondary a:hover { color: var(--mid); }
.ft-copy { font-size: 0.7rem; color: var(--light); display: block; margin-top: 4px; }
.ft-newsletter-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,2.4vw,2.1rem); font-weight: 300; line-height: 1.2; color: var(--ink); margin-bottom: 26px; }
.ft-newsletter-title em { font-style: italic; color: var(--gold); }
.ft-form { display: flex; flex-direction: column; gap: 10px; }
.ft-input { background: white; border: 1px solid var(--border-strong); padding: 13px 16px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 300; color: var(--ink); outline: none; transition: border-color 0.2s; width: 100%; }
.ft-input::placeholder { color: var(--light); }
.ft-input:focus { border-color: var(--gold); }
.ft-submit { background: var(--ink); color: var(--cream); border: none; padding: 14px 28px; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; width: 100%; }
.ft-submit:hover, .ft-submit:focus { background: var(--gold); color: var(--ink); }

/* ── SPEAKING — WHY SECTION ──────────────────────────────────────────────────── */
.why-section-wrap { background: var(--warm-white); }
.why-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 120px var(--pad-x); max-width: calc(var(--max-w) + var(--pad-x) * 2); margin: 0 auto; }
.why-body { font-size: 1rem; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 20px; }
.why-right { display: flex; flex-direction: column; }
.why-point { padding: 28px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: start; transition: padding-left 0.3s; cursor: default; }
.why-point:first-child { border-top: 1px solid var(--border); }
.why-point:hover { padding-left: 8px; }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--gold); padding-top: 2px; }
.why-point-title { font-size: 0.92rem; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.why-point-desc { font-size: 0.85rem; font-weight: 300; color: var(--mid); line-height: 1.7; }

/* ── SPEAKING — HERO VARIANTS ────────────────────────────────────────────────── */
.hero-speaking .hero-sub { margin-bottom: 16px; }
.hero-sub-topics { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--ink); line-height: 1; }
.stat-label { font-size: 0.7rem; font-weight: 400; color: var(--mid); letter-spacing: 0.04em; margin-top: 4px; }
.hero-image-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(184,150,90,0.18) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(138,158,140,0.12) 0%, transparent 50%), var(--ink); }
.hero-photo-wrap { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.hero-speaking .hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; opacity: 1; }
.hero-speaking .hero-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,13,11,0.92) 0%, rgba(14,13,11,0.3) 50%, rgba(14,13,11,0.15) 100%); }
.hero-speaking .hero-image-content { padding: 56px; }
.hero-quote-card { background: rgba(245,240,232,0.07); border: 1px solid rgba(184,150,90,0.3); padding: 32px 36px; margin-bottom: 36px; backdrop-filter: blur(8px); }
.hero-quote-text { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.5; margin-bottom: 16px; }
.hero-quote-attr { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }

/* ── SPEAKING — TALKS ────────────────────────────────────────────────────────── */
.talks-section { background: var(--warm-white); padding: 110px 0 0; }
.talks-header { padding: 0 var(--pad-x) 60px; max-width: calc(var(--max-w) + var(--pad-x) * 2); margin: 0 auto; }
.talks-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.talks-intro { font-size: 1rem; font-weight: 300; color: var(--mid); line-height: 1.85; }
.talks-list { display: flex; flex-direction: column; }
.talk-card { border-top: 1px solid var(--border); padding: 0 var(--pad-x); max-width: calc(var(--max-w) + var(--pad-x) * 2); margin: 0 auto; width: 100%; }
.talk-card:last-child { border-bottom: 1px solid var(--border); margin-bottom: 110px; }
.talk-header-row { display: grid; grid-template-columns: 60px 1fr 48px; gap: 28px; align-items: center; padding: 36px 0; cursor: pointer; }
.talk-header-row:hover .talk-num, .talk-header-row:hover .talk-name { color: var(--gold); }
.talk-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: rgba(14,13,11,0.15); transition: color 0.3s; line-height: 1; }
.talk-name-block { display: flex; flex-direction: column; gap: 5px; }
.talk-flag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.talk-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 400; color: var(--ink); line-height: 1.2; transition: color 0.3s; }
.talk-toggle { width: 34px; height: 34px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--mid); font-size: 1.2rem; transition: all 0.3s; flex-shrink: 0; user-select: none; }
.talk-card.open .talk-toggle { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: rotate(45deg); }
.talk-body { display: grid; grid-template-columns: 60px 1fr; gap: 28px; max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1); }
.talk-card.open .talk-body { max-height: 1200px; }
.talk-body-inner { padding-bottom: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.talk-desc { font-size: 0.97rem; font-weight: 300; color: var(--mid); line-height: 1.85; grid-column: 1 / -1; margin-bottom: 8px; }
.outcomes-title { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 14px; }
.outcomes { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.outcomes li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.87rem; font-weight: 300; color: var(--ink); line-height: 1.6; }
.outcomes li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 600; }
.talk-best { background: rgba(74,107,78,0.07); padding: 22px 24px; border-left: 2px solid var(--sage); }
.talk-best-title { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 8px; }
.talk-best-text { font-size: 0.84rem; font-weight: 300; color: var(--mid); line-height: 1.7; font-style: italic; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--sage-dark); padding: 110px var(--pad-x); }
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials-section .section-label { color: rgba(245,240,232,0.55); }
.testimonials-section .section-label::before { background: rgba(245,240,232,0.55); }
.testimonials-section .section-title { color: var(--cream); }
.testimonials-section .section-title em { color: var(--gold-light); }
.testimonials-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-bottom: 48px; }
.test-card { background: rgba(255,255,255,0.05); padding: 40px 32px; border-bottom: 2px solid transparent; transition: border-bottom-color 0.3s, background 0.3s; cursor: default; }
.test-card:hover { border-bottom-color: var(--gold-light); background: rgba(255,255,255,0.08); }
.test-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--gold-light); opacity: 0.35; line-height: 0.6; margin-bottom: 24px; display: block; }
.test-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; font-weight: 300; color: var(--cream); line-height: 1.7; margin-bottom: 28px; }
.test-role-tag { font-size: 0.72rem; font-weight: 300; color: rgba(245,240,232,0.45); letter-spacing: 0.06em; margin-top: 6px; }
.test-company { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); border: 1px solid rgba(212,175,122,0.35); padding: 4px 12px; }
.test-scroll-stack { display: flex; flex-direction: column; gap: 2px; margin-top: 2px; }
.test-scroll-card { background: rgba(255,255,255,0.04); border-left: 3px solid transparent; padding: 32px 44px; transition: border-color 0.25s; }
.test-scroll-card:hover { border-left-color: var(--gold-light); }
.test-scroll-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; font-weight: 300; color: var(--cream); line-height: 1.65; margin-bottom: 20px; }
.test-scroll-name { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-right: 12px; }
.test-scroll-role { font-size: 0.75rem; font-weight: 300; color: rgba(245,240,232,0.5); margin-right: 10px; }
.test-scroll-company { font-size: 0.75rem; font-weight: 300; color: rgba(245,240,232,0.35); }

/* ── FOCUS STYLES (Accessibility) ────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */

/* ─── FORMATS ─── */
.formats-section { background: var(--warm-white); padding: 110px 80px; }
.formats-inner { max-width: 1400px; margin: 0 auto; }
.formats-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 56px; align-items: end; }
.formats-desc { font-size: 1rem; font-weight: 300; color: var(--mid); line-height: 1.85; }
.formats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fmt-card {
  border: 1px solid var(--border); padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s; cursor: default;
}
.fmt-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.fmt-tag {
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.fmt-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 12px;
}
.fmt-desc { font-size: 0.84rem; font-weight: 300; color: var(--mid); line-height: 1.7; }

.hero {
    padding-top: 0;
}
.cta-title em {
    font-style: italic;
    color: var(--gold);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--sage-dark);
  padding: 110px 80px;
}
.testimonials-inner { max-width: 1400px; margin: 0 auto; }
.testimonials-section .section-label { color: rgba(245,240,232,0.55); }
.testimonials-section .section-label::before { background: rgba(245,240,232,0.55); }
.testimonials-section .section-title { color: var(--cream); }
.testimonials-section .section-title em { color: var(--gold-light); }
.testimonials-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }

/* Top 3 grid */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 48px; }
.test-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 32px;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s, background 0.3s; cursor: default;
}
.test-card:hover { border-bottom-color: var(--gold-light); background: rgba(255,255,255,0.08); }
.test-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: var(--gold-light); opacity: 0.35; line-height: 0.6;
  margin-bottom: 24px; display: block;
}
.test-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.7; margin-bottom: 28px;
}
.test-role-tag {
  font-size: 0.72rem; font-weight: 300;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.test-company {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212,175,122,0.35);
  padding: 4px 12px;
}

/* Scroll-reveal testimonials */
.test-scroll-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
}
.test-scroll-card {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid transparent;
  padding: 40px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
/*  opacity: 0;*/
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease, border-color 0.3s, background 0.3s;
}
.test-scroll-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.test-scroll-card:hover {
  border-left-color: var(--gold-light);
  background: rgba(255,255,255,0.07);
}
.test-scroll-card .test-text {
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.test-scroll-company {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212,175,122,0.35);
  padding: 6px 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── REFLECT FRAMEWORK ─── */
.reflect-section { background: var(--cream); padding: 110px 80px; }
.reflect-inner { max-width: 1400px; margin: 0 auto; }
.reflect-section .section-label { color: var(--gold); }
.reflect-section .section-label::before { background: var(--gold); }
.reflect-section .section-title { color: var(--ink); }
.reflect-section .section-title em { color: var(--gold); }
.reflect-subtitle {
  font-size: 1rem; font-weight: 300;
  color: var(--mid); line-height: 1.85;
  max-width: 540px; margin-bottom: 64px;
}
.reflect-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 2px; margin-bottom: 48px;
}
.rc {
  background: var(--warm-white); padding: 36px 24px;
  border-bottom: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s; cursor: default;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.rc:hover { background: white; border-bottom-color: var(--gold); }
.rc-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  color: var(--sage-dark);
  line-height: 1; margin-bottom: 14px;
  transition: color 0.3s;
}
.rc:hover .rc-letter { color: var(--ink); }
.rc-word {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-dark); margin-bottom: 8px;
}
.rc-sub { font-size: 0.75rem; font-weight: 300; color: var(--mid); line-height: 1.6; }
.reflect-footnote {
  font-size: 0.8rem; font-weight: 300;
  color: var(--mid);
  border: 1px solid var(--border-strong);
  padding: 14px 22px; display: inline-block;
}
.reflect-footnote strong { color: var(--ink); font-weight: 500; }

/* ─── STAGE PHOTO BREAK ─── */
.stage-section {
  background: var(--cream);
  padding: 80px;
}
.stage-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.stage-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1100px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(14,13,11,0.15);
  margin: 0 auto 28px;
  object-fit: contain;
}
.stage-caption {
  text-align: center;
}
.stage-caption-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.stage-caption-co {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.speaker_media_logoimg {width:250px; height: auto; margin:0 auto;}

/* NEWSLETTER */
.wpforms-form {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Form layout */
.wpforms-field-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

/* Remove WPForms spacing */
.wpforms-field {
  margin: 0 !important;
  padding: 0 !important;
}

/* Inputs */
.wpforms-field input {
  background: white !important;
  border: 1px solid var(--border-strong) !important;
  padding: 14px 18px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 300 !important;
  color: var(--ink) !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  width: 100% !important;
	 max-width: 100% !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

/* Placeholder */
.wpforms-field input::placeholder {
  color: var(--light) !important;
}

/* Focus */
.wpforms-field input:focus {
  border-color: var(--gold) !important;
}

/* Hide labels */
.wpforms-field-label {
  display: none !important;
}

/* Submit container */
.wpforms-submit-container {
  margin-top: 10px !important;
  padding: 0 !important;
}

/* Submit button */
.wpforms-submit {
  background: var(--ink) !important;
  color: var(--cream) !important;
  border: none !important;
  padding: 14px 28px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.25s !important;
  width: 100% !important;
  border-radius: 4px !important;
}

/* Hover */
.wpforms-submit:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — must be at end so breakpoints override base styles correctly
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  :root { --pad-x: 60px; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  :root { --pad-x: 40px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: calc(var(--nav-h) + 60px) 40px 60px; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 60vh; }
  .credentials-inner { grid-template-columns: 1fr; gap: 48px; }
  .media-grid { grid-template-columns: repeat(4, 1fr); }
  .why-section { grid-template-columns: 1fr; gap: 40px; }
  .talks-header-grid { grid-template-columns: 1fr; gap: 24px; }
  .talks-header, .talk-card { padding-left: 40px; padding-right: 40px; }
  .reflect-grid { grid-template-columns: repeat(3, 1fr); }
  .reflect-section { padding: 80px 40px; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .formats-header { grid-template-columns: 1fr; gap: 24px; }
  .formats-section { padding: 80px 40px; }
  .testimonials-section { padding: 80px 40px; }
  .stage-section { padding: 60px 40px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-left { padding: calc(var(--nav-h) + 40px) 24px 48px; }
  .hero-right { min-height: 50vh; }
  .hero-stats { gap: 20px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offerings-section { padding: 64px var(--pad-x); }
  .credentials-inner { gap: 40px; }
  .credentials-section { padding: 64px var(--pad-x); }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .cred-stats { grid-template-columns: 1fr 1fr; }
  .why-section { padding: 64px var(--pad-x); }
  .why-section-wrap { padding: 0; }
  .talks-header { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .talk-card { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .talk-body-inner { grid-template-columns: 1fr; }
  .reflect-grid { grid-template-columns: repeat(2, 1fr); }
  .reflect-section { padding: 64px var(--pad-x); }
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .formats-header { grid-template-columns: 1fr; }
  .formats-section { padding: 64px var(--pad-x); }
  .test-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 64px var(--pad-x); }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .test-scroll-card { grid-template-columns: 1fr; gap: 20px; padding: 28px var(--pad-x); }
  .cta-section { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .stage-section { padding: 48px var(--pad-x); }
  .speaker_media_logoimg { width: 160px; }
  footer { grid-template-columns: 1fr; padding: 52px var(--pad-x) 36px; }
}

@media (max-width: 480px) {
  .reflect-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .rc { padding: 28px 20px; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .cred-stats { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.2rem); }
}


.wp-singular p {margin-bottom: 1.6em;
  line-height: 1.85;}
