/*
Theme Name: Chester Hood — Personal Brand
Theme URI: https://chesterhood.com
Author: Chester Hood
Author URI: https://chesterhood.com
Description: Personal brand hub theme for Chester Hood. Authority-driven editorial design serving as the Tier 1 credentialing layer for the Chester Hood brand ecosystem (Pathway Advisors, Authority Speaks, ICU Designs, Authority Signatures, Charis Apparel). Built per the Brand Ecosystem Strategic Architecture Report.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chesterhood
Tags: personal-brand, one-column, custom-menu, editor-style, featured-images, threaded-comments
*/

/* =========================================================================
   DESIGN SYSTEM — Editorial Authority
   Inspired by the navy + gold Pathway Advisors mark for ecosystem cohesion.
   ========================================================================= */

:root {
    /* Color — primary palette */
    --ch-ink: #0b1220;            /* near-black navy, primary text */
    --ch-navy: #0f1d3a;           /* deep navy, brand anchor */
    --ch-navy-soft: #1a2a4d;      /* navy for cards/sections */
    --ch-gold: #c9a14a;           /* warm authority gold */
    --ch-gold-bright: #e0b65a;    /* hover/highlight gold */
    --ch-gold-soft: #f5ecd6;      /* gold tint for backgrounds */
    --ch-cream: #faf6ee;          /* warm off-white page bg */
    --ch-paper: #ffffff;          /* pure white card bg */
    --ch-line: #d8d2c2;           /* warm divider */
    --ch-mute: #6b6b6b;           /* secondary text */
    --ch-faint: #a89e88;          /* tertiary/labels */

    /* Typography */
    --ch-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
    --ch-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --ch-label: "Inter Tight", -apple-system, sans-serif;

    /* Scale */
    --ch-step--2: clamp(0.78rem, 0.74rem + 0.18vw, 0.86rem);
    --ch-step--1: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
    --ch-step-0:  clamp(1.05rem, 1rem + 0.25vw, 1.18rem);
    --ch-step-1:  clamp(1.22rem, 1.15rem + 0.4vw, 1.45rem);
    --ch-step-2:  clamp(1.5rem, 1.35rem + 0.7vw, 1.95rem);
    --ch-step-3:  clamp(1.95rem, 1.7rem + 1.2vw, 2.7rem);
    --ch-step-4:  clamp(2.6rem, 2.1rem + 2.4vw, 4rem);
    --ch-step-5:  clamp(3.4rem, 2.6rem + 3.6vw, 6rem);

    /* Layout */
    --ch-radius: 4px;
    --ch-radius-lg: 12px;
    --ch-shadow-sm: 0 1px 2px rgba(11,18,32,0.06), 0 2px 8px rgba(11,18,32,0.04);
    --ch-shadow-md: 0 8px 30px rgba(11,18,32,0.12);
    --ch-shadow-lg: 0 20px 60px rgba(11,18,32,0.18);

    --ch-container: 1240px;
    --ch-container-narrow: 880px;

    /* Motion */
    --ch-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ch-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--ch-body);
    font-size: var(--ch-step-0);
    line-height: 1.65;
    color: var(--ch-ink);
    background: var(--ch-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--ch-navy);
    text-decoration: none;
    transition: color 0.2s var(--ch-ease);
}
a:hover { color: var(--ch-gold-bright); }

h1, h2, h3, h4, h5 {
    font-family: var(--ch-display);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ch-ink);
    margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

::selection { background: var(--ch-gold); color: var(--ch-ink); }

/* =========================================================================
   UTILITY
   ========================================================================= */

.ch-container { max-width: var(--ch-container); margin: 0 auto; padding: 0 28px; }
.ch-container--narrow { max-width: var(--ch-container-narrow); margin: 0 auto; padding: 0 28px; }

.ch-eyebrow {
    display: inline-block;
    font-family: var(--ch-label);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ch-gold);
    margin-bottom: 1.2rem;
}

