/* ============================================================
   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: 'Space Grotesk', system-ui, sans-serif;
  --ff-accent:  '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: 18px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.95;
  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: 700;
  line-height: 1.1;
}

h1             { font-size: 76px; line-height: 1.08; }
h1.interior    { font-size: 62px; }
h1.hero-title  { font-size: 76px; line-height: 1.08; }
h1.page-title  { font-size: 62px; }
h2             { font-size: 54px; line-height: 1.12; }
h3             { font-size: 38px; line-height: 1.2; }
h4             { font-size: 24px; line-height: 1.3; }

p { font-size: 18px; line-height: 1.95; margin-bottom: 28px; }

.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-accent);
  font-size: 24px;
  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: 120px 56px; }

.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;
}

/* ── Denominator Intelligence™ nav item — bold, stands out ── */
.ce-nav-di > a {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--green-dark) !important;
}

/* ── Dropdown nav ── */
.ce-nav-dropdown {
  position: relative;
}

.ce-nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ce-nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.ce-nav-dropdown:hover > a::after {
  transform: rotate(-135deg) translateY(-2px);
}

.ce-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--cream);
  border: 1px solid var(--green-light);
  border-top: 2px solid var(--gold);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(26, 61, 43, 0.10);
  list-style: none;
  padding: 20px 0 8px; /* padding-top bridges the old 12px gap so hover stays active */
  z-index: 200;
  margin-top: 0;
}

.ce-nav-dropdown:hover .ce-nav-dropdown-menu {
  display: block;
}

.ce-nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-mid);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.ce-nav-dropdown-menu li a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.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); }

/* Mobile-only nav items — hidden on desktop, shown in mobile drawer */
.ce-nav-mobile-only { display: none; }

/* 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); }

/* Powered by Denominator Intelligence™ — shared across all pages */
.ce-footer-di {
  text-align: center;
  padding: 36px 0 28px;
  border-top: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.ce-di-powered {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-sage);
}
.ce-di-name {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.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;
}

/* Left cluster: copyright + legal links inline */
.ce-footer-bottom-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

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

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

.ce-footer-legal a {
  font-size: 11px;
  color: var(--green-sage);
  text-decoration: none;
  font-family: var(--ff-body);
  transition: color 0.2s ease;
  padding: 0 6px;
}
.ce-footer-legal a::before {
  content: '·';
  margin-right: 6px;
  color: var(--green-sage);
}

.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: 130px 0; }
.section-sm { padding: 88px 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);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Cpath d='M26 4 L48 26 L26 48 L4 26 Z' fill='none' stroke='%23c9a84c' stroke-width='0.8' stroke-opacity='0.10'/%3E%3C/svg%3E");
  background-size: 52px 52px;
  padding: 96px 64px 88px;
}

/* ── Reusable diamond texture — drop on any dark section ── */
.ce-diamond-texture {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Cpath d='M26 4 L48 26 L26 48 L4 26 Z' fill='none' stroke='%23c9a84c' stroke-width='0.8' stroke-opacity='0.10'/%3E%3C/svg%3E") !important;
  background-size: 52px 52px !important;
}

.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; }

/* ============================================================
   MOBILE NAV — "Get a Quote" item (injected by JS into drawer)
   ============================================================ */
.ce-nav-mobile-cta {
  display: none;
  background: var(--green-dark);
  color: var(--gold) !important;
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 20px;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s ease;
}
.ce-nav-mobile-cta:hover { background: var(--green-mid); }

/* ============================================
   RESPONSIVE — TABLET (max-width: 768px)
   ============================================ */
/* ============================================================
   WHO WE WORK WITH — numbered rows
   ============================================================ */
.ce-who-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ce-who-row {
  display: grid;
  grid-template-columns: 80px 1fr 4px;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--border, #e8e0d4);
  transition: background 0.2s ease;
}

