@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
    --bg-cream: #fbf9f6;
    --text-dark: #1a1a1a;
    --accent-taupe: #8c7d70;
    --accent-beige: #f4ece1;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.italic { font-style: italic; }

/* --- Dark Navigation Header --- */
.site-header {
    width: 100%;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(251, 249, 246, 0.08);
    position: sticky;
    top: 0;
    background-color: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-serif);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--bg-cream);
    display: inline-flex;
    align-items: center;
}
.logo__img {
    height: 38px;
    width: auto;
    display: block;
    /* Invert the black-on-transparent signature so it reads cream on the dark header */
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.2s ease;
}
.logo:hover .logo__img { opacity: 1; }
@media (max-width: 480px) { .logo__img { height: 32px; } }
.nav-links { display: none; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
    text-decoration: none;
    color: rgba(251, 249, 246, 0.85);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--accent-taupe); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.btn-outline { border: 1px solid var(--text-dark); color: var(--text-dark); background: transparent; }
.btn-outline:hover { background-color: var(--text-dark); color: var(--bg-cream); }
.btn-solid { background-color: var(--text-dark); color: var(--bg-cream); padding: 1rem 2rem; border: 1px solid var(--text-dark); }
.btn-solid:hover { background-color: var(--accent-taupe); border-color: var(--accent-taupe); }

/* --- Typography --- */
.tagline {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--accent-taupe);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-title span { color: var(--accent-taupe); }
.hero-desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.75);
    max-width: 28rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .hero-desc { font-size: 1.125rem; } }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 480px) { .hero-buttons { flex-direction: row; } }

/* ===== Full-bleed hero banner ===== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 65vh, 720px);
    background-color: var(--accent-beige);
    overflow: hidden;
}
.hero-banner__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 30%;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}
.hero-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    min-height: clamp(520px, 65vh, 720px);
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
@media (min-width: 768px) { .hero-banner__inner { padding: 4.5rem 3rem; } }
.hero-banner .hero-title { max-width: 34rem; }
.hero-banner .hero-desc { max-width: 26rem; }
@media (min-width: 1024px) {
    .hero-banner__inner { padding: 5rem 3.5rem; }
    .hero-banner .hero-title { max-width: 44rem; font-size: 3.75rem; }
    .hero-banner .hero-desc { max-width: 28rem; }
}

/* ===== Section B: Proof Bar ===== */
.proof-bar {
    background-color: var(--accent-beige);
    padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
    .proof-bar { padding: 5rem 3rem; }
}
.proof-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.proof-bar__eyebrow {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--accent-taupe);
    font-weight: 500;
    margin-bottom: 3rem;
}
.proof-bar__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
    .proof-bar__stats { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.proof-stat {
    text-align: center;
    padding: 0 0.5rem;
    position: relative;
}
@media (min-width: 768px) {
    .proof-stat:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 12%;
        bottom: 12%;
        width: 1px;
        background: rgba(26, 26, 26, 0.12);
    }
}
.proof-stat__number {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.75rem;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) {
    .proof-stat__number { font-size: 3.5rem; }
}
.proof-stat__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-taupe);
    font-weight: 500;
    line-height: 1.5;
    max-width: 16ch;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .proof-stat__label { font-size: 0.75rem; }
}

/* ===== Section C: Four-Pillar Framework ===== */
.pillars {
    background-color: var(--text-dark);
    color: var(--bg-cream);
    padding: 5rem 1.5rem;
}
@media (min-width: 768px) { .pillars { padding: 7rem 3rem; } }
.pillars__inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.pillars__eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--accent-taupe);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.pillars__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.25rem;
    line-height: 1.15;
    color: var(--bg-cream);
    margin: 0 auto 3.5rem;
    max-width: 32rem;
}
@media (min-width: 768px) { .pillars__title { font-size: 3rem; margin-bottom: 4.5rem; } }
.pillars__title .italic {
    color: var(--accent-taupe);
}
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
    text-align: left;
}
@media (min-width: 900px) { .pillars__grid { grid-template-columns: repeat(4, 1fr); gap: 2.25rem; } }
.pillar {
    border-top: 1px solid rgba(251, 249, 246, 0.18);
    padding-top: 1.75rem;
}
.pillar__icon {
    display: block;
    width: 42px;
    height: 42px;
    color: var(--accent-taupe);
    margin-bottom: 1.5rem;
    stroke-width: 1;
}
.pillar__word {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--bg-cream);
    margin: 0 0 0.875rem;
    letter-spacing: -0.01em;
}
@media (min-width: 1024px) { .pillar__word { font-size: 2.75rem; } }
.pillar__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(251, 249, 246, 0.7);
    font-weight: 300;
    margin: 0;
}
.pillars__lead {
    margin: 4rem auto 0;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(251, 249, 246, 0.75);
    font-weight: 300;
    text-align: center;
}
@media (min-width: 768px) { .pillars__lead { font-size: 1.125rem; margin-top: 5rem; } }