.ch-eyebrow--dark { color: var(--ch-faint); }

.ch-rule {
    width: 64px;
    height: 1px;
    background: var(--ch-gold);
    border: 0;
    margin: 0 0 1.5rem;
}
.ch-rule--center { margin: 0 auto 1.5rem; }

.ch-section { padding: clamp(64px, 8vw, 120px) 0; }

.screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */

.ch-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    font-family: var(--ch-label);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--ch-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ch-ease);
    text-decoration: none;
    line-height: 1;
}

.ch-btn--primary {
    background: var(--ch-ink);
    color: var(--ch-cream);
    border-color: var(--ch-ink);
}
.ch-btn--primary:hover {
    background: var(--ch-gold);
    color: var(--ch-ink);
    border-color: var(--ch-gold);
    transform: translateY(-2px);
}

.ch-btn--gold {
    background: var(--ch-gold);
    color: var(--ch-ink);
    border-color: var(--ch-gold);
}
.ch-btn--gold:hover {
    background: var(--ch-gold-bright);
    border-color: var(--ch-gold-bright);
    color: var(--ch-ink);
    transform: translateY(-2px);
}

.ch-btn--ghost {
    background: transparent;
    color: var(--ch-ink);
    border-color: var(--ch-ink);
}
.ch-btn--ghost:hover {
    background: var(--ch-ink);
    color: var(--ch-cream);
}

.ch-btn--ghost-light {
    background: transparent;
    color: var(--ch-cream);
    border-color: rgba(250,246,238,0.4);
}
.ch-btn--ghost-light:hover {
    background: var(--ch-cream);
    color: var(--ch-ink);
    border-color: var(--ch-cream);
}

.ch-btn .arrow { font-size: 1.1em; line-height: 0; transition: transform 0.25s var(--ch-ease); }
.ch-btn:hover .arrow { transform: translateX(4px); }

/* =========================================================================
   SITE HEADER
   ========================================================================= */

.ch-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 246, 238, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--ch-line);
}

.ch-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 32px;
}

.ch-brand {
    font-family: var(--ch-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ch-ink);
    text-decoration: none;
    line-height: 1;
}
.ch-brand .dot { color: var(--ch-gold); }
.ch-brand__sub {
    display: block;
    font-family: var(--ch-label);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ch-mute);
    margin-top: 4px;
}

.ch-nav { display: flex; align-items: center; gap: 4px; }
.ch-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.ch-nav a {
    display: inline-block;
    padding: 10px 16px;
    font-family: var(--ch-label);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ch-ink);
    border-radius: var(--ch-radius);
    text-decoration: none;
    transition: all 0.2s var(--ch-ease);
}
.ch-nav a:hover,
.ch-nav .current-menu-item > a {
    color: var(--ch-gold);
}

.ch-nav__cta {
    margin-left: 12px;
    padding: 10px 18px !important;
    background: var(--ch-ink);
    color: var(--ch-cream) !important;
    border-radius: var(--ch-radius);
}
.ch-nav__cta:hover {
    background: var(--ch-gold) !important;
    color: var(--ch-ink) !important;
}

.ch-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--ch-ink);
    border-radius: var(--ch-radius);
    padding: 8px 14px;
    font-family: var(--ch-label);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 880px) {
    .ch-nav { display: none; }
    .ch-nav.is-open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--ch-cream);
        border-bottom: 1px solid var(--ch-line);
        padding: 16px 28px 24px;
    }
    .ch-nav.is-open ul { flex-direction: column; width: 100%; gap: 0; }
    .ch-nav.is-open a { padding: 14px 0; border-bottom: 1px solid var(--ch-line); }
    .ch-nav__cta { margin: 16px 0 0 !important; text-align: center; }
    .ch-mobile-toggle { display: inline-flex; }
}

/* =========================================================================
   HERO
   ========================================================================= */

.ch-hero {
    position: relative;
    background: var(--ch-navy);
    color: var(--ch-cream);
    overflow: hidden;
}

