/*
Theme Name:  COMAKE
Theme URI:   https://communicationmakeover.com
Author:      Tim Ewing
Author URI:  https://communicationmakeover.com
Description: Custom theme for COMAKE / Communication Makeover – boutique global manager readiness consultancy.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: comake
*/

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

:root {
    --black:        #000000;
    --coral:        #D96A63;
    --coral-dark:   #c25850;
    --coral-glow:   rgba(217,106,99,0.32);
    --gray:         #E5E5E5;
    --gray-mid:     #d0d0d0;
    --lavender:     #C9B6F2;
    --lavender-dark:#b5a0ee;
    --white:        #FFFFFF;
    --text:         #1a1a1a;
    --muted:        #666666;
    --ink:          #2a2a2a;

    --heading: 'Playfair Display', Georgia, serif;
    --body:    'Inter', system-ui, sans-serif;

    --nav-h:     70px;
    --r:         12px;
    --r-lg:      20px;
    --shadow:    0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
    --ease:      0.28s ease;
    --max-w:     1160px;
}

body {
    font-family: var(--body);
    color: var(--text);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =============================================
   UTILITIES
============================================= */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; width: 100%; }

.label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.6rem;
}

.h2 {
    font-family: var(--heading);
    font-size: clamp(1.85rem, 4vw, 2.8rem);
    line-height: 1.17;
    color: var(--black);
    margin-bottom: 0.9rem;
}

.sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.74;
    max-width: 580px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.82rem 1.9rem;
    border-radius: var(--r);
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--ease);
}

.btn-primary  { background: var(--coral);  color: var(--white); }
.btn-primary:hover  { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 28px var(--coral-glow); }

.btn-ghost    { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.32); }
.btn-ghost:hover    { border-color: var(--lavender); color: var(--lavender); transform: translateY(-2px); }

.btn-dark     { background: var(--black);  color: var(--white); }
.btn-dark:hover     { background: #1f1f1f;  transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-lavender { background: var(--lavender); color: var(--black); }
.btn-lavender:hover { background: var(--lavender-dark); transform: translateY(-2px); }

.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

/* =============================================
   NAVIGATION
============================================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--nav-h);
    background: var(--black);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.nav .wrap { display: flex; align-items: center; justify-content: space-between; }

.nav-logo-img {
    height: 42px;
    width: auto;
    cursor: pointer;
    opacity: 0.95;
    transition: opacity var(--ease);
    display: block;
}
.nav-logo-img:hover { opacity: 0.75; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }

.nav-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 500;
    padding: 0.46rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--ease);
    letter-spacing: 0.15px;
}
.nav-links a:hover  { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--black);  background: var(--coral); font-weight: 600; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   LAYOUT
============================================= */
main { flex: 1; }

/* =============================================
   HOME - HERO
============================================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: right center;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.45) 45%,
        rgba(0,0,0,0.0)  75%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
}

.hero-pill {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.38rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.6rem;
    animation: up 0.5s ease both;
}

.hero h1 {
    font-family: var(--heading);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    color: var(--white);
    line-height: 1.08;
    max-width: 720px;
    margin-bottom: 0.6rem;
    animation: up 0.5s 0.07s ease both;
}

.hero-sub {
    font-family: var(--heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--lavender);
    font-style: italic;
    margin-bottom: 1.5rem;
    animation: up 0.5s 0.13s ease both;
}

.hero-desc {
    font-size: clamp(0.97rem, 2vw, 1.12rem);
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    line-height: 1.74;
    font-weight: 300;
    margin-bottom: 2.4rem;
    animation: up 0.5s 0.19s ease both;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; animation: up 0.5s 0.25s ease both; }

.hero-for {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.4px;
    animation: up 0.5s 0.32s ease both;
}
.hero-for .sep { color: var(--coral); font-size: 0.6rem; }

@keyframes up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   HOME - DIAGNOSE / DESIGN / DELIVER
============================================= */
.ddd-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.ddd-head { margin-bottom: 3rem; }

.ddd-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ddd-step-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r);
}

.ddd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.ddd-step {
    background: var(--white);
    border: 1.5px solid var(--gray);
    border-radius: var(--r-lg);
    padding: 2.2rem 2rem;
    position: relative;
    transition: all var(--ease);
}
.ddd-step:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }

.ddd-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.ddd-step.diagnose::before { background: var(--coral); }
.ddd-step.design::before   { background: linear-gradient(90deg, var(--coral), var(--lavender)); }
.ddd-step.deliver::before  { background: var(--lavender); }