/* ===== Section D: Three Pathways ===== */
.pathways { background-color: var(--bg-cream); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .pathways { padding: 7rem 3rem; } }
.pathways__inner { max-width: 1280px; margin: 0 auto; }
.pathways__head { text-align: center; margin-bottom: 4rem; }
.pathways__eyebrow { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--accent-taupe); font-weight: 500; margin-bottom: 1.5rem; }
.pathways__title { font-family: var(--font-serif); font-weight: 300; font-size: 2.25rem; line-height: 1.15; color: var(--text-dark); margin: 0 auto; max-width: 32rem; }
@media (min-width: 768px) { .pathways__title { font-size: 3rem; } }
.pathways__title .italic { color: var(--accent-taupe); }
.pathways__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .pathways__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.pathway { background: var(--bg-cream); border: 1px solid rgba(26, 26, 26, 0.1); padding: 2.25rem 2rem; display: flex; flex-direction: column; transition: border-color 0.3s ease, transform 0.3s ease; }
.pathway:hover { border-color: var(--text-dark); transform: translateY(-3px); }
.pathway__visual { aspect-ratio: 4 / 3; background-color: var(--accent-beige); margin: -2.25rem -2rem 1.75rem; }
.pathway__title { font-family: var(--font-serif); font-weight: 300; font-size: 1.75rem; line-height: 1.2; color: var(--text-dark); margin: 0 0 1rem; }
.pathway__title .italic { color: var(--accent-taupe); }
.pathway__desc { font-size: 0.95rem; line-height: 1.65; color: rgba(26, 26, 26, 0.7); font-weight: 300; margin: 0 0 1.75rem; flex: 1; }
.pathway__cta { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-dark); font-weight: 600; text-decoration: none; padding-bottom: 0.5rem; border-bottom: 1px solid var(--text-dark); align-self: flex-start; transition: color 0.3s ease, border-color 0.3s ease; }
.pathway__cta:hover { color: var(--accent-taupe); border-color: var(--accent-taupe); }

/* ===== Section E: About Teaser ===== */
.about-teaser { background-color: var(--accent-beige); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .about-teaser { padding: 7rem 3rem; } }
.about-teaser__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-teaser__inner { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.about-teaser__visual { aspect-ratio: 3 / 4; background-color: var(--bg-cream); max-width: 420px; margin: 0 auto; width: 100%; }
.about-teaser__eyebrow { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--accent-taupe); font-weight: 500; margin-bottom: 1.5rem; }
.about-teaser__title { font-family: var(--font-serif); font-weight: 300; font-size: 2rem; line-height: 1.2; color: var(--text-dark); margin: 0 0 1.75rem; }
@media (min-width: 768px) { .about-teaser__title { font-size: 2.5rem; } }
.about-teaser__title .italic { color: var(--accent-taupe); }
.about-teaser__body { font-size: 1rem; line-height: 1.7; color: rgba(26, 26, 26, 0.78); font-weight: 300; margin: 0 0 2rem; max-width: 38rem; }
@media (min-width: 768px) { .about-teaser__body { font-size: 1.0625rem; } }
.about-teaser__link { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-dark); font-weight: 600; text-decoration: none; padding-bottom: 0.5rem; border-bottom: 1px solid var(--text-dark); transition: color 0.3s ease, border-color 0.3s ease; }
.about-teaser__link:hover { color: var(--accent-taupe); border-color: var(--accent-taupe); }

