/* ==========================================================================
 THE WORK LIFE UPGRADE
 Shared stylesheet · editorial advisory aesthetic
 ========================================================================== */

/* --------------------------------------------------------------------------
 1. TOKENS
 -------------------------------------------------------------------------- */
:root {
 /* WLU brand palette (Colors & Fonts guide) */
 --white: #FFFFFF;
 --paper: #f5f2ee; /* Linen White - airy off-white surface */
 --slate: #e8f4f5; /* Mist - soft teal section wash / card fill */
 --teal: #008290; /* Tidal Teal - PRIMARY ACTION */
 --teal-deep: #006771; /* hover */
 --teal-pale: #e8f4f5; /* Mist - soft teal wash for sections */
 --teal-tint: #f3f9fa; /* faintest teal wash */

 /* Sand Dune - accent / emphasis */
 --sand: #d89d6a;
 --sand-deep: #c6884f;

 /* Back-compat aliases (old markup referenced --copper*).
    Default emphasis on LIGHT backgrounds = teal (readable);
    dark sections re-point emphasis to Sand Dune below. */
 --copper: #008290;
 --copper-deep: #006771;
 --copper-bright: #d89d6a;

 --ink: #1a2f35; /* Deep Tide - dark surfaces / hero / footer */
 --graphite: #1a2f35; /* Deep Tide - headers & primary text */
 --graphite-soft: #4a6568; /* Slate - body text */
 --eucalyptus: #5f7174; /* neutral muted gray for meta/labels */
 --eucalyptus-pale: #aab6b8;

 /* Derived */
 --hairline: rgba(26, 47, 53, 0.12);
 --hairline-strong: rgba(26, 47, 53, 0.22);
 --bg-subtle: #f7fafb;

 /* Typography */
 --font-display: 'Cabin', 'Trebuchet MS', -apple-system, sans-serif;
 --font-sub: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
 --font-body: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
 --font-mono: 'Work Sans', -apple-system, sans-serif;

 /* Spacing scale */
 --s-1: 0.25rem;
 --s-2: 0.5rem;
 --s-3: 0.75rem;
 --s-4: 1rem;
 --s-5: 1.5rem;
 --s-6: 2rem;
 --s-7: 3rem;
 --s-8: 4rem;
 --s-9: 6rem;
 --s-10: 8rem;

 /* Layout */
 --container: 1240px;
 --container-narrow: 880px;
 --container-reading: 680px;
}

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

html {
 font-size: 16px;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 scroll-behavior: smooth;
}

body {
 margin: 0;
 font-family: var(--font-body);
 font-weight: 400;
 line-height: 1.65;
 color: var(--graphite);
 background: var(--white);
 font-feature-settings: 'kern', 'liga', 'calt';
}

img, svg, video { max-width: 100%; display: block; }

a {
 color: var(--graphite);
 text-decoration: none;
 transition: color 0.2s ease;
}

button {
 font-family: inherit;
 cursor: pointer;
 border: none;
 background: transparent;
}

/* --------------------------------------------------------------------------
 3. TYPOGRAPHY
 -------------------------------------------------------------------------- */
.display {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 line-height: 1.02;
 letter-spacing: -0.02em;
 color: var(--graphite);
}

.display-xl {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: clamp(3rem, 7.5vw, 6.5rem);
 line-height: 0.98;
 letter-spacing: -0.025em;
 color: var(--graphite);
}

.display-l {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: clamp(2.25rem, 5vw, 4rem);
 line-height: 1.02;
 letter-spacing: -0.02em;
 color: var(--graphite);
}

.display-m {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: clamp(1.75rem, 3.5vw, 2.75rem);
 line-height: 1.08;
 letter-spacing: -0.015em;
 color: var(--graphite);
}

.display-s {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: clamp(1.375rem, 2.5vw, 1.875rem);
 line-height: 1.15;
 letter-spacing: -0.01em;
 color: var(--graphite);
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; }

.sub-head {
 font-family: var(--font-sub);
 font-weight: 600;
 font-size: 1.125rem;
 line-height: 1.4;
 letter-spacing: -0.005em;
 color: var(--graphite-soft);
}

.eyebrow {
 font-family: var(--font-mono);
 font-weight: 500;
 font-size: 0.75rem;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: var(--eucalyptus);
 margin: 0;
}

.meta {
 font-family: var(--font-mono);
 font-weight: 400;
 font-size: 0.75rem;
 color: var(--eucalyptus);
 letter-spacing: 0.02em;
}

.lead {
 font-family: var(--font-body);
 font-size: 1.25rem;
 line-height: 1.55;
 color: var(--graphite-soft);
 font-weight: 400;
}

p { margin: 0 0 1rem; }

.copper-underline {
 background-image: linear-gradient(to top, var(--copper) 2px, transparent 2px);
 background-repeat: no-repeat;
 background-position: 0 98%;
 background-size: 100% 100%;
 padding: 0 2px;
}

.copper-accent { color: var(--copper); }

/* --------------------------------------------------------------------------
 4. LAYOUT
 -------------------------------------------------------------------------- */
.container {
 max-width: var(--container);
 margin: 0 auto;
 padding: 0 var(--s-5);
}

.container-narrow {
 max-width: var(--container-narrow);
 margin: 0 auto;
 padding: 0 var(--s-5);
}

.container-reading {
 max-width: var(--container-reading);
 margin: 0 auto;
 padding: 0 var(--s-5);
}

.section { padding: var(--s-10) 0; }
.section-tight { padding: var(--s-8) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }

@media (max-width: 960px) {
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: var(--s-6); }
 .section { padding: var(--s-8) 0; }
}

.rule {
 border: 0;
 border-top: 1px solid var(--hairline);
 margin: 0;
}

.rule-strong {
 border: 0;
 border-top: 1px solid var(--graphite);
 margin: 0;
}

/* --------------------------------------------------------------------------
 5. NAV
 -------------------------------------------------------------------------- */
.nav {
 position: sticky;
 top: 0;
 z-index: 100;
 background: rgba(255, 255, 255, 0.94);
 backdrop-filter: saturate(180%) blur(12px);
 -webkit-backdrop-filter: saturate(180%) blur(12px);
 border-bottom: 1px solid var(--hairline);
}

.nav-inner {
 max-width: var(--container);
 margin: 0 auto;
 padding: var(--s-4) var(--s-5);
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: var(--s-5);
}

.logo {
 display: flex;
 align-items: baseline;
 gap: var(--s-2);
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 1.25rem;
 line-height: 1;
 color: var(--graphite);
 letter-spacing: -0.015em;
}
.logo .logo-mark {
 display: inline-block;
 width: 28px;
 height: 28px;
 background: var(--copper);
 border-radius: 2px;
 position: relative;
 flex-shrink: 0;
 align-self: center;
}
.logo .logo-mark::after {
 content: 'W';
 position: absolute;
 inset: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--white);
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 1rem;
 transform: translateY(-1px);
}

.nav-links {
 display: flex;
 gap: var(--s-6);
 align-items: center;
 list-style: none;
 margin: 0;
 padding: 0;
}

.nav-links a {
 font-family: var(--font-sub);
 font-weight: 500;
 font-size: 0.9375rem;
 color: var(--graphite);
 padding: var(--s-2) 0;
 position: relative;
}

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

.nav-links a.active::after {
 content: '';
 position: absolute;
 left: 0;
 right: 0;
 bottom: -2px;
 height: 2px;
 background: var(--copper);
}

.nav-cta {
 display: inline-flex;
 align-items: center;
 gap: var(--s-2);
 background: var(--graphite);
 color: var(--white) !important;
 padding: 0.625rem 1.125rem;
 border-radius: 2px;
 font-family: var(--font-sub);
 font-weight: 600;
 font-size: 0.875rem;
 transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--copper) !important; color: var(--white) !important; }

.mobile-toggle { display: none; background: none; border: none; padding: var(--s-2); }
.mobile-toggle svg { width: 24px; height: 24px; stroke: var(--graphite); }

@media (max-width: 880px) {
 .nav-links { display: none; }
 .mobile-toggle { display: block; }
 .nav-links.open {
 display: flex;
 position: absolute;
 top: 100%;
 left: 0;
 right: 0;
 flex-direction: column;
 background: var(--white);
 padding: var(--s-5);
 border-bottom: 1px solid var(--hairline);
 gap: var(--s-4);
 }
}

/* --------------------------------------------------------------------------
 6. BUTTONS
 -------------------------------------------------------------------------- */
.btn {
 display: inline-flex;
 align-items: center;
 gap: var(--s-2);
 padding: 0.875rem 1.5rem;
 font-family: var(--font-sub);
 font-weight: 600;
 font-size: 0.9375rem;
 letter-spacing: 0.005em;
 border-radius: 2px;
 transition: all 0.2s ease;
 cursor: pointer;
 border: 1px solid transparent;
 text-decoration: none;
}

.btn-primary {
 background: var(--copper);
 color: var(--white);
}
.btn-primary:hover { background: var(--copper-deep); color: var(--white); }

.btn-secondary {
 background: var(--graphite);
 color: var(--white);
}
.btn-secondary:hover { background: var(--copper); color: var(--white); }

.btn-outline {
 background: transparent;
 color: var(--graphite);
 border: 1px solid var(--graphite);
}
.btn-outline:hover { background: var(--graphite); color: var(--white); }

.btn-ghost {
 background: transparent;
 color: var(--graphite);
 padding-left: 0;
 padding-right: 0;
}
.btn-ghost .arrow {
 transition: transform 0.2s ease;
}
.btn-ghost:hover { color: var(--copper); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-lg { padding: 1.125rem 2rem; font-size: 1rem; }

.arrow { display: inline-block; }

/* --------------------------------------------------------------------------
 7. HERO
 -------------------------------------------------------------------------- */
.hero {
 padding: var(--s-10) 0 var(--s-9);
 position: relative;
 overflow: hidden;
}

.hero-grid {
 display: grid;
 grid-template-columns: 1.4fr 1fr;
 gap: var(--s-8);
 align-items: end;
}

@media (max-width: 960px) {
 .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
 .hero { padding: var(--s-8) 0 var(--s-7); }
}

.hero-eyebrow-row {
 display: flex;
 align-items: center;
 gap: var(--s-4);
 margin-bottom: var(--s-6);
}

.hero-eyebrow-row .eyebrow { margin: 0; }

.hero-eyebrow-row .divider {
 width: 40px;
 height: 1px;
 background: var(--eucalyptus);
}

.hero-cta-row {
 display: flex;
 align-items: center;
 gap: var(--s-5);
 margin-top: var(--s-6);
 flex-wrap: wrap;
}

.hero-proof {
 font-family: var(--font-mono);
 font-size: 0.75rem;
 color: var(--eucalyptus);
 letter-spacing: 0.04em;
}

.hero-side {
 border-left: 1px solid var(--hairline);
 padding-left: var(--s-6);
}

.hero-side-item { padding: var(--s-4) 0; border-top: 1px solid var(--hairline); }
.hero-side-item:first-child { border-top: 0; padding-top: 0; }
.hero-side-item:last-child { padding-bottom: 0; }
.hero-side-item .num {
 font-family: var(--font-mono);
 font-size: 0.75rem;
 color: var(--copper);
 letter-spacing: 0.08em;
}
.hero-side-item .label {
 font-family: var(--font-sub);
 font-weight: 600;
 font-size: 1rem;
 color: var(--graphite);
 margin-top: var(--s-1);
}
.hero-side-item .desc {
 font-size: 0.875rem;
 color: var(--eucalyptus);
 margin-top: var(--s-1);
 line-height: 1.5;
}

@media (max-width: 960px) {
 .hero-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--hairline); padding-top: var(--s-5); }
}