.ddd-num {
    font-family: var(--heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.6rem;
}
.ddd-step.diagnose .ddd-num { color: var(--coral); }
.ddd-step.design   .ddd-num { color: var(--black); }
.ddd-step.deliver  .ddd-num { color: var(--lavender-dark); }

.ddd-step h3 {
    font-family: var(--heading);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.ddd-step .ddd-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.ddd-step p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ddd-list { list-style: none; display: flex; flex-direction: column; gap: 0.42rem; }
.ddd-list li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.87rem; color: var(--text); }
.ddd-list li::before { content: '→'; color: var(--coral); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }

/* =============================================
   HOME - PAIN / IMPACT STRIP
============================================= */
.impact-strip {
    background: var(--black);
    padding: 5rem 2rem;
}

.impact-strip .h2 { color: var(--white); margin-bottom: 1rem; }
.impact-strip .sub { color: rgba(255,255,255,0.6); margin-bottom: 3rem; }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.impact-item {
    background: transparent;
    border: 1.5px solid var(--coral);
    border-radius: var(--r);
    padding: 1.6rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.impact-item .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
    margin-top: 5px;
}
.impact-item span { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* =============================================
   HOME - FLAGSHIP PROGRAM
============================================= */
.flagship { padding: 5.5rem 2rem; background: var(--gray); }

.flagship-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.flagship-text .h2 { margin-bottom: 1.2rem; }
.flagship-text p { font-size: 0.97rem; color: var(--muted); line-height: 1.74; margin-bottom: 1rem; }

.flagship-card {
    background: var(--black);
    border-radius: var(--r-lg);
    padding: 2.8rem 2.5rem;
}
.flagship-card .fc-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.5rem;
}
.flagship-card h3 {
    font-family: var(--heading);
    font-size: 1.55rem;
    color: var(--white);
    margin-bottom: 1.4rem;
    line-height: 1.25;
}
.flagship-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.flagship-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
}
.flagship-list li .check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--coral);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    color: var(--white);
}

/* =============================================
   HOME - LATEST INSIGHTS
============================================= */
.insights { padding: 5.5rem 2rem; background: var(--white); }

.insights-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
}

.bp-card {
    border: 1.5px solid var(--gray);
    border-radius: var(--r);
    padding: 1.8rem;
    transition: all var(--ease);
    display: flex;
    flex-direction: column;
}
.bp-card:hover { box-shadow: var(--shadow-lg); border-color: var(--lavender); transform: translateY(-3px); }

.bp-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.6rem;
}
.bp-card h3 { font-family: var(--heading); font-size: 1.05rem; color: var(--black); margin-bottom: 0.5rem; line-height: 1.35; }
.bp-date { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.8rem; }
.bp-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1.2rem; }
.bp-link {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--coral);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap var(--ease);
}
.bp-link:hover { gap: 0.6rem; }

/* =============================================
   HOME - CTA BAND
============================================= */
.cta-band {
    background: linear-gradient(135deg, var(--black) 0%, #1a0808 100%);
    padding: 5.5rem 2rem;
    text-align: center;
}
.cta-band h2 { font-family: var(--heading); font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--white); margin-bottom: 0.9rem; }
.cta-band h2 em { font-style: italic; color: var(--lavender); }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 440px; margin: 0 auto 2.4rem; line-height: 1.72; }

/* =============================================
   ABOUT PAGE
============================================= */
.about-page-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.about-page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/about-hero.png');
    background-size: cover;
    background-position: right center;
}
.about-page-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.12) 100%
    );
}
.about-page-hero .wrap { position: relative; z-index: 2; padding: 5rem 2rem; }
.about-page-hero .label { color: var(--coral); }
.about-page-hero .h2  { color: var(--white); max-width: 520px; }

.about-hero {
    background: var(--gray);
    padding: 5.5rem 2rem;
}
.about-hero .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-text .h2 { margin-bottom: 1.5rem; }
.about-text p { font-size: 0.97rem; color: var(--muted); line-height: 1.76; margin-bottom: 1rem; }

.about-card {
    background: var(--black);
    border-radius: var(--r-lg);
    padding: 3rem 2.5rem;
}
.about-card .emoji { font-size: 3.4rem; display: block; margin-bottom: 1.4rem; }
.about-card h3 { font-family: var(--heading); font-size: 1.6rem; color: var(--white); margin-bottom: 0.9rem; line-height: 1.22; }
.about-card h3 span { color: var(--coral); }
.about-card p { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.72; }

/* Credential strip */
.creds { background: var(--black); padding: 2.8rem 2rem; }
.creds .wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.cred-item { text-align: center; padding: 1.5rem 1rem; }
.cred-num { font-family: var(--heading); font-size: 2.6rem; color: var(--coral); font-weight: 700; line-height: 1; }
.cred-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; letter-spacing: 1.2px; text-transform: uppercase; }