/* ===== Section F: Ventures Grid ===== */
.ventures { background-color: var(--bg-cream); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .ventures { padding: 7rem 3rem; } }
.ventures__inner { max-width: 1280px; margin: 0 auto; }
.ventures__head { text-align: center; margin-bottom: 4rem; }
.ventures__eyebrow { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--accent-taupe); font-weight: 500; margin-bottom: 1.5rem; }
.ventures__title { font-family: var(--font-serif); font-weight: 300; font-size: 2.25rem; line-height: 1.15; color: var(--text-dark); margin: 0 auto; max-width: 36rem; }
@media (min-width: 768px) { .ventures__title { font-size: 3rem; } }
.ventures__title .italic { color: var(--accent-taupe); }
.ventures__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 700px) { .ventures__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.venture { background: var(--accent-beige); padding: 2.5rem 2rem; display: flex; flex-direction: column; }
.venture__logo { max-width: 180px; max-height: 48px; width: auto; height: auto; margin: 0 0 1.5rem; object-fit: contain; object-position: left center; display: block; filter: brightness(0) opacity(0.78); transition: opacity 0.3s ease; }
.venture:hover .venture__logo { filter: brightness(0) opacity(0.95); }
.venture__name { font-family: var(--font-serif); font-weight: 400; font-size: 1.625rem; line-height: 1.2; color: var(--text-dark); margin: 0 0 0.5rem; }
.venture__tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent-taupe); font-weight: 500; margin: 0 0 1.5rem; }
.venture__desc { font-size: 0.95rem; line-height: 1.65; color: rgba(26, 26, 26, 0.78); font-weight: 300; margin: 0 0 1.75rem; flex: 1; }
.venture__link { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-dark); font-weight: 600; text-decoration: none; padding-bottom: 0.4rem; border-bottom: 1px solid var(--text-dark); align-self: flex-start; transition: color 0.3s ease, border-color 0.3s ease; }
.venture__link:hover { color: var(--accent-taupe); border-color: var(--accent-taupe); }

/* ===== Section G: Testimonials ===== */
.testimonials { background-color: var(--accent-beige); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .testimonials { padding: 7rem 3rem; } }
.testimonials__inner { max-width: 920px; margin: 0 auto; text-align: center; }
.testimonials__eyebrow { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--accent-taupe); font-weight: 500; margin-bottom: 3rem; }
.testimonial-quote { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.5rem; line-height: 1.45; color: var(--text-dark); margin: 0 0 2rem; }
@media (min-width: 768px) { .testimonial-quote { font-size: 1.875rem; } }
.testimonial-attr { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent-taupe); font-weight: 500; }
.testimonial-attr strong { color: var(--text-dark); font-weight: 600; }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1180px; margin: 0 auto; text-align: left; }
@media (min-width: 900px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }
.testimonial-card { background-color: var(--bg-cream); padding: 2rem 1.75rem; border: 1px solid rgba(26, 26, 26, 0.08); display: flex; flex-direction: column; }
.testimonial-card .testimonial-quote { font-size: 1.05rem; line-height: 1.55; margin: 0 0 1.5rem; flex: 1; }
.testimonial-card .testimonial-attr { font-size: 0.65rem; letter-spacing: 0.2em; }
.testimonials__note { font-size: 0.8rem; color: rgba(26, 26, 26, 0.55); font-style: italic; margin-top: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* === Examples page · problem-domain category headers === */
.examples-category { padding: 5rem 0 1.5rem; text-align: center; }
.examples-category:first-of-type { padding-top: 0; }
.examples-category__eyebrow { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--accent-taupe); font-weight: 500; margin-bottom: 0.75rem; }
.examples-category__title { font-family: var(--font-serif); font-weight: 300; font-size: 2.5rem; line-height: 1.15; color: var(--text-dark); margin: 0 auto 1rem; max-width: 32rem; }
.examples-category__title em { font-style: italic; color: var(--accent-taupe); }
.examples-category__lead { font-size: 1rem; color: rgba(26, 26, 26, 0.7); font-weight: 300; line-height: 1.55; max-width: 600px; margin: 0 auto; }