/* --------------------------------------------------------------------------
 8. SECTION HEADERS
 -------------------------------------------------------------------------- */
.section-head {
 display: grid;
 grid-template-columns: auto 1fr;
 gap: var(--s-6);
 align-items: baseline;
 padding-bottom: var(--s-6);
 border-bottom: 1px solid var(--hairline);
 margin-bottom: var(--s-7);
}

.section-number {
 font-family: var(--font-mono);
 font-size: 0.8125rem;
 color: var(--copper);
 letter-spacing: 0.1em;
 font-weight: 500;
}

.section-title .eyebrow { margin-bottom: var(--s-3); }

@media (max-width: 720px) {
 .section-head { grid-template-columns: 1fr; gap: var(--s-3); }
}

/* --------------------------------------------------------------------------
 9. CARDS
 -------------------------------------------------------------------------- */
.card {
 padding: var(--s-6);
 border: 1px solid var(--hairline);
 background: var(--white);
 transition: all 0.25s ease;
 display: flex;
 flex-direction: column;
 gap: var(--s-4);
 height: 100%;
}

.card:hover {
 border-color: var(--graphite);
 transform: translateY(-2px);
}

.card-slate {
 background: var(--slate);
 border-color: transparent;
}

.card-dark {
 background: var(--graphite);
 color: var(--white);
 border-color: var(--graphite);
}
.card-dark .display, .card-dark .display-s, .card-dark .display-m, .card-dark h3 { color: var(--white); }
.card-dark .eyebrow { color: var(--eucalyptus-pale); }
.card-dark p { color: rgba(255,255,255,0.8); }

.card-num {
 font-family: var(--font-mono);
 font-size: 0.8125rem;
 color: var(--copper);
 letter-spacing: 0.08em;
 font-weight: 500;
}

.card .title {
 font-family: var(--font-sub);
 font-weight: 600;
 font-size: 1.25rem;
 color: var(--graphite);
 margin: 0;
 line-height: 1.3;
}
.card-dark .title { color: var(--white); }

.card .desc {
 font-size: 0.9375rem;
 color: var(--graphite-soft);
 line-height: 1.6;
 margin: 0;
}
.card-dark .desc { color: rgba(255,255,255,0.75); }

/* Avatar card (clickable) */
.avatar-card {
 display: flex;
 flex-direction: column;
 gap: var(--s-3);
 padding: var(--s-5);
 border: 1px solid var(--hairline);
 background: var(--white);
 transition: all 0.25s ease;
 cursor: pointer;
 text-decoration: none;
 color: inherit;
 position: relative;
}
.avatar-card::after {
 content: '→';
 position: absolute;
 top: var(--s-5);
 right: var(--s-5);
 font-family: var(--font-body);
 color: var(--eucalyptus);
 transition: all 0.2s ease;
}
.avatar-card:hover {
 border-color: var(--graphite);
 background: var(--slate);
}
.avatar-card:hover::after { color: var(--copper); transform: translateX(4px); }
.avatar-card .tag {
 font-family: var(--font-mono);
 font-size: 0.6875rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--eucalyptus);
}
.avatar-card .name {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 1.5rem;
 color: var(--graphite);
 line-height: 1.15;
}
.avatar-card .hook {
 font-size: 0.9375rem;
 color: var(--graphite-soft);
 line-height: 1.55;
 padding-right: var(--s-5);
}

/* --------------------------------------------------------------------------
 10. TESTIMONIAL / QUOTE
 -------------------------------------------------------------------------- */
.pullquote {
 padding: var(--s-7) 0;
 border-top: 1px solid var(--graphite);
 border-bottom: 1px solid var(--graphite);
}

.pullquote .quote-text {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: clamp(1.5rem, 3vw, 2.25rem);
 line-height: 1.2;
 letter-spacing: -0.01em;
 color: var(--graphite);
 margin: 0 0 var(--s-4);
}

.pullquote .attrib {
 font-family: var(--font-mono);
 font-size: 0.8125rem;
 letter-spacing: 0.08em;
 color: var(--eucalyptus);
 text-transform: uppercase;
}

/* --------------------------------------------------------------------------
 11. COMPARISON TABLE
 -------------------------------------------------------------------------- */
.comparison {
 border: 1px solid var(--hairline);
 border-radius: 2px;
 overflow: hidden;
}
.comparison-row {
 display: grid;
 grid-template-columns: 1.2fr 1fr 1fr;
 border-bottom: 1px solid var(--hairline);
}
.comparison-row:last-child { border-bottom: 0; }
.comparison-row > div {
 padding: var(--s-5);
 border-right: 1px solid var(--hairline);
}
.comparison-row > div:last-child { border-right: 0; }
.comparison-head {
 background: var(--slate);
}
.comparison-head > div {
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--eucalyptus);
}
.comparison-row .label {
 font-family: var(--font-sub);
 font-weight: 600;
 color: var(--graphite);
}
.comparison .wlu { background: var(--graphite); color: var(--white); }
.comparison .wlu.comparison-head { background: var(--copper); color: var(--white); }
.comparison .wlu.comparison-head > div { color: var(--white); }

@media (max-width: 720px) {
 .comparison-row { grid-template-columns: 1fr; }
 .comparison-row > div { border-right: 0; border-bottom: 1px solid var(--hairline); }
}

/* --------------------------------------------------------------------------
 12. PROGRAMS / PRICING
 -------------------------------------------------------------------------- */
.program-card {
 display: flex;
 flex-direction: column;
 padding: var(--s-6);
 border: 1px solid var(--hairline);
 background: var(--white);
 position: relative;
}

.program-card.featured {
 background: var(--graphite);
 color: var(--white);
 border-color: var(--graphite);
}
.program-card.featured .program-name,
.program-card.featured .program-price .amt { color: var(--white); }
.program-card.featured .eyebrow { color: var(--copper); }
.program-card.featured p, .program-card.featured li { color: rgba(255,255,255,0.82); }
.program-card.featured .rule { border-color: rgba(255,255,255,0.2); }

.program-card .ribbon {
 position: absolute;
 top: 0;
 right: var(--s-5);
 background: var(--copper);
 color: var(--white);
 font-family: var(--font-mono);
 font-size: 0.6875rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 padding: 0.375rem 0.75rem;
 transform: translateY(-50%);
}

.program-name {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 2rem;
 line-height: 1.08;
 color: var(--graphite);
 margin: var(--s-3) 0 var(--s-4);
}

.program-price {
 display: flex;
 align-items: baseline;
 gap: var(--s-2);
 margin-bottom: var(--s-5);
}
.program-price .amt {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 2.5rem;
 color: var(--graphite);
 line-height: 1;
}
.program-price .currency {
 font-family: var(--font-sub);
 font-weight: 600;
 color: var(--eucalyptus);
}
.program-price .frequency {
 font-family: var(--font-sub);
 font-size: 0.9375rem;
 color: var(--eucalyptus);
 font-weight: 500;
}

.includes {
 list-style: none;
 padding: 0;
 margin: 0 0 var(--s-6);
 display: flex;
 flex-direction: column;
 gap: var(--s-3);
}
.includes li {
 display: flex;
 gap: var(--s-3);
 font-size: 0.9375rem;
 line-height: 1.5;
}
.includes li::before {
 content: '›';
 color: var(--copper);
 font-weight: 700;
 flex-shrink: 0;
}

.program-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
 13. FOOTER
 -------------------------------------------------------------------------- */
.footer {
 background: var(--graphite);
 color: rgba(255,255,255,0.78);
 padding: var(--s-9) 0 var(--s-6);
 margin-top: var(--s-10);
}
.footer .container { padding-top: 0; padding-bottom: 0; }

.footer-grid {
 display: grid;
 grid-template-columns: 1.5fr 1fr 1fr 1fr;
 gap: var(--s-6);
 margin-bottom: var(--s-8);
}
@media (max-width: 880px) {
 .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 560px) {
 .footer-grid { grid-template-columns: 1fr; }
}

.footer .eyebrow { color: var(--eucalyptus-pale); margin-bottom: var(--s-3); }
.footer a { color: rgba(255,255,255,0.78); display: block; margin-bottom: var(--s-2); font-size: 0.9375rem; }
.footer a:hover { color: var(--copper); }

.footer-brand-tag {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 1.5rem;
 color: var(--white);
 margin-bottom: var(--s-3);
 line-height: 1.2;
}

.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: var(--s-5);
 border-top: 1px solid rgba(255,255,255,0.12);
 font-family: var(--font-mono);
 font-size: 0.75rem;
 color: var(--eucalyptus-pale);
 letter-spacing: 0.04em;
 gap: var(--s-4);
 flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
 14. UTILITIES
 -------------------------------------------------------------------------- */
.text-copper { color: var(--copper); }
.text-eucalyptus { color: var(--eucalyptus); }
.bg-slate { background: var(--slate); }
.bg-graphite { background: var(--graphite); color: var(--white); }
.bg-graphite .eyebrow { color: var(--eucalyptus-pale); }
.bg-graphite p { color: rgba(255,255,255,0.8); }
.bg-graphite .display, .bg-graphite .display-xl, .bg-graphite .display-l, .bg-graphite .display-m, .bg-graphite .display-s { color: var(--white); }
.bg-graphite .lead { color: rgba(255,255,255,0.78); }

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: var(--s-2); }
.mb-3 { margin-bottom: var(--s-3); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }

.center { text-align: center; }

.hidden { display: none !important; }

/* --------------------------------------------------------------------------
 15. PLACEHOLDER IMAGE TREATMENT
 -------------------------------------------------------------------------- */
.photo-placeholder {
 background: linear-gradient(135deg, var(--slate) 0%, #e6eaec 100%);
 aspect-ratio: 4 / 5;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 overflow: hidden;
 border: 1px solid var(--hairline);
}
.photo-placeholder::before {
 content: '';
 position: absolute;
 inset: 0;
 background:
 repeating-linear-gradient(
 45deg,
 transparent,
 transparent 10px,
 rgba(96, 114, 116, 0.06) 10px,
 rgba(96, 114, 116, 0.06) 11px
 );
}
.photo-placeholder .label {
 position: relative;
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--eucalyptus);
 padding: var(--s-2) var(--s-3);
 background: rgba(255,255,255,0.9);
 border: 1px solid var(--hairline);
}

.photo-placeholder.portrait { aspect-ratio: 3 / 4; }
.photo-placeholder.square { aspect-ratio: 1 / 1; }
.photo-placeholder.wide { aspect-ratio: 16 / 9; }

/* --------------------------------------------------------------------------
 16. BANNER / ANNOUNCEMENT
 -------------------------------------------------------------------------- */
.banner {
 background: var(--graphite);
 color: var(--white);
 padding: var(--s-2) var(--s-5);
 text-align: center;
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.08em;
}
.banner .dot {
 display: inline-block;
 width: 6px;
 height: 6px;
 background: var(--copper);
 border-radius: 50%;
 margin-right: var(--s-2);
 transform: translateY(-1px);
}
.banner a { color: var(--copper); text-decoration: underline; text-underline-offset: 2px; }

/* --------------------------------------------------------------------------
 17. QUIZ (quiz.html specific but defined here)
 -------------------------------------------------------------------------- */
.quiz-shell {
 min-height: calc(100vh - 200px);
 padding: var(--s-7) 0 var(--s-9);
}

