@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');
/* ============================================================
   The Ideas Factory - Shared Stylesheet
   Brand: Black + Yellow (#FFE500) - Font: Nunito
   Semantic rebuild (native WordPress ready). One external CSS.
   ============================================================ */

/* ---- Design tokens ---- */
:root {
    --black: #000000;
    --yellow: #FFE500;
    --yellow-dark: #E6CE00;
    --yellow-light: #FFF7B0;
    --white: #FFFFFF;
    --grey-50: #FAFAFA;
    --grey-100: #F5F5F5;
    --grey-200: #EEEEEE;
    --grey-300: #E0E0E0;
    --grey-600: #757575;
    --grey-700: #616161;
    --grey-800: #424242;
    --grey-900: #212121;
    --font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --header-height: 116px;
    --dark-text: #EDEDED;
    --dark-muted: #C7C7C7;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 6px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--grey-900);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--black); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
}
h1 { font-size: 3rem; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

/* Accessible skip link */
.skip-link {
    position: absolute; left: -999px; top: 0;
    background: var(--yellow); color: var(--black);
    padding: 12px 20px; font-weight: 700; z-index: 2000;
}
.skip-link:focus { left: 0; }

/* Focus states (accessibility) */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid var(--yellow-dark);
    outline-offset: 2px;
}

/* ---- Layout helper ---- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: var(--black);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 88px; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-text);
    position: relative;
    padding: 4px 0;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--yellow);
    transition: width var(--transition);
}
.nav-menu a:hover::after, .nav-menu a[aria-current="page"]::after { width: 100%; }
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--white); }

.nav-cta {
    display: inline-block;
    background: var(--yellow);
    color: var(--black) !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition);
}
.nav-cta:hover { background: var(--yellow-dark); color: var(--black) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; background: none; border: none;
    z-index: 1001;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 160px 0 100px;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,229,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: 3.5rem; max-width: 760px; margin-bottom: 24px; }
.hero h1 .highlight { color: var(--yellow); }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.82); max-width: 640px; margin-bottom: 20px; line-height: 1.8; }
.hero .lead-note { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 640px; margin-bottom: 36px; }

.hero-small { padding: 150px 0 64px; background: var(--black); color: var(--white); }
.hero-small h1 { color: var(--white); font-size: 2.75rem; margin-bottom: 16px; }
.hero-small p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 680px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 15px 34px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dark); color: var(--black); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,229,0,0.4); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--grey-800); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-grey { background: var(--grey-50); }
.section-black { background: var(--black); color: var(--dark-text); }
.section-black h2, .section-black h3, .section-black h4 { color: var(--white); }
/* Legibility on ALL dark bands: body, lists and definition text stay light,
   yellow is reserved for bullets/accents only. */
.section-black p,
.section-black li,
.section-black dd,
.section-black .brand-list li,
.section-black .insight-list li { color: var(--dark-text); }
.section-black .lead,
.section-black dt { color: var(--dark-muted); }
.section-black .insight-list li strong,
.section-black .brand-list li strong,
.section-black .insight-list li a,
.section-black .brand-list li a { color: var(--white); }
.section-black .insight-list li { border-bottom-color: rgba(255,255,255,0.18); }

.badge-soon {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    padding: 8px 20px;
    border-radius: 40px;
}
.overline {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--yellow-dark);
    margin-bottom: 12px;
}
.section-black .overline { color: var(--yellow); }

.measure { max-width: 780px; }
.measure-center { max-width: 780px; margin-left: 0; margin-right: 0; }
.lead { font-size: 1.2rem; color: var(--grey-700); line-height: 1.8; }
.section-black .lead { color: rgba(255,255,255,0.8); }

/* ============================================================
   GRIDS & CARDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--grey-200);
    transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.card p { color: var(--grey-700); font-size: 0.98rem; margin-bottom: 0; }
.card .card-link { display: inline-block; margin-top: 14px; font-weight: 800; color: var(--yellow-dark); text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }
.card-icon {
    width: 54px; height: 54px; background: var(--yellow);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; font-size: 1.5rem;
}

/* ============================================================
   CONTENT BLOCKS (About, generic prose)
   ============================================================ */
.prose { max-width: 800px; }
.prose h2 { margin: 40px 0 18px; }
.prose h3 { margin: 32px 0 14px; }
.prose p { color: var(--grey-800); font-size: 1.08rem; line-height: 1.85; }
.prose ul, .prose ol { margin: 0 0 20px 22px; }
.prose li { margin-bottom: 10px; color: var(--grey-800); }

.blockquote {
    border-left: 4px solid var(--yellow);
    padding: 20px 28px;
    margin: 36px 0;
    background: var(--grey-50);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--grey-800);
}
.blockquote cite { display: block; margin-top: 14px; font-style: normal; font-weight: 800; font-size: 0.9rem; color: var(--black); }

