:root {
    --amethyst: #54245e;
    --amethyst-dark: #3d1a44;
    --amethyst-soft: rgba(84, 36, 94, 0.08);
    --gunmetal: #2C3539;
    --slate: #1a1a1a;
    --marble-white: #fcfcfc;
    --marble-gray: #e8e8e8;
    --soft-gray: #f4f4f4;
    --text-main: #333333;
    --text-muted: #5b6266;
    --white: #ffffff;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    --max-width: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--marble-white);
    color: var(--text-main);
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--gunmetal);
    color: var(--white);
    padding: 10px 14px;
    z-index: 999;
}

.skip-link:focus { left: 12px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(252, 252, 252, 0.96);
    border-bottom: 1px solid var(--marble-gray);
    backdrop-filter: blur(8px);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.nav-logo { width: 164px; height: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
    font-size: 0.93rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gunmetal);
}

.nav-links a:hover,
.nav-links a:focus { color: var(--amethyst); }

.nav-cta {
    border: 1px solid var(--amethyst);
    color: var(--amethyst) !important;
    padding: 9px 16px;
    border-radius: 4px;
}

.nav-cta:hover,
.nav-cta:focus {
    background: var(--amethyst);
    color: var(--white) !important;
}

main { overflow: hidden; }

.audience-banner {
    background: var(--amethyst);
    color: var(--white);
    padding: 17px 24px;
    text-align: center;
}

.audience-banner p {
    font-size: clamp(1.12rem, 2.2vw, 1.38rem);
    letter-spacing: 0.2px;
    margin: 0;
}

.audience-banner strong {
    color: var(--white);
    font-weight: 800;
    font-size: 1em;
    letter-spacing: 0.1px;
}

.section {
    padding: 70px 24px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero {
    padding: 66px 24px 76px;
    background: linear-gradient(135deg, var(--marble-white) 0%, #f1f1f1 100%);
}

.hero-grid,
.content-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 42px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.65rem, 6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -2.2px;
    color: var(--gunmetal);
    margin-bottom: 22px;
}

.hero .subhead {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    color: var(--amethyst);
    font-weight: 700;
    margin-bottom: 26px;
}

.copy-stack p,
.section-copy p {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 18px;
    max-width: 720px;
}

.lead {
    font-size: 1.2rem !important;
    color: var(--gunmetal) !important;
    font-weight: 700;
}

.hero-image,
.section-image {
    border-radius: 9px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
}

.button-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    padding: 14px 26px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus { transform: translateY(-2px); }

.btn-primary {
    background: var(--amethyst);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(84, 36, 94, 0.24);
}

.btn-primary:hover,
.btn-primary:focus { background: var(--amethyst-dark); }

.btn-secondary {
    border: 1px solid var(--gunmetal);
    color: var(--gunmetal);
    background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--gunmetal);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -1.1px;
    color: var(--gunmetal);
    margin-bottom: 24px;
}

.section-kicker {
    color: var(--amethyst);
    text-transform: uppercase;
    letter-spacing: 1.55px;
    font-weight: 800;
    font-size: 0.78rem;
    margin-bottom: 14px;
}

.band {
    background: var(--gunmetal);
    color: var(--white);
    border-top: 4px solid var(--amethyst);
    border-bottom: 4px solid var(--amethyst);
}

.emphasis-line {
    font-weight: 800;
    font-size: 1.18rem !important;
    letter-spacing: 0.1px;
}

.band .section-title,
.band p { color: var(--white); }

.band p { opacity: 0.86; }

.card-section { background: var(--soft-gray); }

