/* ============================================================
   CULTURALLY ELEVATED — styles.css
   Single shared stylesheet for all pages
   ============================================================ */

/* ------------------------------------------------------------
   1. BRAND TOKENS
   ------------------------------------------------------------ */
:root {
  --green-dark:   #1a3d2b;
  --green-mid:    #2d6a4f;
  --green-kelly:  #3a8c5c;
  --green-sage:   #74b492;
  --green-light:  #b7d9c4;
  --green-pale:   #e8f4ee;
  --gold:         #c9a84c;
  --cream:        #faf8f4;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--green-dark);
  background: var(--cream);
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.15;
}

h1             { font-size: 54px; line-height: 1.12; }
h1.interior    { font-size: 46px; }
h1.hero-title  { font-size: 54px; line-height: 1.12; }
h1.page-title  { font-size: 46px; }
h2             { font-size: 38px; line-height: 1.2; }
h3             { font-size: 28px; line-height: 1.25; }
h4             { font-size: 20px; line-height: 1.3; }

p { font-size: 17px; line-height: 1.85; margin-bottom: 18px; }

.overline,
.ce-overline {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.ce-pullquote p,
blockquote {
  font-family: var(--ff-display);
  font-size: 21px;
  line-height: 1.55;
  font-style: italic;
}

.ce-legal-body p { font-size: 15px; line-height: 1.85; }
.ce-section-p    { font-size: 15px; line-height: 1.85; }

.ce-sec { padding: 88px 48px; }

.body-lg  { font-size: 18px; line-height: 1.75; }
.body-sm  { font-size: 14px; }
.label-sm { font-size: 13px; letter-spacing: 0.06em; }

/* ------------------------------------------------------------
   4. NAVIGATION
   ------------------------------------------------------------ */
.ce-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--green-light);
  padding: 0 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
  z-index: 100;
}

.ce-nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.ce-nav-name {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--green-dark);
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.ce-nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ce-nav-links a {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--green-mid);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ce-nav-links a:hover { color: var(--gold); }

.ce-nav-links a.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.ce-nav-cta {
  background: var(--green-dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 12px;
  padding: 12px 22px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.ce-nav-cta:hover { background: var(--green-mid); }

/* Hamburger — hidden on desktop */
.ce-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.ce-nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  transition: all 0.3s ease;
}

/* ------------------------------------------------------------
   5. FOOTER
   ------------------------------------------------------------ */
.ce-footer {
  background: var(--cream);
  border-top: 1px solid var(--green-light);
  padding: 56px 48px 32px;
}

.ce-footer-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 48px;
}

.ce-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 80px;       /* Large and prominent */
  width: auto;
  display: block;
}

.ce-footer-name {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--green-dark);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.ce-footer-tagline {
  font-size: 11px;
  color: var(--green-sage);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: var(--ff-body);
  margin: 0;
}

.ce-footer-nav {
  display: flex;
  flex-direction: row;           /* Always horizontal — never stacked */
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 8px;
  flex-wrap: nowrap;
}

.ce-footer-nav a {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--green-mid);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ce-footer-nav a:hover { color: var(--gold); }