/* ---- Numbered "About" style narrative blocks (Home) ---- */
.pitch-block { max-width: 820px; margin: 0 0 48px; }
.pitch-block:last-child { margin-bottom: 0; }
.pitch-block .overline { margin-bottom: 10px; }
.pitch-block h2 { font-size: 1.85rem; margin-bottom: 14px; }
.pitch-block p { color: var(--grey-700); font-size: 1.08rem; line-height: 1.85; }
.pitch-block .btn { margin-top: 18px; }

/* ============================================================
   FEATURE / KEY INSIGHTS LISTS
   ============================================================ */
.insight-list { list-style: none; max-width: 860px; }
.insight-list li {
    padding: 18px 0 18px 30px;
    border-bottom: 1px solid var(--grey-200);
    position: relative;
    color: var(--grey-800);
    font-size: 1.02rem;
}
.insight-list li:last-child { border-bottom: none; }
.insight-list li::before {
    content: ''; position: absolute; left: 0; top: 27px;
    width: 10px; height: 10px; background: var(--yellow); border-radius: 50%;
}
.insight-list li strong { color: var(--black); }

/* Simple bullet list (semantic ul) with brand marker */
.brand-list { list-style: none; max-width: 860px; }
.brand-list li {
    padding: 10px 0 10px 26px; position: relative; color: var(--grey-800);
}
.brand-list li::before {
    content: ''; position: absolute; left: 0; top: 18px;
    width: 8px; height: 8px; background: var(--yellow); border-radius: 50%;
}

/* ============================================================
   SECTOR STRIP
   ============================================================ */