/* === "Built for X" brand subtitle under venture-detail names === */
.venture-detail__brand { font-size: 0.8rem; font-style: italic; color: var(--accent-taupe); letter-spacing: 0.03em; margin: -0.5rem 0 1.25rem; }

/* === Booking page · embedded GHL calendar widget === */
.book-section { padding: 0 1.5rem 5rem; }
.book-section__inner { max-width: 980px; margin: 0 auto; }
.book-section__inner iframe { width: 100%; min-height: 880px; border: none; display: block; background: var(--bg-cream); }

/* === Site-header "Book a Call" CTA (desktop only — mobile uses .mobile-cta strip) === */
.site-header__cta {
    display: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    padding: 0.7rem 1.4rem;
    border-radius: 2px;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
    margin-left: 1.5rem;
}
@media (min-width: 768px) { .site-header__cta { display: inline-block; } }
.site-header__cta:hover, .site-header__cta:focus { opacity: 0.92; background-color: #ffffff; }

/* === Page banner · hero photo strip at top of content pages (landscape photos only) === */
.page-banner { position: relative; overflow: hidden; background-color: var(--accent-beige); }
.page-banner__img { width: 100%; height: 380px; object-fit: cover; object-position: center; display: block; }
@media (max-width: 767px) { .page-banner__img { height: 220px; } }

/* === Inline portrait inside prose (editorial layout for portrait-orientation photos) === */
.prose__portrait {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    border-radius: 2px;
}
@media (min-width: 768px) {
    .prose__portrait {
        float: right;
        width: 38%;
        max-width: 280px;
        margin: 0.25rem 0 1.5rem 2rem;
    }
}

/* === Press page · downloadable assets grid === */
.assets-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 1rem; }
@media (min-width: 600px) { .assets-grid { grid-template-columns: repeat(2, 1fr); } }
.asset-card { display: block; background-color: var(--bg-cream); border: 1px solid rgba(26, 26, 26, 0.08); text-decoration: none; color: var(--text-dark); transition: border-color 0.3s ease, transform 0.3s ease; overflow: hidden; }
.asset-card:hover { border-color: var(--text-dark); transform: translateY(-2px); }
.asset-card__visual { display: block; height: 320px; overflow: hidden; background-color: var(--accent-beige); }
.asset-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.asset-card__img--sig { object-fit: contain; padding: 2.5rem 2rem; }
.asset-card__label { display: block; padding: 1rem 1.25rem; }
.asset-card__label strong { display: block; font-family: var(--font-serif); font-weight: 400; font-style: italic; font-size: 1.1rem; }
.asset-card__meta { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-taupe); margin-top: 0.4rem; }

/* === Press page · appearance + editorial list === */
.press-list { list-style: none; padding: 0; margin: 0.5rem 0 0; }
.press-item { padding: 1rem 0; border-bottom: 1px solid rgba(26, 26, 26, 0.08); display: flex; flex-direction: column; gap: 0.25rem; }
.press-item:last-child { border-bottom: none; }
.press-item__main { display: flex; flex-direction: column; gap: 0.2rem; }
.press-item__show { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--text-dark); text-decoration: none; }
.press-item__show:hover { color: var(--accent-taupe); }
.press-item__title { font-size: 0.92rem; color: rgba(26, 26, 26, 0.65); line-height: 1.5; }
.press-item__date { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--accent-taupe); font-weight: 500; }
@media (min-width: 700px) {
  .press-item { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 2rem; }
  .press-item__main { flex: 1; }
  .press-item__date { flex-shrink: 0; }
}

/* === Mobile-only booking CTA strip (sits below site-header on small screens) === */
.mobile-cta { display: none; }
@media (max-width: 767px) {
  .mobile-cta { display: block; background-color: var(--accent-beige); padding: 0.75rem 1rem; border-bottom: 1px solid rgba(26, 26, 26, 0.08); }
  .mobile-cta__btn { display: block; width: 100%; text-align: center; background-color: var(--text-dark); color: var(--bg-cream); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; padding: 0.85rem 1rem; border-radius: 2px; transition: opacity 0.2s ease; }
  .mobile-cta__btn:hover, .mobile-cta__btn:focus { opacity: 0.88; }
  .mobile-cta__btn span { margin-left: 0.4rem; }
}