.ce-footer-bottom {
  border-top: 1px solid var(--green-light);
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ce-footer-copy {
  font-size: 11px;
  color: var(--green-sage);
  font-family: var(--ff-body);
}

.ce-footer-legal {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.ce-footer-legal a {
  font-size: 11px;
  color: var(--green-sage);
  text-decoration: none;
  border-bottom: 1px solid var(--green-light);
  font-family: var(--ff-body);
  transition: color 0.2s ease;
}

.ce-footer-legal a:hover { color: var(--gold); }

.ce-footer-right {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--green-kelly);
  font-style: italic;
}

/* ------------------------------------------------------------
   6. DIAMOND DIVIDER
   ------------------------------------------------------------ */
.ce-diamond-row {
  background: var(--cream);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-wrap { display: flex; align-items: center; gap: 8px; }

.d {
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}

.d-gold      { background: var(--gold); }
.d-green     { background: var(--green-kelly); }
.d-gold-out  { background: transparent; border: 1.5px solid var(--gold); }
.d-green-out { background: transparent; border: 1.5px solid var(--green-kelly); }

.d-line {
  width: 24px;
  height: 1px;
  background: var(--green-light);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   7. BANNER STRIP & GOLD BAR
   ------------------------------------------------------------ */
.ce-banner-strip {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.ce-gold-bar {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ------------------------------------------------------------
   8. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 13px 32px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border: none;
}

.btn-gold:hover { background: #b8963e; }

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ------------------------------------------------------------
   9. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col-3-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

.two-col-2-3 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}

/* ------------------------------------------------------------
   10. HERO
   ------------------------------------------------------------ */
.ce-hero {
  background: var(--green-dark);
  padding: 96px 64px 88px;
}

.ce-hero h1 {
  font-size: 56px;
  color: var(--cream);
  max-width: 760px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.ce-hero .hero-sub {
  font-size: 19px;
  color: var(--green-light);
  max-width: 560px;
  margin-bottom: 12px;
  font-family: var(--ff-body);
  line-height: 1.6;
}

.ce-hero .hero-body {
  font-size: 15px;
  color: var(--green-sage);
  max-width: 520px;
  margin-bottom: 36px;
  font-family: var(--ff-body);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   11. PULL QUOTES & CALLOUT BOXES
   ------------------------------------------------------------ */
.pull-quote-gold {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  color: var(--green-dark);
  line-height: 1.4;
  margin: 28px 0;
}

.pull-quote-dark {
  background: var(--green-mid);
  padding: 28px 32px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  line-height: 1.5;
}

.quote-block-pale {
  background: var(--green-pale);
  border-left: 3px solid var(--green-sage);
  padding: 28px 32px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--green-dark);
  line-height: 1.5;
}

/* ------------------------------------------------------------
   12. CARDS
   ------------------------------------------------------------ */
.ce-card {
  padding: 36px 32px;
  border-top: 2px solid var(--gold);
}

.ce-card-pale  { background: var(--green-pale); }
.ce-card-dark  { background: var(--green-dark); }
.ce-card-cream { background: var(--cream); }
.ce-card-mid   { background: var(--green-mid); }

.diamond-marker {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-bottom: 16px;
}

/* ------------------------------------------------------------
   13. STAT STRIP
   ------------------------------------------------------------ */
.stat-strip {
  background: var(--green-mid);
  padding: 56px 64px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
}

/* ------------------------------------------------------------
   14. DARK UI MOCKUP PANEL
   ------------------------------------------------------------ */
.ui-mockup {
  background: var(--green-dark);
  border-radius: 4px;
  box-shadow: 0 4px 0 0 var(--gold);
  padding: 0;
  overflow: hidden;
  font-family: var(--ff-body);
}

.ui-mockup-header {
  background: #0f2419;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--green-mid);
}

.ui-mockup-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--green-light);
  text-transform: uppercase;
}

.ui-mockup-badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-mid);
  color: var(--green-light);
  padding: 3px 8px;
}

.ui-mockup-alert {
  background: #0f2419;
  border: 1px solid var(--gold);
  margin: 16px 20px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--gold);
}

.ui-mockup-alert strong { font-weight: 500; }

.ui-mockup-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 0 0;
}

.ui-mockup-table th {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-sage);
  padding: 8px 20px;
  text-align: left;
  border-bottom: 1px solid #0f2419;
  background: #162f20;
}

.ui-mockup-table td {
  font-size: 12px;
  color: var(--green-light);
  padding: 10px 20px;
  border-bottom: 1px solid #162f20;
}

.ui-mockup-table td.gold-val { color: var(--gold); font-weight: 500; }
.ui-mockup-table td.amber-val { color: #e8b84b; }
.ui-mockup-table td.red-val { color: #e07070; font-size: 11px; }
.ui-mockup-table td.green-val { color: var(--green-sage); font-size: 11px; }

.ui-mockup-footer {
  padding: 10px 20px;
  font-size: 11px;
  color: var(--green-sage);
  border-top: 1px solid #162f20;
  background: #0f2419;
}

/* Reallocation mockup summary cards */
.mockup-summary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 16px 20px;
}

.mockup-summary-card {
  background: #162f20;
  padding: 12px 14px;
}

.mockup-summary-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 4px;
}

.mockup-summary-val {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--cream);
}