.coherence-card {
    background: var(--white);
    border-left: 5px solid var(--amethyst);
    padding: 44px;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

.final-cta {
    background: var(--amethyst);
    color: var(--white);
    text-align: center;
    padding-top: 88px;
    padding-bottom: 88px;
}

.final-cta .section-title,
.final-cta p { color: var(--white); margin-left: auto; margin-right: auto; }
.final-cta .button-row { justify-content: center; }
.final-cta .btn-primary { background: var(--white); color: var(--gunmetal); }
.final-cta .btn-primary:hover { background: #eeeeee; }

.faq-section { background: var(--marble-white); }

.faq-list {
    margin-top: 28px;
    border-top: 1px solid var(--marble-gray);
}

.faq-item {
    border-bottom: 1px solid var(--marble-gray);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    color: var(--gunmetal);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
}

.faq-question span:last-child {
    color: var(--amethyst);
    font-size: 1.4rem;
    line-height: 1;
}

.faq-answer {
    display: none;
    padding: 0 0 24px;
    color: #444;
    max-width: 900px;
}

.faq-item.open .faq-answer { display: block; }

.site-footer {
    background: var(--slate);
    color: var(--white);
    padding: 64px 24px 42px;
    text-align: center;
}

.footer-logo {
    width: 210px;
    margin: 0 auto 20px;
}

.footer-line {
    color: rgba(255,255,255,0.84);
    font-size: 1rem;
    margin-bottom: 6px;
}

.footer-small {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}

@media (max-width: 920px) {
    .navbar { align-items: flex-start; flex-direction: column; }
    .nav-links { flex-wrap: wrap; gap: 14px 18px; }
    .hero-grid,
    .content-grid { grid-template-columns: 1fr; gap: 34px; }
    .hero { padding-top: 48px; }
    .section { padding: 58px 22px; }
    .audience-banner { padding: 15px 22px; }
    .content-grid.reverse .section-media { order: 2; }
    .content-grid.reverse .section-copy { order: 1; }
}

@media (max-width: 560px) {
    .nav-logo { width: 144px; }
    .nav-links { font-size: 0.86rem; }
    .nav-cta { padding: 7px 12px; }
    .button-row { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .coherence-card { padding: 28px; }
}

/* Interior page patterns */
.page-hero {
    padding: 76px 24px 72px;
    background: linear-gradient(135deg, var(--marble-white) 0%, #f1f1f1 100%);
}

.page-hero-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.page-hero h1 {
    font-size: clamp(2.55rem, 5vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: -2px;
    color: var(--gunmetal);
    margin-bottom: 24px;
}

.page-intro {
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    color: var(--amethyst);
    font-weight: 700;
    max-width: 780px;
}

.breadcrumb {
    max-width: var(--max-width);
    margin: 0 auto 22px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--amethyst);
    text-decoration: none;
}

.nav-links a.active {
    color: var(--amethyst);
}

.statement-card {
    background: var(--white);
    border-left: 5px solid var(--amethyst);
    padding: 42px;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

.statement-card .section-title { margin-bottom: 18px; }

.split-card {
    background: var(--white);
    border-radius: 9px;
    box-shadow: var(--shadow);
    padding: 42px;
    border-top: 4px solid var(--amethyst);
}

.page-cta-note {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 920px) {
    .page-hero-grid { grid-template-columns: 1fr; gap: 34px; }
    .page-hero { padding-top: 58px; }
}

@media (max-width: 560px) {
    .statement-card,
    .split-card { padding: 28px; }
}

/* About page mobile refinement */
@media (max-width: 560px) {
    .page-hero {
        padding: 48px 22px 56px;
    }

    .breadcrumb {
        margin-top: 8px;
        margin-bottom: 18px;
        font-size: 0.86rem;
    }

    .page-hero .section-kicker {
        margin-bottom: 8px;
        font-size: 0.74rem;
        letter-spacing: 1.35px;
    }

    .page-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.05rem);
        line-height: 1.04;
        letter-spacing: -1.35px;
        margin-bottom: 18px;
    }

    .page-intro {
        font-size: 1.08rem;
        line-height: 1.48;
        margin-bottom: 18px;
    }

    .page-hero .copy-stack p:not(.section-kicker):not(.page-intro) {
        font-size: 1rem;
        line-height: 1.58;
        margin-bottom: 16px;
    }
}


/* Services page patterns */
.services-overview {
    background: var(--marble-white);
}

.service-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: var(--white);
    border: 1px solid var(--marble-gray);
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}

.service-table th {
    background: var(--gunmetal);
    color: var(--white);
    text-align: left;
    padding: 18px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--marble-gray);
    vertical-align: top;
    color: #444;
}

.service-table tr:last-child td { border-bottom: none; }

.service-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--amethyst);
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-link:hover,
.service-link:focus { color: var(--amethyst-dark); }