.ch-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(80% 60% at 80% 0%, rgba(201,161,74,0.18), transparent 60%),
        radial-gradient(50% 50% at 0% 100%, rgba(201,161,74,0.10), transparent 70%);
    pointer-events: none;
}

.ch-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    padding: clamp(72px, 10vw, 140px) 0 clamp(64px, 8vw, 120px);
    position: relative;
}

.ch-hero__copy h1 {
    color: var(--ch-cream);
    font-size: var(--ch-step-5);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    font-weight: 400;
}
.ch-hero__copy h1 em {
    font-style: italic;
    color: var(--ch-gold);
    font-weight: 400;
}

.ch-hero__lede {
    font-size: var(--ch-step-1);
    line-height: 1.5;
    color: rgba(250,246,238,0.85);
    max-width: 36ch;
    margin: 0 0 36px;
    font-weight: 300;
}

.ch-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.ch-hero__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(250,246,238,0.18);
    font-family: var(--ch-label);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(250,246,238,0.7);
}
.ch-hero__credentials span::before {
    content: "✦";
    color: var(--ch-gold);
    margin-right: 8px;
    font-size: 0.7em;
}

.ch-hero__visual {
    position: relative;
}
.ch-hero__visual::before {
    content: "";
    position: absolute;
    top: -20px; right: -20px; bottom: 40px; left: 40px;
    border: 1px solid rgba(201,161,74,0.5);
    border-radius: var(--ch-radius);
    z-index: 0;
}
.ch-hero__visual img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--ch-radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    z-index: 1;
}

.ch-hero__sig {
    position: absolute;
    bottom: -24px; right: -16px;
    background: var(--ch-gold);
    color: var(--ch-ink);
    padding: 18px 24px;
    border-radius: var(--ch-radius);
    font-family: var(--ch-display);
    font-size: 1.05rem;
    font-style: italic;
    z-index: 2;
    box-shadow: var(--ch-shadow-md);
}

@media (max-width: 880px) {
    .ch-hero__grid { grid-template-columns: 1fr; gap: 56px; }
    .ch-hero__visual { max-width: 380px; margin: 0 auto; }
    .ch-hero__visual::before { display: none; }
}

/* =========================================================================
   ECOSYSTEM MAP — the centerpiece
   ========================================================================= */

.ch-eco {
    background: var(--ch-cream);
    position: relative;
}

.ch-eco__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
}

.ch-eco__head h2 {
    font-size: var(--ch-step-4);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.ch-eco__head h2 em { color: var(--ch-gold); font-style: italic; }

.ch-eco__intro {
    font-size: var(--ch-step-0);
    color: var(--ch-mute);
    max-width: 44ch;
    margin: 0;
}

@media (max-width: 720px) {
    .ch-eco__head { grid-template-columns: 1fr; gap: 24px; }
}

.ch-eco__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.ch-eco-card {
    grid-column: span 4;
    background: var(--ch-paper);
    border: 1px solid var(--ch-line);
    border-radius: var(--ch-radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ch-ease);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.ch-eco-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--ch-radius-lg);
    box-shadow: 0 0 0 0 rgba(201,161,74,0.4);
    pointer-events: none;
    transition: box-shadow 0.3s var(--ch-ease);
}

.ch-eco-card:hover {
    transform: translateY(-4px);
    border-color: var(--ch-gold);
}
.ch-eco-card:hover::after {
    box-shadow: 0 0 0 3px rgba(201,161,74,0.15);
}

.ch-eco-card__tier {
    display: inline-block;
    font-family: var(--ch-label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ch-gold);
    margin-bottom: 18px;
}

.ch-eco-card h3 {
    font-size: var(--ch-step-2);
    margin: 0 0 12px;
    font-weight: 500;
}

.ch-eco-card p {
    color: var(--ch-mute);
    margin: 0 0 24px;
    flex-grow: 1;
    font-size: var(--ch-step--1);
}