.mockup-summary-val.red { color: #e07070; }
.mockup-summary-val.gold { color: var(--gold); }

/* ------------------------------------------------------------
   15. BIG BREAK SECTION
   ------------------------------------------------------------ */
.big-break {
  background: var(--green-mid);
  padding: 88px 64px;
  text-align: center;
}

.big-break-text {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 20px;
}

.big-break-sub {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--green-light);
  max-width: 480px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   16. FOUR-PANEL GRID (WHO WE WORK WITH) — legacy
   ------------------------------------------------------------ */
.four-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.four-panel-item {
  padding: 48px 40px;
}

.four-panel-item.dark-bg {
  background: var(--green-dark);
}

.four-panel-item.pale-bg {
  background: var(--green-pale);
}

.four-panel-label {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.four-panel-desc {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
}

/* ------------------------------------------------------------
   16b. AUDIENCE GRID — 4 equal columns with hover
   ------------------------------------------------------------ */
.ce-aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* Four equal columns — always */
  gap: 2px;
  margin-top: 40px;
}

.ce-aud-panel {
  background: var(--green-dark);
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: default;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.ce-aud-front {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.3s ease;
}

.aud-diamond {
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.ce-aud-label {
  font-family: var(--ff-display);
  font-size: 19px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

.ce-aud-hover {
  font-size: 14px;
  color: var(--green-light);
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
}

/* Hover state */
.ce-aud-panel:hover {
  background: var(--green-mid);
}

.ce-aud-panel:hover .ce-aud-hover {
  opacity: 1;
  transform: translateY(0);
}

.ce-aud-panel:hover .ce-aud-front {
  opacity: 0.3;
}

/* ------------------------------------------------------------
   17. TIER BLOCKS (PLATFORM PAGE)
   ------------------------------------------------------------ */
.tier-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.tier-block {
  padding: 48px 40px;
}

.tier-pill {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--green-dark);
  padding: 4px 12px;
  margin-bottom: 16px;
  font-weight: 500;
}

.tier-banner {
  background: var(--green-mid);
  border: 1px solid var(--green-kelly);
  padding: 8px 14px;
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--green-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-bullet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.tier-bullet-list li {
  padding-left: 18px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.tier-bullet-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 8px;
  top: 6px;
}

.tier-note {
  font-size: 13px;
  font-family: var(--ff-body);
  color: var(--green-sage);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(116, 180, 146, 0.3);
  font-style: italic;
}

/* ------------------------------------------------------------
   18. FOUR DIMENSION STRIP (SERVICES PAGE)
   ------------------------------------------------------------ */
.dim-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 36px 0;
}

.dim-panel {
  background: #0f2419;
  padding: 40px 28px;
}

.dim-question {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 36px;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 12px;
  line-height: 1;
}

.dim-label {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}

.dim-desc {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--green-sage);
  line-height: 1.55;
}

/* Outcome cards */
.outcome-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.outcome-card {
  background: var(--green-mid);
  padding: 28px 24px;
}

.outcome-card-label {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 8px;
}

.outcome-card-text {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--cream);
  line-height: 1.35;
}

/* ------------------------------------------------------------
   19. TALK SECTIONS (SPEAKING PAGE)
   ------------------------------------------------------------ */
.talk-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}

.talk-number {
  font-family: var(--ff-display);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  font-weight: 300;
  padding-top: 8px;
}

.talk-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.best-for-strip {
  margin-top: 28px;
  padding-top: 20px;
}

.best-for-label {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.best-for-text {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   20. LEGAL PAGES
   ------------------------------------------------------------ */
.legal-header {
  background: var(--green-dark);
  padding: 56px 40px;
}

.legal-header .overline { color: var(--green-sage); }

.legal-header h1 {
  font-family: var(--ff-display);
  font-size: 48px;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 400;
}

.legal-header .legal-date {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--green-sage);
}

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

.legal-body p {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--green-light);
}

.legal-section ul, .legal-section ol {
  padding-left: 24px;
  margin: 12px 0 16px;
}

.legal-section ul { list-style: disc; }
.legal-section ol { list-style: decimal; }

.legal-section li {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: var(--green-dark);
}

.legal-highlight {
  background: var(--green-dark);
  color: var(--cream);
  padding: 24px 28px;
  margin: 20px 0;
  border-left: 3px solid var(--gold);
}