.sector-strip { padding: 56px 0; background: var(--grey-100); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.sector-strip .eyebrow { text-align: center; color: var(--grey-600); margin-bottom: 20px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.sector-list { list-style: none; display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 16px; }
.sector-list li {
    background: var(--white); border: 1px solid var(--grey-200);
    padding: 10px 18px; border-radius: 40px;
    font-size: 0.85rem; font-weight: 700; color: var(--grey-700);
}
.sector-list li a { color: var(--grey-700); }
.sector-list li a:hover { color: var(--black); }

/* ============================================================
   GUILD MEMBERS
   ============================================================ */
.guild-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guild-teaser {
    background: var(--white); border: 1px solid var(--grey-200);
    border-radius: var(--radius); padding: 28px 24px; transition: all var(--transition);
}
.guild-teaser:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: var(--shadow); }
.guild-teaser h3 { font-size: 1.15rem; margin-bottom: 6px; }
.guild-teaser p { color: var(--grey-600); font-size: 0.92rem; margin-bottom: 12px; }
.guild-teaser .card-link { font-weight: 800; color: var(--yellow-dark); text-transform: uppercase; letter-spacing: 1px; font-size: 0.78rem; }

/* Full bio article */
.bio { max-width: 820px; margin: 0 0 56px; padding-bottom: 48px; border-bottom: 1px solid var(--grey-200); }
.bio:last-of-type { border-bottom: none; }
.bio h2 { font-size: 1.9rem; margin-bottom: 6px; }
.bio .bio-tagline { font-size: 1.1rem; color: var(--yellow-dark); font-weight: 700; margin-bottom: 18px; }
.bio dl.bio-meta { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; margin-bottom: 20px; }
.bio dl.bio-meta dt { font-weight: 800; color: var(--black); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 1px; padding-top: 2px; }
.bio dl.bio-meta dd { color: var(--grey-700); }
.bio h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.bio p { color: var(--grey-800); font-size: 1.05rem; line-height: 1.8; }
.bio .bio-cta { margin-top: 22px; }
.bio .bio-cta p { font-weight: 800; color: var(--black); margin-bottom: 12px; }

/* ============================================================
   FAQ (semantic: h2 section, h3 question, p answer)
   ============================================================ */
.faq { max-width: 820px; }
.faq h2 { margin-bottom: 28px; }
.faq h3 { font-size: 1.15rem; margin-bottom: 8px; padding-top: 22px; border-top: 1px solid var(--grey-200); }
.faq h3:first-of-type { border-top: none; padding-top: 0; }
.faq p { color: var(--grey-700); font-size: 1.02rem; margin-bottom: 18px; }

/* ============================================================
   TRACK RECORD
   ============================================================ */
.record-group { max-width: 900px; margin: 0 0 40px; }
.record-group h2 { font-size: 1.5rem; margin-bottom: 16px; padding-left: 18px; border-left: 4px solid var(--yellow); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--black); padding: 80px 0; text-align: center; color: var(--white); }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 0 0 30px; max-width: 620px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap { max-width: 680px; }
.form-field { margin-bottom: 22px; }
.form-field label {
    display: block; font-size: 0.85rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px; color: var(--grey-800);
}
.form-field .req { color: var(--yellow-dark); }
.form-field input, .form-field textarea, .form-field select {
    width: 100%; padding: 14px 16px;
    border: 1px solid var(--grey-300); border-radius: var(--radius);
    font-family: var(--font); font-size: 1rem; color: var(--grey-900);
    background: var(--white); transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    outline: none; border-color: var(--yellow-dark);
    box-shadow: 0 0 0 3px rgba(255,229,0,0.25);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-consent { font-size: 0.9rem; color: var(--grey-600); margin: 4px 0 24px; }

.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.contact-card { background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 30px; margin-bottom: 24px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.contact-card p { color: var(--grey-700); font-size: 0.98rem; margin-bottom: 8px; }
.contact-card a { font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: var(--white); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-img { height: 68px; width: auto; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 280px; }
.footer-col h2 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.92rem; padding: 6px 0; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 0; }
.footer-credit { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 0; }
.footer-credit a { color: rgba(255,255,255,0.6); font-weight: 700; }
.footer-credit a:hover { color: var(--yellow); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.85rem; }
    .hero h1 { font-size: 2.75rem; }
    .grid-3, .guild-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    :root { --header-height: 80px; }
    .logo-img { height: 52px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 2.25rem; }
    .hero-small { padding: 110px 0 40px; }
    .hero-small h1 { font-size: 2rem; }
    .section { padding: 60px 0; }

    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 280px; height: 100vh; background: var(--black);
        flex-direction: column; align-items: flex-start;
        padding: 90px 32px 32px; gap: 0;
        transition: right var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.4); z-index: 999;
    }
    .nav-menu.active { right: 0; }
    .nav-menu a { padding: 12px 0; font-size: 1rem; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .nav-cta { margin-top: 16px; width: 100%; }

    .grid-2, .grid-3, .guild-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .bio dl.bio-meta { grid-template-columns: 1fr; gap: 2px; }
    .bio dl.bio-meta dt { padding-top: 12px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .container { padding: 0 16px; }
    .card { padding: 26px 22px; }
}

/* ============================================================
   DIVI WRAPPER OVERRIDES (off-Divi deployment)
   The Divi "Blank Page" template still wraps content in its
   theme content layout: #page-container > #main-content >
   .container > #content-area > #left-area(float:left) >
   article > .entry-content, reserving space for a right
   sidebar. That confined our content to the left ~65% and
   left a white band on the right. It also prints the page
   title as <h1 class="main_title">. Neutralise all of it so
   our own full-width sections render edge-to-edge and our
   own .container class handles centring (max-width + margin auto).
   ============================================================ */
#page-container, #main-content { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
#main-content > .container { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
#content-area, #content-area.clearfix { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important; }
#left-area { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important; }
article[id^="post-"], .entry-content { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important; }
#sidebar, #main-content #sidebar { display: none !important; }
/* Divi injects a 1px grey sidebar separator via .container::before onto EVERY
   .container (including our nested section containers) -> kill it everywhere.
   Our own design never uses .container::before, so this is safe. */
.container::before, #main-content > .container::before, #main-content > .container::after { display: none !important; content: none !important; }
/* Hide Divi's stray page title printed by the blank template */
h1.main_title, .main_title, h1.entry-title, .et_post_meta_wrapper { display: none !important; }
/* ============================================================
   CONSISTENT LEFT EDGE (client directive, supersedes CTA centring)
   Every section's content must share ONE left edge = the .container
   padding edge (~144px @1440). Content is LEFT-aligned; right-side
   space is fine. This reverts the earlier CTA centring and left-aligns
   the two centred taglines + sector strip + inline-centred blocks.
   Base rules already had their auto side-margins removed; the
   !important rules below beat Divi AND any inline text-align:center.
   ============================================================ */
.cta-band, .cta-band .container, .cta-band h2, .cta-band p, .cta-band .btn { text-align: left !important; }
.measure-center { text-align: left !important; margin-left: 0 !important; margin-right: 0 !important; }
.sector-strip .eyebrow, .sector-strip p { text-align: left !important; }
.hero-small { text-align: left !important; }
.pitch-block, .bio, .record-group { margin-left: 0 !important; margin-right: 0 !important; }
.cta-band p { margin-left: 0 !important; margin-right: 0 !important; }

/* ---- Tim markup fixes (2026-08-20, staging) ---- */
.entry-content ul.brand-list, .entry-content ul.insight-list, ul.brand-list, ul.insight-list { list-style: none !important; }
.entry-content ul.brand-list > li, .entry-content ul.insight-list > li, ul.brand-list > li, ul.insight-list > li { list-style: none !important; }
ul.brand-list > li::marker, ul.insight-list > li::marker { content: "" !important; }
.prose h3[id], [id^="sector-"] { scroll-margin-top: 132px; }
.sector-strip.on-black { background: var(--black); border-top-color: rgba(255,255,255,0.12); border-bottom-color: rgba(255,255,255,0.12); }
.sector-strip.on-black h2 { color: var(--white); margin-bottom: 8px; }
.sector-strip.on-black .sector-intro { color: var(--dark-muted); margin-bottom: 22px; }
.sector-strip.on-black .sector-list li { background: #141414; border-color: rgba(255,255,255,0.18); color: var(--dark-text); }
.sector-strip.on-black .sector-list li a { color: var(--dark-text); }
.sector-strip.on-black .sector-list li a:hover { color: var(--yellow); }
.pitch-tagline { display: block; margin-top: 20px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--yellow-dark); }
.hero .pitch-tagline { color: var(--yellow); margin-top: 24px; }