/* ===== Section H: Newsletter ===== */
.newsletter { background-color: var(--text-dark); color: var(--bg-cream); padding: 5rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .newsletter { padding: 7rem 3rem; } }
.newsletter__inner { max-width: 720px; margin: 0 auto; }
.newsletter__eyebrow { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--accent-taupe); font-weight: 500; margin-bottom: 1.5rem; }
.newsletter__title { font-family: var(--font-serif); font-weight: 300; font-size: 2rem; line-height: 1.2; color: var(--bg-cream); margin: 0 0 1.25rem; }
@media (min-width: 768px) { .newsletter__title { font-size: 2.75rem; } }
.newsletter__title .italic { color: var(--accent-taupe); }
.newsletter__body { font-size: 1rem; line-height: 1.7; color: rgba(251, 249, 246, 0.75); font-weight: 300; margin: 0 auto 2.25rem; max-width: 36rem; }
@media (min-width: 768px) { .newsletter__body { font-size: 1.0625rem; } }
.newsletter__form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 480px; margin: 0 auto; }
@media (min-width: 600px) { .newsletter__form { flex-direction: row; } }
.newsletter__input { flex: 1; background: transparent; border: 1px solid rgba(251, 249, 246, 0.3); color: var(--bg-cream); padding: 0.875rem 1rem; font-family: var(--font-sans); font-size: 0.95rem; font-weight: 300; outline: none; transition: border-color 0.3s ease; }
.newsletter__input::placeholder { color: rgba(251, 249, 246, 0.4); }
.newsletter__input:focus { border-color: var(--accent-taupe); }
.newsletter__submit { background: var(--accent-taupe); color: var(--text-dark); border: 1px solid var(--accent-taupe); padding: 0.875rem 1.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; font-family: var(--font-sans); }
.newsletter__submit:hover { background: var(--bg-cream); border-color: var(--bg-cream); }

/* ===== Section I: Footer ===== */
.site-footer { background-color: var(--bg-cream); color: var(--text-dark); padding: 4rem 1.5rem 2.5rem; border-top: 1px solid rgba(26, 26, 26, 0.08); }
@media (min-width: 768px) { .site-footer { padding: 5rem 3rem 2.5rem; } }
.site-footer__inner { max-width: 1280px; margin: 0 auto; }
.site-footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; margin-bottom: 3.5rem; }
@media (min-width: 900px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; } }
.site-footer__brand { font-family: var(--font-serif); text-transform: uppercase; letter-spacing: 0.2em; font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; display: block; text-decoration: none; }
.site-footer__brand-tag { font-style: italic; font-family: var(--font-serif); font-size: 1rem; color: var(--accent-taupe); font-weight: 400; margin-bottom: 1.25rem; display: block; }
.site-footer__brand-blurb { font-size: 0.9rem; line-height: 1.65; color: rgba(26, 26, 26, 0.7); max-width: 24rem; margin: 0; }
.site-footer__col-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent-taupe); font-weight: 600; margin-bottom: 1.25rem; }
.site-footer__list { list-style: none; margin: 0; padding: 0; }
.site-footer__list li { margin-bottom: 0.625rem; }
.site-footer__list a { color: rgba(26, 26, 26, 0.78); font-size: 0.9rem; text-decoration: none; transition: color 0.3s ease; }
.site-footer__list a:hover { color: var(--text-dark); }
.site-footer__bottom { border-top: 1px solid rgba(26, 26, 26, 0.08); padding-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 2rem; } }
.site-footer__disclaimer { font-size: 0.75rem; line-height: 1.6; color: rgba(26, 26, 26, 0.55); max-width: 56rem; margin: 0; }
.site-footer__copyright { font-size: 0.75rem; color: rgba(26, 26, 26, 0.55); white-space: nowrap; margin: 0; }