.legal-highlight p {
  color: var(--green-light);
  margin-bottom: 0;
}

.legal-highlight strong { color: var(--cream); }

.legal-contact-box {
  background: var(--green-dark);
  padding: 32px 36px;
  margin-top: 48px;
}

.legal-contact-box .overline { margin-bottom: 8px; }

.legal-contact-box p {
  color: var(--green-light);
  font-size: 15px;
  margin-bottom: 8px;
}

.legal-contact-box a {
  color: var(--gold);
  text-decoration: underline;
}

/* ------------------------------------------------------------
   21. BULLET LISTS (GENERAL)
   ------------------------------------------------------------ */
.ce-bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.ce-bullet-list li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.ce-bullet-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 7px;
  top: 7px;
}

.ce-bullet-list.light li { color: var(--green-light); }
.ce-bullet-list.light li::before { color: var(--gold); }
.ce-bullet-list.sage li { color: var(--green-sage); }

/* Diamond bullet company list */
.company-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.company-list li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.company-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ------------------------------------------------------------
   22. MISCELLANOUS SECTIONS
   ------------------------------------------------------------ */
.plateau-section {
  background: var(--green-dark);
  padding: 64px 40px;
  text-align: center;
}

.plateau-text {
  font-family: var(--ff-display);
  font-size: 36px;
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.25;
  font-weight: 300;
}

.ce-plateau {
  background: var(--green-dark);
  padding: 100px 48px;
  text-align: center;
}

.ce-plateau-text {
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 auto;
}

.ce-plateau-text .gold {
  color: var(--gold);
}

.cta-section {
  background: var(--green-dark);
  padding: 88px 64px;
  text-align: center;
}

.cta-section h2 {
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 36px;
}

.cta-section .cta-sub {
  color: var(--green-light);
  font-family: var(--ff-body);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--green-sage);
  margin-top: 16px;
}

/* About page: Platform bridge CTA box */
.cta-box-dark {
  background: var(--green-dark);
  padding: 40px 36px;
}

.cta-box-dark .overline { color: var(--green-sage); }

.cta-box-dark .italic-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 16px;
}

.cta-box-dark p {
  color: var(--green-light);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Symbol section logo — legacy */
.symbol-logo {
  height: 120px;
  width: auto;
  margin-bottom: 12px;
}

.symbol-caption-serif {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.symbol-caption-label {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
}

/* Symbol section — updated */
.ce-symbol-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.symbol-img {
  width: 200px;      /* Large and prominent */
  height: auto;
  display: block;
}

.ce-symbol-name {
  font-family: var(--ff-display);
  font-size: 15px;
  color: var(--green-mid);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.ce-symbol-meaning {
  font-size: 11px;
  color: var(--green-sage);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--ff-body);
  margin: 0;
}

/* Achievement box */
.achievement-box {
  background: var(--green-dark);
  padding: 32px 28px;
}

.achievement-number {
  font-family: var(--ff-display);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.achievement-label {
  font-size: 13px;
  color: var(--green-light);
  font-family: var(--ff-body);
  margin-bottom: 12px;
}

.achievement-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--green-sage);
  font-family: var(--ff-body);
}

/* Two panel contrast grid (about page) */
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.contrast-panel {
  padding: 48px 40px;
}

.contrast-label {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contrast-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.contrast-note {
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.6;
}

/* Services synthesis section */
.synthesis-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}

.synthesis-card {
  background: var(--green-dark);
  padding: 36px 32px;
}

.synthesis-card h3 {
  color: var(--cream);
  margin-bottom: 12px;
  font-size: 22px;
}

.synthesis-card p {
  color: var(--green-light);
  font-size: 15px;
  line-height: 1.65;
}

/* Access cards (platform page) */
.access-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 32px;
}

.access-card {
  background: var(--cream);
  border-top: 2px solid var(--gold);
  padding: 28px 24px;
}

.access-card h4 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.access-card p {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--green-mid);
  line-height: 1.6;
}

/* Speaking opening section — horizontal layout with gold quote box */
.ce-opening {
  background: var(--cream);
  padding: 88px 48px;
}

.ce-opening-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* Side by side — horizontal across page */
  gap: 56px;
  align-items: center;              /* Vertically centered */
}

