/* ═══════════════════════════════════════════════════════════════
    DECISION HABITS PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --dh-ink:        #1a1714;
    --dh-ivory:      #f5f0e8;
    --dh-ivory-soft: #ede7d9;
    --dh-cream:      #faf7f2;
    --dh-gold:       #b8975a;
    --dh-gold-light: #d4b47a;
    --dh-muted:      #7a6f62;
    --dh-rule:       rgba(184, 151, 90, 0.22);
    --dh-rule-dark:  rgba(255, 255, 255, 0.08);
    --dh-ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── COACHING PAGE: FORCE BLACK HEADER ── */
.page-template-page-decision-habits .site-header {
    background-color: #000 !important;
}

/* ── OUR SERVICES SECTION ── */
.target-audience-section {
    padding: 180px 0 0;
    background: #EDF4F6;
}

/* Centered top header */
.tas-top-header {
    text-align: center;
    padding-bottom: 70px;
}

.tas-main-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 3.25rem);
    color: var(--text);
    margin: 0 0 18px;
    font-weight: 400;
    line-height: 1.1;
}

.tas-chevron {
    display: block;
    font-size: 1.4rem;
    opacity: 0.45;
    line-height: 1;
}

/* Two-column intro grid */
.tas-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 80px;
}

.tas-eyebrow {
    display: block;
    font-family: var(--inter);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.tas-heading {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.5vw, 3.6rem);
    line-height: 1.2;
    color: var(--text);
    margin: 0;
    font-weight: 600;
}

.tas-intro-right p {
    font-family: var(--inter);
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--text);
    opacity: 0.75;
    margin: 0 0 18px;
}

/* ══════════════════════════════════════════════
   SHARED SECTION BASE
   ══════════════════════════════════════════════ */
.dh-section {
    padding: 110px 0;
    background: var(--dh-cream);
    position: relative;
}

.dh-section--light {
    background: var(--dh-ink);
    background-image:
        radial-gradient(ellipse 60% 50% at 20% 100%, rgba(184,151,90,0.05) 0%, transparent 60%);
}

.dh-section--border {
    background: var(--dh-ivory);
    border-top: 1px solid var(--dh-rule);
    border-bottom: 1px solid var(--dh-rule);
}

.dh-section .para-container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ══════════════════════════════════════════════
   TYPOGRAPHY SYSTEM
   ══════════════════════════════════════════════ */
.dh-eyebrow {
    display: inline-block;
    font-family: var(--inter);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--dh-gold);
    margin-bottom: 18px;
    position: relative;
    padding-left: 28px;
}

.dh-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 1px;
    background: var(--dh-gold);
}

/* Eyebrow on dark sections */
.dh-section--light .dh-eyebrow {
    color: var(--dh-gold-light);
}
.dh-section--light .dh-eyebrow::before {
    background: var(--dh-gold-light);
}

.dh-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--dh-ink);
    margin: 0;
}

.dh-section--light .dh-heading {
    color: var(--dh-ivory);
}

/* ══════════════════════════════════════════════
   TWO-COLUMN TEXT SECTIONS (Who It's For / What You Bring)
   ══════════════════════════════════════════════ */
.dh-two-col {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

/* Sticky left column */
.dh-two-col > div:first-child {
    position: sticky;
    top: 60px;
}

.dh-body p {
    font-family: var(--inter);
    font-size: 0.9375rem;
    line-height: 1.9;
    color: var(--dh-muted);
    margin: 0 0 22px;
}

/* ── LISTS ── */
.dh-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    border-top: 1px solid var(--dh-rule);
}

.dh-list li {
    font-family: var(--inter);
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--dh-ink);
    padding: 18px 0 18px 22px;
    border-bottom: 1px solid var(--dh-rule);
    position: relative;
    transition: color 0.2s var(--dh-ease), padding-left 0.2s var(--dh-ease);
}

.dh-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 28px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dh-gold);
    transition: transform 0.2s var(--dh-ease);
}

.dh-list li:hover {
    color: var(--dh-gold);
    padding-left: 28px;
}

.dh-list li:hover::before {
    transform: scale(1.4);
}

/* ══════════════════════════════════════════════
   BENEFITS SECTION (dark background)
   ══════════════════════════════════════════════ */