/* ==========================================================================
   SUBPAGE STYLES
   ========================================================================== */

/* === Subpage Hero === */
.page-hero { background-color: var(--accent-beige); padding: 6rem 1.5rem 4rem; text-align: center; }
@media (min-width: 768px) { .page-hero { padding: 7rem 3rem 5rem; } }
.page-hero__inner { max-width: 920px; margin: 0 auto; }
.page-hero__eyebrow { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--accent-taupe); font-weight: 500; margin-bottom: 1.5rem; }
.page-hero__title { font-family: var(--font-serif); font-weight: 300; font-size: 2.25rem; line-height: 1.15; color: var(--text-dark); margin: 0 0 1.5rem; }
@media (min-width: 768px) { .page-hero__title { font-size: 3.25rem; } }
.page-hero__title .italic { color: var(--accent-taupe); }
.page-hero__lead { font-size: 1rem; line-height: 1.7; color: rgba(26, 26, 26, 0.78); font-weight: 300; max-width: 38rem; margin: 0 auto; }
@media (min-width: 768px) { .page-hero__lead { font-size: 1.125rem; } }
.page-hero__lead a { color: var(--text-dark); }

/* === Generic Page Section === */
.page-section { background-color: var(--bg-cream); padding: 4rem 1.5rem; }
@media (min-width: 768px) { .page-section { padding: 6rem 3rem; } }
.page-section--beige { background-color: var(--accent-beige); }
.page-section__inner { max-width: 920px; margin: 0 auto; }
.page-section__title { font-family: var(--font-serif); font-weight: 300; font-size: 1.75rem; line-height: 1.2; color: var(--text-dark); margin: 0 0 3rem; }
@media (min-width: 768px) { .page-section__title { font-size: 2rem; } }

/* === Long-form prose === */
.prose p { font-size: 1.0625rem; line-height: 1.8; color: rgba(26, 26, 26, 0.85); font-weight: 300; margin: 0 0 1.5rem; }
.prose p:last-child { margin-bottom: 0; }
@media (min-width: 768px) { .prose p { font-size: 1.125rem; } }
.prose a { color: var(--text-dark); border-bottom: 1px solid rgba(26, 26, 26, 0.3); text-decoration: none; }
.prose a:hover { border-color: var(--text-dark); }

/* === Advisory Track === */
.track { padding: 3.5rem 0; border-bottom: 1px solid rgba(26, 26, 26, 0.1); scroll-margin-top: 5rem; }
.track:first-of-type { padding-top: 0; }
.track:last-of-type { border-bottom: none; }
.track__pillar { font-family: var(--font-serif); font-weight: 300; font-size: 2.75rem; line-height: 1; letter-spacing: -0.015em; color: var(--text-dark); margin: 0 0 1rem; }
.track__pillar .italic { color: var(--accent-taupe); font-style: italic; }
.track__tag { font-size: 0.95rem; line-height: 1.55; color: var(--accent-taupe); font-style: italic; font-family: var(--font-serif); margin: 0 0 1.5rem; max-width: 44rem; }
.track__body { font-size: 1rem; line-height: 1.75; color: rgba(26, 26, 26, 0.8); font-weight: 300; max-width: 44rem; margin: 0 0 1.25rem; }
.track__format { font-size: 0.875rem; line-height: 1.6; color: rgba(26, 26, 26, 0.6); font-weight: 400; font-style: italic; max-width: 44rem; margin: 0; }
@media (min-width: 768px) { .track__pillar { font-size: 3.5rem; } .track__body { font-size: 1.0625rem; } .track__tag { font-size: 1rem; } }

/* === Speaking Talk === */
.talk { padding: 2.5rem 0; border-bottom: 1px solid rgba(26, 26, 26, 0.1); display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .talk { grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; } }
.talk:first-of-type { padding-top: 0; }
.talk:last-of-type { border-bottom: none; padding-bottom: 0; }
.talk__pillar { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent-taupe); font-weight: 600; margin: 0 0 0.5rem; }
.talk__title { font-family: var(--font-serif); font-weight: 400; font-size: 1.5rem; line-height: 1.25; color: var(--text-dark); margin: 0; }
.talk__body { font-size: 0.95rem; line-height: 1.7; color: rgba(26, 26, 26, 0.8); font-weight: 300; margin: 0 0 0.875rem; }
.talk__best-for { font-size: 0.85rem; font-style: italic; color: rgba(26, 26, 26, 0.6); margin: 0; }