.investment-card {
    background: var(--white);
    border-left: 5px solid var(--amethyst);
    border-radius: 9px;
    box-shadow: var(--shadow);
    padding: 42px;
    max-width: 960px;
    margin: 0 auto;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.68);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 500;
}

.modal-backdrop.open { display: flex; }

.service-modal {
    background: var(--white);
    color: var(--text-main);
    border-radius: 10px;
    max-width: 680px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.28);
    border-top: 6px solid var(--amethyst);
    padding: 34px;
    position: relative;
}

.service-modal h2 {
    color: var(--gunmetal);
    font-size: clamp(1.8rem, 4vw, 2.55rem);
    line-height: 1.08;
    margin-bottom: 16px;
}

.service-modal p { margin-bottom: 14px; color: #444; }

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: transparent;
    color: var(--amethyst);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    font-weight: 700;
}

.modal-kicker {
    color: var(--amethyst);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 10px;
}

@media (max-width: 560px) {
    .service-table { min-width: 720px; }
    .service-table th,
    .service-table td { padding: 15px 16px; }
    .investment-card { padding: 28px; }
    .service-modal { padding: 30px 24px; }
}

/* Publications page */
.library-intro {
    max-width: 760px;
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.publication-grid,
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.publication-card,
.knowledge-card {
    background: var(--white);
    border: 1px solid var(--marble-gray);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.publication-card {
    border-top: 5px solid var(--amethyst);
    min-height: 310px;
    display: flex;
    flex-direction: column;
}

.publication-type {
    color: var(--amethyst);
    text-transform: uppercase;
    letter-spacing: 1.35px;
    font-size: 0.74rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.publication-card h3,
.knowledge-card h3 {
    color: var(--gunmetal);
    font-size: 1.28rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.publication-card p,
.knowledge-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 18px;
}

.publication-status {
    margin-top: auto;
    color: var(--text-muted);
    font-weight: 800;
    font-size: 0.86rem;
}

.knowledge-grid {
    grid-template-columns: repeat(4, 1fr);
}

.knowledge-card {
    border-left: 4px solid var(--amethyst);
}

.centered-copy {
    text-align: center;
    max-width: 850px;
}

.social-placeholder-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.social-placeholder-row span {
    border: 1px solid var(--amethyst);
    color: var(--amethyst);
    background: var(--white);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 800;
}

@media (max-width: 920px) {
    .publication-grid,
    .knowledge-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .publication-grid,
    .knowledge-grid { grid-template-columns: 1fr; }
    .publication-card { min-height: auto; }
}

/* Contact page patterns */
.contact-panel {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--marble-gray);
    border-top: 5px solid var(--amethyst);
    padding: 44px;
}

.contact-panel-intro {
    max-width: 820px;
    margin-bottom: 28px;
}

.contact-form label {
    display: block;
    color: var(--gunmetal);
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-form label span {
    color: var(--text-muted);
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 22px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cfd3d6;
    border-radius: 6px;
    padding: 13px 14px;
    font: inherit;
    color: var(--gunmetal);
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 3px solid rgba(84, 36, 94, 0.16);
    border-color: var(--amethyst);
}

.full-width { grid-column: 1 / -1; }

.contact-form .button-row { margin-top: 28px; }

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-status {
    margin-top: 18px;
    border-radius: 6px;
    padding: 14px 16px;
    font-weight: 700;
}

.form-status.success {
    background: rgba(84, 36, 94, 0.10);
    border: 1px solid rgba(84, 36, 94, 0.25);
    color: var(--gunmetal);
}

.form-status.error {
    background: #fff5f5;
    border: 1px solid #e6b8b8;
    color: #6f1d1d;
}

@media (max-width: 720px) {
    .contact-panel { padding: 30px 24px; }
    .form-grid { grid-template-columns: 1fr; }
}

/* v2.0 operational fixes and executive polish staging */
.service-objective {
    color: var(--gunmetal);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 6px;
}

@media (max-width: 700px) {
    .service-table-wrap {
        overflow: visible;
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .service-table,
    .service-table tbody,
    .service-table tr,
    .service-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .service-table thead {
        display: none;
    }

    .service-table tr {
        background: var(--white);
        border: 1px solid var(--marble-gray);
        border-radius: 10px;
        box-shadow: 0 12px 28px rgba(0,0,0,0.06);
        margin-bottom: 18px;
        overflow: hidden;
    }

    .service-table td {
        border-bottom: 1px solid var(--marble-gray);
        padding: 16px 18px;
    }

    .service-table td:last-child {
        border-bottom: none;
    }

    .service-table td::before {
        content: attr(data-label);
        display: block;
        color: var(--amethyst);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.9px;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .service-table td:first-child::before {
        color: var(--gunmetal);
    }

    .service-link {
        text-decoration: none;
        pointer-events: none;
        cursor: default;
    }
}

/* v2.0.1 Executive Polish - global refinement */
html, body { max-width: 100%; overflow-x: hidden; }

.nav-logo { width: 180px; }

.nav-links { flex-wrap: wrap; }

.section-kicker { display: none !important; }

.audience-banner { padding: 10px 24px; }
.audience-banner p { font-size: clamp(1.05rem, 1.8vw, 1.22rem); }

.final-cta {
    padding-top: 52px;
    padding-bottom: 52px;
}
.final-cta .section-title {
    font-size: clamp(2.25rem, 4vw, 3.35rem);
    margin-bottom: 16px;
}

.site-footer {
    padding: 34px 24px 26px;
    text-align: left;
}
.site-footer .container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-logo {
    width: 168px;
    margin: 0;
}
.footer-line {
    font-size: 1.18rem;
    font-weight: 800;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2px;
}
.footer-small { font-size: 0.86rem; }

/* About polish: hero copy stands alone without redundant image */
body.about-page .page-hero-grid,
.about-page .page-hero-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
}

@media (max-width: 720px) {
    .navbar {
        align-items: center;
        text-align: center;
        padding: 12px 18px;
    }
    .nav-logo { width: 158px; }
    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 12px 16px;
        font-size: 0.84rem;
    }
    .nav-cta { padding: 7px 12px; }
    .audience-banner { padding: 10px 18px; }
    .audience-banner p {
        font-size: 1.03rem;
        line-height: 1.45;
    }
    .page-hero {
        padding: 42px 24px 50px;
    }
    .breadcrumb {
        margin-top: 0;
        margin-bottom: 18px;
        padding: 0;
        font-size: 0.9rem;
    }
    .page-hero h1 {
        font-size: clamp(2.25rem, 10vw, 2.95rem);
        line-height: 1.05;
        letter-spacing: -1.1px;
    }
    .page-intro {
        font-size: 1.04rem;
        line-height: 1.52;
    }
    .page-hero .copy-stack p:not(.section-kicker):not(.page-intro) {
        font-size: 0.98rem;
        line-height: 1.6;
    }
    .site-footer {
        text-align: center;
    }
    .site-footer .container {
        justify-content: center;
    }
    .footer-logo { width: 138px; }
}

@media (max-width: 420px) {
    .nav-links { gap: 10px 13px; font-size: 0.8rem; }
    .nav-cta { padding: 6px 10px; }
}


/* v2.0.1 Executive Polish FINAL QA overrides */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    backdrop-filter: none;
}
.navbar { background: #ffffff; }
.nav-logo { width: 180px; }

/* Eyebrow labels removed from HTML, hidden as a safeguard */
.section-kicker { display: none !important; }

/* Reduce banner landscape site-wide */
.audience-banner { padding: 8px 24px; }
.audience-banner p {
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 1.35;
}

.final-cta {
    padding-top: 36px;
    padding-bottom: 38px;
}
.final-cta .section-title {
    font-size: clamp(2.35rem, 4vw, 3.45rem);
    margin-bottom: 12px;
}
.final-cta p { margin-bottom: 8px; }
.final-cta .button-row { margin-top: 20px; }

.site-footer { padding: 26px 24px 22px; }
.footer-logo { width: 168px; }
.footer-line { font-size: 1.22rem; }

/* Interior hero containment so About and Services do not feel oversized on mobile */
.page-hero { padding: 56px 24px 60px; }
.page-hero-grid {
    max-width: 1040px;
    grid-template-columns: 1fr 0.75fr;
    gap: 40px;
}
.page-hero .copy-stack { max-width: 760px; }
.page-hero h1 { max-width: 760px; }
.page-hero .hero-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}

body.about-page .page-hero-grid,
.about-page .page-hero-grid {
    grid-template-columns: 1fr;
    max-width: 860px;
}

@media (max-width: 920px) {
    .page-hero-grid { grid-template-columns: 1fr; max-width: 760px; }
    .page-hero .hero-image { max-height: 300px; }
}

@media (max-width: 720px) {
    .navbar {
        align-items: center;
        text-align: center;
        padding: 12px 18px;
    }
    .nav-logo { width: 158px; }
    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 12px 16px;
        font-size: 0.84rem;
    }
    .nav-cta { padding: 7px 12px; }
    .audience-banner { padding: 8px 18px; }
    .audience-banner p { font-size: 1.02rem; line-height: 1.42; }
    .page-hero { padding: 34px 24px 42px; }
    .breadcrumb { margin-top: 0; margin-bottom: 18px; font-size: 0.9rem; }
    .page-hero h1 {
        font-size: clamp(2.05rem, 9vw, 2.72rem);
        line-height: 1.06;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }
    .page-intro { font-size: 1.02rem; line-height: 1.5; }
    .page-hero .copy-stack p:not(.section-kicker):not(.page-intro) {
        font-size: 0.98rem;
        line-height: 1.58;
        margin-bottom: 15px;
    }
    .page-hero .hero-image { max-height: 245px; }
    .section { padding: 48px 22px; }
    .final-cta { padding-top: 34px; padding-bottom: 36px; }
    .site-footer { text-align: center; }
    .site-footer .container { justify-content: center; }
    .footer-logo { width: 138px; }
}

@media (max-width: 420px) {
    .nav-links { gap: 10px 13px; font-size: 0.8rem; }
    .nav-cta { padding: 6px 10px; }
}


/* v2.1 Executive Library and responsive crown polish */
.hero-grid, .page-hero-grid, .hero-grid > *, .page-hero-grid > * { min-width: 0; width: 100%; }
.home-page .hero, .about-page .page-hero { overflow-x: clip; }
.about-page .page-hero-grid, .executive-library-hero .page-hero-grid, .library-piece-hero .page-hero-grid { grid-template-columns: minmax(0, 1fr); }
.about-page .page-hero-grid .copy-stack, .executive-library-hero .copy-stack, .library-piece-hero .copy-stack { max-width: 900px; }
.service-name-static { color: var(--amethyst); font-weight: 800; display: inline-block; margin-top: 4px; }
.text-link { color: var(--amethyst); font-weight: 800; text-decoration: none; margin-top: auto; }
.text-link:hover, .text-link:focus { text-decoration: underline; text-underline-offset: 4px; }
.foundation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 900px; }
.library-publications { background: var(--soft-gray); }
.publication-hero { padding: 54px 24px 0; background: linear-gradient(135deg, var(--marble-white), #f1f1f1); }
.publication-hero .container { max-width: 1050px; }
.publication-hero h1 { color: var(--gunmetal); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; margin: 0 0 30px; max-width: 980px; }
.publication-banner { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px 8px 0 0; box-shadow: var(--shadow); }
.publication-article, .longform { max-width: 920px; margin: 0 auto; padding: 62px 24px 80px; }
.publication-article section { margin-bottom: 48px; }
.publication-article h2, .longform h2 { font-family: Georgia, 'Times New Roman', serif; color: var(--gunmetal); font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.15; padding-bottom: 10px; border-bottom: 2px solid var(--amethyst); margin-bottom: 20px; }
.publication-article p, .longform p { font-family: Georgia, 'Times New Roman', serif; font-size: 1.14rem; line-height: 1.8; margin-bottom: 22px; color: #303030; }
.publication-summary { font-size: 1.35rem !important; color: var(--amethyst) !important; font-weight: 700; }
.publication-article figure { margin: 36px 0 8px; }
.publication-article figure img { width: 100%; border: 1px solid var(--marble-gray); border-radius: 6px; }
.reflection-box { background: #f1f1f1; border: 1px solid #999; padding: 34px 38px; margin: 50px 0; }
.reflection-box h2 { border: 0; padding: 0; }
.reflection-box ul { padding-left: 24px; }
.reflection-box li { font-size: 1.08rem; margin: 12px 0; line-height: 1.55; }
.publication-article blockquote { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.35rem, 2.8vw, 1.8rem); font-weight: 700; font-style: italic; text-align: center; border-top: 2px solid var(--amethyst); border-bottom: 2px solid var(--amethyst); padding: 28px 18px; margin: 34px 0; color: var(--gunmetal); }
.pare-reflection { margin-top: 55px; }
.pare-reflection p { font-size: 1.35rem; font-weight: 700; }
.pull-line { font-size: 1.4rem !important; font-weight: 700; color: var(--gunmetal) !important; }
.signature-statement { border-left: 5px solid var(--amethyst); padding: 12px 0 12px 28px; margin: 34px 0; }
.signature-statement p { margin-bottom: 6px; font-weight: 700; }
.closing-line { font-size: 1.5rem !important; font-weight: 800; }
.founder-signoff { font-family: Georgia, 'Times New Roman', serif; font-size: 1.12rem; margin-top: 34px; }
.piece-nav { border-top: 1px solid var(--marble-gray); margin-top: 54px; padding-top: 26px; display: flex; justify-content: flex-end; }
.piece-nav a { color: var(--amethyst); font-weight: 800; text-decoration: none; }
.piece-nav a:hover, .piece-nav a:focus { text-decoration: underline; }
@media (max-width: 920px) {
  .home-page .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .home-page .hero-grid > div { max-width: 100%; }
  .foundation-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero, .page-hero, .publication-hero { padding-left: 18px; padding-right: 18px; }
  .home-page .hero h1, .page-hero h1, .publication-hero h1 { overflow-wrap: anywhere; word-break: normal; }
  .publication-article, .longform { padding: 42px 19px 60px; }
  .reflection-box { padding: 26px 22px; }
  .publication-article p, .longform p { font-size: 1.04rem; line-height: 1.72; }
}


/* v2.1 Executive Polish - approved final crown adjustments */

/* Home: approved restrained single-line headline treatments */
.home-page .hero h1 {
    font-size: clamp(1.45rem, 3.1vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -1.15px;
    white-space: nowrap;
    max-width: none;
}
.home-page #not-problem-title {
    font-size: clamp(1.45rem, 3vw, 2.45rem);
    line-height: 1.15;
    letter-spacing: -0.9px;
    white-space: nowrap;
    max-width: none;
}

/* About and Services: consistent content boundary and mobile breathing room */
.about-page .page-hero,
.services-page .page-hero {
    padding-left: 28px;
    padding-right: 28px;
}
.about-page .breadcrumb,
.services-page .breadcrumb,
.about-page .page-hero-grid,
.services-page .page-hero-grid {
    width: 100%;
}

/* About narrative closes with the founder */
.about-library-links { padding-top: 56px; }

/* Services: desktop comparison remains; mobile prioritizes the item name */
@media (max-width: 700px) {
    .service-table td:first-child .service-objective { display: none; }
    .service-table td:first-child::before { content: "Service"; color: var(--amethyst); }
    .service-name-static {
        color: var(--gunmetal);
        font-size: 1.2rem;
        line-height: 1.25;
        margin-top: 0;
    }
}

/* Executive Library: balanced two-line title and approved visual */
.executive-library-hero .page-hero-grid {
    max-width: var(--max-width);
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
    align-items: center;
}
.executive-library-hero .copy-stack { max-width: 620px; }
.executive-library-hero h1 {
    font-size: clamp(2.15rem, 4.2vw, 3.65rem);
    line-height: 1.03;
    margin-bottom: 34px;
}
.executive-library-visual { min-width: 0; }
.executive-library-image {
    width: 100%;
    max-height: 470px;
    object-fit: cover;
    object-position: center;
}

/* Contact: restrained hero and form-title hierarchy */
.contact-page .page-hero h1,
body:not(.home-page) #contact-title {
    font-size: clamp(2.05rem, 4.15vw, 3.55rem);
    line-height: 1.06;
}
#contact-form-title {
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    line-height: 1.12;
}
.contact-page .page-hero .hero-image,
#contact-title ~ * .hero-image {
    object-position: center;
}