.dh-section-header {
    margin-bottom: 56px;
}

.dh-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--dh-rule-dark);
    border: 1px solid var(--dh-rule-dark);
}

.dh-card {
    background: rgba(26, 23, 20, 0.92);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.35s var(--dh-ease);
}

.dh-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184,151,90,0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s var(--dh-ease);
}

.dh-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dh-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--dh-ease);
}

.dh-card:hover {
    background: rgba(30, 27, 23, 0.98);
}

.dh-card:hover::before {
    opacity: 1;
}

.dh-card:hover::after {
    transform: scaleX(1);
}

/* Card number — decorative */
.dh-card:nth-child(1)::before { content: ''; }
.dh-benefits-grid .dh-card:nth-child(1) { counter-reset: none; }

.dh-card-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 0 16px;
    color: var(--dh-ivory);
    letter-spacing: 0.01em;
    transition: color 0.2s var(--dh-ease);
}

.dh-card:hover .dh-card-title {
    color: var(--dh-gold-light);
}

.dh-card p {
    font-family: var(--inter);
    font-size: 0.875rem;
    line-height: 1.85;
    color: rgba(245, 240, 232, 0.5);
    margin: 0;
    transition: color 0.2s var(--dh-ease);
}

.dh-card:hover p {
    color: rgba(245, 240, 232, 0.7);
}

/* Gold pip above title */
.dh-card-title::before {
    content: '—';
    display: block;
    font-family: var(--inter);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--dh-gold);
    margin-bottom: 14px;
}

/* ══════════════════════════════════════════════
   STEPS SECTION
   ══════════════════════════════════════════════ */
.dh-steps {
    list-style: none;
    padding: 10px 32px;
    margin: 12px 0 0;
    counter-reset: dh-step;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--dh-rule);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
}

.dh-steps li {
    display: block;
    padding: 44px 0 44px 90px;
    border-bottom: 1px solid var(--dh-rule);
    counter-increment: dh-step;
    position: relative;
    transition: background 0.25s var(--dh-ease);
}

.dh-steps li:first-child {
    border-top: none;
}

/* Hover accent bar */
.dh-steps li::before {
    content: counter(dh-step, decimal-leading-zero);
    position: absolute;
    left: 32px;
    top: 36px;
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--dh-gold);
    opacity: 0.5;
    line-height: 1;
    padding-top: 4px;
    transition: opacity 0.25s var(--dh-ease), transform 0.25s var(--dh-ease);
}

.dh-steps li:hover::before {
    opacity: 1;
    transform: scale(1.08);
}

.dh-steps li > div,
.dh-steps li > * + * {
    /* content column */
}

.dh-steps h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 12px;
    color: var(--dh-ink);
    letter-spacing: 0.01em;
    transition: color 0.2s var(--dh-ease);
}

.dh-steps li:hover h3 {
    color: var(--dh-gold);
}

.dh-steps p {
    font-family: var(--inter);
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--dh-ink);
    max-width: 38rem;
    margin: 4px 0 0;
}

/* ══════════════════════════════════════════════
   WHAT YOU BRING — list colors on cream bg
   ══════════════════════════════════════════════ */
.dh-section:not(.dh-section--light):not(.dh-section--border) .dh-list li {
    color: var(--dh-ink);
}

/* ══════════════════════════════════════════════
   SECTION DIVIDER ORNAMENT
   ══════════════════════════════════════════════ */
.dh-section--border .para-container::before {
    content: '✦';
    display: block;
    font-size: 0.7rem;
    color: var(--dh-gold);
    letter-spacing: 10px;
    margin-bottom: 52px;
    opacity: 0.7;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 960px) {
    .tas-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dh-two-col {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .dh-two-col > div:first-child {
        position: static;
    }

    .dh-benefits-grid {
        grid-template-columns: 1fr;
    }

    .dh-section {
        padding: 80px 0;
    }

    .dh-section .para-container {
        padding: 0 24px;
    }
}

@media (max-width: 600px) {
    .tas-main-title {
        font-size: 2.4rem;
    }

    .dh-steps li {
        padding: 32px 0 32px 70px;
    }

    .dh-card {
        padding: 32px 28px;
    }

    .dh-section {
        padding: 60px 0;
    }
}