/* === Bio Block (Press) === */
.bio-block { margin: 0 0 3rem; padding: 0 0 3rem; border-bottom: 1px solid rgba(26, 26, 26, 0.1); }
.bio-block:last-of-type { border-bottom: none; }
.bio-block__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent-taupe); font-weight: 600; margin-bottom: 1.25rem; }
.bio-block__text { font-size: 1rem; line-height: 1.75; color: rgba(26, 26, 26, 0.85); font-weight: 300; margin: 0; }
@media (min-width: 768px) { .bio-block__text { font-size: 1.0625rem; } }
.bio-block__text a { color: var(--text-dark); border-bottom: 1px solid rgba(26, 26, 26, 0.3); text-decoration: none; }

/* === Venture Detail === */
.venture-detail { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid rgba(26, 26, 26, 0.1); }
@media (min-width: 768px) { .venture-detail { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 6rem 0; } }
.venture-detail:first-of-type { padding-top: 0; }
.venture-detail:last-of-type { border-bottom: none; padding-bottom: 0; }
.venture-detail__visual { aspect-ratio: 4 / 3; background-color: var(--accent-beige); width: 100%; }
@media (min-width: 768px) { .venture-detail--reverse .venture-detail__text { order: -1; } }
.venture-detail__tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent-taupe); font-weight: 600; margin: 0 0 1rem; }
.venture-detail__name { font-family: var(--font-serif); font-weight: 300; font-size: 2.25rem; line-height: 1.15; color: var(--text-dark); margin: 0 0 1.25rem; }
@media (min-width: 768px) { .venture-detail__name { font-size: 3rem; } }
.venture-detail__name .italic { color: var(--accent-taupe); }
.venture-detail__body { font-size: 1rem; line-height: 1.75; color: rgba(26, 26, 26, 0.78); font-weight: 300; max-width: 32rem; margin: 0 0 1.75rem; }
@media (min-width: 768px) { .venture-detail__body { font-size: 1.0625rem; } }

/* === Closing CTA === */
.closing-cta { background-color: var(--text-dark); color: var(--bg-cream); padding: 5rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .closing-cta { padding: 7rem 3rem; } }
.closing-cta__inner { max-width: 720px; margin: 0 auto; }
.closing-cta__title { font-family: var(--font-serif); font-weight: 300; font-size: 2rem; line-height: 1.2; color: var(--bg-cream); margin: 0 0 1.25rem; }
@media (min-width: 768px) { .closing-cta__title { font-size: 2.5rem; } }
.closing-cta__title .italic { color: var(--accent-taupe); font-style: italic; }
.closing-cta__body { font-size: 1rem; line-height: 1.7; color: rgba(251, 249, 246, 0.75); font-weight: 300; margin: 0 auto 2.25rem; max-width: 36rem; }
@media (min-width: 768px) { .closing-cta__body { font-size: 1.0625rem; } }
.closing-cta .btn-solid { background: var(--accent-taupe); border-color: var(--accent-taupe); color: var(--text-dark); }
.closing-cta .btn-solid:hover { background: var(--bg-cream); border-color: var(--bg-cream); color: var(--text-dark); }

/* === Warning block === */
.warning-block { background-color: var(--accent-beige); padding: 2.5rem 2rem; max-width: 640px; margin: 4rem auto 0; }
.warning-block__title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent-taupe); font-weight: 600; margin-bottom: 1.25rem; }
.warning-block__list { list-style: none; padding: 0; margin: 0; }
.warning-block__list li { padding-left: 1.5rem; position: relative; margin-bottom: 0.875rem; font-size: 0.95rem; line-height: 1.6; color: rgba(26, 26, 26, 0.78); font-weight: 300; }
.warning-block__list li:last-child { margin-bottom: 0; }
.warning-block__list li::before { content: "-"; position: absolute; left: 0; color: var(--accent-taupe); }