/* Quiet orientation and micro-interaction polish */
.breadcrumb { color: #777f83; font-weight: 600; }
.publication-card,
.knowledge-card,
.btn,
.hero-image,
.section-image {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.publication-card:hover,
.publication-card:focus-within,
.knowledge-card:hover,
.knowledge-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.09);
    border-color: rgba(84,36,94,0.28);
}

/* Complete publication navigation */
.piece-nav {
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.piece-nav-prev,
.piece-nav-next { display: inline-block; }

@media (max-width: 920px) {
    .executive-library-hero .page-hero-grid {
        grid-template-columns: 1fr;
        max-width: 780px;
    }
    .executive-library-hero .copy-stack { max-width: 720px; }
    .executive-library-image { max-height: 390px; }
}

@media (max-width: 720px) {
    .about-page .page-hero,
    .services-page .page-hero { padding-left: 26px; padding-right: 26px; }
    .executive-library-hero h1 {
        font-size: clamp(2rem, 8.7vw, 2.75rem);
        line-height: 1.04;
        margin-bottom: 28px;
    }
    .executive-library-image { max-height: 280px; }
    #contact-form-title { font-size: clamp(1.65rem, 7vw, 2.2rem); }
}

@media (max-width: 560px) {
    .home-page .hero h1 {
        font-size: clamp(1.18rem, 5.7vw, 1.46rem);
        letter-spacing: -0.55px;
    }
    .home-page #not-problem-title {
        font-size: clamp(1.16rem, 5.55vw, 1.42rem);
        letter-spacing: -0.5px;
    }
    .piece-nav { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 390px) {
    .home-page .hero h1,
    .home-page #not-problem-title { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
    .publication-card,
    .knowledge-card,
    .btn,
    .hero-image,
    .section-image { transition: none; }
}

/* v2.2 Identity Lock - typography, logo, founder portrait */

/* Site-wide logo presence: approximately 20% larger than v2.1 */
.nav-logo { width: 216px; }

/* Interior-page typography system. Homepage approved treatments remain untouched. */
body:not(.home-page) .page-hero h1 {
    font-size: clamp(2.05rem, 4vw, 3.25rem);
    line-height: 1.06;
    letter-spacing: -1.25px;
    margin-bottom: 18px;
}

body:not(.home-page) .section-title {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -0.65px;
    margin-bottom: 18px;
}

body:not(.home-page) .final-cta .section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.publication-hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -1.15px;
}