.ch-eco-card__link {
    font-family: var(--ch-label);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ch-ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ch-eco-card__link::after {
    content: "→";
    transition: transform 0.25s var(--ch-ease);
}
.ch-eco-card:hover .ch-eco-card__link {
    color: var(--ch-gold-bright);
}
.ch-eco-card:hover .ch-eco-card__link::after {
    transform: translateX(4px);
}

/* Featured (Pathway Advisors) */
.ch-eco-card--featured {
    grid-column: span 6;
    background: var(--ch-navy);
    color: var(--ch-cream);
    border-color: var(--ch-navy);
    background-image:
        radial-gradient(60% 80% at 100% 0%, rgba(201,161,74,0.18), transparent 60%);
}
.ch-eco-card--featured h3 { color: var(--ch-cream); }
.ch-eco-card--featured p { color: rgba(250,246,238,0.78); }
.ch-eco-card--featured .ch-eco-card__link { color: var(--ch-gold); }

.ch-eco-card--speaks {
    grid-column: span 6;
    background: var(--ch-gold-soft);
    border-color: var(--ch-gold);
}

@media (max-width: 980px) {
    .ch-eco-card,
    .ch-eco-card--featured,
    .ch-eco-card--speaks { grid-column: span 6; }
}
@media (max-width: 600px) {
    .ch-eco-card,
    .ch-eco-card--featured,
    .ch-eco-card--speaks { grid-column: span 12; }
}

/* =========================================================================
   AUTHORITY STATEMENT — split panel
   ========================================================================= */

.ch-authority {
    background: var(--ch-paper);
    border-top: 1px solid var(--ch-line);
    border-bottom: 1px solid var(--ch-line);
}

.ch-authority__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

.ch-authority__visual {
    position: relative;
}
.ch-authority__visual img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--ch-radius);
}
.ch-authority__visual::before {
    content: "";
    position: absolute;
    top: -16px; left: -16px;
    width: 72px; height: 72px;
    border-top: 2px solid var(--ch-gold);
    border-left: 2px solid var(--ch-gold);
}
.ch-authority__visual::after {
    content: "";
    position: absolute;
    bottom: -16px; right: -16px;
    width: 72px; height: 72px;
    border-bottom: 2px solid var(--ch-gold);
    border-right: 2px solid var(--ch-gold);
}

.ch-authority__copy h2 {
    font-size: var(--ch-step-4);
    margin: 0 0 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.ch-authority__copy h2 em { font-style: italic; color: var(--ch-gold); }

.ch-authority__copy p {
    font-size: var(--ch-step-0);
    line-height: 1.7;
    color: var(--ch-ink);
    max-width: 52ch;
}

.ch-authority__creds {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}
.ch-authority__creds li {
    font-family: var(--ch-label);
    font-size: 0.92rem;
    color: var(--ch-ink);
    padding-left: 22px;
    position: relative;
    line-height: 1.4;
}
.ch-authority__creds li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.55em;
    width: 12px; height: 1px;
    background: var(--ch-gold);
}

@media (max-width: 880px) {
    .ch-authority__grid { grid-template-columns: 1fr; }
    .ch-authority__visual { max-width: 420px; margin: 0 auto; }
    .ch-authority__creds { grid-template-columns: 1fr; }
}

/* =========================================================================
   QUOTE / PHILOSOPHY
   ========================================================================= */

.ch-quote {
    background: var(--ch-cream);
    text-align: center;
}
.ch-quote blockquote {
    font-family: var(--ch-display);
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
    font-style: italic;
    font-weight: 400;
    margin: 0 auto;
    max-width: 26ch;
    color: var(--ch-ink);
    position: relative;
}
.ch-quote blockquote::before {
    content: "\201C";
    display: block;
    font-size: 4rem;
    color: var(--ch-gold);
    line-height: 0.4;
    margin-bottom: 12px;
    font-style: normal;
}
.ch-quote cite {
    display: block;
    font-family: var(--ch-label);
    font-size: 0.78rem;
    font-style: normal;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ch-mute);
    margin-top: 32px;
}
.ch-quote cite::before { content: "— "; color: var(--ch-gold); }