/* === Contact Form === */
.contact-form { display: grid; gap: 1.5rem; max-width: 560px; margin: 0 auto; }
.contact-form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--accent-taupe); font-weight: 600; }
.contact-form__input, .contact-form__select, .contact-form__textarea { background: transparent; border: 1px solid rgba(26, 26, 26, 0.22); padding: 0.875rem 1rem; font-family: var(--font-sans); font-size: 1rem; font-weight: 300; color: var(--text-dark); outline: none; transition: border-color 0.3s ease; border-radius: 0; }
.contact-form__input:focus, .contact-form__select:focus, .contact-form__textarea:focus { border-color: var(--text-dark); }
.contact-form__textarea { resize: vertical; min-height: 140px; }
.contact-form__submit { background: var(--text-dark); color: var(--bg-cream); border: 1px solid var(--text-dark); padding: 1rem 2rem; font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; cursor: pointer; transition: background 0.3s ease; margin-top: 0.5rem; justify-self: start; }
.contact-form__submit:hover { background: var(--accent-taupe); border-color: var(--accent-taupe); }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; }


/* === Inline links inside track body === */
.track__body a { color: var(--text-dark); border-bottom: 1px solid rgba(26,26,26,0.3); text-decoration: none; }
.track__body a:hover { border-color: var(--text-dark); }

/* === Pricing tier blocks (Work With Me Run track) === */
.tier-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin: 1.5rem 0 0; max-width: 44rem; }
@media (min-width: 768px) { .tier-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
.tier { background-color: var(--accent-beige); padding: 1.75rem 1.5rem; }
.tier__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent-taupe); font-weight: 600; margin: 0 0 0.5rem; }
.tier__price { font-family: var(--font-serif); font-weight: 400; font-size: 1.75rem; line-height: 1.1; color: var(--text-dark); margin: 0 0 0.75rem; }
.tier__price-detail { font-size: 0.875rem; color: rgba(26, 26, 26, 0.55); font-weight: 400; font-family: var(--font-sans); }
.tier__body { font-size: 0.9rem; line-height: 1.6; color: rgba(26, 26, 26, 0.78); font-weight: 300; margin: 0; }

/* === Systems page extensions === */
.venture-detail__tech { font-size: 0.85rem; line-height: 1.6; color: rgba(26, 26, 26, 0.55); font-style: italic; max-width: 32rem; margin: 0 0 1.25rem; font-family: var(--font-sans); }
.venture-detail__status { font-size: 0.8rem; line-height: 1.4; color: var(--accent-taupe); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; margin: 0; display: inline-flex; align-items: center; gap: 0.5rem; }
.venture-detail__status .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-taupe); }


/* === Screenshot inside venture-detail visual === */
.venture-detail__visual { position: relative; overflow: hidden; }
.venture-detail__shot { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Examples showcase (home page) === */
.showcase { background-color: var(--accent-beige); padding: 5rem 1.5rem; }
.showcase .pathway { background: var(--bg-cream); }
.showcase .pathway__visual { background-color: var(--accent-beige); overflow: hidden; }
.showcase .pathway__visual svg { width: 100%; height: 100%; display: block; }
.showcase__footer { text-align: center; margin-top: 3rem; }

/* === Systems page graphic + logo treatments === */
.venture-detail__visual--graphic svg { width: 100%; height: 100%; display: block; }
.venture-detail__visual--logo { display: grid; place-items: center; padding: 2rem; background-color: var(--accent-beige); }
.venture-detail__visual--logo img { max-width: 70%; max-height: 70%; width: auto; height: auto; object-fit: contain; }

/* === Photo inside pathway cards (home Three Pathways section) === */
.pathway__visual { position: relative; overflow: hidden; }
.pathway__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Photo inside about teaser portrait slot === */
.about-teaser__visual { position: relative; overflow: hidden; }
.about-teaser__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === Signature script (About page sign-off) === */
.signature { margin: 2.5rem 0 1.5rem; max-width: 260px; }
.signature img { width: 100%; height: auto; display: block; }