.ce-opening-copy h2 {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.ce-opening-copy p {
  font-size: 17px;
  color: var(--green-mid);
  line-height: 1.85;
}

/* Gold quote box */
.ce-opening-quote {
  background: var(--gold);
  padding: 40px 36px;
}

.ce-opening-quote p {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--cream);             /* Off-white text on gold box */
  line-height: 1.55;
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

/* Speaking audience box */
.audience-quote-box {
  background: var(--green-dark);
  padding: 36px 32px;
}

.audience-quote-box .serif-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 16px;
}

.audience-quote-box .attr-note {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--green-sage);
}

/* Gold divider line (thematic) */
.gold-divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}

/* ------------------------------------------------------------
   23. PLATFORM TEASER FRAMES
   ------------------------------------------------------------ */
.ce-platform-frame {
  background: #1a3d2b;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 0 #c9a84c;
}

.pf-header {
  background: #0f2419;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pf-header-title {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #74b492;
  font-family: var(--ff-body);
}

.pf-badge {
  font-size: 10px;
  color: #c9a84c;
  border: 1px solid #c9a84c;
  padding: 2px 8px;
  letter-spacing: 0.08em;
  font-family: var(--ff-body);
}

.pf-risk-banner {
  background: #2d6a4f;
  padding: 16px;
  border-bottom: 1px solid #1a3d2b;
}

.pf-risk-label {
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #74b492;
  font-family: var(--ff-body);
  margin-bottom: 6px;
}

.pf-risk-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pf-risk-amount {
  font-family: var(--ff-display);
  font-size: 32px;
  color: #c9a84c;
  font-weight: 400;
  line-height: 1;
}

.pf-risk-sub {
  font-size: 11px;
  color: #74b492;
  font-family: var(--ff-body);
}

.rf-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.rf-sum-card {
  background: #2d6a4f;
  padding: 14px 16px;
}

.rf-sum-lbl {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #74b492;
  font-family: var(--ff-body);
  margin-bottom: 6px;
}

.rf-sum-val {
  font-family: var(--ff-display);
  font-size: 24px;
  color: #c9a84c;
  font-weight: 400;
  line-height: 1;
}

.rf-sum-val-red { color: #e87070; }

.rf-sum-sub {
  font-size: 10px;
  color: #b7d9c4;
  font-family: var(--ff-body);
  margin-top: 4px;
}

.pf-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-body);
}

.pf-table th {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #74b492;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #2d6a4f;
}

.pf-table td {
  font-size: 12px;
  color: #b7d9c4;
  padding: 10px 14px;
  border-bottom: 1px solid #0f2419;
}

.pf-table tr:last-child td { border-bottom: none; }