/* =========================================================================
   IMPACT NUMBERS
   ========================================================================= */

.ch-impact {
    background: var(--ch-ink);
    color: var(--ch-cream);
}
.ch-impact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(250,246,238,0.12);
    border: 1px solid rgba(250,246,238,0.12);
}
.ch-impact__cell {
    background: var(--ch-ink);
    padding: 48px 32px;
    text-align: center;
}
.ch-impact__num {
    font-family: var(--ch-display);
    font-size: clamp(2.4rem, 2rem + 1.6vw, 3.6rem);
    font-weight: 400;
    line-height: 1;
    color: var(--ch-gold);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.ch-impact__label {
    font-family: var(--ch-label);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250,246,238,0.7);
    margin: 0;
}
@media (max-width: 720px) {
    .ch-impact__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================================
   ENGAGEMENTS / SPEAKING TEASE
   ========================================================================= */

.ch-engagements__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 56px;
}
.ch-engagements__head h2 {
    font-size: var(--ch-step-3);
    margin: 0;
    max-width: 18ch;
    font-weight: 400;
}

.ch-engagements__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ch-line);
}
.ch-engagement {
    padding: 32px 32px 32px 0;
    border-bottom: 1px solid var(--ch-line);
    border-right: 1px solid var(--ch-line);
}
.ch-engagement:nth-child(3n) { border-right: 0; padding-right: 0; }
.ch-engagement__type {
    font-family: var(--ch-label);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ch-gold);
    margin-bottom: 12px;
}
.ch-engagement h3 {
    font-size: var(--ch-step-1);
    margin: 0 0 8px;
    font-weight: 500;
}
.ch-engagement p { color: var(--ch-mute); margin: 0; font-size: var(--ch-step--1); }

@media (max-width: 880px) {
    .ch-engagements__list { grid-template-columns: 1fr; }
    .ch-engagement, .ch-engagement:nth-child(3n) {
        border-right: 0;
        padding: 28px 0;
    }
}

/* =========================================================================
   NEWSLETTER / CTA STRIP
   ========================================================================= */

.ch-cta-strip {
    background: var(--ch-gold);
    color: var(--ch-ink);
}
.ch-cta-strip__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.ch-cta-strip h2 {
    font-size: var(--ch-step-3);
    margin: 0 0 12px;
    font-weight: 400;
}
.ch-cta-strip p { margin: 0; font-size: var(--ch-step-0); max-width: 48ch; }
.ch-cta-strip__action { text-align: right; }

@media (max-width: 880px) {
    .ch-cta-strip__inner { grid-template-columns: 1fr; gap: 28px; }
    .ch-cta-strip__action { text-align: left; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.ch-footer {
    background: var(--ch-ink);
    color: rgba(250,246,238,0.7);
    padding: 80px 0 32px;
}
.ch-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}
.ch-footer__brand .ch-brand { color: var(--ch-cream); font-size: 1.6rem; }
.ch-footer__brand .ch-brand__sub { color: rgba(250,246,238,0.55); }
.ch-footer__brand p { margin: 20px 0 0; max-width: 32ch; font-size: var(--ch-step--1); }

.ch-footer h4 {
    font-family: var(--ch-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ch-gold);
    margin: 0 0 20px;
}
.ch-footer ul { list-style: none; padding: 0; margin: 0; }
.ch-footer li { margin-bottom: 10px; }
.ch-footer li a {
    color: rgba(250,246,238,0.7);
    font-size: 0.92rem;
    transition: color 0.2s var(--ch-ease);
}
.ch-footer li a:hover { color: var(--ch-gold-bright); }

.ch-footer__contact { font-size: 0.92rem; line-height: 1.8; }
.ch-footer__contact a { color: rgba(250,246,238,0.85); }
.ch-footer__contact a:hover { color: var(--ch-gold-bright); }

.ch-footer__base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(250,246,238,0.12);
    font-size: 0.82rem;
    color: rgba(250,246,238,0.5);
}

