/* ==================== MARK JOSEPHSON WEBSITE ==================== */
/* Brand Kit: Warm Navy #2B4A6F, Söhne headings, Inter body */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FAF9F7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sohne', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    color: #2C2C2C;
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ==================== LAYOUT ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.section {
    padding: 100px 0;
}

.section--cream {
    background-color: #F0EBE3;
}

.section--light {
    background-color: #F7F5F2;
}

.section--dark {
    background-color: #1A1A1A;
    color: #FAF9F7;
}

.section--dark h2 {
    color: #FAF9F7;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #FAF9F7;
    border-bottom: 1px solid #E8E4DE;
    z-index: 1000;
}

.nav__wordmark {
    font-family: 'Sohne', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
}

.nav__links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav__link {
    font-size: 14px;
    color: #555;
    transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link--active {
    color: #2B4A6F;
}

.nav__btn {
    background: #2B4A6F;
    color: white !important;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.nav__btn:hover {
    background: #1E3A5F;
}

/* Hamburger menu */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #2C2C2C;
    transition: all 0.3s ease;
}

/* Hamburger animation when open */
.nav--open .nav__hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav--open .nav__hamburger span:nth-child(2) {
    opacity: 0;
}

.nav--open .nav__hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--primary {
    padding: 16px 36px;
    background: #2B4A6F;
    color: white;
    border-radius: 28px;
}

.btn--primary:hover {
    background: #1E3A5F;
}

.btn--secondary {
    padding: 14px 28px;
    background: transparent;
    color: #2B4A6F;
    border: 1.5px solid #2B4A6F;
    border-radius: 24px;
}

.btn--secondary:hover {
    background: #2B4A6F;
    color: white;
}

.btn--small {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 20px;
}

/* ==================== HERO ==================== */
.hero {
    padding: 140px 60px 100px;
    max-width: 900px;
}

.hero__title {
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 650px;
}

.hero__credentials {
    font-size: 1rem;
    color: #666;
    margin-bottom: 32px;
}

/* Hero with image */
.hero--split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
    padding: 140px 60px 80px;
}