.pf-star      { color: #c9a84c; font-size: 10px; }
.td-gold      { color: #c9a84c; font-weight: 500; }
.td-alert     { color: #e8a040; }
.td-red       { color: #e87070; }
.td-sage      { color: #74b492; }
.td-stop      { color: #e87070; font-size: 11px; font-weight: 500; }
.td-scale     { color: #74b492; font-size: 11px; font-weight: 500; }
.td-redirect  { color: #c9a84c; font-size: 11px; font-weight: 500; }

.pf-footer {
  background: #0f2419;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf-footer span {
  font-size: 10px;
  color: #3a8c5c;
  font-family: var(--ff-body);
  letter-spacing: 0.04em;
}

/* Spacing helpers */
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

/* Color utilities */
.text-gold    { color: var(--gold); }
.text-cream   { color: var(--cream); }
.text-light   { color: var(--green-light); }
.text-sage    { color: var(--green-sage); }
.text-mid     { color: var(--green-mid); }
.text-dark    { color: var(--green-dark); }

/* Inline italic serif */
.serif-italic {
  font-family: var(--ff-display);
  font-style: italic;
}

/* ------------------------------------------------------------
   24. CONTACT PAGE
   ------------------------------------------------------------ */
.ce-contact-header {
  background: var(--green-dark);
  padding: 72px 48px 64px;
  max-width: 100%;
}

.ce-contact-header h1 {
  font-family: var(--ff-display);
  font-size: 48px;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.15;
}

.ce-contact-intro {
  font-size: 17px;
  color: var(--green-light);
  line-height: 1.85;
  max-width: 640px;
  margin: 0;
}

.ce-contact-body {
  padding: 72px 48px;
  background: var(--cream);
}

.ce-form {
  max-width: 640px;
}

.ce-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ce-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.ce-form-group label {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.ce-form-group input,
.ce-form-group textarea {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--green-dark);
  background: var(--cream);
  border: 1px solid var(--green-light);
  padding: 12px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.ce-form-group input:focus,
.ce-form-group textarea:focus {
  border-color: var(--gold);
}

.ce-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.ce-btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--ff-body);
  font-size: 13px;
  padding: 14px 32px;
  text-decoration: none;
  letter-spacing: 0.06em;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s ease;
}

.ce-btn-gold:hover { background: #b8973f; }

/* ============================================
   RESPONSIVE — TABLET (max-width: 900px)
   ============================================ */
@media (max-width: 900px) {

  /* Nav */
  .ce-nav { padding: 0 24px; height: 64px; }
  .ce-nav-links { display: none; }
  .ce-nav-cta { display: none; }
  .ce-nav-hamburger { display: flex; }

  /* Mobile nav drawer */
  .ce-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--green-light);
    padding: 24px;
    gap: 20px;
    z-index: 99;
  }

  .ce-nav-links.open + .ce-nav-cta {
    display: block;
    margin: 0 24px 16px;
    text-align: center;
  }

  /* Two-column layouts → single column */
  .two-col,
  .two-col-40,
  .two-col-center,
  .two-col-flip,
  .ce-teaser-inner,
  .ce-bridge-inner,
  .ce-symbol-inner,
  .ce-opening-inner,
  .ce-aud-inner,
  .ce-q-grid,
  .ce-synth-row,
  .ce-synth-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Audience panels — 2 columns on tablet */
  .ce-aud-grid { grid-template-columns: repeat(2, 1fr); }

  /* Tier blocks */
  .ce-tier-blocks { grid-template-columns: 1fr; }

  /* Access cards */
  .ce-access-grid { grid-template-columns: 1fr 1fr; }

  /* Stat strip */
  .ce-stat-row { grid-template-columns: repeat(2, 1fr); }

  /* Sections */
  .ce-sec { padding: 64px 32px; }
  .ce-hero { padding: 64px 32px 56px; }

  /* Typography */
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  .ce-plateau-text { font-size: 52px; }

  /* Footer */
  .ce-footer { padding: 40px 32px 24px; }
  .ce-footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .ce-footer-nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  /* Speaking opening */
  .ce-opening-inner { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ============================================ */
@media (max-width: 600px) {

  /* Nav */
  .ce-nav { padding: 0 20px; }
  .ce-nav-name { font-size: 16px; }
  .nav-logo-img { height: 40px; }

  /* Audience panels — single column */
  .ce-aud-grid { grid-template-columns: 1fr; }

  /* On mobile — always show hover text (touch devices don't hover) */
  .ce-aud-hover {
    opacity: 1;
    transform: translateY(0);
    position: static;
    margin-top: 12px;
  }
  .ce-aud-front { opacity: 1 !important; }

  /* Access grid — single column */
  .ce-access-grid { grid-template-columns: 1fr; }

  /* Stat strip — single column */
  .ce-stat-row { grid-template-columns: repeat(2, 1fr); }

  /* Sections */
  .ce-sec { padding: 48px 20px; }
  .ce-hero { padding: 48px 20px 40px; }
  .ce-cta { padding: 56px 20px; }

  /* Typography */
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  h3 { font-size: 21px; }
  p  { font-size: 16px; }
  .ce-plateau-text { font-size: 32px; }
  .ce-plateau { padding: 64px 20px; }
  .ce-big-stat { font-size: 38px; }

  /* Platform teasers — scroll horizontally if needed */
  .ce-platform-frame { overflow-x: auto; }
  .pf-table { min-width: 480px; }

  /* Footer */
  .ce-footer { padding: 36px 20px 24px; }
  .ce-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-logo-img { height: 60px; }

  /* Contact */
  .ce-form-row { grid-template-columns: 1fr; }
  .ce-contact-header { padding: 48px 20px; }
  .ce-contact-body { padding: 48px 20px; }
}