@media (max-width: 880px) {
    .ch-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
    .ch-footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   PAGE TEMPLATES — interior pages
   ========================================================================= */

.ch-page-hero {
    background: var(--ch-navy);
    color: var(--ch-cream);
    padding: clamp(80px, 12vw, 140px) 0 clamp(56px, 8vw, 96px);
    position: relative;
    overflow: hidden;
}
.ch-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 50% at 50% 0%, rgba(201,161,74,0.15), transparent 70%);
    pointer-events: none;
}
.ch-page-hero__inner { position: relative; z-index: 1; max-width: 64ch; }
.ch-page-hero h1 {
    color: var(--ch-cream);
    font-size: var(--ch-step-4);
    margin: 0 0 20px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
.ch-page-hero h1 em { color: var(--ch-gold); font-style: italic; }
.ch-page-hero p { font-size: var(--ch-step-1); color: rgba(250,246,238,0.85); max-width: 56ch; margin: 0; font-weight: 300; }

.ch-page-content { padding: clamp(64px, 8vw, 120px) 0; }
.ch-page-content h2 { font-size: var(--ch-step-3); margin: 56px 0 20px; font-weight: 500; }
.ch-page-content h2:first-child { margin-top: 0; }
.ch-page-content h3 { font-size: var(--ch-step-2); margin: 36px 0 14px; font-weight: 500; }
.ch-page-content p { font-size: var(--ch-step-0); line-height: 1.75; max-width: 64ch; }
.ch-page-content ul, .ch-page-content ol { padding-left: 24px; max-width: 64ch; }
.ch-page-content li { margin-bottom: 8px; line-height: 1.7; }

/* About page specifics */
.ch-bio-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
    margin-bottom: 72px;
}
.ch-bio-grid img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--ch-radius);
    position: sticky;
    top: 100px;
}
@media (max-width: 880px) {
    .ch-bio-grid { grid-template-columns: 1fr; }
    .ch-bio-grid img { position: static; max-width: 360px; }
}

.ch-cred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ch-line);
    margin: 56px 0;
}
.ch-cred-grid__item {
    padding: 28px 24px 28px 0;
    border-bottom: 1px solid var(--ch-line);
    border-right: 1px solid var(--ch-line);
}
.ch-cred-grid__item:nth-child(3n) { border-right: 0; padding-right: 0; }
.ch-cred-grid__icon {
    font-size: 1.4rem;
    color: var(--ch-gold);
    margin-bottom: 12px;
}
.ch-cred-grid__title { font-family: var(--ch-display); font-size: 1.1rem; font-weight: 500; margin: 0 0 6px; }
.ch-cred-grid__meta { font-family: var(--ch-label); font-size: 0.82rem; color: var(--ch-mute); margin: 0; }

@media (max-width: 720px) {
    .ch-cred-grid { grid-template-columns: 1fr; }
    .ch-cred-grid__item, .ch-cred-grid__item:nth-child(3n) {
        border-right: 0;
        padding: 24px 0;
    }
}

/* Timeline / experience list */
.ch-timeline { border-top: 1px solid var(--ch-line); margin-top: 32px; }
.ch-timeline__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--ch-line);
}
.ch-timeline__years {
    font-family: var(--ch-label);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ch-gold);
    letter-spacing: 0.06em;
}
.ch-timeline__role { font-family: var(--ch-display); font-size: var(--ch-step-1); margin: 0 0 4px; font-weight: 500; }
.ch-timeline__org { font-family: var(--ch-label); font-size: 0.92rem; color: var(--ch-mute); margin: 0 0 12px; }
.ch-timeline__desc { color: var(--ch-ink); font-size: 0.96rem; line-height: 1.6; margin: 0; max-width: 60ch; }