/* Mission */
.mission {
    padding: 5.5rem 2rem;
    background: var(--lavender);
}
.mission-inner { max-width: 820px; }
.mission-quote {
    font-family: var(--heading);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    color: var(--black);
    line-height: 1.45;
    font-style: italic;
    border-left: 5px solid var(--coral);
    padding-left: 1.8rem;
    margin: 2rem 0;
}
.mission-attr { font-size: 0.88rem; color: #3a2a2a; font-weight: 600; }

/* Philosophy */
.philosophy { padding: 5.5rem 2rem; background: var(--white); }
.phil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}
.phil-card {
    border: 1.5px solid var(--gray);
    border-radius: var(--r);
    padding: 2rem 1.8rem;
    transition: all var(--ease);
}
.phil-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.phil-card .icon { font-size: 2rem; margin-bottom: 0.85rem; }
.phil-card h4 { font-family: var(--heading); font-size: 1.1rem; margin-bottom: 0.5rem; }
.phil-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* =============================================
   SERVICES PAGE
============================================= */
.svc-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.svc-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/services-hero.png');
    background-size: cover;
    background-position: right center;
}
.svc-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.12) 100%
    );
}
.svc-hero .wrap { position: relative; z-index: 2; padding: 5rem 2rem; }
.svc-hero .label { color: var(--coral); }
.svc-hero .h2  { color: var(--white); }
.svc-hero .sub { color: rgba(255,255,255,0.68); max-width: 520px; }

.programs { padding: 5.5rem 2rem; background: var(--white); }

.programs-intro {
    max-width: 760px;
    margin-bottom: 3.5rem;
}
.programs-intro p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 1rem;
}
.programs-intro .areas-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--black);
    margin-top: 2rem;
    margin-bottom: 0;
}

.areas-format-note {
    font-size: 0.95rem;
    color: var(--text);
    background: var(--gray);
    border-left: 3px solid var(--coral);
    border-radius: 0 var(--r) var(--r) 0;
    padding: 1rem 1.4rem;
    margin-bottom: 2.2rem;
    max-width: 760px;
}

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

.areas-col-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--coral);
    padding-bottom: 0.6rem;
    border-bottom: 1.5px solid var(--coral);
    margin-bottom: 1rem;
}

.areas-col { display: flex; flex-direction: column; gap: 1rem; }

.area-item {
    border-left: 3px solid var(--coral);
    padding: 1.3rem 1.5rem;
    background: var(--white);
    border-radius: 0 var(--r) var(--r) 0;
    border-top: 1px solid var(--gray);
    border-right: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    transition: all var(--ease);
}
.area-item:hover {
    background: var(--gray);
    border-left-color: var(--black);
    transform: translateX(3px);
}
.area-item h3 {
    font-family: var(--heading);
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 0.4rem;
}
.area-item p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 640px) {
    .areas-grid { grid-template-columns: 1fr; }
}

/* Participant journey */
.journey { padding: 5.5rem 2rem; background: var(--gray); }
.journey .h2 { margin-bottom: 0.75rem; }
.journey .sub { margin-bottom: 3rem; }

.journey-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.j-step {
    flex: 1;
    min-width: 160px;
    background: var(--white);
    border-radius: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all var(--ease);
}
.j-step:first-child { border-radius: var(--r) 0 0 var(--r); }
.j-step:last-child  { border-radius: 0 var(--r) var(--r) 0; }

.j-step::after {
    content: '›';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--coral);
    font-weight: 700;
    z-index: 1;
}
.j-step:last-child::after { display: none; }

.j-step:hover { background: var(--black); }
.j-step:hover .j-title, .j-step:hover .j-num { color: var(--white); }
.j-step:hover .j-desc { color: rgba(255,255,255,0.6); }

.j-num {
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color var(--ease);
}
.j-title { font-family: var(--heading); font-size: 1rem; color: var(--black); margin-bottom: 0.4rem; transition: color var(--ease); font-weight: 700; }
.j-desc  { font-size: 0.78rem; color: var(--muted); line-height: 1.55; transition: color var(--ease); }