.quiz-progress {
 display: flex;
 align-items: center;
 gap: var(--s-3);
 margin-bottom: var(--s-6);
}
.quiz-progress-bar {
 flex: 1;
 height: 2px;
 background: var(--hairline);
 position: relative;
 overflow: hidden;
}
.quiz-progress-bar::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0;
 bottom: 0;
 background: var(--copper);
 transition: width 0.3s ease;
 width: var(--progress, 0%);
}
.quiz-progress .label {
 font-family: var(--font-mono);
 font-size: 0.75rem;
 color: var(--eucalyptus);
 letter-spacing: 0.08em;
}

.quiz-question {
 max-width: 720px;
 margin: 0 auto;
}

.quiz-question .q-num {
 font-family: var(--font-mono);
 font-size: 0.8125rem;
 color: var(--copper);
 letter-spacing: 0.1em;
 margin-bottom: var(--s-3);
}

.quiz-question .q-text {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: clamp(1.75rem, 3.5vw, 2.5rem);
 line-height: 1.12;
 letter-spacing: -0.015em;
 color: var(--graphite);
 margin: 0 0 var(--s-6);
}

.quiz-options {
 display: flex;
 flex-direction: column;
 gap: var(--s-3);
 margin-bottom: var(--s-6);
}

.quiz-option {
 padding: var(--s-4) var(--s-5);
 border: 1px solid var(--hairline);
 background: var(--white);
 cursor: pointer;
 transition: all 0.15s ease;
 text-align: left;
 font-family: var(--font-body);
 font-size: 1rem;
 color: var(--graphite);
 display: flex;
 align-items: center;
 gap: var(--s-4);
 line-height: 1.45;
}

.quiz-option:hover {
 border-color: var(--graphite);
 background: var(--slate);
}

.quiz-option.selected {
 border-color: var(--copper);
 background: rgba(14, 138, 156, 0.04);
 box-shadow: inset 3px 0 0 var(--copper);
}

.quiz-option .bullet {
 width: 20px;
 height: 20px;
 border: 1px solid var(--eucalyptus);
 border-radius: 50%;
 flex-shrink: 0;
 position: relative;
 transition: all 0.15s;
}

.quiz-option.selected .bullet {
 border-color: var(--copper);
}
.quiz-option.selected .bullet::after {
 content: '';
 position: absolute;
 inset: 3px;
 border-radius: 50%;
 background: var(--copper);
}

.quiz-nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: var(--s-5);
 border-top: 1px solid var(--hairline);
}
.quiz-nav .step-meta {
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.08em;
 color: var(--eucalyptus);
}

/* Email gate */
.email-gate { max-width: 520px; margin: 0 auto; text-align: center; }
.email-input {
 width: 100%;
 padding: 1rem 1.125rem;
 font-family: var(--font-body);
 font-size: 1rem;
 color: var(--graphite);
 background: var(--white);
 border: 1px solid var(--hairline-strong);
 border-radius: 2px;
 transition: border 0.2s;
 margin-bottom: var(--s-3);
}
.email-input:focus { outline: none; border-color: var(--copper); }

/* Results */
.results-shell {
 max-width: 820px;
 margin: 0 auto;
 text-align: center;
}
.results-tier {
 font-family: var(--font-mono);
 font-size: 0.8125rem;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: var(--copper);
 margin-bottom: var(--s-4);
}
.results-profile {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: clamp(2.25rem, 5vw, 4rem);
 line-height: 1;
 letter-spacing: -0.02em;
 color: var(--graphite);
 margin: 0 0 var(--s-5);
}
.results-mirror {
 font-family: var(--font-body);
 font-size: 1.1875rem;
 line-height: 1.55;
 color: var(--graphite-soft);
 max-width: 620px;
 margin: 0 auto var(--s-7);
}

/* --------------------------------------------------------------------------
 18. LANDING PAGE (avatar) SPECIFIC
 -------------------------------------------------------------------------- */
.landing-hero {
 padding: var(--s-8) 0 var(--s-8);
 background: var(--white);
 border-bottom: 1px solid var(--hairline);
}
.landing-hero .tag {
 display: inline-block;
 padding: 0.375rem 0.75rem;
 background: var(--slate);
 font-family: var(--font-mono);
 font-size: 0.6875rem;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--eucalyptus);
 margin-bottom: var(--s-5);
}

.video-placeholder {
 aspect-ratio: 16 / 9;
 background: var(--graphite);
 border-radius: 2px;
 position: relative;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
}
.video-placeholder::before {
 content: '';
 position: absolute;
 inset: 0;
 background:
 radial-gradient(ellipse at center, rgba(14, 138, 156, 0.15) 0%, transparent 60%),
 repeating-linear-gradient(
 45deg,
 transparent,
 transparent 2px,
 rgba(255,255,255,0.015) 2px,
 rgba(255,255,255,0.015) 3px
 );
}
.video-placeholder .play {
 position: relative;
 width: 64px;
 height: 64px;
 background: var(--copper);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: transform 0.2s;
}
.video-placeholder:hover .play { transform: scale(1.05); }
.video-placeholder .play::after {
 content: '';
 width: 0;
 height: 0;
 border-left: 16px solid var(--white);
 border-top: 10px solid transparent;
 border-bottom: 10px solid transparent;
 margin-left: 4px;
}
.video-placeholder .video-label {
 position: absolute;
 bottom: var(--s-4);
 left: var(--s-4);
 font-family: var(--font-mono);
 font-size: 0.6875rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.6);
}

/* --------------------------------------------------------------------------
 19. PAIN POINT LIST
 -------------------------------------------------------------------------- */
.pain-list {
 list-style: none;
 padding: 0;
 margin: 0;
 counter-reset: pain;
}
.pain-list li {
 padding: var(--s-5) 0;
 border-bottom: 1px solid var(--hairline);
 display: grid;
 grid-template-columns: 60px 1fr;
 gap: var(--s-5);
 counter-increment: pain;
}
.pain-list li:first-child { border-top: 1px solid var(--hairline); }
.pain-list li::before {
 content: counter(pain, decimal-leading-zero);
 font-family: var(--font-mono);
 font-size: 0.8125rem;
 color: var(--copper);
 letter-spacing: 0.08em;
 padding-top: 0.25rem;
}
.pain-list .problem {
 font-family: var(--font-sub);
 font-weight: 600;
 font-size: 1.0625rem;
 color: var(--graphite);
 margin: 0 0 var(--s-2);
 line-height: 1.35;
}
.pain-list .fix {
 font-size: 0.9375rem;
 color: var(--graphite-soft);
 margin: 0;
 line-height: 1.5;
}

/* --------------------------------------------------------------------------
 20. FAQ / ACCORDION
 -------------------------------------------------------------------------- */
.faq-item {
 border-top: 1px solid var(--hairline);
 padding: var(--s-5) 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-q {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: var(--s-4);
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 1.375rem;
 line-height: 1.2;
 color: var(--graphite);
 cursor: pointer;
 width: 100%;
 text-align: left;
 padding: 0;
}
.faq-q .indicator {
 flex-shrink: 0;
 width: 28px;
 height: 28px;
 border: 1px solid var(--graphite);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-family: var(--font-sub);
 font-size: 1rem;
 transition: all 0.25s;
}
.faq-item.open .faq-q .indicator { background: var(--copper); color: var(--white); border-color: var(--copper); }
.faq-item.open .faq-q .indicator .plus { transform: rotate(45deg); }
.faq-q .plus { transition: transform 0.25s; display: inline-block; line-height: 1; }
.faq-a {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease, padding 0.3s ease;
 font-size: 1rem;
 color: var(--graphite-soft);
 line-height: 1.6;
}
.faq-item.open .faq-a {
 max-height: 500px;
 padding-top: var(--s-4);
}

/* --------------------------------------------------------------------------
 21. RESOURCE / BLOG
 -------------------------------------------------------------------------- */
.resource-grid {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: var(--s-6);
 margin-bottom: var(--s-8);
}
@media (max-width: 880px) { .resource-grid { grid-template-columns: 1fr; } }

.resource-featured {
 display: flex;
 flex-direction: column;
 padding: var(--s-6);
 background: var(--slate);
 min-height: 360px;
}

.resource-card {
 display: block;
 padding: var(--s-5) 0;
 border-top: 1px solid var(--hairline);
 text-decoration: none;
 transition: background 0.2s;
}
.resource-card:last-child { border-bottom: 1px solid var(--hairline); }
.resource-card:hover { background: var(--bg-subtle); }
.resource-card .tag {
 font-family: var(--font-mono);
 font-size: 0.6875rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--copper);
 margin-bottom: var(--s-2);
}
.resource-card .title {
 font-family: var(--font-sub);
 font-weight: 600;
 font-size: 1.125rem;
 color: var(--graphite);
 margin: 0 0 var(--s-2);
 line-height: 1.35;
}
.resource-card .desc {
 font-size: 0.9375rem;
 color: var(--graphite-soft);
 margin: 0;
 line-height: 1.5;
}

/* --------------------------------------------------------------------------
 22. FORMS
 -------------------------------------------------------------------------- */
.form-field {
 display: flex;
 flex-direction: column;
 gap: var(--s-2);
 margin-bottom: var(--s-5);
}
.form-field label {
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--eucalyptus);
}
.form-field input, .form-field textarea, .form-field select {
 padding: 0.875rem 1rem;
 font-family: var(--font-body);
 font-size: 1rem;
 color: var(--graphite);
 background: var(--white);
 border: 1px solid var(--hairline-strong);
 border-radius: 2px;
 transition: border 0.2s;
 width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
 outline: none;
 border-color: var(--copper);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* --------------------------------------------------------------------------
 23. ANIMATIONS (subtle, editorial)
 -------------------------------------------------------------------------- */
@keyframes rise {
 from { opacity: 0; transform: translateY(14px); }
 to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.7s ease-out both; }
.rise.delay-1 { animation-delay: 0.1s; }
.rise.delay-2 { animation-delay: 0.2s; }
.rise.delay-3 { animation-delay: 0.3s; }
.rise.delay-4 { animation-delay: 0.4s; }

/* Slight attention to key page load moments */
@keyframes underline-reveal {
 from { background-size: 0% 100%; }
 to { background-size: 100% 100%; }
}

/* Focus styles for accessibility */
*:focus-visible {
 outline: 2px solid var(--copper);
 outline-offset: 3px;
}

/* --------------------------------------------------------------------------
 24. ARTICLES, INDEX + ARTICLE PAGES
 -------------------------------------------------------------------------- */
.articles-hero {
 padding: var(--s-8) 0 var(--s-7);
 border-bottom: 1px solid var(--hairline);
}

.articles-filter {
 display: flex;
 flex-wrap: wrap;
 gap: var(--s-2);
 margin-top: var(--s-6);
}
.articles-filter button {
 font-family: var(--font-mono);
 font-size: 0.6875rem;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--eucalyptus);
 padding: 0.4rem 0.75rem;
 border: 1px solid var(--hairline);
 background: var(--white);
 transition: all 0.2s ease;
}
.articles-filter button:hover { border-color: var(--graphite); color: var(--graphite); }
.articles-filter button.active { background: var(--graphite); color: var(--white); border-color: var(--graphite); }

.article-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: var(--s-5);
}
@media (max-width: 960px) { .article-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .article-grid { grid-template-columns: 1fr; } }