.publication-article h2,
.longform h2 {
    font-size: clamp(1.55rem, 2.5vw, 2.05rem);
    line-height: 1.18;
    padding-bottom: 8px;
    margin-bottom: 18px;
}

/* Slimmer dark and purple bands without changing copy or color treatment. */
.section.band {
    padding-top: 34px;
    padding-bottom: 34px;
}

.section.band .section-title {
    margin-bottom: 12px;
}

.section.band p {
    margin-bottom: 0;
}

/* Founder portrait integration */
.founder-hero .page-hero-grid {
    max-width: 1040px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
    gap: 44px;
    align-items: center;
}

.founder-hero .copy-stack { max-width: 650px; }

.founder-portrait-wrap {
    display: flex;
    justify-content: center;
}

.founder-portrait {
    width: min(100%, 380px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(84, 36, 94, 0.16);
}

@media (max-width: 920px) {
    .nav-logo { width: 198px; }
    .founder-hero .page-hero-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }
    .founder-portrait-wrap { justify-content: flex-start; }
    .founder-portrait { width: min(100%, 340px); }
}

@media (max-width: 720px) {
    .nav-logo { width: 190px; }
    body:not(.home-page) .page-hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.55rem);
        line-height: 1.08;
    }
    body:not(.home-page) .section-title {
        font-size: clamp(1.55rem, 6.5vw, 2rem);
        line-height: 1.15;
    }
    .section.band {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .founder-portrait-wrap { justify-content: center; }
    .founder-portrait { width: min(100%, 300px); }
}

@media (max-width: 420px) {
    .nav-logo { width: 178px; }
}