/* Who we work with */
.who-grid-wrap { padding: 5.5rem 2rem; background: var(--white); }
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.who-card {
    border-radius: var(--r-lg);
    overflow: hidden;
}
.who-card-head {
    padding: 2rem 2.2rem 1.5rem;
    background: var(--black);
}
.who-card-head .emoji { font-size: 2rem; display: block; margin-bottom: 0.7rem; }
.who-card-head h3 { font-family: var(--heading); font-size: 1.3rem; color: var(--white); }
.who-card-body {
    padding: 1.8rem 2.2rem 2.2rem;
    background: var(--gray);
}
.who-card-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.who-list li { display: flex; gap: 0.5rem; font-size: 0.86rem; color: var(--text); }
.who-list li::before { content: '•'; color: var(--coral); font-weight: 700; }

/* Case Studies */
.case-studies { padding: 5.5rem 2rem; background: var(--black); }
.case-studies .label { color: var(--coral); }
.case-studies .h2 { color: var(--white); margin-bottom: 1rem; }
.case-studies .sub { color: rgba(255,255,255,0.6); margin-bottom: 3rem; }

.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}
@media (max-width: 640px) {
    .cs-grid { grid-template-columns: 1fr; }
}

.cs-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: 2.4rem 2.2rem;
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
}
.cs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--lavender));
}
.cs-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,182,242,0.3); transform: translateY(-4px); }

.cs-org {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.8rem;
}
.cs-card h3 {
    font-family: var(--heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.4rem;
    line-height: 1.3;
}

.cs-meta {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}
.cs-row { display: flex; gap: 0.75rem; align-items: flex-start; }
.cs-row-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    min-width: 80px;
    padding-top: 1px;
    flex-shrink: 0;
}
.cs-row-value { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.55; }

.cs-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.cs-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.28rem 0.7rem;
    border-radius: 100px;
    background: rgba(201,182,242,0.15);
    color: var(--lavender);
    border: 1px solid rgba(201,182,242,0.25);
}

.cs-cta-note {
    max-width: 640px;
    margin: 3rem auto 0;
    text-align: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
.cs-cta-note strong { color: var(--lavender); font-style: italic; }

/* Consult CTA */
.svc-cta {
    background: var(--lavender);
    padding: 5rem 2rem;
    text-align: center;
}
.svc-cta .h2 { margin-bottom: 1rem; }
.svc-cta .sub { margin: 0 auto 2.5rem; }

/* =============================================
   BLOG / INSIGHTS PAGE
============================================= */
.blog-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/insights-hero.png');
    background-size: cover;
    background-position: right center;
}
.blog-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.12) 100%
    );
}
.blog-hero .wrap { position: relative; z-index: 2; padding: 5rem 2rem; }
.blog-hero .label { color: var(--coral); }
.blog-hero .h2  { color: var(--white); }
.blog-hero .sub { color: rgba(255,255,255,0.68); max-width: 520px; }

.blog-grid-wrap { padding: 5rem 2rem; background: var(--white); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.6rem;
}

.blog-card {
    border: 1.5px solid var(--gray);
    border-radius: var(--r);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow-lg); border-color: var(--lavender); transform: translateY(-3px); }

.blog-card .b-tag { font-size: 0.67rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--coral); margin-bottom: 0.55rem; }
.blog-card h3 { font-family: var(--heading); font-size: 1rem; color: var(--black); line-height: 1.38; margin-bottom: 0.45rem; }
.blog-card .b-date { font-size: 0.76rem; color: var(--muted); margin-bottom: 0.8rem; }
.blog-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1.2rem; }
.blog-card .b-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--coral);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap var(--ease);
}
.blog-card .b-link:hover { gap: 0.6rem; }

/* Single post */
.single-hero {
    background: var(--black);
    padding: 5rem 2rem 4rem;
}
.single-hero .label { color: var(--coral); }
.single-hero h1 {
    font-family: var(--heading);
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1.15;
    max-width: 760px;
    margin: 0.5rem 0 1rem;
}
.single-meta { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

.single-content {
    padding: 4rem 2rem 5rem;
    background: var(--white);
}
.single-content .wrap { max-width: 760px; }
.single-content p  { font-size: 1rem; color: var(--text); line-height: 1.8; margin-bottom: 1.4rem; }
.single-content h2 { font-family: var(--heading); font-size: 1.55rem; color: var(--black); margin: 2rem 0 0.75rem; }
.single-content h3 { font-family: var(--heading); font-size: 1.25rem; color: var(--black); margin: 1.6rem 0 0.6rem; }
.single-content ul, .single-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.single-content li { font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 0.4rem; }
.single-content a { color: var(--coral); }
.single-content a:hover { color: var(--coral-dark); }
.single-content blockquote {
    border-left: 4px solid var(--coral);
    padding-left: 1.5rem;
    font-family: var(--heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
    margin: 2rem 0;
}
.single-content img { max-width: 100%; border-radius: var(--r); margin: 1.5rem 0; }

.single-back {
    padding: 2rem;
    background: var(--gray);
    text-align: center;
}

/* =============================================
   CONTACT PAGE
============================================= */
.ct-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ct-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/contact-hero.png');
    background-size: cover;
    background-position: right center;
}
.ct-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.12) 100%
    );
}
.ct-hero .wrap { position: relative; z-index: 2; padding: 5rem 2rem; }
.ct-hero .label { color: var(--coral); }
.ct-hero .h2  { color: var(--white); }
.ct-hero .sub { color: rgba(255,255,255,0.68); max-width: 520px; }