.hero__image {
    aspect-ratio: 1;
    background: #E8E4DE;
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
    justify-self: end;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== SOCIAL PROOF ==================== */
.social-proof {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 60px;
    background: #F0EBE3;
}

.social-proof__label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-proof__logos {
    display: flex;
    gap: 40px;
    align-items: center;
}

.social-proof__logo {
    height: 32px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.2s ease;
}

.social-proof__logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ==================== FRAMEWORK / PILLARS ==================== */
.framework__title {
    color: #2B4A6F;
    margin-bottom: 40px;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar {
    background: white;
    border: 1px solid #E8E4DE;
    border-radius: 8px;
    padding: 32px;
}

.section--cream .pillar {
    background: white;
}

.pillar__title {
    margin-bottom: 12px;
}

.pillar__text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials__title {
    margin-bottom: 40px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial {
    background: white;
    border-radius: 8px;
    padding: 32px;
}

.testimonial__quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
}

.testimonial__author {
    font-size: 13px;
    color: #666;
}

/* Single testimonial (centered) */
.testimonial--single {
    text-align: center;
    background: none;
    padding: 0;
}

.testimonial--single .testimonial__quote {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 24px;
}

/* ==================== ABOUT PREVIEW ==================== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-preview__image {
    aspect-ratio: 1;
    background: #E8E4DE;
    border-radius: 8px;
    overflow: hidden;
}

.about-preview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-preview__title {
    margin-bottom: 16px;
}

.about-preview__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

/* ==================== CTA SECTION ==================== */
.cta {
    text-align: center;
    padding: 80px 60px;
}

.cta__title {
    margin-bottom: 16px;
}

.cta__text {
    font-size: 1rem;
    color: #999;
    margin-bottom: 32px;
}

/* ==================== STORY (Two columns) ==================== */
.story__title {
    color: #2B4A6F;
    margin-bottom: 32px;
}

.story__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.story__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* ==================== TIMELINE ==================== */
.timeline__title {
    margin-bottom: 40px;
}

.timeline__items {
    display: flex;
    flex-direction: column;
}

.timeline__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid #E8E4DE;
}

.timeline__item:last-child {
    border-bottom: none;
}

.timeline__date {
    font-size: 14px;
    color: #666;
}

.timeline__role {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline__description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.timeline__tag {
    display: inline-block;
    font-size: 12px;
    color: #2B4A6F;
    background: rgba(43, 74, 111, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    margin-top: 12px;
}

/* ==================== ORIGIN ==================== */
.origin__content {
    max-width: 700px;
}

.origin__title {
    color: #2B4A6F;
    margin-bottom: 24px;
}

.origin__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* ==================== PODCAST SECTION ==================== */
.podcast-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.podcast-section__title {
    margin-bottom: 16px;
}

.podcast-section__text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.podcast-section__image {
    aspect-ratio: 1;
    background: #E8E4DE;
    border-radius: 8px;
    overflow: hidden;
}

.podcast-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== WHO I WORK WITH ==================== */
.who__title {
    margin-bottom: 40px;
}

.who__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.who__card {
    background: white;
    border-radius: 8px;
    padding: 32px;
}

.who__card-title {
    color: #2B4A6F;
    margin-bottom: 12px;
}

.who__card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ==================== HOW IT WORKS ==================== */
.how__title {
    margin-bottom: 40px;
}

.how__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.how__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.how__list {
    list-style: none;
}

.how__list-item {
    font-size: 1rem;
    color: #444;
    padding: 16px 0;
    border-bottom: 1px solid #E8E4DE;
    display: flex;
    gap: 16px;
}

.how__list-item:last-child {
    border-bottom: none;
}

.how__number {
    color: #2B4A6F;
    font-weight: 600;
    font-size: 14px;
}

/* ==================== APPROACH ==================== */
.approach__title {
    color: #2B4A6F;
    margin-bottom: 16px;
}

.approach__subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

/* ==================== TOPICS ==================== */
.topics__title {
    margin-bottom: 40px;
}

.topics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.topics__tag {
    background: #F0EBE3;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    text-align: center;
}

.section--cream .topics__tag {
    background: white;
}

/* ==================== SERVICES GRID ==================== */
.services__title {
    margin-bottom: 16px;
}

.services__subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.services__card {
    background: white;
    border-radius: 8px;
    padding: 28px;
}

.services__card-title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.services__card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ==================== FAQ SECTION ==================== */
.faq__title {
    margin-bottom: 40px;
}

.faq__list {
    max-width: 800px;
}

.faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq__item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq__question {
    font-size: 1.1rem;
    color: #2B4A6F;
    padding: 24px 40px 24px 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.faq__question:hover {
    color: #1E3A5F;
}

.faq__question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #2B4A6F;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question::after {
    content: '−';
}

.faq__answer {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 40px 0 0;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding-bottom: 24px;
}

/* ==================== BLOG SECTION ==================== */
.blog__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.blog__title {
    margin-bottom: 0;
}

.blog__link {
    font-size: 14px;
    color: #2B4A6F;
    font-weight: 500;
}

.blog__link::after {
    content: ' →';
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog__card {
    background: #F0EBE3;
    border-radius: 8px;
    overflow: hidden;
}

.blog__card-image {
    height: 160px;
    background: #E8E4DE;
    overflow: hidden;
}

.blog__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog__card-content {
    padding: 24px;
}

.blog__card-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.blog__card-title {
    font-size: 1.125rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog__card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* ==================== PODCAST FULL ==================== */
.podcast__intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.podcast__cover {
    aspect-ratio: 1;
    background: #E8E4DE;
    border-radius: 8px;
    overflow: hidden;
}

.podcast__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast__info-title {
    margin-bottom: 16px;
}

.podcast__info-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.podcast__links {
    display: flex;
    gap: 16px;
}

.podcast__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 24px;
    font-size: 14px;
    color: #2C2C2C;
    font-weight: 500;
    transition: background 0.2s ease;
}

.podcast__link:hover {
    background: #FAF9F7;
}

.podcast__link-icon {
    width: 20px;
    height: 20px;
}

.episodes__title {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.episodes__list {
    display: flex;
    flex-direction: column;
}

.episode {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #D8D3CB;
    align-items: center;
}

.episode:last-child {
    border-bottom: none;
}

.episode__number {
    font-size: 14px;
    color: #666;
}

.episode__title {
    font-size: 1rem;
    margin-bottom: 4px;
}

.episode__description {
    font-size: 14px;
    color: #666;
}

.episode__duration {
    font-size: 13px;
    color: #666;
}

/* ==================== SUBSCRIBE ==================== */
.subscribe {
    text-align: center;
}

.subscribe__title {
    margin-bottom: 16px;
}

.subscribe__text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe__form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe__input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #E8E4DE;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.subscribe__input:focus {
    outline: none;
    border-color: #2B4A6F;
}

.subscribe__btn {
    padding: 16px 32px;
    background: #2B4A6F;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.subscribe__btn:hover {
    background: #1E3A5F;
}

/* ==================== CONTACT ==================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact__info {
    padding: 80px 60px;
    background: #FAF9F7;
}

.contact__title {
    margin-bottom: 24px;
}

.contact__text {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact__details {
    margin-bottom: 32px;
}

.contact__details-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.contact__details-value {
    font-size: 1rem;
    color: #2C2C2C;
}

.contact__details-value a {
    color: #2B4A6F;
}

.contact__details-value a:hover {
    text-decoration: underline;
}

.contact__social {
    display: flex;
    gap: 16px;
}

.contact__social-link {
    width: 44px;
    height: 44px;
    background: #F0EBE3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #666;
    transition: background 0.2s ease;
}

.contact__social-link:hover {
    background: #E8E4DE;
}

.contact__form-section {
    padding: 80px 60px;
    background: #F0EBE3;
}

.contact__form-title {
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 32px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-size: 14px;
    font-weight: 500;
    color: #2C2C2C;
}

.form__input,
.form__textarea,
.form__select {
    padding: 16px;
    border: 1px solid #D8D3CB;
    border-radius: 8px;
    font-size: 15px;
    background: white;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: #2B4A6F;
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
}

.form__submit {
    padding: 16px 36px;
    background: #2B4A6F;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 8px;
    transition: background 0.2s ease;
}

.form__submit:hover {
    background: #1E3A5F;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1A1A1A;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__wordmark {
    font-family: 'Sohne', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FAF9F7;
}

.footer__links {
    display: flex;
    gap: 32px;
}

.footer__link {
    font-size: 14px;
    color: #888;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #FAF9F7;
}

.beta-tag {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #aaa;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .nav {
        padding: 20px 40px;
    }
    
    .hero {
        padding: 120px 40px 80px;
    }
    
    .hero--split {
        padding: 120px 40px 60px;
    }
    
    .pillars,
    .who__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .topics__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 24px;
    }

    .section {
        padding: 70px 0;
    }
    
    .nav {
        padding: 16px 24px;
        flex-wrap: wrap;
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 20px 0 10px;
        order: 3;
    }

    .nav--open .nav__links {
        display: flex;
    }

    .nav__links .nav__link {
        padding: 12px 0;
        border-bottom: 1px solid #E8E4DE;
    }

    .nav__links .nav__btn {
        margin-top: 12px;
        text-align: center;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero--split {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
    }
    
    .hero__image {
        order: -1;
        max-width: 300px;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .social-proof__logos {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .pillars,
    .testimonials__grid,
    .who__grid,
    .blog__grid {
        grid-template-columns: 1fr;
    }
    
    .about-preview {
        grid-template-columns: 1fr;
    }
    
    .about-preview__image {
        max-width: 300px;
    }
    
    .story__content,
    .how__content {
        grid-template-columns: 1fr;
    }
    
    .timeline__item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .podcast-section,
    .podcast__intro {
        grid-template-columns: 1fr;
    }
    
    .podcast-section__image,
    .podcast__cover {
        max-width: 250px;
    }
    
    .topics__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }

    .faq__question {
        font-size: 1rem;
    }

    .faq__item {
        padding: 20px 0;
    }

    .contact {
        grid-template-columns: 1fr;
    }
    
    .contact__info,
    .contact__form-section {
        padding: 60px 24px;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .subscribe__form {
        flex-direction: column;
    }
    
    .footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 40px 24px;
    }
    
    .cta {
        padding: 60px 24px;
    }
    
    .episode {
        grid-template-columns: 50px 1fr;
    }
    
    .episode__duration {
        grid-column: 2;
    }

    /* Blog post page mobile */
    .blog-post {
        padding: 100px 0 60px;
    }

    .blog-post .container {
        padding: 0 24px;
    }

    .blog-post__title {
        font-size: 2rem;
    }

    .blog-post__subscribe {
        padding: 32px 24px;
    }

    /* Episode page mobile */
    .episode-page {
        padding: 100px 0 60px;
    }

    .episode-page .container {
        padding: 0 24px;
    }

    .episode-page__title {
        font-size: 2rem;
    }

    .episode-page__cta {
        padding: 32px 24px;
    }

    .episode-page__links {
        flex-direction: column;
    }
}

/* ==================== BLOG POST PAGE ==================== */
.blog-post {
    padding: 140px 0 80px;
}

.blog-post .container {
    max-width: 700px;
}

.blog-post__back {
    display: inline-block;
    font-size: 14px;
    color: #2B4A6F;
    margin-bottom: 32px;
}

.blog-post__back::before {
    content: '← ';
}

.blog-post__back:hover {
    text-decoration: underline;
}

.blog-post__header {
    margin-bottom: 40px;
}

.blog-post__date {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.blog-post__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.blog-post__excerpt {
    padding: 32px 0;
    border-bottom: 1px solid #E8E4DE;
    margin-bottom: 32px;
}

.blog-post__excerpt p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444;
}

.blog-post__excerpt h2 {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 24px;
    margin-bottom: 12px;
}

.blog-post__excerpt ul {
    list-style: disc;
    padding-left: 20px;
}

.blog-post__excerpt li {
    font-size: 15px;
    color: #555;
    margin-bottom: 6px;
}

.blog-post__cta {
    margin-bottom: 48px;
}

.blog-post__subscribe {
    background: #F0EBE3;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.blog-post__subscribe h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.blog-post__subscribe p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* ==================== PODCAST EPISODE PAGE ==================== */
.episode-page {
    padding: 140px 0 80px;
}

.episode-page .container {
    max-width: 800px;
}

.episode-page__header {
    margin-bottom: 48px;
}

.episode-page__back {
    display: inline-block;
    font-size: 14px;
    color: #2B4A6F;
    margin-bottom: 32px;
}

.episode-page__back::before {
    content: '← ';
}

.episode-page__back:hover {
    text-decoration: underline;
}

.episode-page__number {
    display: block;
    font-size: 14px;
    color: #2B4A6F;
    font-weight: 500;
    margin-bottom: 12px;
}

.episode-page__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.episode-page__guest {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 8px;
}

.episode-page__meta {
    font-size: 14px;
    color: #666;
}

.episode-page__content {
    display: grid;
    gap: 48px;
}

.episode-page__description h2 {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.episode-page__description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.episode-page__description ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.episode-page__description li {
    font-size: 15px;
    color: #555;
    margin-bottom: 6px;
}

.episode-page__listen h2 {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.episode-page__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.episode-page__cta {
    background: #F0EBE3;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 48px;
}

.episode-page__cta h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.episode-page__cta p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog card link styling */
.blog__card-link {
    display: inline-block;
    font-size: 14px;
    color: #2B4A6F;
    font-weight: 500;
    margin-top: 12px;
}

.blog__card-link::after {
    content: ' →';
}

.blog__card:hover .blog__card-link {
    text-decoration: underline;
}

/* ==================== UTILITIES ==================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 32px;
}

/* ==================== POLISH & ANIMATIONS ==================== */

/* Enhanced button hover effects */
.btn--primary {
    box-shadow: 0 2px 8px rgba(43, 74, 111, 0.2);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(43, 74, 111, 0.3);
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 74, 111, 0.15);
}

/* Card hover effects */
.who__card,
.services__card,
.pillar {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.who__card:hover,
.services__card:hover,
.pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.blog__card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial {
    transition: transform 0.2s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
}

/* Episode card hover */
.episode {
    transition: background 0.2s ease;
}

.episode:hover {
    background: rgba(43, 74, 111, 0.05);
}

/* Headshot image styling */
.hero__image img,
.about-preview__image img {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Styled quotation marks on testimonials */
.testimonial__quote::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    position: relative;
    top: 0.3em;
    margin-right: 4px;
    color: #2B4A6F;
    opacity: 0.3;
}

.testimonial--single .testimonial__quote::before {
    font-size: 4rem;
    display: block;
    text-align: center;
    margin-bottom: 16px;
    top: 0;
}

/* Form focus states */
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #2B4A6F;
    box-shadow: 0 0 0 3px rgba(43, 74, 111, 0.1);
}

.form__input,
.form__select,
.form__textarea {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Form submit button hover */
.form__submit {
    transition: all 0.2s ease;
}

.form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(43, 74, 111, 0.3);
}

/* Scroll fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for grids */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Smooth anchor scrolling */
html {
    scroll-behavior: smooth;
}

/* Nav link hover underline animation */
.nav__link {
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2B4A6F;
    transition: width 0.2s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* Footer enhancement */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__wordmark {
    letter-spacing: -0.01em;
}

/* Topics tag hover */
.topics__tag {
    transition: background 0.2s ease, transform 0.2s ease;
}

.topics__tag:hover {
    background: #E8E4DE;
    transform: translateY(-2px);
}

.section--cream .topics__tag:hover {
    background: #FAF9F7;
}

/* Timeline item hover */
.timeline__item {
    transition: background 0.2s ease;
    padding-left: 16px;
    margin-left: -16px;
    padding-right: 16px;
    border-radius: 8px;
}

.timeline__item:hover {
    background: rgba(43, 74, 111, 0.03);
}

/* FAQ item hover */
.faq__item {
    transition: background 0.2s ease;
    padding-left: 16px;
    margin-left: -16px;
    padding-right: 16px;
}

.faq__item:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ==================== SOCIAL PROOF BAR ==================== */
.social-proof {
    background: #F0EBE3;
    padding: 24px 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.social-proof__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.social-proof__label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-proof__logos {
    display: flex;
    align-items: center;
    gap: 32px;
}

.social-proof__logo {
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    opacity: 0.7;
}

.social-proof__stat {
    font-size: 13px;
    color: #2B4A6F;
    font-weight: 500;
    padding-left: 32px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

/* ==================== TESTIMONIALS CAROUSEL ==================== */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-carousel__track {
    position: relative;
    min-height: 200px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-card__quote {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
}

.testimonial-card__quote::before {
    content: '"';
    font-size: 4rem;
    line-height: 0;
    display: block;
    margin-bottom: 16px;
    color: #2B4A6F;
    opacity: 0.3;
}

.testimonial-card__author {
    font-size: 14px;
    font-weight: 500;
    color: #2B4A6F;
}

.testimonials-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonials-carousel__btn {
    background: none;
    border: 1px solid #2B4A6F;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #2B4A6F;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.testimonials-carousel__btn:hover {
    background: #2B4A6F;
    color: white;
}

.testimonials-carousel__dots {
    display: flex;
    gap: 8px;
}

.testimonials-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s ease;
}

.testimonials-carousel__dot.active {
    background: #2B4A6F;
}

/* Mobile adjustments for social proof */
@media (max-width: 768px) {
    .social-proof {
        padding: 20px 24px;
    }

    .social-proof__container {
        flex-direction: column;
        gap: 16px;
    }

    .social-proof__logos {
        gap: 20px;
    }

    .social-proof__logo {
        font-size: 14px;
    }

    .social-proof__stat {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 16px;
    }

    .testimonial-card__quote {
        font-size: 1.1rem;
    }
}

/* ==================== CLIENT LOGOS ==================== */
.clients {
    padding: 48px 60px;
    background: #FAF9F7;
    border-bottom: 1px solid #E8E4DE;
}

.clients__label {
    text-align: center;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.clients__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.clients__logo {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    padding: 8px 16px;
    background: #F0EBE3;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.clients__logo:hover {
    background: #E8E4DE;
    color: #2B4A6F;
}

@media (max-width: 768px) {
    .clients {
        padding: 32px 24px;
    }

    .clients__grid {
        gap: 8px 12px;
    }

    .clients__logo {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ==================== MEDIA & SPEAKING SECTION ==================== */
.media__title {
    margin-bottom: 40px;
}

.media__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.media__item {
    background: #2B4A6F;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.media__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.media__logo {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-weight: 600;
    color: #FAF9F7;
}

.media__logo--nyt {
    font-family: 'Times New Roman', 'Georgia', serif;
    font-style: italic;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.media__logo--cnbc {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0.05em;
    font-size: 20px;
}

.media__stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FAF9F7;
    line-height: 1;
}

.media__description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Personal section */
.personal__content {
    max-width: 700px;
}

.personal__title {
    margin-bottom: 16px;
}

.personal__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 1024px) {
    .media__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .media__stat {
        font-size: 2rem;
    }
}
