/* Consulting page — distinct memo / brief aesthetic */
/* Note: --mono var lives in styles.css (shared) */

/* ============================================
   Hero — typewritten memo
   ============================================ */
.consulting-hero {
    background: #0a0a0a;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #222;
}

/* faint typewritten paper lines */
.consulting-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 31px,
        rgba(255, 255, 255, 0.025) 31px,
        rgba(255, 255, 255, 0.025) 32px
    );
    pointer-events: none;
}

/* corner brackets */
.consulting-hero::after {
    content: '';
    position: absolute;
    top: 6rem;
    bottom: 6rem;
    left: 4rem;
    right: 4rem;
    border: 1px solid rgba(81, 10, 148, 0.18);
    border-radius: 2px;
    pointer-events: none;
    box-shadow: inset 0 0 80px rgba(81, 10, 148, 0.06);
}

.consulting-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 4rem 2rem;
    text-align: center;
    width: 100%;
}

.memo {
    font-family: var(--mono);
    font-size: 0.82rem;
    color: #8c8c95;
    margin-bottom: 2.5rem;
    display: inline-block;
    text-align: left;
    border-left: 2px solid var(--accent);
    padding: 0.6rem 0 0.6rem 1.25rem;
    line-height: 1.85;
    letter-spacing: 0.02em;
}

.memo-row {
    display: flex;
    gap: 0.75rem;
}

.memo-key {
    color: var(--accent);
    font-weight: 700;
    min-width: 3.25rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.memo-val {
    color: #d6d6dc;
}

.consulting-title {
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    color: #ffffff;
    margin: 0 0 1.5rem;
}

.title-dot {
    color: var(--accent);
}

.consulting-subtitle {
    font-size: 1.25rem;
    color: #b8b8c0;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* ============================================
   Shared monospace eyebrow
   ============================================ */
.mono-eyebrow {
    display: block;
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: lowercase;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0.85;
}

/* override any inherited h2 sizes for consistency on this page */
.brief-section h2,
.engagement-section h2,
.speaking-section h2,
.how-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

/* ============================================
   Brief intro
   ============================================ */
.brief-section {
    background: #0f0f0f;
    padding: 5rem 0;
}

.brief-text {
    max-width: 720px;
    margin: 1.5rem auto 0;
    text-align: center;
}

.brief-text p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #d6d6dc;
    margin-bottom: 1.5rem;
}

.brief-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Engagement — numbered offer list
   ============================================ */
.engagement-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(81, 10, 148, 0.10) 0%, transparent 60%),
        #0a0a0a;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 5rem 0;
}

.engagement-intro {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.engagement-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8c0;
    margin: 0;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 820px;
    counter-reset: offer;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-row {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: start;
    transition: background 0.25s ease;
}

.offer-row:hover {
    background: rgba(81, 10, 148, 0.05);
}

.offer-num {
    font-family: var(--mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    text-align: right;
    padding-top: 0.3rem;
    opacity: 0.7;
}

.offer-body {
    text-align: left;
}

.offer-body h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 0.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.offer-body p {
    color: #b8b8c0;
    line-height: 1.65;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   Speaking — two monospace columns
   ============================================ */
.speaking-section {
    background: #0f0f0f;
    padding: 5rem 0;
}

.speaking-intro {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.speaking-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8c0;
    margin: 0;
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

.speaking-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(81, 10, 148, 0.2);
    transform: translateX(-50%);
}

.speaking-col {
    padding: 0 1rem;
}

.speaking-label {
    display: block;
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-align: left;
    padding-left: 0.5rem;
}

.speaking-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.speaking-col li {
    color: #d6d6dc;
    line-height: 1.55;
    font-size: 1rem;
    padding: 0.7rem 0 0.7rem 1.5rem;
    position: relative;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.speaking-col li:last-child {
    border-bottom: none;
}

.speaking-col li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 0.7rem;
    color: var(--accent);
    font-family: var(--mono);
    opacity: 0.7;
}

/* ============================================
   How it works — connected sequence
   ============================================ */
.how-section {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(81, 10, 148, 0.10) 0%, transparent 60%),
        #0a0a0a;
    border-top: 1px solid #222;
    padding: 5rem 0;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.how-step {
    text-align: left;
    padding: 1.5rem 1.25rem;
    background: rgba(20, 20, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.how-step:hover {
    transform: translateY(-3px);
    border-color: rgba(81, 10, 148, 0.5);
    border-top-color: var(--accent);
}

.how-marker {
    display: block;
    font-family: var(--mono);
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 0.65rem;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.how-step p {
    color: #c0c0c8;
    line-height: 1.6;
    font-size: 0.98rem;
    margin: 0;
}

.how-arrow {
    font-family: var(--mono);
    color: var(--accent);
    font-size: 1.5rem;
    opacity: 0.5;
    text-align: center;
}

/* Console CTA: see .console-cta-* in styles.css (shared across all pages) */

/* ============================================
   Mobile
   ============================================ */
@media (max-width: 900px) {
    .consulting-hero::after {
        left: 1.5rem;
        right: 1.5rem;
        top: 4rem;
        bottom: 4rem;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .how-arrow {
        transform: rotate(90deg);
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .consulting-hero {
        min-height: 60vh;
    }

    .consulting-hero-inner {
        padding: 3rem 1.5rem;
    }

    .memo {
        font-size: 0.75rem;
        padding-left: 1rem;
    }

    .memo-key {
        min-width: 2.75rem;
    }

    .brief-section h2,
    .engagement-section h2,
    .speaking-section h2,
    .how-section h2 {
        font-size: 1.75rem;
    }

    .brief-text p,
    .engagement-intro p,
    .speaking-intro p {
        font-size: 1.05rem;
    }

    .offer-row {
        grid-template-columns: 3rem 1fr;
        gap: 1rem;
        padding: 1.5rem 0.5rem;
    }

    .offer-num {
        font-size: 1.25rem;
    }

    .speaking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .speaking-grid::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .consulting-hero::after {
        display: none;
    }
}