@media (max-width: 720px) {
    .ch-timeline__item { grid-template-columns: 1fr; gap: 8px; }
}

/* Contact form */
.ch-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.ch-contact-info h3 { font-size: var(--ch-step-2); margin: 0 0 16px; }
.ch-contact-info p { color: var(--ch-mute); }
.ch-contact-info dl { margin: 32px 0 0; }
.ch-contact-info dt {
    font-family: var(--ch-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ch-gold);
    margin-bottom: 6px;
}
.ch-contact-info dd { margin: 0 0 24px; font-size: 1.05rem; }
.ch-contact-info dd a { color: var(--ch-ink); border-bottom: 1px solid var(--ch-gold); }

.ch-form { background: var(--ch-paper); border: 1px solid var(--ch-line); border-radius: var(--ch-radius-lg); padding: 36px; }
.ch-form__field { margin-bottom: 20px; }
.ch-form label {
    display: block;
    font-family: var(--ch-label);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ch-ink);
    margin-bottom: 8px;
}
.ch-form input, .ch-form select, .ch-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--ch-body);
    font-size: 1rem;
    color: var(--ch-ink);
    background: var(--ch-cream);
    border: 1px solid var(--ch-line);
    border-radius: var(--ch-radius);
    transition: all 0.2s var(--ch-ease);
}
.ch-form input:focus, .ch-form select:focus, .ch-form textarea:focus {
    outline: none;
    border-color: var(--ch-gold);
    background: var(--ch-paper);
    box-shadow: 0 0 0 3px rgba(201,161,74,0.15);
}
.ch-form textarea { min-height: 140px; resize: vertical; }

@media (max-width: 880px) {
    .ch-contact-grid { grid-template-columns: 1fr; }
}

/* Blog/posts archive */
.ch-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.ch-post-card {
    background: var(--ch-paper);
    border: 1px solid var(--ch-line);
    border-radius: var(--ch-radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--ch-ease);
}
.ch-post-card:hover { transform: translateY(-3px); box-shadow: var(--ch-shadow-md); border-color: var(--ch-gold); }
.ch-post-card__thumb { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--ch-gold-soft); }
.ch-post-card__body { padding: 24px 28px 28px; }
.ch-post-card__meta {
    font-family: var(--ch-label);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ch-gold);
    margin-bottom: 12px;
}
.ch-post-card h3 { font-size: 1.3rem; margin: 0 0 10px; font-weight: 500; }
.ch-post-card h3 a { color: var(--ch-ink); }
.ch-post-card h3 a:hover { color: var(--ch-gold-bright); }
.ch-post-card__excerpt { font-size: 0.94rem; color: var(--ch-mute); margin: 0; }

@media (max-width: 980px) { .ch-posts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ch-posts { grid-template-columns: 1fr; } }

/* Single post */
.ch-single { padding: clamp(64px, 8vw, 120px) 0; }
.ch-single__article { max-width: 720px; margin: 0 auto; }
.ch-single h1 { font-size: var(--ch-step-4); font-weight: 400; line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.02em; }
.ch-single__meta {
    font-family: var(--ch-label);
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ch-gold);
    margin-bottom: 32px;
}
.ch-single__content p { font-size: 1.1rem; line-height: 1.8; }
.ch-single__content h2 { margin-top: 48px; }
.ch-single__content blockquote {
    border-left: 3px solid var(--ch-gold);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    font-family: var(--ch-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--ch-ink);
}

/* Animations */
@keyframes ch-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.ch-anim { opacity: 0; animation: ch-fade-up 0.8s var(--ch-ease-out) forwards; }
.ch-anim--d1 { animation-delay: 0.1s; }
.ch-anim--d2 { animation-delay: 0.2s; }
.ch-anim--d3 { animation-delay: 0.35s; }
.ch-anim--d4 { animation-delay: 0.5s; }

/* WP-required generic classes */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--ch-mute); text-align: center; }
.sticky { display: block; }
.bypostauthor { display: block; }
.gallery-caption { display: block; }