.article-index-card {
 display: flex;
 flex-direction: column;
 gap: var(--s-3);
 padding: var(--s-5);
 border: 1px solid var(--hairline);
 background: var(--white);
 text-decoration: none;
 color: inherit;
 transition: all 0.25s ease;
 height: 100%;
}
.article-index-card:hover { border-color: var(--graphite); transform: translateY(-2px); }
.article-index-card .tag {
 font-family: var(--font-mono);
 font-size: 0.6875rem;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--copper);
}
.article-index-card .title {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 1.4rem;
 line-height: 1.15;
 color: var(--graphite);
 margin: 0;
}
.article-index-card .dek {
 font-size: 0.9375rem;
 color: var(--graphite-soft);
 line-height: 1.55;
 margin: 0;
}
.article-index-card .read {
 margin-top: auto;
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.08em;
 color: var(--eucalyptus);
}

/* Article page */
.article-head { padding: var(--s-8) 0 var(--s-6); border-bottom: 1px solid var(--hairline); }
.breadcrumb {
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.06em;
 color: var(--eucalyptus);
 margin-bottom: var(--s-5);
}
.breadcrumb a { color: var(--eucalyptus); text-decoration: none; }
.breadcrumb a:hover { color: var(--copper); }

.article-title {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: clamp(2rem, 4.5vw, 3.25rem);
 line-height: 1.05;
 letter-spacing: -0.02em;
 color: var(--graphite);
 margin: 0 0 var(--s-5);
}
.article-byline {
 display: flex;
 flex-wrap: wrap;
 gap: var(--s-4);
 font-family: var(--font-mono);
 font-size: 0.75rem;
 letter-spacing: 0.04em;
 color: var(--eucalyptus);
}

.article-body { padding: var(--s-7) 0 var(--s-8); }
.article-body p { font-size: 1.0625rem; line-height: 1.72; color: var(--graphite-soft); margin: 0 0 var(--s-5); }
.article-body p:first-of-type { font-size: 1.1875rem; color: var(--graphite); }
.article-body h2 {
 font-family: var(--font-sub);
 font-weight: 600;
 font-size: 1.5rem;
 color: var(--graphite);
 line-height: 1.25;
 margin: var(--s-7) 0 var(--s-4);
}
.article-body h3 {
 font-family: var(--font-sub);
 font-weight: 600;
 font-size: 1.1875rem;
 color: var(--graphite);
 margin: var(--s-6) 0 var(--s-3);
}
.article-body ul { margin: 0 0 var(--s-5); padding-left: 0; list-style: none; }
.article-body ul li {
 display: grid; grid-template-columns: 20px 1fr; gap: var(--s-3);
 font-size: 1.0625rem; line-height: 1.6; color: var(--graphite-soft); margin-bottom: var(--s-3);
}
.article-body ul li::before { content: '\203A'; color: var(--copper); font-weight: 700; }
.article-body strong { color: var(--graphite); font-weight: 600; }
.article-body .article-quote {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: clamp(1.375rem, 2.5vw, 1.75rem);
 line-height: 1.25;
 color: var(--graphite);
 border-left: 3px solid var(--copper);
 padding-left: var(--s-5);
 margin: var(--s-6) 0;
}

.article-cta {
 background: var(--graphite);
 color: var(--white);
 padding: var(--s-7);
 margin-top: var(--s-8);
 text-align: center;
}
.article-cta .eyebrow { color: var(--copper); margin-bottom: var(--s-3); }
.article-cta h3 { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.875rem; color: var(--white); margin: 0 0 var(--s-3); line-height: 1.15; }
.article-cta p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto var(--s-5); }

.article-related { padding-top: var(--s-7); border-top: 1px solid var(--hairline); }

/* ==========================================================================
 25. PREMIUM ELEVATION LAYER
 Depth, warmth, texture & refined interaction, go-to-market polish.
 Layered on top of the editorial base; load order gives these priority.
 ========================================================================== */
:root {
 --shadow-xs: 0 1px 2px rgba(37,40,44,0.04);
 --shadow-sm: 0 2px 8px rgba(37,40,44,0.06), 0 1px 2px rgba(37,40,44,0.04);
 --shadow-md: 0 10px 30px -12px rgba(37,40,44,0.18), 0 2px 6px rgba(37,40,44,0.05);
 --shadow-lg: 0 28px 60px -24px rgba(37,40,44,0.30), 0 6px 16px rgba(37,40,44,0.08);
 --shadow-copper: 0 10px 26px -10px rgba(14, 138, 156,0.45);
 --paper: #f5f2ee; /* Linen White (style guide) */
}

/* Warm paper base instead of stark white */
body { background: var(--paper); }

/* Subtle grain + warmth across the whole page */
body::before {
 content: '';
 position: fixed;
 inset: 0;
 pointer-events: none;
 z-index: 0;
 background:
 radial-gradient(1200px 600px at 100% -5%, rgba(14, 138, 156,0.05) 0%, transparent 60%),
 radial-gradient(900px 500px at -10% 110%, rgba(96,114,116,0.06) 0%, transparent 60%);
}
.nav, section, footer, .banner { position: relative; z-index: 1; }

/* ---- Nav: lift it off the page ---- */
.nav {
 background: rgba(251,250,248,0.82);
 box-shadow: 0 1px 0 var(--hairline), 0 6px 24px -18px rgba(37,40,44,0.25);
}

/* ---- Logo mark: crafted, not a flat square ---- */
.logo .logo-mark {
 width: 30px; height: 30px;
 border-radius: 6px;
 background: linear-gradient(150deg, var(--copper) 0%, var(--copper-deep) 100%);
 box-shadow: var(--shadow-copper), inset 0 1px 0 rgba(255,255,255,0.25);
}
.logo .logo-mark::after { font-size: 1.05rem; }

/* ---- Buttons: depth + tactile lift ---- */
.btn { border-radius: 6px; }
.btn-primary {
 background: linear-gradient(150deg, var(--copper) 0%, var(--copper-deep) 100%);
 box-shadow: var(--shadow-copper);
}
.btn-primary:hover {
 background: linear-gradient(150deg, var(--copper-deep) 0%, #6f3019 100%);
 transform: translateY(-2px);
 box-shadow: 0 16px 34px -10px rgba(14, 138, 156,0.55);
}
.btn-secondary { box-shadow: var(--shadow-md); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { border-width: 1.5px; }
.btn-outline:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta { border-radius: 6px; box-shadow: var(--shadow-md); }
.nav-cta:hover { box-shadow: var(--shadow-copper); }

/* ---- Cards: elevate from wireframe to object ---- */
.card, .avatar-card, .program-card, .article-index-card {
 border-radius: 10px;
 background: var(--white);
 box-shadow: var(--shadow-sm);
}
.card:hover, .article-index-card:hover {
 transform: translateY(-4px);
 box-shadow: var(--shadow-lg);
 border-color: var(--hairline);
}
.avatar-card { border-radius: 10px; }
.avatar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); }
.avatar-card:hover .name { color: var(--copper); }
.program-card { border-radius: 12px; box-shadow: var(--shadow-md); }
.program-card.featured { box-shadow: var(--shadow-lg); }
.card-slate, .resource-featured { border-radius: 10px; }

/* ---- Slate sections: faint blueprint grid (the auditor motif) ---- */
.bg-slate, .card-slate, .resource-featured {
 background-color: var(--slate);
 background-image:
 linear-gradient(rgba(96,114,116,0.05) 1px, transparent 1px),
 linear-gradient(90deg, rgba(96,114,116,0.05) 1px, transparent 1px);
 background-size: 28px 28px;
}