.ct-calendly { padding: 4rem 2rem 2rem; background: var(--white); }
.ct-calendly .wrap { max-width: 900px; }
.ct-calendly-label { text-align: center; margin-bottom: 0.4rem; }
.ct-calendly-head { text-align: center; margin-bottom: 0.5rem; }
.ct-calendly-sub { text-align: center; color: var(--muted); font-size: 0.97rem; margin-bottom: 2rem; }
.calendly-inline-widget { min-width: 320px; height: 700px; }

.ct-cards { padding: 5rem 2rem; background: var(--white); }
.ct-form-wrap { max-width: 640px; margin: 0 auto; }
.ct-form-wrap h3 { font-family: var(--heading); font-size: 1.5rem; margin-bottom: 0.5rem; }
.ct-form-wrap > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; }
.ct-form { display: flex; flex-direction: column; gap: 1.2rem; }
.ct-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.ct-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--ink); letter-spacing: 0.3px; }
.ct-form input, .ct-form textarea, .ct-form select {
    font-family: var(--body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color var(--ease);
    outline: none;
    width: 100%;
}
.ct-form input:focus, .ct-form textarea:focus, .ct-form select:focus { border-color: var(--coral); }
.ct-form textarea { resize: vertical; min-height: 130px; }
.ct-form-success { display: none; background: #f0fdf4; border: 1.5px solid #86efac; border-radius: var(--r); padding: 1.4rem 1.6rem; color: #166534; font-size: 0.95rem; }
@media (max-width: 560px) { .ct-form .form-row { grid-template-columns: 1fr; } }

.ct-faq { padding: 5.5rem 2rem; background: var(--gray); }
.faq-list { max-width: 760px; margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.faq {
    background: var(--white);
    border-radius: var(--r);
    padding: 1.7rem 2rem;
    border-left: 4px solid var(--coral);
}
.faq h4 { font-family: var(--heading); font-size: 1.05rem; margin-bottom: 0.5rem; }
.faq p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* =============================================
   FOOTER
============================================= */
footer { background: var(--black); padding: 3.5rem 2rem 1.5rem; }

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
}

.ft-logo-img {
    display: block;
    height: 28px;
    width: auto;
    margin-bottom: 0.9rem;
    opacity: 0.92;
    transition: opacity var(--ease);
}
.ft-logo-img:hover { opacity: 1; }
.ft-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.44); line-height: 1.72; max-width: 270px; }

.ft-col h4 { color: var(--white); font-size: 0.76rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.ft-col ul li a { color: rgba(255,255,255,0.48); text-decoration: none; font-size: 0.85rem; transition: color var(--ease); }
.ft-col ul li a:hover { color: var(--coral); }
.ft-col ul li { color: rgba(255,255,255,0.48); font-size: 0.85rem; line-height: 1.6; }

.ft-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.ft-bottom p { font-size: 0.77rem; color: rgba(255,255,255,0.25); }
.ft-bottom a { color: var(--coral); text-decoration: none; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 920px) {
    .about-hero .wrap,
    .flagship-inner,
    .who-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

    .ft-top { grid-template-columns: 1fr 1fr; }
    .ft-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    :root { --nav-h: 60px; }

    .logo-consulting, .logo-jp { display: none; }

    .nav-burger { display: flex; }

    .nav-links {
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--black);
        border-top: 1px solid rgba(255,255,255,0.08);
        flex-direction: column;
        padding: 0.75rem 1rem 1rem;
        gap: 0.15rem;
        box-shadow: 0 12px 32px rgba(0,0,0,0.4);
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; text-align: center; padding: 0.7rem; }

    .hero-cta { flex-direction: column; align-items: flex-start; }
    .journey-steps { flex-direction: column; }
    .j-step::after { display: none; }
    .j-step:first-child, .j-step:last-child { border-radius: var(--r); }
    .j-step { border-radius: var(--r); }

    .ft-top { grid-template-columns: 1fr; gap: 2rem; }
    .ft-bottom { flex-direction: column; text-align: center; }
}