.ce-who-row:last-child {
  border-bottom: 1px solid var(--border, #e8e0d4);
}

.ce-who-number {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  padding-top: 6px;
  transition: opacity 0.2s ease;
}

.ce-who-row:hover .ce-who-number {
  opacity: 0.85;
}

.ce-who-title {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.ce-who-desc {
  font-family: var(--ff-body);
  font-size: 17px;
  color: var(--green-mid);
  line-height: 1.80;
  margin: 0;
}

.ce-who-bar {
  width: 4px;
  height: 0;
  background: var(--gold);
  margin-top: 8px;
  transition: height 0.4s ease;
  align-self: stretch;
}

.ce-who-row:hover .ce-who-bar {
  height: 100%;
}

@media (max-width: 960px) {
  .ce-flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ce-who-row {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }
  .ce-who-bar { display: none; }
  .ce-who-number { font-size: 40px; }
  .ce-who-title  { font-size: 24px; }
}

@media (max-width: 768px) {

  /* ── Flip Cards ── */
  .ce-flip-grid {
    grid-template-columns: 1fr;
  }
  .ce-flip-card {
    height: 300px;
  }
  .ce-flip-title {
    font-size: 26px;
  }

  /* ── Navigation ── */
  .ce-nav {
    padding: 0 20px;
    height: 64px;
    position: relative;
    z-index: 200;
  }
  .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: 2px solid var(--green-light);
    padding: 20px 20px 24px;
    gap: 18px;
    z-index: 199;
    box-shadow: 0 8px 24px rgba(26,61,43,0.12);
  }

  .ce-nav-links.open li a {
    font-size: 14px;
    display: block;
    padding: 4px 0;
  }

  .ce-nav-links.open .ce-nav-mobile-only { display: block; }

  .ce-nav-links.open .ce-nav-mobile-cta {
    display: block;
  }

  /* Mobile dropdown — accordion (tap to expand, not hover) */
  .ce-nav-dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    border-left: 2px solid var(--gold);
    background: transparent;
    min-width: 0;
    padding: 8px 0 4px 16px;
    margin-top: 4px;
  }
  .ce-nav-dropdown.mobile-open .ce-nav-dropdown-menu {
    display: block;
  }
  .ce-nav-dropdown.mobile-open > a::after {
    transform: rotate(-135deg) translateY(-2px);
  }
  .ce-nav-dropdown-menu li a {
    font-size: 13px;
    padding: 6px 0;
    color: var(--green-mid);
  }

  /* ── Layout utilities ── */
  .container { padding: 0 20px; }

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

  /* Symbol section — inline grid override on about page */
  .section div[style*="grid-template-columns:1fr 2fr"],
  .section div[style*="grid-template-columns: 1fr 2fr"] {
    display: block;
  }

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

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

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

  /* 4-column strips → 2 columns */
  .dim-strip     { grid-template-columns: repeat(2, 1fr); }
  .outcome-cards { grid-template-columns: repeat(2, 1fr); }
  .access-cards,
  .ce-access-grid { grid-template-columns: repeat(2, 1fr); }

  /* Inline service card grid on index */
  .section div[style*="grid-template-columns:1fr 1fr"],
  .section div[style*="grid-template-columns: 1fr 1fr"] {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 2px;
  }

  /* Contrast grid (about page) */
  .contrast-grid  { grid-template-columns: 1fr; }

  /* Synthesis cards */
  .synthesis-cards { grid-template-columns: 1fr; }

  /* Stars teaser — stack copy then frame */
  .ce-stars-teaser-inner {
    grid-template-columns: 1fr !important;
    padding: 0 20px;
    gap: 40px;
  }

  /* ── Sections & spacing ── */
  .section    { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .ce-sec     { padding: 64px 20px; }
  .ce-hero    { padding: 56px 20px 48px; }
  .ce-stars-teaser-section { padding: 64px 0; }
  .ce-tier2-teaser-section { padding: 64px 0; }
  .ce-opening { padding: 64px 20px; }
  .big-break  { padding: 64px 20px; }
  .cta-section { padding: 64px 20px; }
  .ce-midpage-cta { padding: 56px 20px; }
  .stat-strip { padding: 48px 20px; }

  /* ── Typography ── */
  h1,
  h1.hero-title,
  .ce-hero h1 { font-size: 38px; line-height: 1.12; }
  h1.interior,
  h1.page-title { font-size: 34px; }
  h2             { font-size: 30px; }
  h3             { font-size: 24px; }
  h4             { font-size: 20px; }

  .ce-plateau-text { font-size: 44px; }
  .ce-plateau      { padding: 72px 20px; }
  .big-break-text  { font-size: 34px; }
  .cta-section h2  { font-size: 28px; }

  /* ── Buttons ── */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* ── Footer ── */
  .ce-footer { padding: 40px 20px 24px; }
  .ce-footer-top {
    flex-direction: column;
    gap: 28px;
  }
  .ce-footer-nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  /* ── Speaking ── */
  .ce-opening-inner { grid-template-columns: 1fr; }
  .ce-speaking-hero { flex-direction: column; gap: 32px; }
}

/* ============================================
   RESPONSIVE — PHONE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {

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

  /* ── Layout ── */
  .container { padding: 0 16px; }

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

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

  /* 4-column strips → single column */
  .dim-strip     { grid-template-columns: 1fr; }
  .outcome-cards { grid-template-columns: 1fr; }
  .access-cards,
  .ce-access-grid { grid-template-columns: 1fr; }

  /* Stat strip — 2 cols on phone is fine, keep it */
  .stat-grid,
  .ce-stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 38px; }

  /* ── Sections ── */
  .section    { padding: 56px 0; }
  .ce-sec     { padding: 48px 16px; }
  .ce-hero    { padding: 48px 16px 40px; }
  .big-break  { padding: 56px 16px; }
  .cta-section { padding: 56px 16px; }
  .ce-midpage-cta { padding: 48px 16px; }
  .stat-strip { padding: 40px 16px; }

  /* ── Typography ── */
  h1,
  h1.hero-title,
  .ce-hero h1 { font-size: 30px; line-height: 1.12; }
  h1.interior,
  h1.page-title { font-size: 28px; }
  h2             { font-size: 24px; }
  h3             { font-size: 20px; }
  h4             { font-size: 18px; }
  p              { font-size: 15px; }

  .ce-hero .hero-sub  { font-size: 16px; }
  .ce-hero .hero-body { font-size: 14px; }

  .ce-plateau-text { font-size: 28px; }
  .ce-plateau      { padding: 56px 16px; }
  .big-break-text  { font-size: 26px; }
  .cta-section h2  { font-size: 24px; }
  .ce-midpage-cta h3 { font-size: 26px; }

  .pull-quote-gold { font-size: 18px; }
  .contrast-quote  { font-size: 22px; }
  .dim-question    { font-size: 28px; }

  /* ── Buttons — full-width on phone ── */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  .ce-btn-gold {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* ── Platform teasers — horizontal scroll ── */
  .ce-platform-frame   { overflow-x: auto; }
  .ce-stars-teaser-frame-lg,
  .ce-tier2-teaser-frame-lg { overflow-x: auto; }
  .pf-table            { min-width: 460px; }

  /* ── Footer ── */
  .ce-footer { padding: 32px 16px 20px; }
  .ce-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-logo-img { height: 56px; }
  .ce-footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* ── Contact ── */
  .ce-form-row { grid-template-columns: 1fr; }
  .ce-contact-header { padding: 40px 16px 36px; }
  .ce-contact-body   { padding: 40px 16px; }

  /* ── About page inline grids ── */
  .section div[style*="grid-template-columns:1fr 2fr"],
  .section div[style*="grid-template-columns: 1fr 2fr"] {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

/* ── Animated Logo Grid Reveal ──────────────────────────── */
.ce-logo-reveal {
  display: inline-block;
  position: relative;
}
.ce-logo-reveal img {
  display: block;
}
.ce-grid-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  pointer-events: none;
}
.ce-grid-tile {
  opacity: 1;
  transform: scale(1.08);
  transition: opacity 0.32s ease, transform 0.36s ease;
}
.ce-logo-reveal.is-visible .ce-grid-tile {
  opacity: 0;
  transform: scale(0.5);
}

/* ── Speaking hero animated logo ─────────────────────────── */
.ce-speaking-hero {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.ce-speaking-hero-text { flex: 1; min-width: 280px; }
.ce-speaking-hero-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ce-speaking-hero-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

/* ── Stars Financial Teaser — full-width hero section ────── */
.ce-stars-teaser-section {
  background: linear-gradient(135deg, var(--green-pale) 0%, #d4ecdf 100%);
  padding: 100px 0;
}
.ce-stars-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.ce-stars-teaser-frame-lg {
  background: var(--green-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26,61,43,0.22);
  border: 2px solid rgba(201,168,76,0.3);
}
.ce-stars-teaser-frame-lg .pf-header {
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ce-stars-teaser-frame-lg .pf-header-title {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--green-sage);
  font-weight: 500;
}
.ce-stars-teaser-frame-lg .pf-badge {
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.ce-stars-teaser-frame-lg .pf-risk-banner {
  padding: 20px 24px;
  background: rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.ce-stars-teaser-frame-lg .pf-risk-label {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.ce-stars-teaser-frame-lg .pf-risk-amount {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.ce-stars-teaser-frame-lg .pf-risk-sub {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--green-sage);
  margin-left: 12px;
}
.ce-stars-teaser-frame-lg .pf-risk-row {
  display: flex;
  align-items: baseline;
  gap: 0;
}
.ce-stars-teaser-frame-lg .pf-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-body);
  font-size: 14px;
}
.ce-stars-teaser-frame-lg .pf-table th {
  padding: 10px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-sage);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ce-stars-teaser-frame-lg .pf-table td {
  padding: 12px 16px;
  color: var(--green-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ce-stars-teaser-frame-lg .td-gold  { color: var(--gold) !important; font-weight: 600; }
.ce-stars-teaser-frame-lg .td-alert { color: #e87c5a !important; font-weight: 600; }
.ce-stars-teaser-frame-lg .pf-star  { color: var(--gold); }
.ce-stars-teaser-frame-lg .pf-footer {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-body);
  font-size: 11px;
  color: rgba(116,180,146,0.6);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── Tier 2 teaser full-width section ─────────────────────── */
.ce-tier2-teaser-section {
  background: var(--green-dark);
  padding: 100px 0;
}
.ce-tier2-teaser-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}
.ce-tier2-teaser-frame-lg {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-top: 40px;
}

/* ── Homepage mid-page CTA ───────────────────────────────── */
.ce-midpage-cta {
  text-align: center;
  padding: 96px 32px;
  background: var(--green-pale);
  border-top: 1px solid var(--green-light);
  border-bottom: 1px solid var(--green-light);
}
.ce-midpage-cta h3 {
  font-family: var(--ff-display);
  font-size: 42px;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.ce-midpage-cta p {
  font-size: 18px;
  color: var(--green-mid);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* ============================================================
   SECTION INTRO — large opening paragraph per section
   ============================================================ */
.section-intro {
  font-size: 20px;
  line-height: 1.80;
  color: var(--green-mid);
  max-width: 680px;
  margin-bottom: 40px;
}

/* ============================================================
   IMPROVED BULLET LIST
   ============================================================ */
.ce-bullet-list li {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ============================================================
   BIGGER STATEMENT MOMENTS
   ============================================================ */
.big-break-text {
  font-size: 56px;
}

.ce-plateau-text {
  font-size: 80px;
}

.cta-section h2 {
  font-size: 44px;
}

/* ============================================================
   SERVICE CARDS — hover lift (legacy two-card layout)
   ============================================================ */
.ce-service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ce-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 61, 43, 0.15);
}

/* ============================================================
   FLIP CARDS — Denominator Intelligence Suite
   ============================================================ */
.ce-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}

.ce-flip-card {
  perspective: 1200px;
  height: 340px;
  cursor: default;
}

.ce-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.70s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.ce-flip-card:hover .ce-flip-inner {
  transform: rotateY(180deg);
}

.ce-flip-front,
.ce-flip-back {
  position: absolute;
  inset: 0;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ce-flip-front {
  background: var(--green-dark);
  border-top: 2px solid var(--gold);
}

.ce-flip-back {
  background: var(--green-mid);
  border-top: 2px solid var(--gold);
  transform: rotateY(180deg);
}

.ce-flip-num {
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.ce-flip-diamond {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  display: block;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.ce-flip-title {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  flex: 1;
}

.ce-flip-cta {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.ce-flip-card:hover .ce-flip-cta { opacity: 0; }

.ce-flip-back-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 20px;
}

.ce-flip-back-p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  line-height: 1.5;
  margin: 0;
}

.ce-flip-back-p + .ce-flip-back-p {
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 15px;
  color: var(--green-light);
  line-height: 1.7;
  border-top: 1px solid rgba(183, 217, 196, 0.25);
  padding-top: 20px;
}

/* ============================================================
   SECTION BODY TEXT — consistent 19px throughout
   ============================================================ */
html { font-size: 19px; }
body { font-size: 19px; }
p    { font-size: 19px; line-height: 1.90; }

.section p,
.ce-sec p {
  font-size: 19px;
  line-height: 1.90;
}

h1, h1.hero-title  { font-size: 64px; }
h2                 { font-size: 50px; }
h3                 { font-size: 36px; }
h4                 { font-size: 24px; }

.ce-hero h1        { font-size: 60px; }
.section-intro     { font-size: 22px; line-height: 1.80; }
.ce-bullet-list li { font-size: 18px; line-height: 1.80; margin-bottom: 16px; }
.big-break-text    { font-size: 60px; }
.ce-plateau-text   { font-size: 84px; }
.cta-section h2    { font-size: 48px; }
.ce-midpage-cta h3 { font-size: 44px; }
.ce-flip-title     { font-size: 32px; }

/* ============================================================
   FREE DIAGNOSTIC — TEXTURED SECTION
   ============================================================ */
.ce-diagnostic-cta {
  position: relative;
  background: var(--green-dark);
  padding: 120px 0;
  overflow: hidden;
}

/* Diamond texture overlay */
.ce-diag-diamond-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Cpath d='M26 4 L48 26 L26 48 L4 26 Z' fill='none' stroke='%23c9a84c' stroke-width='0.8' stroke-opacity='0.10'/%3E%3C/svg%3E");
  background-size: 52px 52px;
  pointer-events: none;
}

.ce-diag-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ce-diag-left h2 {
  color: var(--cream);
}

.ce-diag-right {
  display: flex;
  justify-content: flex-end;
}

.ce-diag-card {
  background: var(--cream);
  padding: 52px 48px;
  border-top: 5px solid var(--gold);
  max-width: 520px;
  width: 100%;
}

.ce-diag-card-label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.ce-diag-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ce-diag-list li {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--green-dark);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
}

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

@media (max-width: 900px) {
  .ce-diag-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ce-diag-right {
    justify-content: flex-start;
  }
  .ce-diag-card {
    max-width: 100%;
  }
}

/* ============================================================
   MOBILE OVERRIDES — must come last to beat late desktop
   declarations in "SECTION BODY TEXT" and "BIGGER STATEMENT
   MOMENTS" blocks above (lines ~2570-2592).
   ============================================================ */

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {
  html, body      { font-size: 17px; }
  p               { font-size: 16px; line-height: 1.80; }

  h1,
  h1.hero-title,
  .ce-hero h1     { font-size: 36px !important; line-height: 1.12; }
  h1.interior,
  h1.page-title   { font-size: 32px; }
  h2              { font-size: 28px; }
  h3              { font-size: 23px; }
  h4              { font-size: 19px; }

  .section-intro  { font-size: 17px; line-height: 1.70; }
  .ce-bullet-list li { font-size: 15px; line-height: 1.70; margin-bottom: 10px; }

  .big-break-text  { font-size: 32px !important; }
  .ce-plateau-text { font-size: 42px !important; }
  .cta-section h2  { font-size: 26px !important; }
  .ce-midpage-cta h3 { font-size: 30px !important; }
  .ce-flip-title   { font-size: 24px; }

  /* Diagnostic CTA section */
  .ce-diagnostic-cta { padding: 72px 0; }
  .ce-diag-card       { padding: 36px 28px; }

  /* Flip cards — single column, fixed height */
  .ce-flip-grid { grid-template-columns: 1fr; }
  .ce-flip-card { height: 280px; }

  /* Teaser sections */
  .ce-stars-teaser-section,
  .ce-tier2-teaser-section { padding: 64px 0; }
  .ce-stars-teaser-inner   { padding: 0 20px; gap: 40px; grid-template-columns: 1fr; }
  .ce-tier2-teaser-inner   { padding: 0 20px; }

  /* Who-we-work-with row sizing already set above, but ensure desc text scales */
  .ce-who-desc { font-size: 15px; }
}

/* ── Phone (≤ 480px) ── */
@media (max-width: 480px) {
  html, body      { font-size: 16px; }
  p               { font-size: 15px; line-height: 1.75; }

  h1,
  h1.hero-title,
  .ce-hero h1     { font-size: 28px !important; line-height: 1.12; }
  h1.interior,
  h1.page-title   { font-size: 26px; }
  h2              { font-size: 23px; }
  h3              { font-size: 19px; }
  h4              { font-size: 17px; }

  .section-intro  { font-size: 15px; line-height: 1.65; margin-bottom: 28px; }
  .ce-bullet-list li { font-size: 14px; line-height: 1.65; margin-bottom: 8px; }

  .big-break-text  { font-size: 24px !important; line-height: 1.25; }
  .ce-plateau-text { font-size: 26px !important; }
  .cta-section h2  { font-size: 22px !important; }
  .ce-midpage-cta h3 { font-size: 24px !important; }
  .ce-flip-title   { font-size: 22px; }

  .ce-hero .hero-sub  { font-size: 15px; }
  .ce-hero .hero-body { font-size: 13px; }

  .pull-quote-gold { font-size: 17px; }
  .pull-quote-dark { font-size: 16px; padding: 20px 20px; }
  .contrast-quote  { font-size: 20px; }
  .dim-question    { font-size: 24px; }

  /* Diagnostic CTA section */
  .ce-diagnostic-cta { padding: 56px 0; }
  .ce-diag-card       { padding: 28px 20px; }

  /* Flip cards */
  .ce-flip-card { height: 260px; }
  .ce-flip-front,
  .ce-flip-back { padding: 28px 24px; }

  /* Who we work with — phone */
  .ce-who-row    { grid-template-columns: 44px 1fr; gap: 16px; padding: 28px 0; }
  .ce-who-number { font-size: 32px; }
  .ce-who-title  { font-size: 20px; }
  .ce-who-desc   { font-size: 14px; }

  /* Stat numbers */
  .stat-number   { font-size: 34px; }

  /* Footer nav — always stack on small phone */
  .ce-footer-nav { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* Teaser frame horizontal scroll */
  .ce-stars-teaser-frame-lg,
  .ce-tier2-teaser-frame-lg { overflow-x: auto; }
  .pf-table { min-width: 420px; }
}