/* ---- HERO: warm wash + blueprint grid + corner glow ---- */
.hero {
 background:
 radial-gradient(900px 520px at 88% 8%, rgba(14, 138, 156,0.10) 0%, transparent 58%),
 linear-gradient(180deg, rgba(241,243,244,0.55) 0%, transparent 70%);
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 pointer-events: none;
 background-image:
 linear-gradient(rgba(37,40,44,0.035) 1px, transparent 1px),
 linear-gradient(90deg, rgba(37,40,44,0.035) 1px, transparent 1px);
 background-size: 32px 32px;
 -webkit-mask-image: radial-gradient(circle at 80% 20%, #000 0%, transparent 70%);
 mask-image: radial-gradient(circle at 80% 20%, #000 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; }

/* Oversized faint monogram fills the empty hero band */
.hero::after {
 content: 'W';
 position: absolute;
 top: 50%; right: 4%;
 transform: translateY(-50%);
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 34rem;
 line-height: 0.7;
 color: rgba(14, 138, 156,0.05);
 pointer-events: none;
 z-index: 0;
 user-select: none;
}
@media (max-width: 960px) { .hero::after { display: none; } }

/* Hero side panel: give it presence */
.hero-side {
 background: rgba(255,255,255,0.7);
 backdrop-filter: blur(2px);
 border: 1px solid var(--hairline);
 border-radius: 12px;
 padding: var(--s-6);
 box-shadow: var(--shadow-md);
}
@media (max-width: 960px) {
 .hero-side { border-left: 1px solid var(--hairline); padding: var(--s-5); }
}

/* ---- Section headers: copper tick accent ---- */
.section-number { position: relative; padding-left: 0; }

/* ---- Pullquote: warm panel ---- */
.pullquote {
 background: linear-gradient(180deg, rgba(241,243,244,0.6), transparent);
 border-top: 2px solid var(--copper);
 border-bottom: 1px solid var(--hairline);
 border-radius: 12px;
 padding: var(--s-7) var(--s-6);
}

/* ---- Comparison + program ribbon polish ---- */
.comparison { border-radius: 12px; box-shadow: var(--shadow-md); }
.program-card .ribbon { border-radius: 4px; box-shadow: var(--shadow-sm); }

/* ---- Inputs ---- */
.form-field input, .form-field textarea, .form-field select, .email-input {
 border-radius: 8px;
 background: var(--white);
 box-shadow: var(--shadow-xs);
}

/* ---- Footer: subtle top sheen + grid texture ---- */
.footer {
 background:
 radial-gradient(700px 300px at 85% 0%, rgba(14, 138, 156,0.14) 0%, transparent 60%),
 var(--graphite);
}

/* ---- Result + article CTA panels: depth ---- */
.article-cta, .result-hero { border-radius: 14px; box-shadow: var(--shadow-lg); }
.result-hero { margin: 0; }

/* ---- Banner: refined ---- */
.banner { background: linear-gradient(90deg, var(--graphite), #1c1f22); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
 .btn, .card, .avatar-card, .article-index-card { transition: none !important; }
 .btn:hover, .card:hover, .avatar-card:hover, .article-index-card:hover { transform: none !important; }
}

/* ==========================================================================
 26. HERO FIT & DENSITY
 Heroes fit above the fold; less scrolling site-wide.
 ========================================================================== */
.display-xl { font-size: clamp(2.25rem, 4.6vw, 3.5rem); line-height: 1.05; }
.display-l { font-size: clamp(1.9rem, 3.8vw, 2.85rem); line-height: 1.07; }
.display-m { font-size: clamp(1.55rem, 2.8vw, 2.1rem); }
.lead { font-size: 1.0625rem; line-height: 1.5; }

/* Homepage hero */
.hero { padding: var(--s-6) 0 var(--s-7); }
.hero-grid { gap: var(--s-6); align-items: center; }
.hero-eyebrow-row { margin-bottom: var(--s-4); }
.hero h1, .hero .display-xl { margin: 0 0 var(--s-4) !important; }
.hero .lead { margin-bottom: var(--s-4) !important; max-width: 540px; }
.hero-cta-row { margin-top: var(--s-4); }
.hero-proof { margin-top: var(--s-5) !important; }
.hero::after { font-size: 26rem; }

/* Avatar / landing + articles + section heroes */
.landing-hero { padding: var(--s-6) 0; }
.articles-hero { padding: var(--s-6) 0 var(--s-5); }

/* Global density: shorter sections = less scrolling */
.section { padding: var(--s-7) 0; }
.section-tight { padding: var(--s-6) 0; }
.section-head { padding-bottom: var(--s-5); margin-bottom: var(--s-6); }
.article-head { padding: var(--s-6) 0 var(--s-5); }
.article-title { font-size: clamp(1.85rem, 4vw, 2.85rem); }

@media (max-width: 960px) {
 .hero { padding: var(--s-6) 0; }
 .section { padding: var(--s-6) 0; }
}

/* ==========================================================================
 27. CONTRAST FIXES (WCAG-readable accents on dark surfaces)
 ========================================================================== */
:root { --copper-bright: #E68A5E; } /* readable copper on graphite (~4.6:1) */

/* (A) Copper/accent text sitting on dark graphite surfaces -> brighten */
.bg-graphite .section-number,
.bg-graphite .copper-accent,
.card-dark .card-num,
.card-dark .eyebrow,
.card-dark .copper-accent,
.program-card.featured .eyebrow,
.program-card.featured .copper-accent,
.result-tier-label,
.article-cta .eyebrow {
 color: var(--copper-bright);
}

/* Muted price text on the dark featured plan -> legible */
.program-card.featured .program-price .currency,
.program-card.featured .program-price .frequency {
 color: rgba(255,255,255,0.72);
}

/* (B) Light cards/plans keep dark-on-light accent colors even when they sit
 inside a .bg-graphite section (prevents pale-on-pale text). */
.card:not(.card-dark) .eyebrow,
.program-card:not(.featured) .eyebrow { color: var(--eucalyptus); }
.card:not(.card-dark) .card-num,
.program-card:not(.featured) .card-num { color: var(--copper); }

/* Eyebrow directly on a slate background is fine, but ensure it's the
 functional eucalyptus (not the pale variant) for contrast. */
.bg-slate > .container .eyebrow,
.card-slate .eyebrow { color: var(--eucalyptus); }

/* (C) Light cards nested INSIDE a dark section must not inherit white body
 text (was causing white-on-white / white-on-slate list items). */
.bg-graphite .card:not(.card-dark),
.bg-graphite .program-card:not(.featured),
.bg-graphite .card-slate,
.bg-graphite .program-card[style*="slate"] { color: var(--graphite); }

.includes li { color: var(--graphite-soft); } /* default: readable on light plans */
.program-card.featured .includes li { color: rgba(255,255,255,0.82); } /* keep the dark featured plan light */
.card-dark .includes li { color: rgba(255,255,255,0.82); }

/* (D) Re-assert dark/slate card surfaces, the elevation layer's
 `.card { background:#fff }` was overriding these (equal specificity,
 later in file), turning dark cards white and hiding their white text. */
.card-dark { background: var(--graphite); }
.card-slate { background: var(--slate); }
.card-dark .ti
/* ==========================================================================
 28. LIGHT & AIRY OVERHAUL (teal accent), 2026 redesign
 Decisive override layer: open whitespace, light surfaces, single teal accent.
 ========================================================================== */

/* ---- Base / rhythm ---- */
body { background: var(--paper); color: var(--graphite); }
body::before { display: none !important; } /* drop old fixed copper wash */
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-8) 0; }
@media (max-width: 960px){ .section { padding: var(--s-8) 0; } }

.display-xl { font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.02; letter-spacing: -0.02em; }
.display-l { font-size: clamp(2rem, 3.8vw, 3.1rem); line-height: 1.05; }
.display-m { font-size: clamp(1.6rem, 2.8vw, 2.25rem); }
.lead { font-size: 1.1875rem; line-height: 1.65; color: var(--graphite-soft); }
.copper-accent, .text-copper { color: var(--teal) !important; }
.copper-underline {
 background-image: linear-gradient(to top, var(--teal) 3px, transparent 3px);
}

/* ---- Nav ---- */
.nav { background: rgba(251,253,253,0.85); box-shadow: 0 1px 0 var(--hairline); }
.nav-links a:hover { color: var(--teal); }
.nav-links a.active::after { background: var(--teal); }
.logo .logo-mark {
 width: 30px; height: 30px; border-radius: 8px;
 background: linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 100%);
 box-shadow: 0 6px 16px -6px rgba(14,138,156,0.5);
}
.nav-cta {
 background: var(--teal) !important; color: #fff !important;
 border-radius: 8px; box-shadow: 0 8px 20px -8px rgba(14,138,156,0.55);
}
.nav-cta:hover { background: var(--teal-deep) !important; }

/* ---- Buttons ---- */
.btn { border-radius: 8px; letter-spacing: 0; }
.btn-primary {
 background: var(--teal); color: #fff;
 box-shadow: 0 10px 24px -10px rgba(14,138,156,0.55);
}
.btn-primary:hover { background: var(--teal-deep); color:#fff; transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(14,138,156,0.6); }
.btn-secondary { background: var(--ink); color:#fff; }
.btn-secondary:hover { background: var(--teal); color:#fff; }
.btn-outline { color: var(--teal); border: 1.5px solid var(--teal); background: transparent; }
.btn-outline:hover { background: var(--teal); color:#fff; transform: translateY(-1px); }
.btn-ghost { color: var(--graphite); }
.btn-ghost:hover { color: var(--teal); }

/* ---- Section backgrounds: airy washes (no dark, no grid) ---- */
.bg-slate { background: var(--teal-tint); background-image: none; }
.bg-graphite { background: var(--teal-pale); color: var(--graphite); }
.bg-graphite .eyebrow, .bg-graphite .section-number { color: var(--teal); }
.bg-graphite .display, .bg-graphite .display-l, .bg-graphite .display-m, .bg-graphite .display-s, .bg-graphite h2 { color: var(--graphite); }
.bg-graphite p, .bg-graphite .lead { color: var(--graphite-soft); }
.card-slate { background: var(--white); background-image: none; }

/* ---- Section head ---- */
.section-number { color: var(--teal); }
.section-head { border-bottom: 1px solid var(--hairline); }

/* ---- Hero: open & airy ---- */
.hero { background: linear-gradient(180deg, var(--teal-tint) 0%, transparent 60%); padding: var(--s-8) 0 var(--s-9); }
.hero::before, .hero::after { display: none !important; } /* remove monogram + grid */
.hero-grid { gap: var(--s-8); align-items: start; }
.hero-eyebrow-row .divider { background: var(--teal); }
.hero-eyebrow-row .eyebrow { color: var(--teal); }
.hero-proof { color: var(--eucalyptus); }
.hero-side {
 background: #fff; border: 1px solid var(--hairline); border-radius: 16px;
 padding: var(--s-6); box-shadow: 0 30px 60px -30px rgba(18,43,49,0.18);
}
.hero-side-item .num { color: var(--teal); }
.hero-side-item .label { color: var(--graphite); }

/* ---- Stat row (reference-inspired) ---- */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-5); margin-top: var(--s-8); padding-top: var(--s-6); border-top: 1px solid var(--hairline); }
.stat .stat-num { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(1.75rem,3vw,2.5rem); color: var(--teal); line-height: 1; }
.stat .stat-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--eucalyptus); margin-top: var(--s-2); }
@media (max-width:720px){ .stat-row { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }

/* ---- Cards: clean, light, airy ---- */
.card {
 background: #fff; border: 1px solid var(--hairline); border-radius: 16px;
 padding: var(--s-6); box-shadow: 0 1px 2px rgba(18,43,49,0.04);
 transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(18,43,49,0.22); border-color: var(--teal); }
.card-num { color: var(--teal); }
.card .title { color: var(--graphite); }

.avatar-card {
 background: #fff; border: 1px solid var(--hairline); border-radius: 16px; padding: var(--s-6);
 box-shadow: 0 1px 2px rgba(18,43,49,0.04); transition: all .25s ease;
}
.avatar-card::after { color: var(--teal); }
.avatar-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(18,43,49,0.22); border-color: var(--teal); background:#fff; }
.avatar-card .tag { color: var(--teal); }
.avatar-card:hover .name { color: var(--teal); }

/* ---- Pullquote: airy teal ---- */
.pullquote {
 background: var(--teal-tint); border: 0; border-left: 4px solid var(--teal);
 border-radius: 16px; padding: var(--s-8);
}
.pullquote .quote-text { color: var(--graphite); }
.pullquote .attrib { color: var(--teal); }

/* ---- Programs: light cards, featured = teal-tinted (no dark) ---- */
.program-card { background:#fff; border:1px solid var(--hairline); border-radius:18px; box-shadow: 0 1px 3px rgba(18,43,49,0.05); }
.program-card.featured {
 background: var(--ink); border-color: var(--ink);
 box-shadow: 0 36px 70px -34px rgba(18,43,49,0.5);
}
.program-card.featured .program-name, .program-card.featured .program-price .amt { color:#fff; }
.program-card.featured .eyebrow { color: #5fd0de; }
.program-card.featured p, .program-card.featured li { color: rgba(255,255,255,0.85); }
.program-card.featured .includes li::before { color: #5fd0de; }
.program-card.featured .frequency, .program-card.featured .currency { color: rgba(255,255,255,0.7); }
.program-card .ribbon { background: var(--teal); border-radius: 6px; }
.program-name { color: var(--graphite); }
.program-price .amt { color: var(--graphite); }
.includes li::before { color: var(--teal); }
.includes li { color: var(--graphite-soft); }

/* ---- Testimonials ---- */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); }
@media (max-width:760px){ .testi-grid { grid-template-columns: 1fr; } }
.testi {
 background:#fff; border:1px solid var(--hairline); border-radius:16px; padding: var(--s-7);
 box-shadow: 0 1px 3px rgba(18,43,49,0.05); position: relative;
}
.testi .stars { color: var(--teal); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: var(--s-3); }
.testi .quote { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.3rem; line-height: 1.35; color: var(--graphite); margin: 0 0 var(--s-4); }
.testi .who { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--eucalyptus); }

/* ---- Process steps (numbered, airy) ---- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--s-6); }
@media (max-width:880px){ .steps { grid-template-columns: 1fr; } }
.step { padding-top: var(--s-5); border-top: 2px solid var(--teal); }
.step .step-n { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--teal); }
.step h3 { font-family: var(--font-sub); font-weight: 600; font-size: 1.25rem; color: var(--graphite); margin: var(--s-3) 0 var(--s-2); }
.step p { color: var(--graphite-soft); font-size: 1rem; line-height: 1.6; }

/* ---- Footer: deep teal-ink, grounds the airy page ---- */
.footer { background: var(--ink); color: rgba(255,255,255,0.74); }
.footer .eyebrow { color: #6fb9c4; }
.footer a { color: rgba(255,255,255,0.74); }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }

/* ---- Forms / inputs ---- */
.form-field input:focus, .form-field textarea:focus, .form-field select:focus, .email-input:focus { border-color: var(--teal); }
*:focus-visible { outline-color: var(--teal); }

/* Hero headline: smaller, balanced against the hero image */
.hero .display-xl { font-size: clamp(1.8rem, 3.1vw, 2.75rem); line-height: 1.1; letter-spacing: -0.015em; }
@media (max-width: 600px){ .hero .display-xl { font-size: 1.7rem; } }

/* ==========================================================================
   29. RIGHT-SIZE — tighten oversized type & spacing; improve flow
   ========================================================================== */
.display-l  { font-size: clamp(1.55rem, 2.5vw, 2.15rem); line-height: 1.14; letter-spacing: -0.015em; }
.display-m  { font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.18; }
.display-s  { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
.lead       { font-size: 1.0625rem; line-height: 1.6; }
.sub-head   { font-size: 1.0625rem; }

/* Vertical rhythm: calmer, less cavernous */
.section        { padding: var(--s-7) 0; }
.section-tight  { padding: var(--s-6) 0; }
.hero           { padding: var(--s-6) 0 var(--s-7); }
.section-head   { padding-bottom: var(--s-4); margin-bottom: var(--s-5); }
@media (max-width: 960px){ .section { padding: var(--s-6) 0; } }

/* Component sizing */
.hero .display-xl   { font-size: clamp(1.7rem, 2.8vw, 2.4rem); line-height: 1.12; }
.stat-row           { margin-top: var(--s-6); padding-top: var(--s-5); }
.stat .stat-num     { font-size: clamp(1.35rem, 2vw, 1.8rem); }
.program-name       { font-size: 1.5rem; }
.program-price .amt { font-size: 1.85rem; }
.pullquote          { padding: var(--s-6) var(--s-7); }
.pullquote .quote-text { font-size: clamp(1.15rem, 1.9vw, 1.45rem); line-height: 1.3; }
.testi              { padding: var(--s-6); }
.testi .quote       { font-size: 1.15rem; line-height: 1.4; }
.step h3            { font-size: 1.15rem; }
.card .title        { font-size: 1.15rem; }
.avatar-card .name  { font-size: 1.3rem; }

/* Remove decorative dividers & numbering labels site-wide (per direction) */
.divider, .section-number, .card-num, .step-n { display: none !important; }
.section-head { grid-template-columns: 1fr; }

/* Close the gap above the footer */
.footer { margin-top: 0 !important; }

/* Announcement banner removed per direction */
.banner { display: none !important; }

/* ==========================================================================
   30. TYPEFACE REFRESH — Fraunces (serif display) + Plus Jakarta Sans
   ========================================================================== */
.display, .display-xl, .display-l, .display-m, .display-s {
  font-style: normal;                 /* upright serif headings */
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.015em;
}
/* accent phrases stay italic for character */
.copper-accent, em.copper-accent { font-style: italic; font-weight: 600; }
/* clean wordmark */
.logo { font-style: normal; font-weight: 600; letter-spacing: -0.01em; }
/* labels: sans, slightly tighter tracking than the old mono */
.eyebrow { font-weight: 700; letter-spacing: 0.13em; }
.meta, .stat-label, .hero-proof, .footer-bottom { letter-spacing: 0.06em; }
/* quotes & program/avatar names keep the elegant serif italic */
.pullquote .quote-text, .testi .quote { font-style: italic; }
body { letter-spacing: 0; }

/* ==========================================================================
   31. MOBILE FIXES
   ========================================================================== */
/* Nav must sit above page sections so the dropdown menu is visible */
.nav { z-index: 300 !important; }
section, .footer { z-index: auto !important; }

.nav-links.open {
  z-index: 320;
  background: var(--white);
  box-shadow: 0 18px 36px -18px rgba(18,43,49,0.3);
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-5);
  gap: var(--s-2);
}
.nav-links.open li { width: 100%; }
.nav-links.open a { display: block; padding: var(--s-3) 0; font-size: 1.0625rem; }
.nav-links.open .nav-cta { text-align: center; margin-top: var(--s-2); }

/* Stack the hero on tablet/mobile (inline grid-template was overriding the stack) */
@media (max-width: 860px){
  .hero-grid { grid-template-columns: 1fr !important; gap: var(--s-6) !important; }
  .hero { padding: var(--s-5) 0 var(--s-6); }
  .hero-grid > div:last-child { order: -1; }     /* image above text reads better on mobile */
  .hero-grid img { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 640px){
  .container, .container-narrow, .container-reading { padding: 0 var(--s-4); }
  .hero .display-xl { font-size: 1.7rem; line-height: 1.12; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: var(--s-3); }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .grid-2, .grid-3, .grid-4, .steps, .testi-grid { grid-template-columns: 1fr !important; }
}

/* Nav assessment button: restore padding (the generic `.nav-links a` rule was
   winning on specificity and flattening it to 8px 0) */
.nav-links a.nav-cta {
  padding: 0.6rem 1.15rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.nav-links a.nav-cta:hover { color: #fff !important; }

/* Compact mobile menu: whole menu + CTA fits without scrolling */
@media (max-width: 860px){
  .nav { z-index: 320 !important; }
  .nav-links.open {
    padding: var(--s-2) var(--s-4) var(--s-4);
    gap: 0;
    max-height: calc(100vh - 60px);
  }
  .nav-links.open li { border-top: 1px solid var(--hairline); }
  .nav-links.open li:first-child { border-top: 0; }
  .nav-links.open a { padding: 0.6rem 0; font-size: 1rem; }
  .nav-links.open a.active::after { display: none; }
  .nav-links.open .nav-cta { margin-top: var(--s-3); padding: 0.7rem 1rem; justify-content: center; }
  .nav-links.open li:has(.nav-cta) { border-top: 0; }
}

/* ==========================================================================
   32. WLU 6-17 REBRAND — Cabin / Work Sans / Noto Sans, full-screen hero,
        rotating-word headline, Deep Tide hero + transparent nav.
        (Appended last so it wins the cascade.)
   ========================================================================== */

/* Display headings: Cabin reads best ITALIC + bold (per brand guide) */
.display, .display-xl, .display-l, .display-m, .display-s {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.copper-accent, em.copper-accent, .accent { font-style: italic; font-weight: 700; color: var(--copper); }
.eyebrow { font-family: var(--font-sub); font-weight: 700; letter-spacing: 0.16em; }
.logo { font-family: var(--font-display); font-style: italic; font-weight: 700; }

/* ---- Full-screen hero ---------------------------------------------------- */
.hero-full {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 108px 0 56px;
  background:
    radial-gradient(120% 95% at 78% 8%, rgba(0,130,144,0.30) 0%, rgba(0,130,144,0) 55%),
    radial-gradient(95% 80% at 12% 100%, rgba(216,157,106,0.18) 0%, rgba(216,157,106,0) 55%),
    var(--ink);
}
.hero-full-inner { width: 100%; max-width: var(--container); }
.hero-full .hero-title { max-width: 760px; }
.hero-full .hero-rotline { max-width: 620px; }
.hero-full .hero-eyebrow {
  display: inline-block;
  color: var(--sand);
  margin-bottom: var(--s-4);
}
.hero-full .hero-title {
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
  line-height: 1.0;
  margin: 0 0 1.1rem;
}
.hero-full .hero-title .accent { color: var(--sand); }

.hero-rotline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.22;
  color: rgba(255,255,255,0.92);
  margin: 0 0 1.15rem;
}
.hero-rotline .rotline-lead { color: rgba(255,255,255,0.92); }
.hero-rotline .rotline-tail { display: block; color: #fff; margin-top: 0.15em; }

/* rotating word: words stacked in one grid cell, crossfade + slide */
.rotator {
  display: inline-grid;
  vertical-align: bottom;
}
.rotator-word {
  grid-area: 1 / 1;
  white-space: nowrap;
  color: var(--sand);
  opacity: 0;
  transform: translateY(0.45em);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.rotator-word.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-full .hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 660px;
  margin: 0 0 1.5rem;
}
.hero-full .hero-cta-row { margin-top: 0; margin-bottom: 1.1rem; }
.hero-full .hero-proof {
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  margin: 0;
}

/* light ghost button for the dark hero */
.btn-ghost-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.42);
  background: transparent;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.10); color: #fff; border-color: #fff; }

/* scroll cue */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero-scroll-cue .scroll-dot {
  width: 4px; height: 8px; border-radius: 3px;
  background: rgba(255,255,255,0.75);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(10px);opacity:0} 100%{opacity:0} }

/* ---- Transparent nav over the hero (home), solid after scroll ----------- */
body.home .nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
body.home .nav .logo,
body.home .nav .nav-links a { color: #fff; }
body.home .nav .nav-links a:hover { color: var(--sand); }
body.home .nav .mobile-toggle svg { stroke: #fff; }
body.home .nav .nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  border: 1px solid transparent;
}
body.home .nav .nav-cta:hover { background: var(--teal-deep) !important; }

body.home .nav.nav-scrolled {
  position: fixed;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 10px 30px -22px rgba(26,47,53,0.5);
}
body.home .nav.nav-scrolled .logo,
body.home .nav.nav-scrolled .nav-links a { color: var(--graphite); }
body.home .nav.nav-scrolled .nav-links a:hover { color: var(--teal); }
body.home .nav.nav-scrolled .mobile-toggle svg { stroke: var(--graphite); }

/* mobile dropdown stays solid + readable even at the top of the hero */
@media (max-width: 860px){
  body.home .nav-links.open a { color: var(--graphite) !important; }
  body.home .nav-links.open a:hover { color: var(--teal) !important; }
  body.home .nav-links.open .nav-cta { color: #fff !important; }
}

@media (max-width: 860px){
  .hero-full { min-height: 100vh; min-height: 100svh; padding: 88px 0 44px; }
  .hero-full-inner { max-width: 100%; }
}
@media (max-width: 640px){
  .hero-full .hero-title { font-size: 2.35rem; line-height: 1.04; }
  .hero-full .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-full .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-scroll-cue { display: none; }
}

/* Buttons: Work Sans, the accessible accent treatments use teal on light */
.btn { font-family: var(--font-sub); }

/* ---- Style-guide surface + accent conventions --------------------------- */
/* Page background: Linen White (off-white surface) */
body { background: var(--paper); }

/* Eyebrows: Teal on light backgrounds (default) */
.eyebrow { color: var(--teal); }

/* Closing CTA: true Deep Tide dark band (bookends the dark hero, matches the
   guide's dark card). Overrides the earlier light-wash treatment. */
.bg-graphite {
  background: var(--ink) !important;
  color: #fff;
}
.bg-graphite .display, .bg-graphite .display-xl, .bg-graphite .display-l,
.bg-graphite .display-m, .bg-graphite .display-s, .bg-graphite h2 { color: #fff !important; }
.bg-graphite p, .bg-graphite .lead { color: rgba(255,255,255,0.8) !important; }

/* Dark surfaces (hero, Deep Tide sections, footer): eyebrows + emphasis = Sand Dune */
.hero-full .eyebrow,
.bg-graphite .eyebrow,
.bg-ink .eyebrow,
.card-dark .eyebrow,
.footer .eyebrow { color: var(--sand) !important; }

.bg-graphite .copper-accent,
.bg-graphite em.copper-accent,
.bg-ink .copper-accent,
.card-dark .copper-accent,
.footer .copper-accent { color: var(--sand) !important; }

.bg-graphite .meta,
.bg-graphite .hero-proof { color: rgba(255,255,255,0.6) !important; }

/* Cards sit as off-white/white surfaces on the Linen page; keep the hairline.
   Mist (--slate) remains the tint for washed sections + chips. */
.card { background: var(--white); }

/* ==========================================================================
   33. INNER-PAGE FULL-SCREEN DARK HEROES (.hero / .landing-hero) + nav
   ========================================================================== */
/* Transparent nav over hero, solid on scroll — inner dark-hero pages */
body.has-dark-hero .nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
body.has-dark-hero .nav .logo,
body.has-dark-hero .nav .nav-links a { color: #fff; }
body.has-dark-hero .nav .nav-links a:hover { color: var(--sand); }
body.has-dark-hero .nav .mobile-toggle svg { stroke: #fff; }
body.has-dark-hero .nav .nav-cta { background: var(--teal) !important; color: #fff !important; border: 1px solid transparent; }
body.has-dark-hero .nav .nav-cta:hover { background: var(--teal-deep) !important; }
body.has-dark-hero .nav.nav-scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 10px 30px -22px rgba(26,47,53,0.5);
}
body.has-dark-hero .nav.nav-scrolled .logo,
body.has-dark-hero .nav.nav-scrolled .nav-links a { color: var(--graphite); }
body.has-dark-hero .nav.nav-scrolled .nav-links a:hover { color: var(--teal); }
body.has-dark-hero .nav.nav-scrolled .mobile-toggle svg { stroke: var(--graphite); }
@media (max-width: 860px){
  body.has-dark-hero .nav-links.open a { color: var(--graphite) !important; }
  body.has-dark-hero .nav-links.open a:hover { color: var(--teal) !important; }
  body.has-dark-hero .nav-links.open .nav-cta { color: #fff !important; }
}

/* Full-viewport Deep Tide hero, vertically centered */
body.has-dark-hero .hero,
body.has-dark-hero .landing-hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 112px 0 64px !important;
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 95% at 80% 6%, rgba(0,130,144,0.28) 0%, rgba(0,130,144,0) 55%),
    radial-gradient(95% 80% at 10% 100%, rgba(216,157,106,0.16) 0%, rgba(216,157,106,0) 55%),
    var(--ink);
}
body.has-dark-hero .hero > .container,
body.has-dark-hero .hero > .container-narrow,
body.has-dark-hero .landing-hero > .container { width: 100%; max-width: var(--container); }

/* Type on dark */
body.has-dark-hero .hero h1,
body.has-dark-hero .hero .display-xl,
body.has-dark-hero .landing-hero h1,
body.has-dark-hero .landing-hero .display-xl {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.04;
  max-width: 880px;
}
body.has-dark-hero .hero .lead,
body.has-dark-hero .landing-hero .lead { color: rgba(255,255,255,0.76); }
body.has-dark-hero .hero .eyebrow,
body.has-dark-hero .hero .tag,
body.has-dark-hero .landing-hero .eyebrow,
body.has-dark-hero .landing-hero .tag { color: var(--sand) !important; }
body.has-dark-hero .hero .meta,
body.has-dark-hero .landing-hero .meta { color: rgba(255,255,255,0.6); }
body.has-dark-hero .hero .copper-accent,
body.has-dark-hero .landing-hero .copper-accent { color: var(--sand) !important; }
body.has-dark-hero .hero strong,
body.has-dark-hero .landing-hero strong { color: #fff; }

/* Hero buttons on dark */
body.has-dark-hero .hero .btn-ghost,
body.has-dark-hero .landing-hero .btn-ghost {
  color: #fff; border: 1px solid rgba(255,255,255,0.42); background: transparent;
}
body.has-dark-hero .hero .btn-ghost:hover,
body.has-dark-hero .landing-hero .btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }
body.has-dark-hero .hero .btn-outline,
body.has-dark-hero .landing-hero .btn-outline { color: #fff !important; border-color: rgba(255,255,255,0.5) !important; }
body.has-dark-hero .hero .btn-outline:hover,
body.has-dark-hero .landing-hero .btn-outline:hover { background: #fff !important; color: var(--ink) !important; }

/* Media frame (intro video / portrait) */
.hero-media {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px -36px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  background: #0d1f24;
}
.hero-media video, .hero-media img { display: block; width: 100%; height: auto; }

/* No horizontal-rule dividers anywhere (brand direction) */
.rule, hr.rule { display: none !important; }

/* Stack on mobile */
@media (max-width: 860px){
  body.has-dark-hero .hero .hero-grid,
  body.has-dark-hero .landing-hero .grid-2 { grid-template-columns: 1fr !important; gap: var(--s-6) !important; }
  body.has-dark-hero .hero,
  body.has-dark-hero .landing-hero { padding: 92px 0 48px !important; }
  body.has-dark-hero .landing-hero .grid-2 > div:last-child { order: -1; } /* media above text */
}

/* Avatar headlines run longer — size them a step down so the CTA stays in view */
body.has-dark-hero .landing-hero h1,
body.has-dark-hero .landing-hero .display-xl {
  font-size: clamp(2.05rem, 3.7vw, 3.3rem);
  margin-bottom: 1.4rem !important;
}
body.has-dark-hero .landing-hero .lead { margin-bottom: 1.5rem !important; }

/* Eyebrow tag: clean label on dark (drop the pale pill) */
body.has-dark-hero .hero .tag,
body.has-dark-hero .landing-hero .tag {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--s-4);
}

/* ==========================================================================
   34. NAV: solid white at ALL times (no transparent-over-hero state)
   ========================================================================== */
body.home .nav,
body.has-dark-hero .nav,
body.home .nav.nav-scrolled,
body.has-dark-hero .nav.nav-scrolled {
  position: fixed;
  background: #ffffff !important;
  border-bottom: 1px solid var(--hairline) !important;
  box-shadow: 0 6px 24px -20px rgba(26,47,53,0.55) !important;
}
body.home .nav .logo,
body.home .nav .nav-links a,
body.has-dark-hero .nav .logo,
body.has-dark-hero .nav .nav-links a {
  color: var(--graphite) !important;
}
body.home .nav .nav-links a:hover,
body.has-dark-hero .nav .nav-links a:hover { color: var(--teal) !important; }
body.home .nav .mobile-toggle svg,
body.has-dark-hero .nav .mobile-toggle svg { stroke: var(--graphite) !important; }
/* Assessment CTA stays solid teal with a WHITE label. Uses `.nav-links a.nav-cta`
   so it out-specifies `.nav .nav-links a` (which otherwise turns it dark on desktop). */
body.home .nav .nav-links a.nav-cta,
body.has-dark-hero .nav .nav-links a.nav-cta,
.nav .nav-links a.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
}
body.home .nav .nav-links a.nav-cta:hover,
body.has-dark-hero .nav .nav-links a.nav-cta:hover,
.nav .nav-links a.nav-cta:hover { background: var(--teal-deep) !important; color: #fff !important; }

/* ==========================================================================
   35. FULL-BLEED PHOTO HEROES (image behind text + dark overlay)
   ========================================================================== */
.hero-photo {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
}
/* Overlay is baked into each hero's background-image stack (inline), which
   composites reliably over the photo. Keep content above the background. */
.hero-photo > .container,
.hero-photo > .container-narrow,
.hero-photo > .hero-full-inner,
.hero-photo > .hero-scroll-cue { position: relative; z-index: 1; }

.landing-hero-text { max-width: 760px; }

/* intro-video section sits on the Linen surface below the hero */
.intro-video-section { padding-top: var(--s-8); padding-bottom: var(--s-8); }
.intro-video-section .hero-media { border-color: var(--hairline); box-shadow: 0 36px 70px -40px rgba(26,47,53,0.45); }

/* Mobile: hero text spans the full width over the photo, so add a vertical
   darkening pass for readability (composites on top of the inline overlay). */
@media (max-width: 860px){
  .hero-photo { position: relative; }
  .hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(13,28,33,0.42) 0%, rgba(13,28,33,0.30) 45%, rgba(13,28,33,0.62) 100%);
  }
  .hero-photo > .container,
  .hero-photo > .container-narrow,
  .hero-photo > .hero-full-inner,
  .hero-photo > .hero-scroll-cue { position: relative; z-index: 1; }
}

/* ==========================================================================
   36. NAV DROPDOWN — "Programs" reveals the six paths
   ========================================================================== */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-caret {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; padding: 2px; margin-left: 3px; cursor: pointer;
  color: inherit; line-height: 0;
}
.nav-caret svg { width: 15px; height: 15px; transition: transform .2s ease; }
.nav-dropdown:hover .nav-caret svg { transform: rotate(180deg); }

.nav-submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 252px; margin: 0; padding: 0.4rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: 0 26px 52px -26px rgba(26,47,53,0.45);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 500;
}
/* invisible bridge so the menu doesn't close in the gap below the toggle */
.nav-submenu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-submenu li { width: 100%; }
.nav-submenu a {
  display: block; padding: 0.62rem 0.8rem; border-radius: 9px;
  font-family: var(--font-sub); font-size: 0.95rem; font-weight: 500;
  color: var(--graphite) !important; white-space: nowrap;
}
.nav-submenu a::after { display: none !important; }
.nav-submenu a:hover { background: var(--slate); color: var(--teal) !important; }

/* Mobile: tap the caret to expand the six paths inline */
@media (max-width: 860px){
  .nav-dropdown { flex-wrap: wrap; }
  .nav-caret { margin-left: auto; padding: 0.4rem; }
  .nav-caret svg { width: 20px; height: 20px; }
  .nav-dropdown.open .nav-caret svg { transform: rotate(180deg); }
  .nav-submenu {
    position: static; display: none;
    opacity: 1; visibility: visible; transform: none;
    width: 100%; min-width: 0; margin: 0; padding: 0;
    background: transparent; border: 0; border-radius: 0; box-shadow: none;
  }
  .nav-dropdown.open .nav-submenu { display: block; }
  .nav-submenu li { border-top: 0 !important; }
  .nav-submenu a { padding: 0.5rem 0 0.5rem 1rem; font-size: 0.95rem; opacity: 0.85; }
}

/* ==========================================================================
   37. SPLIT HERO — image beside text on a light surface (per Whitney)
   ========================================================================== */
.hero-split {
  background: var(--paper);
  padding: 124px 0 72px;
  position: relative;
}
.hero-split .hero-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-8);
  align-items: center;
}
.hero-split-text { max-width: 640px; }
.hero-split .eyebrow { color: var(--teal); display: inline-block; margin-bottom: var(--s-4); }
.hero-split .meta { color: var(--eucalyptus); }
.hero-split h1,
.hero-split .hero-title,
.hero-split .display-xl {
  color: var(--graphite);
  font-size: clamp(2.3rem, 4.4vw, 3.9rem);
  line-height: 1.03;
  margin: 0 0 1.1rem;
}
.hero-split .hero-title .accent,
.hero-split .copper-accent { color: var(--teal) !important; }
.hero-split .lead,
.hero-split .hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6;
  color: var(--graphite-soft);
  max-width: 560px;
  margin: 0 0 1.5rem;
}
.hero-split .hero-cta-row { margin: 0 0 1.1rem; display: flex; gap: var(--s-4); flex-wrap: wrap; }
.hero-split .hero-proof { color: var(--eucalyptus); letter-spacing: 0.04em; margin: 0; font-family: var(--font-mono); font-size: 0.75rem; }

/* rotating line on light */
.hero-split .hero-rotline {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.25;
  color: var(--graphite); margin: 0 0 1.15rem;
}
.hero-split .rotline-lead { color: var(--graphite); }
.hero-split .rotline-tail { display: block; color: var(--graphite); margin-top: 0.15em; }
.hero-split .rotator-word { color: var(--teal); }

/* media: fills its column, corner cropped to hide the AI "sparkle" (bottom-right) */
.hero-split-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(26,47,53,0.45);
  background: var(--slate);
}
.hero-split-media img,
.hero-split-media video {
  position: absolute; inset: 0;
  width: 106%; height: 106%;
  object-fit: cover; object-position: 42% 32%;
  display: block;
}

@media (max-width: 900px){
  .hero-split .hero-split-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-split { padding: 104px 0 56px; }
  .hero-split-text { max-width: 100%; }
  .hero-split-media { aspect-ratio: 16 / 11; order: -1; max-width: 560px; }
}
@media (max-width: 560px){
  .hero-split .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-split .hero-cta-row .btn { width: 100%; justify-content: center; }
}

/* Six-path cards: photo on top (cropped so the AI sparkle is hidden) */
.avatar-card { overflow: hidden; }
.avatar-card-media {
  display: block;
  margin: 0 0 var(--s-5);
  border-radius: 12px;
  overflow: hidden;
  background: var(--slate);
}
.avatar-card-media img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 26%;
  transition: transform .35s ease;
}
.avatar-card:hover .avatar-card-media img { transform: scale(1.04); }

/* ==========================================================================
   38. PROGRAMS COMPARISON TABLE — white cells, teal header, Mist premium col
   ========================================================================== */
.comparison {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  margin-top: var(--s-6);
  box-shadow: 0 1px 3px rgba(26,47,53,0.05);
}
.comparison-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; }
.comparison-row > div {
  padding: 0.85rem 1.1rem;
  border-top: 1px solid var(--hairline);
  background: #fff;
  color: var(--graphite-soft) !important;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}
.comparison-row > div.label { text-align: left; }
.comparison-head > div { border-top: 0; }
.comparison-head > div {
  background: var(--teal) !important;
  color: #fff !important;
  font-family: var(--font-sub);
  font-weight: 700;
}
.comparison-row .label { font-weight: 600; color: var(--graphite) !important; }
.comparison-row .wlu { background: var(--teal-pale) !important; color: var(--graphite) !important; }
.comparison-row .wlu strong { color: var(--graphite) !important; }
.comparison-row .na { color: var(--eucalyptus) !important; }
@media (max-width: 640px){
  .comparison-row { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
  .comparison-row > div { padding: 0.6rem 0.5rem; font-size: 0.8rem; }
}

/* ==========================================================================
   39. BRAND LOGO in the nav (wordmark image)
   ========================================================================== */
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; }
.logo .logo-mark { display: none; }
@media (max-width: 640px){ .logo-img { height: 34px; } }

/* ==========================================================================
   40. V6.1 — full-image Six-Path cards, firm logo size, home photo hero
   ========================================================================== */
/* Firm, high-specificity logo constraint (nav wordmark must stay compact) */
.nav .logo img.logo-img,
.nav .nav-inner .logo .logo-img,
.logo-img { height: 38px !important; width: auto !important; max-height: 38px !important; }
@media (max-width: 640px){ .nav .logo img.logo-img, .logo-img { height: 32px !important; max-height: 32px !important; } }

/* Home hero: keep the photo subject to the right, clear of the text + crop the AI sparkle (bottom-right) */
.hero-full.hero-photo.home-hero { background-position: 78% 24% !important; }
@media (max-width: 860px){ .hero-full.hero-photo.home-hero { background-position: 72% 22% !important; } }

/* Six Paths: full-image cards with gradient + text overlay (NotebookofaCOO style) */
.grid-3 > .avatar-card,
a.avatar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: var(--s-6) !important;
  border-radius: 16px !important;
  overflow: hidden;
  border: 0 !important;
  background: var(--ink) !important;
  box-shadow: 0 30px 60px -34px rgba(26,47,53,0.5) !important;
  isolation: isolate;
}
.avatar-card .avatar-card-media {
  position: absolute; inset: 0;
  margin: 0 !important; border-radius: 0 !important;
  z-index: 0; background: var(--ink);
}
.avatar-card .avatar-card-media img {
  width: 100% !important; height: 100% !important;
  object-fit: cover;
  object-position: center 30%;
}
.avatar-card::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13,28,33,0) 20%, rgba(13,28,33,0.55) 54%, rgba(13,28,33,0.93) 100%);
}
.avatar-card .name,
.avatar-card .hook { position: relative; z-index: 2; }
.avatar-card .name {
  color: #fff !important;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.08;
  margin-bottom: 0.5rem;
}
.avatar-card .hook {
  color: rgba(255,255,255,0.86) !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.avatar-card::after {
  content: '→';
  position: absolute; top: var(--s-5); right: var(--s-5); left: auto; bottom: auto;
  z-index: 2;
  color: #fff; opacity: 0.9;
  font-size: 1.25rem; font-weight: 400;
  transition: transform .3s ease, color .3s ease;
}
.avatar-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 42px 74px -30px rgba(26,47,53,0.62) !important;
  background: var(--ink) !important;
  border: 0 !important;
}
.avatar-card:hover .name { color: #fff !important; }
.avatar-card:hover .avatar-card-media img { transform: scale(1.05); transition: transform .5s ease; }
.avatar-card:hover::after { transform: translateX(5px); color: var(--sand); }

/* ==========================================================================
   41. V6.1 — inner-page split heroes become full-bleed photo heroes
   (one conversion covers about / programs / resources / contact / avatars)
   ========================================================================== */
.hero-split {
  position: relative;
  min-height: 76vh;
  min-height: 76svh;
  display: flex;
  align-items: center;
  padding: 128px 0 72px !important;
  background: var(--ink) !important;
  overflow: hidden;
}
.hero-split > .container { position: static; width: 100%; }
.hero-split .hero-split-grid { display: block !important; }
.hero-split-text { max-width: 640px !important; position: relative; z-index: 2; }
.hero-split .hero-split-media {
  position: absolute !important;
  top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important;
  transform: none !important;
  margin: 0 !important; border-radius: 0 !important;
  aspect-ratio: auto !important;
  width: 100% !important; height: 100% !important;
  max-width: none !important;
  box-shadow: none !important;
  order: 0 !important;
  z-index: 0 !important;
  overflow: hidden !important;
  background: var(--ink) !important;
}
.hero-split .hero-split-media img,
.hero-split .hero-split-media video {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: 62% 24% !important;
}
.hero-split .hero-split-media::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(96deg, rgba(13,28,33,0.95) 0%, rgba(13,28,33,0.86) 32%, rgba(13,28,33,0.52) 58%, rgba(13,28,33,0.18) 100%);
}
.hero-split .eyebrow { color: var(--sand) !important; }
.hero-split .meta { color: rgba(255,255,255,0.62) !important; }
.hero-split h1, .hero-split .hero-title, .hero-split .display-xl,
.hero-split .display-l, .hero-split .display-m { color: #fff !important; }
.hero-split .hero-title .accent, .hero-split .copper-accent, .hero-split em.copper-accent { color: var(--sand) !important; }
.hero-split .lead, .hero-split .hero-sub, .hero-split p { color: rgba(255,255,255,0.82) !important; }
.hero-split .hero-rotline, .hero-split .rotline-lead, .hero-split .rotline-tail { color: #fff !important; }
.hero-split .rotator-word { color: var(--sand) !important; }
.hero-split .hero-proof { color: rgba(255,255,255,0.62) !important; }
.hero-split .btn-ghost { color: #fff !important; border-color: rgba(255,255,255,0.42) !important; background: transparent !important; }
.hero-split .btn-ghost:hover { background: rgba(255,255,255,0.1) !important; border-color:#fff !important; color:#fff !important; }
.hero-split .btn-outline { color:#fff !important; border-color: rgba(255,255,255,0.5) !important; }
.hero-split .btn-outline:hover { background:#fff !important; color: var(--ink) !important; }
@media (max-width: 900px){
  .hero-split:not(.hero-boxed) { min-height: 68vh; padding: 104px 0 56px !important; }
  .hero-split:not(.hero-boxed) .hero-split-text { max-width: 100% !important; }
  .hero-split:not(.hero-boxed) .hero-split-media::after { background: linear-gradient(180deg, rgba(13,28,33,0.80) 0%, rgba(13,28,33,0.60) 45%, rgba(13,28,33,0.84) 100%) !important; }
}

/* ==========================================================================
   42. .hero-boxed — opt OUT of full-bleed, keep the image-right-of-text split
   (used on the About page per Johnny; portrait reads better in a box)
   ========================================================================== */
.hero-split.hero-boxed {
  background: var(--paper) !important;
  display: block !important;
  min-height: 0 !important;
  align-items: initial !important;
  padding: 124px 0 72px !important;
  overflow: visible !important;
}
.hero-split.hero-boxed > .container { z-index: auto !important; }
.hero-split.hero-boxed .hero-split-grid {
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: var(--s-8) !important;
  align-items: center !important;
}
.hero-split.hero-boxed .hero-split-text { max-width: 640px !important; position: static !important; z-index: auto !important; }
.hero-split.hero-boxed .hero-split-media {
  position: relative !important; inset: auto !important;
  top: auto !important; bottom: auto !important; left: auto !important; right: auto !important;
  transform: none !important;
  width: auto !important; height: auto !important;
  aspect-ratio: 4 / 5 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 40px 80px -40px rgba(26,47,53,0.45) !important;
  background: var(--slate) !important;
}
.hero-split.hero-boxed .hero-split-media img {
  position: absolute !important; inset: 0 !important;
  width: 106% !important; height: 106% !important;
  object-fit: cover !important; object-position: 42% 32% !important;
}
.hero-split.hero-boxed .hero-split-media::after { display: none !important; }
.hero-split.hero-boxed h1, .hero-split.hero-boxed .hero-title,
.hero-split.hero-boxed .display-xl, .hero-split.hero-boxed .display-l { color: var(--graphite) !important; }
.hero-split.hero-boxed .copper-accent, .hero-split.hero-boxed em.copper-accent,
.hero-split.hero-boxed .hero-title .accent { color: var(--teal) !important; }
.hero-split.hero-boxed .lead, .hero-split.hero-boxed .hero-sub, .hero-split.hero-boxed p { color: var(--graphite-soft) !important; }
.hero-split.hero-boxed .eyebrow { color: var(--teal) !important; }
.hero-split.hero-boxed .meta { color: var(--eucalyptus) !important; }
@media (max-width: 900px){
  .hero-split.hero-boxed .hero-split-grid { grid-template-columns: 1fr !important; gap: var(--s-6) !important; }
  .hero-split.hero-boxed { padding: 104px 0 56px !important; }
  .hero-split.hero-boxed .hero-split-media { aspect-ratio: 16 / 11 !important; order: -1 !important; max-width: 560px !important; }
}

/* ==========================================================================
   43. V6.2 — Whitney round-2: centered ribbon, price note below, 3 stats
   ========================================================================== */
/* Center the "Primary Offer" ribbon across the top of the featured card */
.program-card .ribbon { left: 50% !important; right: auto !important; transform: translate(-50%, -50%) !important; }
/* Price small-print now sits BELOW the price as a block (matches Programs page) */
.program-price { margin-bottom: var(--s-2) !important; }
.program-card > .frequency {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.875rem;
  color: var(--eucalyptus);
  line-height: 1.45;
  margin: 0 0 var(--s-5);
}
.program-card.featured > .frequency { color: rgba(255,255,255,0.68); }
/* Stat row: 3 stats, evenly spread and centered */
.stat-row { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 720px){ .stat-row { grid-template-columns: 1fr 1fr !important; } }
/* Small print under the a-la-carte CTA (Programs page) */
.alacarte-note { display:block; text-align:center; margin-top: var(--s-3); font-size: 0.8125rem; color: var(--eucalyptus); font-family: var(--font-sub); }
